/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a {
	color: inherit;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

svg {
	display: block;
}

/* ---------------------------------------------------------------------------- */

:root {
	--font-family: "Helvetica", sans-serif;
	--second-family: "Inter", sans-serif;
}

body {
	background: #000;
	line-height: normal;
	font-family: var(--font-family);
}

.btn-main:active {
	background: #b81d41;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;

	margin: 0px auto 80px auto;
}

.head-item {
	font-weight: 400;
	font-size: 16px;
	line-height: 110%;
	text-align: center;
	color: #e32652;
	text-transform: uppercase;
}

.head-title {}

.title-h1 {
	font-weight: 700;
	font-size: 56px;
	line-height: 110%;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
}

.title-h2 {
	font-weight: 700;
	font-size: 42px;
	line-height: 110%;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
}

.title-h3 {
	font-weight: 700;
	font-size: 32px;
	line-height: 110%;
	color: #fff;
}

.scroll {
	opacity: 0;
	translate: 0px 60px;
	transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out;
}

.scroll--active {
	opacity: 1;
	translate: 0px 0px;
}

@media (prefers-reduced-motion: reduce) {
	.scroll {
		transition: none;
	}
}

.btn-main {
	border-radius: 8px;
	padding: 11px 20px;
	background: #e32652;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	font-weight: 400;
	font-size: 16px;
	text-transform: capitalize;
	color: #fff;

	transition: opacity 0.6s ease-in-out, translate 0.6s ease-in-out, background .2s ease;
}

@media(hover:hover) {
	.btn-main:hover {
		background: #b81d41;
	}
}

/* -------------------------header------------------------- */

.header {
	margin: 0px 0px 72px 0px;
}

.header-top {
	padding: 12px 0;
	background: #0d0d0e;
}

.header__container {}

.header-top__inner {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-top__img {}

.header-top__text {
	font-weight: 400;
	font-size: 12px;
	color: #fff;
	letter-spacing: 0.03em;
}

.header-main {}

.header__inner {
	padding: 12px 0;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.header__left {
	display: flex;
	align-items: center;
	gap: 48px;
}

.header__logo {}

.header__logo-img {}

.header__list {
	display: flex;
}

.header__item {}

.header__item-link {
	border-radius: 8px;
	padding: 12px 16px;

	font-weight: 400;
	font-size: 14px;
	text-transform: capitalize;
	color: #fff;
	letter-spacing: 0.03em;

	transition: all .2s ease;
}

@media(hover:hover) {
	.header__item-link:hover {
		opacity: .8;
	}
}

.header__item-link:active {
	opacity: .8;
}

.header__right {}

.header__btn {}

.header__btn-icon {}

.buger-btn {
	display: none;
}

/* -------------------------burger-menu------------------------- */

.burger-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;

	background-color: rgb(0, 0, 0, .6);
	backdrop-filter: blur(10px);

	opacity: 0;
	pointer-events: none;
	display: none;
	transition: all .3s ease;
}

.burger-menu--visible {
	opacity: 1;
	pointer-events: all;
	pointer-events: all;
}

.burger-menu__window {
	max-width: 400px;
	width: 100%;
	height: 100%;
	overflow: auto;
	margin: 0px 0px 0px auto;
	background-color: #000;
	padding: 20px;

	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: space-between;

	transform: translateX(100%);
	transition: all .3s ease;
}

.burger-menu--visible .burger-menu__window {
	transform: translateX(0%);
}

.burger-menu__window .header__list {
	flex-direction: column;
	align-items: start;
}

.burger-menu__window .header__item-link {
	display: block;
	padding: 14px 0;
	font-size: 16px;
}

.burger-menu__top {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.burger-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.burger-menu__window .header__item {
	width: 100%;
}

.burger-menu__window .header__logo-img {
	width: 170px;
}

/* -------------------------preview------------------------- */

.page__preview {
	margin: 0px 0px 179px 0px;
}

.preview__container {}

.preview__inner {
	max-width: 1076px;
	margin: 0 auto;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.preview__head {
	display: flex;
	flex-direction: column;
	gap: 27px;
}

.preview__title {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.preview__title span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.preview__head-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.preview__head-text {
	font-weight: 400;
	font-size: 16px;
	text-transform: capitalize;
	color: #9ea0a9;
	letter-spacing: 0.03em;
}

.preview__img {}

.preview__image {
	width: 100%;
}

.preview__cards {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 39px;
}

.preview__card {
	width: 100%;

	display: flex;
	align-items: center;
	gap: 16px;
}

.preview__card:not(:last-child) {
	padding: 0px 38px 0px 0px;
	border-right: 1px solid #2e2f31;
}

.preview__card:nth-child(1) {
	max-width: 353px;
}

.preview__card:nth-child(2) {
	max-width: 305px;
}

.preview__card-name {
	font-weight: 400;
	font-size: 36px;
	line-height: 110%;
	letter-spacing: -0.01em;
	color: #fff;
}

.preview__card-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 110%;
	letter-spacing: 0.01em;
	color: #9ea0a9;
}

/* -------------------------about-us------------------------- */

.page__about-us {
	overflow: hidden;
	margin: 0px 0px 131px 0px;
}

.about-us__container {}

.about-us__inner {}

.about-us-head {
	max-width: 1028px;
}

.ticker-line {
	margin: 0px 0px 80px 0px;
}

.ticker__wrapper {
	display: flex;
	gap: 24px;
	width: max-content;
	animation: ticker 40s linear infinite;
}

.ticker__item {
	border-radius: 12px;
	overflow: hidden;
}

.ticker__video {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	pointer-events: none;
}

@keyframes ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - 12px));
	}
}

