* {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	color: var(--default-link-color);
}

p,
h1,
h2,
h3,
h4 {
	margin: 0;
	padding: 0;
}

body,
html {
	padding: 0;
	margin: 0;
}

body {
	background: var(--bg-color);
	font-family: 'Manrope', sans-serif;
	font-size: 14px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.container {
	max-width: 1150px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

h1 {
	font-size: 80px;
	font-weight: bold;
	line-height: 100%;
	color: #ffffff;
	margin-bottom: 40px;
	text-align: center;
}

.sub-title {
	font-size: 38px;
	font-weight: 400;
	color: #ffffff;
	text-transform: uppercase;
	margin-bottom: 50px;
	text-align: center;
	z-index: 2;
}

h2,
strong {
	display: block;
	font-size: 48px;
	font-weight: 400;
	color: #0044cc;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 30px;
}

.pageMenu li a {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
}
.pageMenu li a:hover {
	color: #cc6600;
}

ul li,
ol li {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
	color: white;
}
ul,
ol {
	margin: 15px auto;
}
h3 {
	font-size: 30px;
	font-weight: 350;
	color: var(--main-text-color);
	margin-bottom: 30px;
	margin-top: 30px;
}
h4 {
	font-size: 26px;
	font-weight: 350;
	color: var(--main-text-color);
	margin-bottom: 30px;
	margin-top: 30px;
}
.second-color {
	color: var(--second-text-color);
}

.list {
	margin: 5px 0;
}

.list li {
	color: var(--main-text-color);
	padding: 4px 0;
	font-size: 22px;
	list-style-type: disc;
	margin-left: 30px;
}

p,
table {
	line-height: 160%;
	text-align: justify;
	margin: 10px 0;
	font-size: 18px;
	color: var(--main-text-color);
}

p {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 30px;
}

table {
	font-size: 22px;
	font-weight: 400;
}
.table-responsive {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

table {
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
}

table td,
table th {
	word-break: break-word;
	padding: 8px;
}

.header {
	background: var(--bg-footer);
	width: 100%;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
}

.btn {
	padding: 12px 20px;
	border: none;
	color: var(--btn-text-color);
	text-decoration: none;
	font-size: 18px;
	border-radius: 20px;
	font-weight: 400;
	text-transform: uppercase;
	cursor: pointer;
	transition: filter 0.2s;
}

.btn:hover {
	filter: brightness(85%);
}

.btn-signup {
	background: var(--btn-bg-signup-colr);
	margin-right: 5px;
	border: 2px solid #f7e57eee;
}

.btn-login {
	background: var(--btn-bg-login-color);
	border: 2px solid #a2ddf8ee;
}

.btn-get-bonus {
	background: var(--btn-bg-get-bonus-colr);
	font-size: 26px;
}

.logo {
	width: 180px;
}

.logo img {
	width: 75%;
}

.nav-header ul {
	display: flex;
	gap: 30px;
}

.nav-header ul li a {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 400;
}

.side-panel {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 0;
	background: var(--bg-color);
	overflow: hidden;
	transition: width 0.4s;
	z-index: 100;
	display: none;
}
.side-panel.active {
	width: 100%;
}

.side-panel ul {
	padding: 80px 0;
}

.side-panel li {
	font-size: 18px;
	white-space: nowrap;
	padding: 20px 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-panel li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.side-panel-open {
	display: none;
	border: none;
	background: transparent;
	color: var(--main-text-color);
	font-size: 38px;
	font-weight: bold;
	cursor: pointer;
}

.side-panel-close {
	position: absolute;
	top: 20px;
	right: 20px;
	border: none;
	background: transparent;
	color: var(--main-text-color);
	font-size: 38px;
	width: 40px;
	height: 40px;
	font-weight: bold;
	cursor: pointer;
}

.nav-list {
	display: flex;
	flex-wrap: wrap;
	margin: 30px 0;
}

.nav-list li {
	width: 50%;
	font-weight: bold;
	margin-bottom: 15px;
	font-size: 17px;
	text-transform: uppercase;
}

.hero-section {
	position: relative;
	width: 100%;
	height: 600px;
	background: url('../images/bg-web.png') center center / cover no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 20px;
}

/* Темне накладання (затемнення) */
.hero-section .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.hero-section h1,
h2,
button {
	position: relative;
	z-index: 20;
}

.features {
	display: flex;
}

.features ol {
	margin-left: 20px;
	padding-left: 0;
	columns: 2;
	column-gap: 20vw;
}

.features ol li {
	list-style-type: decimal;
	color: var(--main-text-color);
	font-size: 18px;
	padding: 10px;
}

footer {
	background: var(--bg-footer);
	margin-top: auto;
	width: 100%;
}

.footer-margin {
	margin-top: 60px;
}

.footer-content {
	display: flex;
	margin: 30px 0 50px 0;
	justify-content: center;
	gap: 20px;
}

.footer-content ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-content ul li a {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 20px;
}

.banners-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
	gap: 20px;
}

.footer-small {
	font-size: 14px;
	font-weight: 300;
	color: #c4bfbf;
	margin-bottom: 5px;
	margin-top: 0;
	text-align: center;
}

.table-container {
	width: 100%;
	margin: 0 auto;
	overflow-x: auto;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	background-color: transparent;
	border-right: 1px solid var(--table-color);
	border-left: 1px solid var(--table-color);
}

.info-table thead th {
	background-color: var(--table-color);
	color: var(--main-text-color);
	text-align: center;
	padding: 20px;
	font-size: 32px;
	font-weight: 400;
	border: none;
}

.info-table td {
	padding: 20px;
	text-align: center;
	border-top: 1px solid var(--table-color);
	border-right: 1px solid var(--table-color);
}

.info-table tr td:last-child {
	border-right: none;
}

.two-col-table tr td:last-child {
	width: 75%;
}

.info-table tr:last-child td {
	border-bottom: 1px solid var(--table-color);
}

.gallery {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	margin: 0 0 80px;
}

.gallery-title {
	color: #edd5b3;
	font-size: 48px;
	text-align: center;
	margin: 40px 40px 0;
}

.gallery-item {
	transition: transform 0.3s ease;
}
.gallery-item:hover {
	transform: scale(1.05);
}

.gallery-item img {
	width: 100%;
	display: block;
	border-radius: 20px;
}

.gallery-item p {
	font-size: 18px;
	margin: 10px;
	font-weight: bold;
	color: var(--second-text-color);
}

.faq-block {
	border: 1px solid var(--faq-color);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
}

.faq-block-title {
	line-height: 150%;
	color: var(--main-text-color);
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 15px 0;
}

.faq-block-text {
	margin: 0;
}

.faq-block-fill {
	background-color: var(--faq-color-bg);
}
img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.centered-image {
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.img-cov {
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.footer__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
	margin: 15px auto;
	list-style: none;
}
.footer__list li a:hover {
	color: #cc6600;
}

@media screen and (max-width: 1150px) {
	.hero-banner {
		height: 400px;
	}
	.nav-header {
		display: none;
	}
	.nav-footer ul {
		flex-direction: column;
		justify-content: center;
		text-align: center;
	}
	.side-panel-open {
		display: block;
	}
	.btn-container {
		width: 100%;
		display: flex;
		justify-content: flex-end;
		padding: 0 40px;
	}
}

@media screen and (max-width: 1000px) {
	.banners-block {
		display: none;
	}
	.banners-block-mobile {
		display: flex;
	}
	.hero-section {
		background-position: 60% center;
	}
}

@media screen and (max-width: 800px) {
	.footer-content {
		display: flex;
		flex-direction: column;
		gap: 20px;
		align-items: center;
		text-align: center;
	}
	.hero-section {
		background: url('../images/bg-mob.png') center center / cover no-repeat;
	}
}

@media screen and (max-width: 600px) {
	h1 {
		font-size: 46px;
	}
	.sub-title {
		font-size: 22px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 22px;
	}
	h4 {
		font-size: 18px;
	}
	p {
		font-size: 14px;
	}
	.list li {
		font-size: 14px;
	}
	.hero-banner {
		height: 350px;
	}
	header {
		margin-bottom: 60px;
	}
	.header-content {
		padding: 24px 0 35px;
	}
	.btn-container {
		display: flex;
		position: absolute;
		width: calc(100% - 40px);
		top: 90px;
		padding: 0;
	}
	.btn-signup,
	.btn-login {
		width: 100%;
	}
	.hero-banner-content {
		padding: 40px;
		width: 100%;
	}
	.info-table thead th {
		font-size: 18px;
		padding: 15px;
	}
	.info-table td {
		font-size: 14px;
		padding: 8px;
	}
	.gallery {
		grid-template-columns: repeat(auto-fit, minmax(calc(50% - 10px), 1fr));
	}
	.gallery-title {
		font-size: 32px;
	}
	.features ol {
		columns: 1;
		column-gap: 0;
	}
	.features ol li {
		font-size: 16px;
	}
	.faq-block-title {
		font-size: 14px;
	}
	.centered-image {
		width: 100%;
		height: auto;
		display: block;
		margin: 0 auto;
	}
}

@media screen and (max-width: 500px) {
	.nav-list li {
		width: 100%;
	}
}
