* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

body {
	background: #000000;
}

main {
	padding: 20px 0 50px 0;
}

.container {
	max-width: 1160px;
	padding: 0 15px;
	margin: 0 auto;
}

/* header */
.header {
	padding: 15px 0;
	background: #131720;
	box-shadow: 0px 2px 10px 0px #0000004d;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header__buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 25px;
	border-radius: 8px;
	text-decoration: none;
	color: white;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	transition: all 0.3s ease;
	white-space: nowrap;
}
.btn.red {
	background: #c20a0a;
}
.btn.red:hover {
	background: #882323;
}

.btn.green {
	background: #0f8a70;
}
.btn.green:hover {
	background: #205f51;
}

/* footer */
.footer {
	padding: 50px 0 15px 0;
	background: #131720;
}
.footer__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 15px;
	flex-wrap: wrap;
	padding: 0 0 30px 0;
	border-bottom: 1px solid #374151;
}

.footer__title {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	color: #e6e6e6;
	margin: 0 0 15px 0;
}

.footer__list {
	list-style: none;
}

.footer__list li a {
	display: block;
	text-decoration: none;
	margin: 0 0 15px 0;
	color: #d1d5db;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}
.footer__list li a:hover {
	color: #fff;
}

.footer__socials {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
}

.footer__social {
	width: 16px;
	height: 16px;
}
.footer__social img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.footer__descr {
	padding: 20px 0 0 0;
	color: #9ca3af;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 8px 0;
	text-align: center;
}

.footer__info {
	color: #9ca3af;
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
}

/* promo */

.promo__wrapper {
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	background: #14181fd9;
	box-shadow: 0px 10px 20px 0px #00000033;
	border-radius: 15px;
}

.promo__item:first-child {
	max-width: 495px;
}

.promo__item h1 {
	color: #fff;
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
	margin: 0 0 20px 0;
}
.promo__item p {
	color: #d1d5db;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 30px 0;
}

.promo__img {
	width: 500px;
}
.promo__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.promo__buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

/* content */
.content {
	padding: 60px 0;
}
.content p {
	color: #333333;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 20px 0;
}
.content__wrapper {
	background: #e6e6e6;
	border-radius: 15px;
	box-shadow: 0px 4px 6px 0px #0000001a;
	padding: 30px 30px 80px 30px;
}
.table {
	width: 100%;
	overflow-x: auto;
	margin: 0 0 60px 0;
	border-radius: 10px;
	border: 1px solid #f6f8d6;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table tbody {
	background: #1e2533;
}
.table table thead {
	background: #356960;
}
.table table td {
	border: 1px solid #f6f8d6;
	padding: 18px 15px;
	color: #e6e6e6;
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
}
.table table th {
	border: 1px solid #f6f8d6;
	padding: 18px 15px;
	color: #e6e6e6;
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
	text-align: center;
}
.howto {
	padding: 64px 32px 32px 32px;
	background: #e6e6e6;
	box-shadow: 0px 4px 6px 0px #0000001a;
	margin: 0 0 64px 0;
}

.howto h2 {
	color: #131720;
	font-weight: 700;
	font-size: 32px;
	line-height: 48px;
	margin: 0 0 30px 0;
	text-align: center;
}

.howto__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 32px;
	margin: 0 0 32px 0;
}

.howto__item {
	width: 100%;
	padding: 16px;
	background: #f3f4f6;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.howto__item span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	border-radius: 100px;
	background: #1f2937;
	color: #e6e6e6;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 16px 0;
}
.howto__item h3 {
	color: #333333;
	margin: 0 0 10px 0;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}
.howto__item p {
	color: #333333;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}
.howto h3 {
	color: #333333;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	margin: 0 0 20px 0;
}
.howto p {
	color: #333333;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 28px 0;
}

.payments {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 16px;
}

.payments__item {
	width: 100%;
	padding: 12px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	flex-direction: column;
	background: #f3f4f6;
	border-radius: 4px;
}
.payments__item p {
	text-align: center;
}

.content h2 {
	color: #131720;
	font-weight: 700;
	font-size: 32px;
	line-height: 48px;
	margin: 0 0 30px 0;
	text-align: center;
}

.advantages {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 24px;
	margin: 0 0 48px 0;
}

.advantages__item {
	width: 100%;
	border-radius: 12px;
	background: #131720;
	padding: 36px 24px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	flex-direction: column;
}

.advantages__item h3 {
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
}

.advantages__item p {
	color: #e6e6e6;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
}

.bonus {
	background: #cb2d181a;
	border: 1px solid #cb2d184d;
	border-radius: 15px;
	padding: 65px 33px 33px 33px;
}

.bonus__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 32px;
}

.bonus__item {
	width: 100%;
	background: #f3f4f6;
	border-radius: 8px;
	padding: 16px;
}

.bonus__item-title {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	margin: 0 0 16px 0;
}
.bonus__item-title.red {
	color: #b91c1c;
}
.bonus__item-title.green {
	color: #047857;
}

.bonus__item-price {
	color: #333333;
	margin: 0 0 8px 0;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	display: block;
	text-align: center;
}

.bonus__item-points {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin: 0 0 30px 0;
}
.bonus__item-points span {
	padding: 5px 10px;
	background: #0f8a70;
	border-radius: 15px;
	color: #e6e6e6;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
}

.bonus__item p {
	color: #333333;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 8px 0;
}
.bonus__item ul {
	padding: 0 0 0 24px;
	margin: 0 0 18px 0;
}
.bonus__item ul li {
	color: #333333;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 4px 0;
}

/* faq */
.faq {
	background: #e6e6e6;
	border-radius: 15px;
	padding: 64px 32px 32px 32px;
}
.faq .container {
	padding: 0;
}

.faq h2 {
	color: #131720;
	font-weight: 700;
	font-size: 32px;
	line-height: 48px;
	margin: 0 0 30px 0;
	text-align: center;
}

.faq__item {
	cursor: pointer;
	padding: 15px;
	background: #131720;
	border-radius: 8px;
	margin: 0 0 15px 0;
}

.faq__item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.faq__item-header h3 {
	color: #e6e6e6;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
}
.faq__item-header img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.faq__item-body {
	display: none;
	padding: 10px 0 0 0;
	color: #e6e6e6;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}
.faq__item.active .faq__item-body {
	display: block;
}
.faq__item.active .faq__item-header img {
	transform: rotate(180deg);
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto !important;
}
.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}

@media (max-width: 768px) {
	.footer__wrapper {
		flex-direction: column;
	}
	.promo__wrapper {
		flex-direction: column;
	}
	.promo__item:first-child {
		max-width: 100%;
	}
	.promo__item:last-child {
		display: none;
	}
	.promo__buttons {
		flex-direction: column;
	}
	.promo__buttons .btn {
		width: 100%;
	}
	.howto__wrapper {
		flex-direction: column;
	}
	.payments {
		flex-wrap: wrap;
	}
	.advantages {
		flex-direction: column;
	}
	.bonus__wrapper {
		flex-direction: column;
	}
	.bonus__item-price {
		font-size: 28px;
	}
}