.about-us__body {
	padding: 59px 48px;
	background: #0f0f10;
	border-radius: 12px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.about-us__left {
	max-width: 292px;
	width: 100%;

	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 28px;
}

.about-us__title {}

.about-us__right {
	max-width: 650px;
	width: 100%;

	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 24px;
}

.about-us__column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.about-us__column-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-us__column-item-img {
	width: 19px;
	height: 19px;
	min-width: 19px;
}

.about-us__column-item-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	color: #fff;
	letter-spacing: 0.03em;
}

/* -------------------------partner-prog------------------------- */

.page__partner-prog {
	margin: 0px 0px 155px 0px;
}

.partner-prog__container {}

.partner-prog__inner {}

.partner-prog-head {
	max-width: 804px;
}

.partner-prog__cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
}

.partner-prog__card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.partner-prog__card-red {
	background: #e32652;
}

.partner-prog__card-dark {
	background: #222326;
}

.partner-prog-card-elem {
	position: absolute;

	box-shadow: 0 0 61px 0 rgba(220, 255, 0, 0.5);
	background: #dcff00;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	animation: levitate 3s ease-in-out infinite, pulse 3s ease-in-out infinite;
}

@keyframes levitate {
	0% {
		translate: 0 0px;
	}

	50% {
		translate: 0 5px;
	}

	100% {
		translate: 0 0px;
	}
}

@keyframes pulse {
	0% {
		scale: 1;
	}

	50% {
		scale: 1.05;
	}

	100% {
		scale: 1;
	}
}

.elem-1 {
	width: 120px;
	height: 120px;

	bottom: 241px;
	left: 50px;
	transform: rotate(-30deg);
}

.partner-prog-card-elem-img {}

.elem-2 {
	width: 92px;
	height: 92px;

	left: 15px;
	bottom: 111px;
	transform: rotate(26deg);
}

.elem-2 .partner-prog-card-elem-img {
	width: 41px;
	height: 50px;
}

.elem-3 {
	width: 64px;
	height: 64px;

	bottom: 21px;
	left: 86px;
	transform: rotate(-23deg);
}

.elem-3 .partner-prog-card-elem-img {
	width: 28px;
	height: 36px;
}

.elem-4 {
	width: 64px;
	height: 64px;

	top: 158px;
	right: 125px;
	transform: rotate(-23deg);
}

.elem-4 .partner-prog-card-elem-img {
	width: 28px;
	height: 36px;
}

.elem-5 {
	width: 120px;
	height: 120px;

	top: 266px;
	right: 19px;
	transform: rotate(15deg);
}

.elem-6 {
	bottom: 40px;
	right: 46px;

	width: 92px;
	height: 92px;
	transform: rotate(40deg);
}

.elem-6 .partner-prog-card-elem-img {
	width: 44px;
	height: 45px;
}

.partner-prog__card-title {
	line-height: 120%;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
	padding: 48px 64px 0 64px;
}

.partner-prog__card-img {
	width: 100%;
	object-fit: cover;
}

.elem-7 {
	width: 125px;
	height: 125px;

	top: 248px;
	left: 42px;
	transform: rotate(-23deg);
}

.elem-8 {
	width: 125px;
	height: 125px;

	bottom: 95px;
	right: 35px;
	transform: rotate(22deg);
	box-shadow: 0 0 60px 0 rgba(227, 38, 82, 0.5);
	background: #e32652;
}

/* -------------------------how-work------------------------- */

.page__how-work {
	margin: 0px 0px 182px 0px;
}

.how-work__container {}

.how-work__inner {}

.how-work-head {
	max-width: 808px;
}

.how-work__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
	margin: 0px 0px 48px 0px;
}

.how-work__card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.how-work__card-icon {
	width: 80px;
	height: 80px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: #1b0a0e;
	border-radius: 50%;
}

.how-work__card-img {
	width: 48px;
	height: 48px;
}

.how-work__card-list {
	display: flex;
	flex-direction: column;
	gap: 16px;

	max-width: 332px;
	width: 100%;
}

.how-work__card-name {
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
	letter-spacing: 0.01em;
}

.how-work__card-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	text-align: center;
	color: #9ea0a9;
}

.how-work__bot {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* -------------------------collaborate------------------------- */

.page__collaborate {
	margin: 0px 0px 136px 0px;
}

.collaborate__container {}

.collaborate__inner {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.collaborate-head {
	max-width: unset;
	margin: 0;
	align-items: start;
}

.collaborate-head .head-item {
	text-align: start;
}

.collaborate-head .head-title {
	text-align: start;
	max-width: 1000px;
}

.collaborate__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 24px;
}

.collaborate__card {
	padding: 24px 24px 28px 24px;
	background: #e32652;
	border-radius: 12px;
	background: #222326;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.collaborate__card-red {
	background: #e32652;
}

.collaborate__card-head {
	display: flex;
	align-items: center;
	gap: 16px;
}

.collaborate__card-img {
	width: 56px;
	height: 56px;
	min-width: 56px;
	background: #43454c;
	border-radius: 8px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.collaborate__card-image {}

.collaborate__card-head-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.collaborate__card-name {
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	text-transform: capitalize;
	color: #fff;
}

.collaborate__card-desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	text-transform: capitalize;
	color: #9ea0a9;
}

.collaborate__card-red .collaborate__card-desc {
	color: #ffb1c3;
}

.collaborate__card-red .collaborate__card-img {
	background: #ff87a3;
}

.collaborate__card-red .collaborate__card-item::before {
	background-image: url("../images/collaborate/check-white.svg");
}

.collaborate__card-body {}

.collaborate__card-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.collaborate__card-item {
	font-weight: 400;
	font-size: 14px;
	color: #fff;

	display: flex;
	align-items: center;
	gap: 8px;
}

.collaborate__card-item::before {
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	min-width: 15px;
	background-image: url("../images/collaborate/check.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.collaborate__partners {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.collaborate__partners-name {
	font-weight: 700;
	font-size: 18px;
	line-height: 110%;
	color: #fff;
	opacity: 0.6;
}

.collaborate__partners-cards {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.collaborate__partners-card {}

.collaborate__partners-card-img {
	max-width: 100%;
}

/* -------------------------reviews------------------------- */

.page__reviews {
	margin: 0px 0px 154px 0px;
}

.reviews__container {}

.reviews__inner {}

.reviews-head {}

.reviews__body {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.reviews__slider-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.reviews__slider-btn {
	width: 48px;
	height: 48px;
	min-width: 48px;

	background: #272c33;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: all .2s ease;
}

@media(hover:hover) {
	.reviews__slider-btn:hover {
		background: #171a1f;
	}
}

.reviews__slider-btn:active {
	background: #171a1f;
}

.reviews__slider-btn-prev {}

.reviews__slider {
	max-width: 864px;
	width: 100%;
	overflow: hidden;
}

.swiper-reviews {}

.reviews__slider-line {}

.reviews__slide {
	padding: 57px 0;
	position: relative;
	z-index: 1;
}

.reviews__slide-card {
	border-radius: 12px;
	padding: 64px 72px;
	background: #222326;
	max-width: 612px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 28px;
}

.reviews__slide-card-message {
	font-weight: 400;
	font-size: 20px;
	line-height: 150%;
	text-transform: capitalize;
	color: #fff;
}

.reviews__slide-card-bot {
	display: flex;
	align-items: center;
	gap: 12px;
}

.reviews__slide-card-name {
	font-weight: 700;
	font-size: 14px;
	text-transform: capitalize;
	color: #fff;
}

.reviews__slide-card-desc {
	font-weight: 400;
	font-size: 12px;
	text-transform: capitalize;
	color: rgba(255, 255, 255, 0.5);
}

.reviews__slide-img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	z-index: -1;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
}

.reviews__slide-iamge {
	max-height: 460px;
	width: 100%;
	object-fit: cover;
}

.reviews__slider-btn-next {}

.reviews__slider-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.swiper-pagination-bullet {
	margin: 0 !important;
	opacity: 1;
	background: #596170;
	width: 4px;
	height: 4px;

	transition: all .3s ease;
}

.swiper-pagination-bullet-active {
	width: 16px;
	background: #fff;
	border-radius: 4px;
}

/* -------------------------faq------------------------- */

.page__faq {
	margin: 0px 0px 142px 0px;
}

.faq__container {}

.faq__inner {
	max-width: 795px;
	margin: 0 auto;
}

.faq-head {}

.faq__box {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq__box:not(:last-child) {
	margin: 0px 0px 24px 0px;
}

.faq__box-name {
	font-weight: 700;
	font-size: 16px;
	color: #fff;
	opacity: 0.8;
}

.faq__accordions {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq__accordion {
	border-radius: 4px;
	background: #222326;
}

.faq__accordion-head {
	padding: 16px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	transition: all .3s ease;
}

.accordion__item-head--show.faq__accordion-head {
	padding: 16px 16px 24px 16px;
}

.faq__accordion-name {
	font-weight: 700;
	font-size: 16px;
	color: #f4f4f5;
}

.faq__accordion-icon {
	transition: all .3s ease;
}

.accordion__item-head--show .faq__accordion-icon {
	transform: rotate(180deg);
}

.faq__accordion-cotent {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}

.faq__accordion-body {
	padding: 0 16px 20px 16px;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.faq__accordion-desc {
	font-weight: 700;
	font-size: 14px;
	color: #f4f4f5;
	opacity: 0.6;
}

/* -------------------------agit------------------------- */

.page__agit {
	padding: 330px 0;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.page__agit::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;

	background: rgba(0, 0, 0, 0.8);
}

.agit-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.agit__container {}

.agit__inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;

	position: relative;
	z-index: 1;
}

.agit__inner::after {
	content: '';

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 551px;
	z-index: -1;

	border-radius: 100%;
	background: rgba(0, 0, 0, 0.8);
	filter: blur(90px);
}

.agit__title {
	max-width: 784px;
	margin: 0px 0px 32px 0px;
}

/* -------------------------footer------------------------- */

.footer {
	padding: 64px 0 32px 0;
	border-top: 1px solid #303136;
	background: #000;
}

.footer__container {}

.footer__inner {
	display: flex;
	flex-direction: column;
	gap: 130px;
}

.footer__top {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.footer__left {
	max-width: 370px;
	width: 100%;
}

.footer__left-name {
	font-weight: 700;
	font-size: 18px;
	line-height: 150%;
	color: #fff;

	display: block;
	margin: 0px 0px 16px 0px;
}

.footer__form {
	display: flex;
	gap: 8px;
}

.footer__label {
	display: block;
	width: 100%;
}

.footer__input {
	border-radius: 4px;
	padding: 15px 16px;
	width: 100%;
	background: #191c21;

	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255);
}

.footer__input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.footer__btn {
	padding: 0 26px;
	height: 46px;
}

.disabled {
	background: #e32652;
	opacity: 0.3;
	cursor: not-allowed;
}

.footer__left-desc {
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	color: rgba(255, 255, 255, 0.6);

	display: block;
	margin: 12px 0px 0px 0px;
}

.footer__left-desc a {
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.footer__right {
	max-width: 437px;
	width: 100%;
}

.footer__columns {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 40px 20px;
	flex-wrap: wrap;
}

.footer__column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer__column-name {
	font-weight: 700;
	font-size: 12px;
	color: #fff;
	opacity: 0.6;
}

.footer__column-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer__column-item {}

.footer__column-item-link {
	font-weight: 400;
	font-size: 14px;
	color: #fff;

	display: flex;
	align-items: center;
	gap: 12px;

	transition: all .2s ease;
}

@media(hover:hover) {
	.footer__column-item-link:hover {
		opacity: .8;
	}
}

.footer__column-item-link:active {
	opacity: .8;
}

.footer__bot {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer__bot-logo {
	display: flex;
	align-items: center;
	gap: 16px;

	font-weight: 400;
	font-size: 14px;
	color: rgb(255, 255, 255, .6);
}

.footer__bot-box {
	display: flex;
	align-items: center;
	gap: 4px;

	font-weight: 400;
	font-size: 14px;
	color: rgb(255, 255, 255, .6);
}

/* -------------------------terms------------------------- */

.page__terms {
	margin: 96px 0px 155px 0px;
}

.terms__container {}

.terms__inner {}

.terms__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	margin: 0px 0px 28px 0px;
}

.terms__title {}

.terms__date {
	font-weight: 400;
	font-size: 14px;
	line-height: 110%;
	text-align: center;
	color: #9ea0a9;
}

.terms__article {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.terms__article-name {
	font-weight: 400;
	font-size: 20px;
	line-height: 110%;
	color: #fff;

	display: block;
	margin: 0px 0px 4px 0px;
}

.terms__article-box {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.terms__article-box-name {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
}

.terms__article-desc {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: #9ea0a9;
}

.terms__article-desc a {
	text-decoration: underline;
	text-decoration-skip-ink: none;
}

.terms__article-warning {
	font-weight: 700;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
	text-transform: uppercase;
}

/* -------------------------media------------------------- */

@media(max-width:1140px) {
	.header .header__list {
		display: none;
	}

	.buger-btn {
		display: block;
	}

	.header__right {
		display: flex;
		align-items: center;
		gap: 24px;
	}

	.title-h1 {
		font-size: 42px;
	}

	.title-h2 {
		font-size: 38px;
	}

	.title-h3 {
		font-size: 28px;
	}

	.burger-menu {
		display: block;
	}






	.preview__title img {
		max-width: 220px;
	}

	.preview__card:not(:last-child) {
		padding: 0px 20px 0px 0px;
	}

	.preview__cards {
		gap: 20px;
	}

	.preview__card-name {
		font-size: 32px;
	}

	.preview__card {
		gap: 12px;
	}

	.preview__card-desc {
		font-size: 14px;
	}

	.page__preview {
		margin: 0px 0px 120px 0px;
	}






	.about-us__body {
		flex-direction: column;
		padding: 40px;
	}

	.about-us__left {
		align-items: center;
		text-align: center;
		gap: 16px;
	}

	.page__about-us {
		margin: 0px 0px 100px 0px;
	}






	.partner-prog-card-elem-img {
		max-width: 30px;
	}

	.elem-1,
	.elem-5,
	.elem-7,
	.elem-8 {
		width: 80px;
		height: 80px;
	}

	.elem-2,
	.elem-6 {
		width: 60px;
		height: 60px;
	}

	.elem-4 {
		right: 50px;
	}

	.elem-2 .partner-prog-card-elem-img,
	.elem-6 .partner-prog-card-elem-img {
		width: 20px;
		height: auto;
	}

	.elem-8 .partner-prog-card-elem-img {
		max-width: 40px;
	}

	.partner-prog__cards {
		gap: 24px;
	}

	.partner-prog__card-title {
		padding: 24px 24px 0 24px;
	}

	.page__partner-prog {
		margin: 0px 0px 100px 0px;
	}







	.page__how-work {
		margin: 0px 0px 100px 0px;
	}





	.page__collaborate {
		margin: 0px 0px 100px 0px;
	}





	.reviews__slide-card {
		padding: 40px;
	}

	.page__reviews {
		margin: 0px 0px 100px 0px;
	}





	.page__faq {
		margin: 0px 0px 100px 0px;
	}







	.page__agit {
		padding: 250px 0;
	}





	.page__terms {
		margin: 70px 0px 100px 0px;
	}
}

@media(max-width:980px) {
	.reviews__slide-card {
		max-width: 500px;
	}

	.reviews__slide-card-message {
		font-size: 18px;
	}






	.footer__right,
	.footer__left {
		max-width: unset;
	}
}

@media(max-width:768px) {
	.header {
		margin: 0px 0px 40px 0px;
	}

	.container {
		padding: 0 20px;
	}

	.title-h1 {
		font-size: 34px;
	}

	.title-h2 {
		font-size: 28px;
	}

	.title-h3 {
		font-size: 24px;
	}





	.page__preview {
		margin: 0px 0px 60px 0px;
	}

	.preview__cards {
		flex-direction: column;
		align-items: center;
	}

	.preview__card {
		justify-content: center;
		flex-direction: column;
	}

	.preview__card:not(:last-child) {
		padding: 0px 0px 20px 0px;
		border: none;
	}

	.preview__head-box {
		flex-direction: column;
		align-items: stretch;
	}

	.preview__head-text {
		text-align: center;
	}







	.head {
		gap: 16px;
		margin: 0px 0px 40px 0px;
	}

	.head-item {
		font-size: 14px;
	}

	.ticker__video {
		max-height: 340px;
	}

	.ticker__wrapper {
		gap: 14px;
	}

	.ticker-line {
		margin: 0px 0px 40px 0px;
	}





	.page__about-us {
		margin: 0px 0px 60px 0px;
	}

	.about-us__right {
		flex-direction: column;
		gap: 16px;
	}

	.about-us__column {
		gap: 16px;
	}

	.about-us__body {
		padding: 30px 16px;
		gap: 30px;
	}

	.about-us__left {
		max-width: unset;
	}

	.header__btn {
		width: 100%;
	}






	.partner-prog__cards {
		grid-template-columns: repeat(1, 1fr);
	}

	.page__partner-prog {
		margin: 0px 0px 60px 0px;
	}






	.how-work__cards {
		gap: 20px;
		margin: 0px 0px 30px 0px;
	}

	.how-work__card-name {
		font-size: 20px;
	}

	.how-work__card-desc {
		font-size: 14px;
	}

	.how-work__card-icon {
		width: 60px;
		height: 60px;
	}

	.how-work__card-img {
		width: 34px;
		height: 34px;
	}

	.page__how-work {
		margin: 0px 0px 60px 0px;
	}






	.collaborate-head {
		margin: 0;
	}

	.collaborate__inner {
		gap: 40px;
	}

	.collaborate__cards {
		gap: 20px;
	}

	.collaborate__card {
		gap: 20px;
		padding: 20px;
	}

	.collaborate__partners-cards {
		justify-content: center;
		flex-wrap: wrap;
	}

	.collaborate__partners-name {
		text-align: center;
	}

	.page__collaborate {
		margin: 0px 0px 60px 0px;
	}

	.collaborate__partners-card-img {
		max-height: 30px;
	}








	.reviews__slider-btn {
		display: none;
	}

	.reviews__slide {
		padding: 250px 0px 0px 0px;
		max-width: 400px;
	}

	.reviews__slide-card {
		max-width: unset;
	}

	.reviews__slide-img {
		width: 100%;
	}

	.reviews__slide-card {
		padding: 24px;
	}

	.reviews__slide-card-message {
		font-size: 16px;
	}

	.reviews__slider {
		overflow: unset;
	}

	.page__reviews {
		overflow: hidden;
		margin: 0px 0px 60px 0px;
	}

	.reviews__body {
		gap: 20px;
	}







	.page__faq {
		margin: 0px 0px 60px 0px;
	}






	.page__agit {
		padding: 150px 0;
	}







	.footer {
		padding: 40px 0 20px 0;
	}

	.footer__inner {
		gap: 60px;
	}






	.page__terms {
		margin: 0px 0px 60px 0px;
	}

}

@media(max-width:520px) {
	.header .header__btn {
		display: none;
	}

	.header-top__text {
		font-size: 11px;
	}





	.preview__title span {
		flex-direction: column;
		gap: 10px;
	}





	.elem-1,
	.elem-5 {
		display: none;
	}

	.elem-8 {
		right: 20px;
		width: 70px;
		height: 70px;
	}

	.elem-7 {
		width: 70px;
		height: 70px;
		left: 20px;
	}

	.elem-4 {
		right: 20px;
	}






	.collaborate__cards {
		grid-template-columns: repeat(1, 1fr);
	}





	.footer__form {
		flex-direction: column;
	}

	.footer__bot-logo {
		gap: 8px;
	}

	.footer__bot {
		gap: 12px;
		flex-wrap: wrap;
	}
}