@charset "UTF-8";
@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url(../fonts/Montserrat-Bold.woff2) format('woff2'),
		url(../fonts/Montserrat-Bold.woff) format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url(../fonts/Montserrat-Regular.woff2) format('woff2'),
		url(../fonts/Montserrat-Regular.woff) format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: SF;
	font-display: swap;
	src: url(../fonts/SF-Pro-Display-Regular.woff2) format('woff2'),
		url(../fonts/SF-Pro-Display-Regular.woff) format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: SF;
	font-display: swap;
	src: url(../fonts/SF-Pro-Display-Medium.woff2) format('woff2'),
		url(../fonts/SF-Pro-Display-Medium.woff) format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: SF;
	font-display: swap;
	src: url(../fonts/SF-Pro-Display-Semibold.woff2) format('woff2'),
		url(../fonts/SF-Pro-Display-Semibold.woff) format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: SFProText;
	font-display: swap;
	src: url(../fonts/SFProText-Bold.woff2) format('woff2'),
		url(../fonts/SFProText-Bold.woff) format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: SFProText;
	font-display: swap;
	src: url(../fonts/SFProText-Regular.woff2) format('woff2'),
		url(../fonts/SFProText-Regular.woff) format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: SFProText;
	font-display: swap;
	src: url(../fonts/SFProText-Semibold.woff2) format('woff2'),
		url(../fonts/SFProText-Semibold.woff) format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: Montserrat;
	font-display: swap;
	src: url(../fonts/Montserrat-SemiBold.woff2) format('woff2'),
		url(../fonts/Montserrat-SemiBold.woff) format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: SF;
	font-display: swap;
	src: url(../fonts/SF-Pro-Display-Bold.woff2) format('woff2'),
		url(../fonts/SF-Pro-Display-Bold.woff) format('woff');
	font-weight: 700;
	font-style: normal;
}

:root {
	--primary: #000;
	--secondary: rgba(0, 184, 129, 1);
	--gradient: linear-gradient(90deg, #8cffb9 0%, #8cfeb9 67.04%, #b2aafa 100%);
}

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
:after,
:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body,
html {
	height: 100%;
	min-width: 320px;
}

body {
	color: var(--primary);
	line-height: 1;
	font-family: SF;
	font-size: 16px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea {
	font-family: SF;
	font-size: inherit;
	line-height: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type='number'] {
	-moz-appearance: textfield;
}

button {
	cursor: pointer;
	color: inherit;
	background-color: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

html summary::-webkit-details-marker {
	display: none;
}

body img {
	max-width: 100%;
}

.lock body {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	-ms-scroll-chaining: none;
	overscroll-behavior: none;
}

.wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

@supports (overflow: clip) {
	.wrapper {
		overflow: clip;
	}
}

.wrapper > main {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.wrapper > * {
	min-width: 0;
}

[class*='__container'] {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 15px;
}

.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	height: 56px;
	border-radius: 32px;
	padding: 4px 24px;
	background: var(--secondary);
	font-weight: 600;
	-webkit-transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.button span {
	position: relative;
	z-index: 2;
}

.button:hover {
	background: rgba(0, 184, 129, 0.8);
}

.button--big {
	height: 64px;
}

.button--black {
	background: var(--primary);
}

.button--black:hover {
	background: #303131;
}

.button--border {
	background: 0 0;
	border: 1px solid var(--secondary);
	color: var(--primary);
}

.button--border:hover {
	color: #fff;
}

.button--fw {
	width: 100%;
}

input[type='email'],
input[type='tel'],
input[type='text'],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.input {
	width: 100%;
	display: block;
	padding: 0 20px;
	border-radius: 27px;
	border: 1px solid #ececec;
	background: #fff;
	height: 56px;
	outline: 0;
	line-height: 24px;
	letter-spacing: 0.32px;
	color: #000;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.input::-webkit-input-placeholder {
	color: #6f7a83;
}

.input::-moz-placeholder {
	color: #6f7a83;
}

.input:-ms-input-placeholder {
	color: #6f7a83;
}

.input::-ms-input-placeholder {
	color: #6f7a83;
}

.input::placeholder {
	color: #6f7a83;
}

.input._form-focus {
	-webkit-box-shadow: 0 0 0 2px #ececec;
	box-shadow: 0 0 0 2px #ececec;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
	-ms-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
	-ms-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.input[placeholder]:not(
		[data-placeholder-nohiden]
	):focus::-webkit-input-placeholder {
	opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
	opacity: 0;
}

.input[placeholder]:not(
		[data-placeholder-nohiden]
	):focus:-ms-input-placeholder {
	opacity: 0;
}

.input[placeholder]:not(
		[data-placeholder-nohiden]
	):focus::-ms-input-placeholder {
	opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
	opacity: 0;
}

textarea.input {
	resize: none;
	padding: 0 0;
}

.options {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.options__item {
	position: relative;
	cursor: pointer;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.options__item:not(:last-child) {
	margin-bottom: 5px;
}

.options__input {
	width: 0;
	height: 0;
	opacity: 0;
	position: absolute;
}

.options__input:checked + .options__label {
	background: var(--secondary);
	color: #fff;
}

.options__label {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	width: 100%;
	gap: 10px;
	padding: 8px;
	background: #fff;
	border-radius: 32px;
	height: 57px;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	-webkit-box-shadow: 0 0 0 1px var(--secondary);
	box-shadow: 0 0 0 1px var(--secondary);
	color: var(--secondary);
}

.options__label:hover {
	opacity: 0.8;
}

.options__text {
	color: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.select {
	min-width: 0;
	position: relative;
}

.select__body {
	position: relative;
}

.select__title {
	color: inherit;
	text-align: left;
	border-radius: 27px;
	border: 1px solid var(--gray-100, #ececec);
	background: var(--white, #fff);
	cursor: pointer;
	height: 56px;
	width: 100%;
	padding: 12px;
}

.select__value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.select__value > * {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.select__value:after {
	content: '';
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	background: url(../img/icons/chevron-down.svg) center/100% 100% no-repeat;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

._select-open .select__value:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
	content: attr(data-pseudo-label);
	opacity: 0.5;
}

.select__content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.select__text {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.select__input {
	width: 100%;
	background-color: transparent;
	height: 100%;
}

.select__options {
	color: #000;
	position: absolute;
	top: calc(100% - 1px);
	border-radius: 27px;
	border: 1px solid var(--gray-100, #ececec);
	background: var(--white, #fff);
	min-width: 100%;
	left: 0;
	padding: 10px 0 5px 0;
}

.select__scroll {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 200px;
}

.select__option {
	width: 100%;
	text-align: left;
	cursor: pointer;
	padding: 10px 15px;
	color: inherit;
}

.select__option._select-selected {
	background-color: #eee;
}

.select__row {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
}

.select__asset {
	width: 32px;
	height: 32px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.select__asset img {
	max-height: 100%;
	max-width: 100%;
}

.select__text {
	line-height: 24px;
	letter-spacing: 0.32px;
}

.select--show-top .select__options {
	top: auto;
	bottom: calc(100% - 1px);
	padding: 5px 0 10px 0;
}

._select-tag {
	cursor: pointer;
}

[class*='-ibg'] {
	position: relative;
}

[class*='-ibg'] img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
}

[class*='-ibg--contain'] img {
	-o-object-fit: contain;
	object-fit: contain;
}

.title-h2 {
	font-size: 34px;
	font-weight: 700;
	line-height: 132%;
	letter-spacing: -0.34px;
}

.title-h1 {
	font-size: 56px;
	font-weight: 700;
	line-height: 132%;
	letter-spacing: -0.56px;
}

.nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 4px;
	border-radius: 12px;
	background: var(--grey-black-10, rgba(12, 33, 51, 0.05));
	-webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06) inset,
		0 1px 2px 0 rgba(0, 0, 0, 0.06) inset;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06) inset,
		0 1px 2px 0 rgba(0, 0, 0, 0.06) inset;
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content;
	margin: 0 auto;
	padding: 4px;
}

.nav__item {
	padding: 7px 8px 9px;
	text-align: center;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.32px;
	border-radius: 8px;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	min-width: 205px;
}

.nav__item:hover {
	color: var(--secondary);
}

.nav__item._tab-active {
	background: var(--white, #fff);
	-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05),
		0 2px 5px 0 rgba(0, 0, 0, 0.06), 0 6px 12px 0 rgba(0, 0, 0, 0.12);
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 2px 5px 0 rgba(0, 0, 0, 0.06),
		0 6px 12px 0 rgba(0, 0, 0, 0.12);
}

.nav__item._tab-active:hover {
	color: var(--primary);
}

.subtitle {
	color: #6f7a83;
	font-family: Montserrat;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
}

.link {
	display: inline-block;
	padding: 8px 18.5px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.32px;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	border-radius: 18px;
}

.link:hover {
	background: #f3f3f3;
}

.form-item__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 16px;
}

.form-item__top:not(:last-child) {
	margin-bottom: 13px;
}

.form-item__label {
	line-height: 24px;
	letter-spacing: 0.32px;
}

.form-item__tippy {
	width: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 16px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.nav-slider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 170px;
}

.nav-slider__arrow {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 2px solid #000;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.nav-slider__arrow.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.3;
}

.nav-slider__arrow:hover {
	background: #d1d1d1;
}

.nav-slider__pagination {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
}

.bottom-block {
	position: fixed;
	bottom: 0;
	left: 0;
	border-radius: 32px 24px 0 0;
	background: var(--green-light, #e5fbba);
	-webkit-box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.14);
	box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.14);
	width: 100%;
	z-index: 3;
	padding: 20px 24px 24px;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	-webkit-transform: translateY(150%);
	-ms-transform: translateY(150%);
	transform: translateY(150%);
}

.down .bottom-block {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.up .bottom-block {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.hide-block .bottom-block {
	opacity: 0;
	-webkit-transform: translateY(150%) !important;
	-ms-transform: translateY(150%) !important;
	transform: translateY(150%) !important;
}

.hide .bottom-block {
	opacity: 0;
	-webkit-transform: translateY(150%) !important;
	-ms-transform: translateY(150%) !important;
	transform: translateY(150%) !important;
}
.bottom-block::after {
	content: '';
	border-radius: 10px;
	background: var(--property-1-diagram-300, #b0b0b0);
	position: absolute;
	height: 2px;
	width: 22px;
	top: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.bottom-block__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 16px;
}

.bottom-block__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.bottom-block__icon {
	width: 32px;
	height: 32px;
}

.bottom-block__text {
	font-size: 14px;
	font-weight: 600;
	line-height: 155%;
	letter-spacing: 0.28px;
}

.bottom-block__button {
	width: 110px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	height: 48px;
}

.header {
	position: relative;
}

.header__top {
	padding: 20px 0;
	background: #e5fbba;
	overflow: hidden;
	position: relative;
	width: 100% !important;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.header.dark .header__language-box {
	background-color: #000;
}
.header.dark .header__language-box-top {
	border-radius: 12px;
	background: #262626;
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 2px 0px rgba(0, 0, 0, 0.06) inset;
}
.header.dark .header__language-box-button {
	color: #fff;
}
.header.dark .header-language__box-item {
	color: #fff;
}
.header.dark .header-currency__box-item.active {
	color: #fff;
}
.header.dark .header__language-box-button.active {
	/* background: #484848; */
}
.header.dark .header__language-box-span {
	background: #484848;
}
.close-banner .header__top {
	height: 0;
	overflow: hidden;
	padding: 0;
	opacity: 0;
	visibility: hidden;
}
.hide .header__top {
}
.header__top-row {
	position: relative;
	text-align: center;
}

.header__top-text {
	line-height: 24px;
	letter-spacing: 0.32px;
	padding: 0 30px;
}

.header__top-text a {
	font-family: Montserrat;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.32px;
	text-decoration-line: underline;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	margin-left: 5px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.header__top-text a:hover {
	color: var(--secondary);
}

.header__top-close {
	position: absolute;
	top: 0;
	right: 0;
}

.header__main {
	width: 100%;
}
.header.dark {
	background: #000;
}
.header.dark .header__link:hover {
	color: #00b881;
	cursor: pointer;
	background: #0c2515;
}
.header.dark .menu-mob__content {
	background: #000;
	color: #fff;
}
.header.dark .menu-mob__title {
	color: #fff;
}
.header.dark .menu-mob__list a {
	color: #fff;
}
.header.dark .header__main {
	background: #000;
}
.header.dark .button--border {
	color: #fff;
}
.header.dark .menu-mob__item + .menu-mob__item {
	border-top: 1px solid #1f1f1f;
}
.menu-mob__title .menu-mob__icon {
	color: #fff;
	transition: all 0.3s ease-in;
}
.menu-mob__title._spoller-active .menu-mob__icon {
	color: rgba(0, 184, 129, 1);
}
@media (max-width: 1024px) {
	.header__main {
		padding: 10px 0;
	}
}
.header__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 16px;
}

.header__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 60px;
}
.menu-mob__text svg {
	display: none;
}
.menu-mob__text.active {
	display: flex;
	gap: 10px;
	align-items: end;
}
.menu-mob__text.active svg {
	display: flex;
}
.header__logo {
	display: block;
	flex-shrink: 0;
}

.header__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
}

.header__link {
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.32px;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	display: inline-block;
	padding: 8px 24px;
	border-radius: 32px;
}
.header__right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header__link:hover {
	background: #f3f3f3;
}

.header__button {
	height: 40px;
	min-width: 104px;
}
.header__language {
	position: relative;
}
.header__language:hover .header__language-box {
	/* display: block; */
}
.header__language-top-arrow.active {
	transition: all 0.3s ease-in;
}
.header__language-top-arrow.active {
	transform: rotate(180deg) translateY(3px);
	& svg path {
		stroke: #00b881;
	}
}
.header__language-top {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 28px 16px;
	cursor: pointer;
}
.header__language-top-arrow {
	width: 24px;
	height: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: rotate(0deg) translateY(0px);
	transition: all 0.3s ease-in;
}
.header__language-box {
	position: absolute;
	width: 307px;
	height: max-content;
	flex-shrink: 0;
	border-radius: 32px;
	background: var(--white, #fff);
	box-shadow: 0px 8.38944px 10.01724px 0px rgba(31, 64, 60, 0.07),
		0px 67px 80px 0px rgba(31, 64, 60, 0.04);
	z-index: 100;
	left: -14rem;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	z-index: 4;
	position: absolute;
	top: 85px;
	padding: 24px;
	z-index: 4;
	background: #fff;
	border-radius: 32px;
	opacity: 0;
	transition: all 0.3s ease;
	visibility: hidden;
	pointer-events: all;
}
.header__language-box.active {
	opacity: 1;
	pointer-events: all;
	transition: all 0.3s ease-in;
}
.header__language-box-top {
	border-radius: 12px;
	background: rgba(12, 33, 51, 0.05);
	box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 2px 0px rgba(0, 0, 0, 0.06) inset;
	display: flex;
	padding: 4px;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
	margin-bottom: 13px;
	position: relative;
}
@media (max-width: 768px) {
	html.watcher.webp.down .button_af6a {
		margin-bottom: 114px !important;
		transition: all 0.3s ease;
	}
	html.watcher.webp.down.hide-block .button_af6a {
		margin-bottom: 20px !important;
		transition: all 0.3s ease;
	}
	html.watcher.webp.up .button_af6a {
		margin-bottom: 114px !important;
		transition: all 0.3s ease;
	}
	html.watcher.webp.hide .button_af6a {
		margin-bottom: 20px !important;
		transition: all 0.3s ease;
	}
	html.watcher.webp.up.hide-block .button_af6a {
		margin-bottom: 20px !important;
		transition: all 0.3s ease;
	}
	.button_af6a {
		transition: all 0.3s ease;
	}
}
.header__language-box-button {
	color: rgba(12, 33, 51, 0.78);
	text-align: center;
	width: 50%;
	position: relative;
	z-index: 1;
	cursor: pointer;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px;
	padding: 9px;
	letter-spacing: 0.32px;
}
.header__language-box-button.active {
	color: var(--basic-safe-black, #000005);
}
.header__language-box-span {
	position: absolute;
	transition-duration: 0.5s;
	transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
	will-change: transform;
	transition-property: transform;
	top: 0.25rem;
	bottom: 0.25rem;
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
	box-shadow: rgba(12, 28, 49, 0.1) 0px 2px 6px,
		rgba(12, 28, 49, 0.05) 0px 1px 4px;
	width: calc(50% - 4px);
	transform: translateX(0%);
	border-radius: 8px;

	background: var(--basic-white, #fff);
	/* card-shadow/z-1 */
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.05),
		0px 2px 5px 0px rgba(0, 0, 0, 0.06), 0px 6px 12px 0px rgba(0, 0, 0, 0.12);
	transition: all 0.5s ease;
}
.header__language-box-span.active {
	transform: translateX(96%);
}
.header__language-box-language {
	transition: all 0.1s ease;
	position: relative;
	height: max-content;
	opacity: 1;
}
.header__language-box-language.active {
	pointer-events: none;
	opacity: 0;
	height: 0px;
	transition: all 0.1s ease;
}
.header__language-box-language p {
	color: #8a93a6;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
	margin-bottom: 12px;
}
.header__language-box-currency p {
	color: #8a93a6;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
	margin-bottom: 12px;
}
.header-language__box-list {
	display: flex;
	flex-direction: column;
}
.header-currency__box-item {
	padding: 12px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-currency__box-item,
.header-language__box-item {
	padding: 12px 0;
	color: var(--black, #000);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-language__box-item svg {
	display: none;
}
.header-language__box-item.active svg {
	display: block;
}
.header-currency__box-item svg {
	display: none;
}
.header-currency__box-item.active svg {
	display: block;
}

.header__language-box-currency {
	opacity: 0;
	position: relative;
	pointer-events: none;
	height: 0;
}
.header__language-box-currency.active {
	opacity: 1;
	height: max-content;
	pointer-events: all;
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.menu__item {
	position: relative;
}

.menu__item:hover .menu__sublist-box {
	opacity: 1;
	z-index: 4;
	pointer-events: all;
	visibility: visible;
}
/* .menu__item:hover .menu__sublist {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
} */

.menu__item:hover .menu__link {
	color: var(--secondary);
}

.menu__item:hover .menu__link img {
	-webkit-transform: scaleY(-1);
	-ms-transform: scaleY(-1);
	transform: scaleY(-1);
}

.menu__link {
	font-family: Montserrat;
	font-weight: 600;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.menu__sublist-subitem {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.menu__item .menu__link svg {
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.menu__item:hover .menu__link svg {
	transform: rotate(180deg);
	/* fill: #00b881; */
}
.menu__item:hover .menu__link svg path {
	stroke: #00b881;
}
.menu__sublist .menu__sublist-sublink {
	display: flex;
	flex-direction: row;
	gap: 12px;
}
.header__language:hover .header__language-box {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
}
.footer__socials-list li svg rect {
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.footer__socials-list li:hover svg rect {
	fill: #e5fbba;
}
.header__language:hover .header__language-top-arrow {
	transform: rotate(180deg) translateY(3px);
}
.header__language:hover .header__language-top-arrow svg path {
	stroke: #00b881;
}
.menu__link img {
	width: 24px;
	height: 24px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}
.menu__item {
	position: relative;
	padding: 30px 0;
}
.menu__sublist-left-icon {
	width: 158px;
	height: 36px;
}
.menu__sublist-box {
	position: absolute;
	top: 85px;
	padding: 24px;
	z-index: -1;
	left: -50px;

	background: #fff;
	border-radius: 32px;
	opacity: 0;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	visibility: hidden;
	pointer-events: none;
	width: 768px;
	filter: drop-shadow(0px 8.389px 10.017px rgba(31, 64, 60, 0.07))
		drop-shadow(0px 67px 80px rgba(31, 64, 60, 0.04));
}
.header.dark .menu__sublist-box {
	border-radius: 32px;
	background: #000;
}
.header.dark .header__top {
	background: #141414;
}
.header.dark .menu__sublist li a {
	color: #fff;
}
.header.dark .menu__sublist-box-bottom {
	border-top: 1px solid #1f1f1f;
}
.header .menu__sublist-box.dots {
	width: 200px;
}
.header .menu__sublist-box.dots .menu__sublist {
	grid-template-columns: repeat(1, 1fr);
}
.footer.dark .footer__mob {
	border-top: 1px solid #323232;
}
.menu__sublist-right,
.menu__sublist-left {
	padding-top: 16px;
	padding-left: 22px;
}
.menu__sublist-right p,
.menu__sublist-left p {
	color: var(--gray, #6f7a83);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
	margin-bottom: 1rem;
}
.menu__sublist {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 0px;
}
.menu-sublist__right-images {
	display: flex;
	gap: 1rem;
}
.menu__sublist.d-block {
	display: none;
}
.menu__sublist-box-bottom {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	margin-top: 1rem;
	border-top: 1px solid #ececec;
}
.menu__sublist li {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px 22px;
}
.menu__sublist li a {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.32px;
	transition: all 0.3s ease;
}
.menu__sublist li:hover a {
	color: #00b881 !important;
}
.menu__sublist p {
	color: var(--gray, #6f7a83);
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
}
.menu__sublist a {
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	font-family: Montserrat;
	font-weight: 600;
}

.menu__sublist a:hover {
	color: var(--secondary);
}

.icon-menu {
	display: none;
}

.menu-mob {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0px 0px 64px 0px;
	background: rgba(0, 0, 0, 0.7);
	z-index: 5;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.menu-open .menu-mob {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.menu-mob__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
}

.menu-mob__content {
	min-height: 100%;
	background: #fff;
	width: 100%;
	-webkit-box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	padding: 24px 16px 16px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.menu-mob__close {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #f3f3f3;
}

.menu-mob__logo {
	text-align: center;
	max-width: 100%;
	margin: 0 auto 60px;
}
.header.dark .menu__sublist li {
	transition: all 0.3s ease-in;
}
.header.dark .menu__sublist li:hover {
	background: #141414;
	border-radius: 16px;
}
@media (max-width: 1300px) {
	.menu__item {
		font-size: 14px;
		text-wrap: nowrap;
	}
	.header__button,
	.header__link {
		padding: 8px 16px;
		text-wrap: nowrap;
	}
	.menu__list {
		gap: 20px;
	}
	.header__buttons {
		font-size: 14px;
	}
	.menu__sublist p {
		text-wrap: wrap;
	}
}
@media (max-width: 1200px) {
	.menu__sublist-box {
		left: -148px;
	}
}
@media (max-width: 1150px) {
	.header__left {
		gap: 30px;
	}
	.header__buttons {
		gap: 8px;
	}
	.header__language-top {
		padding: 0;
	}
	.header__language-box {
		top: 60px;
		left: -15rem;
	}
}
@media (max-width: 1024px) {
	.icon-menu {
		display: flex !important;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		position: relative;
		width: 24px;
		height: 24px;
		z-index: 5;
	}
	.header__menu {
		display: none;
	}
	.header__language-box {
		left: -13rem;
		top: 55px;
	}
}
@media (max-width: 768px) {
	.header__language {
		display: none;
	}
}
.menu-mob__subject {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	padding-top: 20px;
	margin-top: auto;
}
.menu-mob__title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-right: 16px;

	color: #000;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: -0.36px;
}

.menu-mob__title._spoller-active .menu-mob__icon {
	color: var(--secondary);
	-webkit-transform: scaleY(-1) rotate(180deg);
	-ms-transform: scaleY(-1) rotate(180deg);
	transform: scaleY(-1) rotate(180deg);
}

.menu-mob__icon {
	width: 24px;
	height: 24px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	color: var(--primary);
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.menu-mob__icon svg {
	max-width: 100%;
	stroke: #000;
}

.header.dark .menu-mob__icon svg {
	max-width: 100%;
	stroke: #fff;
}
.header.dark .header__language-top-arrow svg path {
	stroke: #fff;
}

.menu-mob__title._spoller-active .menu-mob__icon {
	color: var(--secondary);
	-webkit-transform: scaleY(-1) rotate(180deg);
	-ms-transform: scaleY(-1) rotate(180deg);
	transform: scaleY(-1) rotate(180deg);
}

.menu-mob__list {
	display: -ms-grid;
	display: grid;
	-webkit-box-flex: 1;
	overflow-y: auto;
}

.menu-mob__list a {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.36px;
}

details summary::-webkit-details-marker,
details summary::marker {
	display: none;
	content: '';
}

.menu-mob__item {
	padding: 18px 0;
}

.menu-mob__item + .menu-mob__item {
	border-top: 1px solid #ccc;
}

.menu-mob__list span {
	color: #3f3f46;
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: -0.36px;
}

.menu-mob__body {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 16px;
}

.menu-mob__text a {
	color: #6f7a83;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
}

.menu-mob__buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 20px;
	margin-top: auto;
}

.menu-mob__button {
	height: 40px;
}

.menu-mob__bottom {
	padding-top: 16px;
	border-top: 1px solid rgba(221, 221, 221, 0.1);
}

.menu-mob__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.menu-mob__row:not(:last-child) {
	margin-bottom: 2px;
}

.menu-mob__label {
	font-size: 12px;
	line-height: 162%;
	letter-spacing: 0.24px;
}

.menu-mob__copy {
	color: #8e939d;
	font-size: 10px;
	font-weight: 400;
	line-height: 162%;
	letter-spacing: 0.2px;
}

.menu-mob__number {
	color: #4b4b4b;
	font-size: 10px;
	line-height: 162%;
	letter-spacing: 0.2px;
}

.grow__container {
	background: var(--gradient);
}

.grow__wrap {
	padding: 64px 0;
	text-align: center;
	max-width: 848px;
	margin: 0 auto;
}

.grow__title:not(:last-child) {
	margin-bottom: 24px;
}

.grow__text {
	line-height: 150%;
	letter-spacing: 0.32px;
}

.grow__text:not(:last-child) {
	margin-bottom: 32px;
}

.grow__button {
	max-width: 574px;
	width: 100%;
}

.help__container {
	background: var(--primary);
	color: #fff;
}

.help__wrap {
	padding: 80px 0;
}

.help__subtitle {
	text-align: center;
}

.help__subtitle p {
	display: inline-block;
	background: var(
		--gradient,
		linear-gradient(90deg, #8cffb9 0, #8cfeb9 67.04%, #b2aafa 100%)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: Montserrat;
	font-weight: 600;
	line-height: 1.5;
}

.help__subtitle:not(:last-child) {
	margin-bottom: 16px;
}

.help__title {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}

.help__title:not(:last-child) {
	margin-bottom: 32px;
}

.help__grid-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [ 2];
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	max-width: 720px;
	margin: 0 auto;
}

.help-card {
	border-radius: 24px;
	border: 1px solid #10100f;
	background: #0e0e0e;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	padding: 24px;
}

.help-card:hover {
	background: rgba(14, 14, 14, 0.8);
}

.help-card__icon {
	margin-bottom: 16px;
	width: 32px;
	height: 32px;
	padding: 6px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 8px;
	background: var(--gradient);
}

.help-card__icon--yellow {
	background: #e5fbba;
}

.help-card__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
	margin-bottom: 8px;
}

.help-card__text {
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.28px;
	max-width: 296px;
}

.help-card__text:not(:last-child) {
	margin-bottom: 16px;
}

.help-card__button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 4px;
	border-radius: 32px;
	border: 1px solid #272c30;
	background: #1a1e22;
	padding: 4px 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.28px;
	text-transform: capitalize;
	font-family: Montserrat;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.help-card__button:hover {
	background: rgba(26, 30, 34, 0.8);
}

.help-card__button:hover img {
	-webkit-transform: translateX(4px);
	-ms-transform: translateX(4px);
	transform: translateX(4px);
}

.help-card__button img {
	width: 16px;
	height: 16px;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.faq {
	padding: 120px 0 80px;
}

.faq__title {
	text-align: center;
}

.faq__title:not(:last-child) {
	margin-bottom: 8px;
}

.faq__subtitle {
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.faq__subtitle:not(:last-child) {
	margin-bottom: 72px;
}

.faq__nav:not(:last-child) {
	margin-bottom: 64px;
}

.faq-spollers {
	display: -ms-grid;
	display: grid;
	gap: 16px;
}

.faq-spollers__item {
	border-radius: 8px;
	border: 1px solid var(--property-1-diagram-100, #ddd);
	background: #fff;
}

.faq-spollers__title {
	padding: 16px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.faq-spollers__title._spoller-active .faq-spollers__icon {
	color: var(--secondary);
	-webkit-transform: scaleY(-1) rotate(180deg);
	-ms-transform: scaleY(-1) rotate(180deg);
	transform: scaleY(-1) rotate(180deg);
}

.faq-spollers__icon {
	width: 24px;
	height: 24px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	color: var(--primary);
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.faq-spollers__icon svg {
	max-width: 100%;
	stroke: currentColor;
}

.faq-spollers__body {
	padding: 0 16px 16px;
}

.faq-spollers__text {
	color: #5e5e5e;
	line-height: 24px;
	letter-spacing: 0.32px;
	border-top: 1px solid #ddd;
	padding-top: 16px;
}

.sale {
	padding: 120px 0 80px;
}

.sale__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 32px;
}

.sale__head:not(:last-child) {
	margin-bottom: 64px;
}

.sale__subtitle {
	color: #6f7a83;
	font-family: Montserrat;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
}

.sale__title {
	max-width: 600px;
	text-align: right;
}

.sale__block:not(:last-child) {
	margin-bottom: 80px;
}

.sale__block:nth-child(even) .sale-item__image {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

.sale-item {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [ 2];
	grid-template-columns: repeat(2, 1fr);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
}

.sale-item__title:not(:last-child) {
	margin-bottom: 16px;
}

.sale-item__text {
	color: #3f3f46;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.sale-item__text:not(:last-child) {
	margin-bottom: 29px;
}

.sale-item__subtitle {
	color: #6f7a83;
	font-family: Montserrat;
	font-weight: 600;
	line-height: 24px;
	text-transform: uppercase;
}

.sale-item__subtitle:not(:last-child) {
	margin-bottom: 48px;
}

.sale-item__image img {
	max-width: 100%;
}

.main-block {
	background: linear-gradient(
		13deg,
		#fff 17.61%,
		#82c6c0 56.54%,
		#96bbf2 91.61%
	);
	z-index: 2;
	position: relative;
}

.main-block__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 90px;
}

.main-block__content {
	padding: 100px 0;
	width: 49.2063492063%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.main-block__title {
	font-size: 64px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.64px;
}

.main-block__title:not(:last-child) {
	margin-bottom: 16px;
}

.main-block__text {
	max-width: 600px;
	font-size: 22px;
	font-family: Montserrat;
	line-height: 164%;
}

.main-block__text:not(:last-child) {
	margin-bottom: 48px;
}

.main-block__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 13px;
}

.main-block__button {
	min-width: 164px;
}

.main-block__sliders {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -ms-grid;
	display: grid;
	pointer-events: none;
	min-width: 0;
	-ms-grid-columns: (1fr) [ 2];
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.main-block__slider--3 {
	display: none !important;
}

@media (max-width: 768px) {
	.main-block__slider--3 {
		display: block !important;
	}
	.main-block__slider--1,
	.main-block__slider--2 {
		display: none !important;
	}
}

.main-block__sliders .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.main-block__sliders .swiper-slide {
	height: 340px;
}

.main-block__slider {
	width: 100%;
	min-width: 0;
	height: 740px;
}

.main-block__image-ibg {
	border-radius: 18px;
	overflow: hidden;
	height: 100%;
}

.why {
	padding: 120px 0 80px;
}

.why__top {
	display: flex;
	justify-content: space-evenly;
	gap: 10px;
}

.why__top:not(:last-child) {
	margin-bottom: 56px;
}

.why__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.why__image {
	width: 39.8412698413%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.why__image img {
	max-width: 100%;
}

.why__content {
	max-width: 624px;
}

.why__title:not(:last-child) {
	margin-bottom: 100px;
}

.why__grid-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [ 2];
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 18px;
}

.why__bottom {
	margin-top: 64px;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [ 4];
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.why-item-top {
	text-align: center;
	padding: 27px 16px 12px;
}

.why-item-top__images {
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 24px;
}
.why-item-top.mob {
	display: none;
}
@media (max-width: 768px) {
	.why-item-top {
		display: none;
	}
}
@media (max-width: 768px) {
	.why-item-top.mob {
		display: block;
	}
}
@media (max-width: 768px) {
	.why__top {
	}
}
.why-item-top__images img {
	max-height: 100%;
	width: 100%;
}

.why-item-top__text {
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.28px;
	color: #6f7a83;
}

.why-item {
	border-radius: 12px;
	background: #fff;
	-webkit-box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	padding: 24px;
}

.why-item:first-child .why-item__icon {
	background: #ff8a00;
	border-color: #ffe6c9;
}

.why-item:nth-child(2) .why-item__icon {
	color: #3d14af;
	background: #bba3ff;
	border-color: #e7dfff;
}

.why-item:nth-child(3) .why-item__icon {
	background: #aef2d7;
	border-color: #e5fdf3;
}

.why-item:nth-child(4) .why-item__icon {
	background: #daeb15;
	border-color: #fbffca;
}

.why-item__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 7px solid #ffe6c9;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.why-item__icon:not(:last-child) {
	margin-bottom: 16px;
}

.why-item__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.why-item__title:not(:last-child) {
	margin-bottom: 12px;
}

.why-item__text {
	color: #52525b;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.why-item-info {
	padding: 3px 0 3px 24px;
	position: relative;
}

.why-item-info::after {
	content: '';
	left: 0;
	width: 4px;
	height: 100%;
	position: absolute;
	top: 0;
	border-radius: 3px;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#01bbdf),
		to(#01dfa5)
	);
	background: linear-gradient(180deg, #01bbdf 0, #01dfa5 100%);
}

.why-item-info__value {
	font-size: 32px;
	line-height: 132%;
	letter-spacing: -0.32px;
	margin-bottom: 8px;
}

.why-item-info__text {
	color: #6f7a83;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.vision {
	padding: 60px 0;
}

.vision__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 120px;
}

.vision__content {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.vision__subtitle:not(:last-child) {
	margin-bottom: 24px;
}

.vision__title:not(:last-child) {
	margin-bottom: 24px;
}

.vision__text {
	color: #3f3f46;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.vision__text > :not(:last-child) {
	margin-bottom: 8px;
}

.vision__grid-layout {
	margin-top: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}

.vision__image-ibg {
	width: 41.2698412698%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 32px;
	overflow: hidden;
	aspect-ratio: 520/580;
}

.vision__image-mob-ibg {
	border-radius: 32px;
	overflow: hidden;
	height: 312px;
	margin: 27px 0;
}

@media (max-width: 768px) {
	.vision__image-mob-ibg img {
		object-fit: contain;
	}
}

.key {
	padding: 60px 0;
}

.key__head {
	text-align: center;
	max-width: 915px;
	margin: 0 auto;
}

.key__head:not(:last-child) {
	margin-bottom: 96px;
}

.key__title:not(:last-child) {
	margin-bottom: 8px;
}

.key__subtitle {
	color: #6f7a83;
	font-size: 22px;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.key__subtitle:not(:last-child) {
	margin-bottom: 40px;
}

.key__button {
	height: 40px;
	width: 100%;
	max-width: 444px;
}

.key__grid-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [ 3];
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.item-key {
	border-radius: 24px;
	border: 1px solid #10100f;
	background: #0e0e0e;
	padding: 38px 24px;
	color: #fff;
}

.item-key__icon {
	width: 32px;
	height: 32px;
}

.item-key__icon:not(:last-child) {
	margin-bottom: 56px;
}

.item-key__icon img {
	max-height: 100%;
}

.item-key__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.item-key__title:not(:last-child) {
	margin-bottom: 8px;
}

.item-key__text {
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.28px;
	max-width: 296px;
}

.your {
	padding: 60px 0 50px;
}

.your__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}

.your__head:not(:last-child) {
	margin-bottom: 80px;
}

.your__title {
	max-width: 70%;
}

.your__label {
	position: absolute;
	z-index: 2;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	gap: 4px;
	background: #fff;
	padding: 4px 10px;
	line-height: 24px;
	letter-spacing: 0.32px;
	-webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.1),
		1px 11px 11px 0 rgba(0, 0, 0, 0.09), 1px 24px 14px 0 rgba(0, 0, 0, 0.05),
		2px 42px 17px 0 rgba(0, 0, 0, 0.01), 3px 66px 19px 0 transparent;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.1),
		1px 11px 11px 0 rgba(0, 0, 0, 0.09), 1px 24px 14px 0 rgba(0, 0, 0, 0.05),
		2px 42px 17px 0 rgba(0, 0, 0, 0.01), 3px 66px 19px 0 transparent;
}

.your__label img {
	position: relative;
}

.your__label--1 {
	top: -10px;
	left: 50%;
	-webkit-transform: translate(-50%, 0) rotate(-12deg);
	-ms-transform: translate(-50%, 0) rotate(-12deg);
	transform: translate(-50%, 0) rotate(-12deg);
}

.your__label--1 img {
	max-width: 32px;
}

.your__label--2 {
	left: -10px;
	-webkit-transform: rotate(15deg);
	-ms-transform: rotate(15deg);
	transform: rotate(15deg);
	bottom: 133px;
}

.your__label--2 img {
	max-width: 32px;
}

.your__label--3 {
	bottom: 120px;
	right: 32.183908046%;
	-webkit-transform: rotate(-15deg);
	-ms-transform: rotate(-15deg);
	transform: rotate(-15deg);
	min-height: 43px;
}

.your__label--3 img {
	max-width: 25px;
}

.your__label--4 {
	bottom: 20px;
	left: -40px;
	-webkit-transform: rotate(-12deg);
	-ms-transform: rotate(-12deg);
	transform: rotate(-12deg);
	min-height: 42px;
}

.your__label--4 img {
	max-width: 25px;
}

.your__label--5 {
	bottom: 35px;
	right: 29.4252873563%;
	-webkit-transform: rotate(15deg);
	-ms-transform: rotate(15deg);
	transform: rotate(15deg);
	border-radius: 9px;
	min-height: 27px;
}

.your__label--5 img {
	max-width: 18px;
}

.your__row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 130px;
}

.your__row:not(:last-child) {
	margin-bottom: 80px;
}

.your__left {
	width: 435px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.your__image-ibg {
	border-radius: 20px;
	aspect-ratio: 1;
	-webkit-box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.09),
		0 67px 40px 0 rgba(0, 0, 0, 0.05), 0 119px 48px 0 rgba(0, 0, 0, 0.01),
		0 186px 52px 0 transparent;
	box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.09),
		0 67px 40px 0 rgba(0, 0, 0, 0.05), 0 119px 48px 0 rgba(0, 0, 0, 0.01),
		0 186px 52px 0 transparent;
}

.your__image-ibg > img {
	border-radius: 20px;
	overflow: hidden;
}

.your__decor {
	position: absolute;
}

.your__decor img {
	position: relative;
}

.your__decor--1 {
	top: 0;
	left: 0;
	-webkit-transform: translate(-51.5463917526%, -32.9896907216%);
	-ms-transform: translate(-51.5463917526%, -32.9896907216%);
	transform: translate(-51.5463917526%, -32.9896907216%);
	width: 22.2988505747%;
}

.your__decor--2 {
	-webkit-transform: translate(80.1587301587%, -49.2063492063%);
	-ms-transform: translate(80.1587301587%, -49.2063492063%);
	transform: translate(80.1587301587%, -49.2063492063%);
	top: 0;
	right: 0;
	width: 28.7356321839%;
}

.your__decor--3 {
	bottom: 0;
	right: 0;
	-webkit-transform: translate(34.9315068493%, 15.0684931507%);
	-ms-transform: translate(34.9315068493%, 15.0684931507%);
	transform: translate(34.9315068493%, 15.0684931507%);
	width: 33.5632183908%;
}

.your__content {
	max-width: 622px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.your__items {
	display: -ms-grid;
	display: grid;
	gap: 48px;
}

.your__button-wrap {
	text-align: center;
}

.your__button {
	max-width: 622px;
	width: 100%;
}

.item-your {
	padding-bottom: 32px;
	position: relative;
}

.item-your::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background: -webkit-gradient(
		linear,
		right top,
		left top,
		from(#01bbdf),
		to(#01dfa5)
	);
	background: linear-gradient(270deg, #01bbdf 0, #01dfa5 100%);
}

.item-your__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.item-your__title:not(:last-child) {
	margin-bottom: 24px;
}

.item-your__text {
	color: #52525b;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.item-your__text:not(:last-child) {
	margin-bottom: 32px;
}

.keep {
	padding: 50px 0 60px;
}

.keep__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}

.keep__content {
	max-width: 622px;
}

.keep__subtitle:not(:last-child) {
	margin-bottom: 48px;
}

.keep__title:not(:last-child) {
	margin-bottom: 24px;
}

.keep__text {
	color: #3f3f46;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.keep__text:not(:last-child) {
	margin-bottom: 29px;
}

.keep__link-mob {
	margin-top: 25px !important;
}

.keep__image {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.hear {
	padding: 60px 0;
}
@media (max-width: 768px) {
	.hear {
		/* display: none; */
	}
}
.hear.mob {
	display: none;
}
@media (max-width: 768px) {
	.hear.mob {
		display: block;
	}
}
.hear__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 32px;
}

.hear__head:not(:last-child) {
	margin-bottom: 48px;
}

.hear__nav-mob {
	margin: 0 auto 0;
	width: 140px;
	padding-top: 13px;
}

.hear__head-left {
	max-width: 80%;
}

.hear__title:not(:last-child) {
	margin-bottom: 8px;
}

.hear__subtitle {
	color: #52525b;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.hear__nav {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-top: 13px;
	width: 140px;
}

.hear__slider.swiper {
	overflow: visible;
}

.hear__slider.swiper-grid.swiper-grid-column .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-height: 620px;
}
@media (max-width: 1300px) {
	.hear__slider.swiper-grid.swiper-grid-column .swiper-wrapper {
		display: flex;
		row-gap: 10px;
		flex-direction: inherit;
	}
	.hear__slider.swiper-grid.swiper-grid-column
		.swiper-wrapper
		+ .swiper__slide {
		margin-top: 0px;
	}
}

.hear-card__descr {
	margin-top: 16px;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.video {
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 2;
	position: relative;
}

.video.active::after {
	opacity: 0;
	visibility: hidden;
}

.video.active .video__btn {
	display: none;
}

.video__iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.video__iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(rgba(0, 0, 0, 0.3)),
		to(rgba(0, 0, 0, 0.3))
	);
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.3) 0,
		rgba(0, 0, 0, 0.3) 100%
	);
}

.video__image-prev {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video__image-prev img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-position: center;
	object-position: center;
	-o-object-fit: cover;
	object-fit: cover;
}

.video__btn {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 40px;
	background: rgba(59, 69, 78, 0.5);
	-webkit-backdrop-filter: blur(40px);
	backdrop-filter: blur(40px);
	width: 64px;
	height: 64px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.video__btn:hover {
	background: rgba(59, 69, 78, 0.8);
}

.video__btn .pause {
	display: none;
}

.earn__subtitle:not(:last-child) {
	margin-bottom: 24px;
}

.earn__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 32px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.earn__head:not(:last-child) {
	margin-bottom: 100px;
}

.earn__title {
	max-width: 622px;
}

.earn__button {
	height: 40px;
	width: 224px;
}

.earn__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.earn__image-ibg {
	border-radius: 23px;
	overflow: hidden;
	width: 40.9523809524%;
	aspect-ratio: 1;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.earn__items {
	display: -ms-grid;
	display: grid;
	gap: 48px;
}

.item-earn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 48px;
}

.item-earn__icon {
	width: 48px;
	height: 48px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 50%;
	border: 7px solid #ffe6c9;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.item-earn__content {
	position: relative;
	padding-bottom: 32px;
}

.item-earn__content::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background: -webkit-gradient(
		linear,
		right top,
		left top,
		from(#01bbdf),
		to(#01dfa5)
	);
	background: linear-gradient(270deg, #01bbdf 0, #01dfa5 100%);
}

.item-earn__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.item-earn__title:not(:last-child) {
	margin-bottom: 24px;
}

.item-earn__text {
	color: #52525b;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.item-earn__icon--blue {
	border-color: #e4fcff;
	background: #1cc4db;
}

.item-earn__icon--green {
	background: #aef2d7;
	border-color: #e5fdf3;
}

.item-earn__icon--black {
	border-color: #d8d8d8;
	background: #000;
}

.what {
	padding: 80px 0 60px;
}

.what__title {
	text-align: center;
}

.what__title:not(:last-child) {
	margin-bottom: 72px;
}

.what__form {
	max-width: 1008px;
	margin: 0 auto;
}

.what__nav {
	margin-bottom: 48px;
}

.what__nav .nav__item {
	min-width: 289px;
	cursor: pointer;
}

.form-what__info {
	max-width: 622px;
	margin: 0 auto;
	padding: 32px 42px 32px 32px;
	border-radius: 30px;
	background: #e5fbba;
	-webkit-box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	margin-top: 80px;
}

.form-what__info:not(:last-child) {
	margin-bottom: 56px;
}

.form-what__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}

.form-what__label-info {
	max-width: 177px;
	line-height: 24px;
	letter-spacing: 0.32px;
}

.form-what__info-value b {
	font-size: 34px;
	font-weight: 700;
	line-height: 132%;
	letter-spacing: -0.34px;
}

.form-what__info-value p {
	color: rgba(12, 33, 51, 0.58);
	line-height: 24px;
	letter-spacing: 0.32px;
}

.form-what__button {
	max-width: 622px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.form-what__button:not(:last-child) {
	margin-bottom: 16px;
}

.form-what__descr {
	text-align: center;
	max-width: 703px;
	margin: 0 auto;
	color: #6f7a83;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.28px;
}

.form__grid-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [ 2];
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
}

.world {
	padding: 80px 0 120px;
}

.world__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}

.world__head:not(:last-child) {
	margin-bottom: 64px;
}

.world__title {
	max-width: 70%;
}

.world__nav {
	width: 128px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.world__nav .nav-slider__pagination {
	display: none;
}

.world__slider .swiper-wrapper {
	max-height: 600px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.world-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 24px;
}

.world-card__image-ibg {
	border-radius: 24px;
	overflow: hidden;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	aspect-ratio: 226/212;
	width: 37.6666666667%;
}

.world-card__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.world-card__title:not(:last-child) {
	margin-bottom: 24px;
}

.world-card__text {
	color: #52525b;
	line-height: 24px;
	letter-spacing: 0.32px;
	padding-bottom: 32px;
	position: relative;
	max-height: 104px;
	height: 104px;
	min-height: 104px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.world-card__text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	border-radius: 4px;
	background: -webkit-gradient(
		linear,
		right top,
		left top,
		from(#01bbdf),
		to(#01dfa5)
	);
	background: linear-gradient(270deg, #01bbdf 0, #01dfa5 100%);
}

.world-card__text:not(:last-child) {
	margin-bottom: 16px;
}

.marquee {
	position: relative;
}

.marquee::after {
	content: '';
	background: var(--gradient);
	width: 3000px;
	left: 50%;
	position: absolute;
	height: 100%;
	top: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.marquee__slider {
	position: relative;
	z-index: 3;
}

.marquee__slider .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.marquee .swiper-slide {
	width: auto;
}

.marquee__item {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 24px;
	padding: 14px 0;
}

.meet {
	padding: 80px 0 60px;
}

.meet__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 34px;
	position: relative;
}

.meet__row:not(:last-child) {
	margin-bottom: 88px;
}

.meet__top-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 32px;
	max-width: 632px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.meet__top-row:not(:last-child) {
	margin-bottom: 32px;
}

.meet__images {
	z-index: 2;
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.meet__images:last-child {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.meet__images:last-child .meet__image-ibg--1 {
	margin-left: 0;
	margin-right: 314px;
}

.meet__images:last-child .meet__image-ibg--2 {
	margin-left: 0;
	margin-right: 70px;
}

.meet__image-ibg {
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 189/250;
	-webkit-box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
}

.meet__image-ibg--1 {
	width: 29.9050632911%;
}

.meet__image-ibg--2 {
	margin-bottom: -90px;
	margin-left: 70px;
	width: 21.9047619048%;
	z-index: 2;
}

.meet__image-ibg--3 {
	width: 18.4920634921%;
}

.meet__content {
	text-align: center;
	width: 489px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	min-height: 580px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 30px 0;
}

.meet__content::after {
	content: '';
	border-radius: 900px;
	background: #e5f3fb;
	width: 938px;
	height: 938px;
	-webkit-filter: blur(60px);
	filter: blur(60px);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.meet__subtitle {
	position: relative;
	z-index: 3;
}

.meet__subtitle:not(:last-child) {
	margin-bottom: 16px;
}

.meet__title {
	position: relative;
	z-index: 3;
}

.meet__video .video {
	aspect-ratio: auto;
	height: 400px;
}

.video__content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 56px;
	color: #fff;
}

.video.active .video__content {
	display: none;
}

.video__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.video__title:not(:last-child) {
	margin-bottom: 8px;
}

.video__text {
	line-height: 24px;
	letter-spacing: 0.32px;
}

.went {
	padding: 60px 0;
}

.went__nav-mob {
	margin: 27px auto 0;
}
@media (max-width: 768px) {
	.went__nav-mob {
		margin: 0px auto 0;
	}
}
.went__slider .swiper-slide:first-child .nav-slider__arrow--prev {
	opacity: 0.3;
	pointer-events: none;
}

.went__slider .swiper-slide:last-child .nav-slider__arrow--next {
	opacity: 0.3;
	pointer-events: none;
}

.went__slider .swiper-slide.swiper-slide-active {
	z-index: 2;
}

.went__nav {
	width: 128px;
}

.went-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 50px;
}

.went-card__content {
	max-width: 622px;
}

.went-card__title:not(:last-child) {
	margin-bottom: 64px;
}

.went-card__author:not(:last-child) {
	margin-bottom: 48px;
}

.went-card__company {
	font-size: 34px;
	font-weight: 700;
	line-height: 132%;
	letter-spacing: -0.34px;
}

.went-card__company:not(:last-child) {
	margin-bottom: 24px;
}

.went-card__author-info {
	line-height: 24px;
	letter-spacing: 0.32px;
}

.went-card__image-mob-ibg {
	border-radius: 12.8px;
	aspect-ratio: 264/327;
	width: 100%;
	overflow: hidden;
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 74px;
}
@media (max-width: 768px) {
	.header__buttons {
		display: none;
	}
}
.went-card__image-ibg {
	border-radius: 24px;
	overflow: hidden;
	-webkit-box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	box-shadow: 0 8.38944px 10.01724px 0 rgba(31, 64, 60, 0.07),
		0 67px 80px 0 rgba(31, 64, 60, 0.04);
	width: 39.3650793651%;
	aspect-ratio: 496/615;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer {
	padding: 80px 0 42px;
	color: #000;
}
.footer.dark {
	color: #fff;
}
.footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
}

.footer__top:not(:last-child) {
	margin-bottom: 46px;
}

.footer__logo {
	display: flex;
}

.footer__title {
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.footer__title:not(:last-child) {
	margin-bottom: 16px;
}

.footer__socials-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 16px;
}

.footer__socials-list li {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer__socials-list a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 8px;
	border-radius: 12px;
	background: #ddd;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.footer__socials-list a:hover {
	background: #e5fbba;
}

.footer__pilot {
	max-width: 190px;
}

.footer__pilot img {
	max-width: 100%;
}

.footer__bottom {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 70px;
}

.footer__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 30px;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.footer__menu-title {
	font-weight: 700;
	line-height: 24px;
}

.footer__menu-title:not(:last-child) {
	margin-bottom: 24px;
}

.footer__menu-list {
	display: -ms-grid;
	display: grid;
	gap: 12px;
}

.footer__menu-list a {
	line-height: 24px;
	letter-spacing: 0.32px;
	-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
}

.footer__menu-list a:hover {
	color: var(--secondary);
}

.form__item {
	width: 333px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 19px;
	padding: 8px 8px 8px 16px;
	border-radius: 90px;
	border: 1px solid #c6c6c6;
	background: #fff;
}
.footer.dark .form__item {
	background: transparent;
	border: 1px solid #393939;
}
.footer.dark .footer-play {
	border-radius: 24px;
	background: #232222;
}
.footer.dark .footer-play__code::after {
	height: 0px;
}

.footer.dark .footer__mob-left-two {
	color: #8a93a6;
}
.footer.dark .footer__mob-left-one {
	color: #8a93a6;
}
.form__input {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	background: 0 0;
	border: none;
	color: #6f7a83;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.32px;
	padding: 0;
	height: auto;
}

.form__input._form-focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.form__button {
	width: 86px;
	height: 40px;
}

.footer-play {
	padding: 20px;
	border-radius: 24px;
	background: #f3f3f3;
	width: 254px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.footer-play__title {
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.44px;
}

.footer-play__title:not(:last-child) {
	margin-bottom: 30px;
}

.footer-play__code {
	width: 126px;
	height: 126px;
	margin: 0 auto;
	position: relative;
}

.footer-play__code::after {
	content: '';
	height: 37px;
	width: 100%;
	bottom: 0;
	left: 0;
	opacity: 0.3;
	position: absolute;
	background: var(--gradient);
}

.footer-play__code::before {
	content: '';
	height: 4px;
	width: 190px;
	bottom: 33px;
	position: absolute;
	left: 50%;
	background: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(140, 255, 185, 0)),
		color-stop(30%, #8cffb9),
		color-stop(70%, #b2aafa),
		to(rgba(178, 170, 250, 0))
	);
	background: linear-gradient(
		90deg,
		rgba(140, 255, 185, 0) 0,
		#8cffb9 30%,
		#b2aafa 70%,
		rgba(178, 170, 250, 0) 100%
	);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.footer-play__code img {
	max-height: 100%;
	max-width: 100%;
}

.footer-play__code:not(:last-child) {
	margin-bottom: 31px;
}

.footer-play__title-code {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 35px;
	z-index: 2;
	text-align: center;
	font-size: 22px;
	line-height: 24px;
	letter-spacing: 0.44px;
	text-overflow: ellipsis;
}

.footer-play__title-code b {
	font-weight: 700;
	-webkit-line-clamp: 5;
}

.footer-play__img-code {
	opacity: 0.13;
}

.footer-play__buttons {
	display: -ms-grid;
	display: grid;
	gap: 12px;
}

.footer-play__button {
	display: inline-block;
}

.footer-play__button img {
	max-width: 100%;
}

.footer__mob {
	margin-top: 30px;
	text-align: center;
}

.footer__mob-text {
	font-size: 12px;
	line-height: 162%;
	letter-spacing: 0.24px;
	margin-bottom: 9px;
}

.footer__code {
	color: #4b4b4b;
	text-align: center;
	font-size: 12px;
	line-height: 162%;
	letter-spacing: 0.24px;
	margin-bottom: 2px;
}

.footer__copy {
	color: #8e939d;
	font-size: 10px;
	line-height: 162%;
	letter-spacing: 0.2px;
}

.tippy-box[data-animation='fade'][data-state='hidden'] {
	opacity: 0;
}

[data-tippy-root] {
	max-width: calc(100vw - 10px);
}

.tippy-box {
	position: relative;
	background-color: #333;
	color: #fff;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.4;
	outline: 0;
	-webkit-transition-property: visibility, opacity, -webkit-transform;
	transition-property: visibility, opacity, -webkit-transform;
	transition-property: transform, visibility, opacity;
	transition-property: transform, visibility, opacity, -webkit-transform;
}

.tippy-box[data-placement^='top'] > .tippy-arrow {
	bottom: 0;
}

.tippy-box[data-placement^='top'] > .tippy-arrow:before {
	bottom: -7px;
	left: 0;
	border-width: 8px 8px 0;
	border-top-color: initial;
	-webkit-transform-origin: center top;
	-ms-transform-origin: center top;
	transform-origin: center top;
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow {
	top: 0;
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow:before {
	top: -7px;
	left: 0;
	border-width: 0 8px 8px;
	border-bottom-color: initial;
	-webkit-transform-origin: center bottom;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom;
}

.tippy-box[data-placement^='left'] > .tippy-arrow {
	right: 0;
}

.tippy-box[data-placement^='left'] > .tippy-arrow:before {
	border-width: 8px 0 8px 8px;
	border-left-color: initial;
	right: -7px;
	-webkit-transform-origin: center left;
	-ms-transform-origin: center left;
	transform-origin: center left;
}

.tippy-box[data-placement^='right'] > .tippy-arrow {
	left: 0;
}

.tippy-box[data-placement^='right'] > .tippy-arrow:before {
	left: -7px;
	border-width: 8px 8px 8px 0;
	border-right-color: initial;
	-webkit-transform-origin: center right;
	-ms-transform-origin: center right;
	transform-origin: center right;
}

.tippy-box[data-inertia][data-state='visible'] {
	-webkit-transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
	transition-timing-function: cubic-bezier(0.54, 1.5, 0.38, 1.11);
}

.tippy-arrow {
	width: 16px;
	height: 16px;
	color: #333;
}

.tippy-arrow:before {
	content: '';
	position: absolute;
	border-color: transparent;
	border-style: solid;
}

.tippy-content {
	position: relative;
	padding: 5px 9px;
	z-index: 1;
}

@font-face {
	font-family: swiper-icons;
	src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
	font-weight: 400;
	font-style: normal;
}

:root {
	--swiper-theme-color: #007aff;
}

:host {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 1;
}

.swiper {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	overflow: clip;
	list-style: none;
	padding: 0;
	z-index: 1;
	display: block;
}

.swiper-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-timing-function: var(
		--swiper-wrapper-transition-timing-function,
		initial
	);
	transition-timing-function: var(
		--swiper-wrapper-transition-timing-function,
		initial
	);
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-vertical {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	display: block;
	margin-top: 32px;
}
@media (max-width: 768px) {
	.swiper-slide {
		margin-top: 0px;
	}
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
	height: auto;
}

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
	-ms-scroll-snap-type: y mandatory;
	scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
	-ms-scroll-snap-type: none;
	scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
	content: '';
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-box-ordinal-group: 10000;
	-ms-flex-order: 9999;
	order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
	scroll-snap-align: center center;
	scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal
	> .swiper-wrapper
	> .swiper-slide:first-child {
	-webkit-margin-start: var(--swiper-centered-offset-before);
	margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
	height: 100%;
	min-height: 1px;
	width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical
	> .swiper-wrapper
	> .swiper-slide:first-child {
	-webkit-margin-before: var(--swiper-centered-offset-before);
	margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
	width: 100%;
	min-width: 1px;
	height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(
		linear,
		right top,
		left top,
		from(rgba(0, 0, 0, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
		to left,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(rgba(0, 0, 0, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		from(rgba(0, 0, 0, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 0, 0, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background-image: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.5),
		rgba(0, 0, 0, 0)
	);
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
	-webkit-animation: swiper-preloader-spin 1s infinite linear;
	animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes swiper-preloader-spin {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.footer__menu-right {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.footer__mob-left {
	display: flex;
	align-items: center;
	gap: 56px;
	margin-right: 10px;
	justify-content: space-between;
}
.footer__mob-right {
	max-width: 456px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media (max-width: 1200px) {
	.footer__mob-left {
		flex-direction: column;
		gap: 20px;
	}
	.footer__mob-left-two {
		width: 100%;
	}
	.footer__mob-right {
		gap: 40px;
	}
}
@media (max-width: 1024px) {
	.footer__bottom {
		gap: 30px;
	}
}
@media (max-width: 992px) {
	.footer__mob {
		flex-direction: column;
		gap: 20px;
	}
	.footer__mob-left {
		flex-direction: initial;
	}
	.footer__mob-right {
		gap: 20px;
	}
}
@media (max-width: 900px) {
	.footer__menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	.footer__menu-right {
		width: 100%;
	}
	.footer__mob-right {
		max-width: 100%;
	}
	.footer__mob-left {
		width: 100%;
		display: grid;
		grid-template-columns: 50% 50%;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}
}
@media (max-width: 410px) {
	.footer__mob-left {
		grid-template-columns: 100%;
	}
}

.footer__mob-left-one {
	display: flex;
	gap: 13px;
	color: #000;
	font-size: 12px;
	font-weight: 600;
	line-height: 21px;
	align-items: center;
	letter-spacing: 0.24px;
}
.footer__mob-left-one span {
	text-wrap: nowrap;
	text-align: justify;
}
.footer__mob-left-two span {
	text-wrap: nowrap;
	text-align: justify;
}
.footer__mob-left-two {
	display: flex;
	gap: 13px;
	align-items: center;
	color: #000;
	font-size: 12px;
	font-weight: 600;
	line-height: 21px;
	letter-spacing: 0.24px;
}
.footer__mob-right p {
	color: #6f7a83;
	font-size: 11px;
	font-weight: 400;
	line-height: 162%;
	letter-spacing: 0.22px;
	text-align: justify;
}
@media (min-width: 767.98px) {
	.bottom-block {
		display: none;
	}

	.header {
		padding-top: 0 !important;
		top: 0 !important;
	}

	.vision__image-mob-ibg {
		display: none;
	}

	.keep__link-mob {
		display: none;
	}

	.hear__nav-mob .nav-slider__pagination {
		display: none;
	}

	.went__nav-mob {
		display: none;
	}

	.went-card__image-mob-ibg {
		display: none;
	}
}
.footer__mob {
	display: flex;
	justify-content: space-between;
	padding-top: 25px;
	align-items: flex-start;
	border-top: 1px solid #dce5ed;
}

@media (min-width: 1100px) {
	.earn__row {
		gap: 122px;
	}
}

@media (min-width: 1300px) {
	.keep__image {
		width: 502px;
	}
}

@media (max-width: 1400px) {
	.your__row {
		padding-left: 40px;
	}
}

@media (max-width: 1290px) {
	.vision__row {
		gap: 40px;
	}

	.meet__content {
		min-height: 400px;
		width: 400px;
	}

	.form__item {
		width: 260px;
	}
}

@media (max-width: 991.98px) {
	.options {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.title-h2 {
		font-size: 28px;
		letter-spacing: -0.28px;
	}

	.title-h1 {
		font-size: 44px;
		letter-spacing: -0.38px;
	}

	.header__logo {
		max-width: 220px;
	}

	.header__buttons {
		gap: 16px;
	}

	.menu__list {
		gap: 16px;
	}

	.menu__link {
		font-size: 15px;
	}

	.main-block__row {
		gap: 40px;
	}

	.main-block__content {
		padding: 50px 0;
	}

	.main-block__title {
		font-size: 44px;
	}

	.main-block__text {
		font-size: 18px;
	}

	.main-block__sliders {
		gap: 16px;
	}

	.main-block__sliders .swiper-slide {
		height: 180px;
	}

	.main-block__slider {
		height: 500px;
	}

	.why__title:not(:last-child) {
		margin-bottom: 60px;
	}

	.why__title:not(:last-child) {
		margin-bottom: 40px;
	}

	.why__bottom {
		-ms-grid-columns: (1fr) [ 2];
		grid-template-columns: repeat(2, 1fr);
	}

	.why-item-top__images {
		gap: 16px;
		height: 26px;
	}

	.key__grid-layout {
		gap: 16px;
		-ms-grid-columns: (1fr) [ 2];
		grid-template-columns: repeat(2, 1fr);
	}

	.your__head {
		display: block;
	}

	.your__title {
		max-width: 100%;
	}

	.your__row {
		gap: 70px;
	}

	.your__left {
		width: 40%;
	}

	.your__decor--2 {
		-webkit-transform: translate(40.4761904762%, -49.2063492063%);
		-ms-transform: translate(40.4761904762%, -49.2063492063%);
		transform: translate(40.4761904762%, -49.2063492063%);
	}

	.hear__nav-mob {
		padding-top: 0;
	}

	.earn__head:not(:last-child) {
		margin-bottom: 64px;
	}

	.earn__items {
		gap: 24px;
	}

	.item-earn {
		gap: 16px;
	}

	.world__head {
		text-align: center;
	}

	.world__title {
		max-width: 100%;
	}

	.world__nav {
		width: 170px;
		margin: 32px auto 0;
	}

	.world__nav .nav-slider__pagination {
		display: block;
	}

	.world__slider.swiper {
		overflow: visible;
	}

	.world__slider .swiper-slide {
		width: 312px;
	}

	.world-card {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 12px;
	}

	.world-card__image-ibg {
		border-radius: 24px;
		position: relative;
		aspect-ratio: 2;
		width: 100%;
	}

	.world-card__image-ibg::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: -webkit-gradient(
			linear,
			left bottom,
			left top,
			from(rgba(0, 0, 0, 0.2)),
			to(rgba(0, 0, 0, 0.2))
		);
		background: linear-gradient(
			0deg,
			rgba(0, 0, 0, 0.2) 0,
			rgba(0, 0, 0, 0.2) 100%
		);
	}

	.footer__top {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (1fr) [ 2];
		grid-template-columns: repeat(2, 1fr);
		gap: 48px;
		/* display: flex;
		flex-direction: column;
		gap: 48px;
		align-items: baseline;
		gap: 30px; */
	}

	.footer__bottom {
		gap: 30px;
	}

	.form__item {
		width: 100%;
	}
}

@media (max-width: 991px) {
	.keep__image {
		width: 300px;
	}
}

@media (max-width: 768px) {
	.earn__row {
		gap: 30px;
	}
}

@media (max-width: 767.98px) {
	.hide .header {
		top: 0px !important;
	}
	.title-h1 {
		font-size: 38px;
	}

	.nav__item {
		padding: 3px 8px 5px;
	}

	.subtitle {
		font-size: 14px;
	}

	.link {
		padding: 12px;
		text-align: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		letter-spacing: 0.32px;
		border-radius: 18px;
		background: #f3f3f3;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.form-item__top:not(:last-child) {
		margin-bottom: 8px;
	}

	.form-item__label {
		font-size: 14px;
		line-height: 155%;
		letter-spacing: 0.28px;
	}

	.header {
		position: sticky;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 11;
		background: #fff;
		-webkit-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
		-moz-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
		-ms-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
		-o-transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
		transition: all 0.3s cubic-bezier(0.5, 0.02, 0.13, 0.5);
	}

	.header._header-scroll {
		border-bottom: 1px solid #e5fbba;
	}

	.header__top {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		max-height: 200px;
		padding: 15px 0;
	}

	/*.header._header-scroll:not(.show-top) .header__top {*/
	/*    -webkit-transform: translateY(-100%);*/
	/*    -ms-transform: translateY(-100%);*/
	/*    transform: translateY(-100%);*/
	/*    max-height: 0;*/
	/*    padding: 0*/
	/*}*/

	/*.show-top .header__top {*/
	/*    -webkit-transform: translateY(0);*/
	/*    -ms-transform: translateY(0);*/
	/*    transform: translateY(0);*/
	/*    max-height: 200px;*/
	/*    padding: 15px 0*/
	/*}*/
	.hide .header__top {
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
		max-height: 0;
		padding: 0;
	}
	.header__top-row {
		text-align: left;
	}

	.header__top-text {
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 34px;
		justify-content: space-between;
	}

	.header__top-close {
		display: none;
	}

	.header__main {
		padding: 8px 0;
	}

	.header__logo {
		max-width: 170px;
	}

	.menu {
		position: fixed;
		display: none;
		opacity: 0;
	}

	.icon-menu {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		position: relative;
		width: 24px;
		height: 24px;
		z-index: 5;
	}

	.grow__wrap {
		padding: 32px 0 48px;
	}

	.grow__title:not(:last-child) {
		margin-bottom: 8px;
	}

	.grow__text {
		font-size: 14px;
		letter-spacing: 0.28px;
	}

	.help__wrap {
		padding: 65px 0 32px;
	}

	.help__subtitle {
		font-size: 14px;
	}

	.help__subtitle:not(:last-child) {
		margin-bottom: 8px;
	}

	.help__title:not(:last-child) {
		margin-bottom: 48px;
	}

	.help__grid-layout {
		gap: 16px;
		-ms-grid-columns: (1fr) [ 1];
		grid-template-columns: repeat(1, 1fr);
	}

	.help-card {
		border-radius: 12px;
		padding: 32px 24px;
	}

	.help-card__title {
		font-size: 18px;
	}

	.help-card__text:not(:last-child) {
		margin-bottom: 32px;
	}

	.faq {
		padding: 50px 0;
	}

	.faq__title {
		text-align: left;
	}

	.faq__subtitle {
		text-align: left;
		font-size: 18px;
	}

	.faq__subtitle:not(:last-child) {
		margin-bottom: 32px;
	}

	.faq__nav {
		width: 100%;
		max-width: 100%;
	}

	.faq__nav:not(:last-child) {
		margin-bottom: 48px;
	}

	.faq__nav .nav__item {
		min-width: auto;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}

	.faq-spollers__title {
		font-size: 14px;
	}

	.faq-spollers__text {
		font-size: 14px;
	}

	.sale {
		padding: 63px 0 50px;
	}

	.sale__head {
		display: block;
	}

	.sale__head:not(:last-child) {
		margin-bottom: 48px;
	}

	.sale__subtitle {
		margin-bottom: 8px;
	}

	.sale__title {
		text-align: left;
	}

	.sale__block:not(:last-child) {
		margin-bottom: 50px;
	}

	.sale__block:nth-child(even) .sale-item__image {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}

	.sale-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 40px;
	}

	.sale-item__title {
		font-size: 18px;
	}

	.sale-item__title:not(:last-child) {
		margin-bottom: 12px;
	}

	.sale-item__text:not(:last-child) {
		margin-bottom: 24px;
	}

	.sale-item__subtitle:not(:last-child) {
		margin-bottom: 8px;
	}

	.sale-item__image {
		max-width: 400px;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
	}

	.main-block__row {
		display: block;
	}

	.main-block__content {
		padding: 40px 0 65px;
		width: 100%;
	}

	.main-block__title {
		font-size: 38px;
	}

	.main-block__text {
		font-size: 16px;
	}

	.main-block__sliders {
		display: block;
	}

	.main-block__sliders .swiper-slide {
		width: 136px;
	}

	.main-block__sliders .swiper-slide:nth-child(even) {
		-webkit-transform: translateY(15px);
		-ms-transform: translateY(15px);
		transform: translateY(15px);
	}

	.main-block__slider {
		height: auto;
	}

	.main-block__slider:last-child {
		display: none;
	}

	.main-block__slider.swiper {
		overflow: visible;
	}

	.why {
		position: relative;
		padding-top: 47px;
		padding-bottom: 50px;
	}

	.why__top {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 8px;
		padding-top: 24px;
	}

	.why__top:not(:last-child) {
		margin-bottom: 48px;
	}

	.why__image {
		width: 361px;
		position: absolute;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		margin: 0 auto;
		display: none;
	}

	.why__grid-layout {
		-ms-grid-columns: (1fr) [ 1];
		grid-template-columns: repeat(1, 1fr);
	}

	.why__bottom {
		-ms-grid-columns: (1fr) [ 1];
		grid-template-columns: repeat(1, 1fr);
	}

	.why-item-top {
		padding: 8px 21px;
	}

	.why-item-top__images {
		margin-bottom: 0;
	}

	.why-item-top__text {
		display: none;
	}

	.why-item__title {
		font-size: 18px;
	}

	.why-item__title:not(:last-child) {
		margin-bottom: 8px;
	}

	.why-item__text {
		font-size: 14px;
		line-height: 155%;
	}

	.why-item-info {
		padding: 0 0 12px;
	}

	.why-item-info::after {
		width: 100%;
		bottom: 0;
		left: 0;
		height: 4px;
		top: auto;
	}

	.why-item-info__value {
		font-size: 28px;
		margin-bottom: 4px;
	}

	.why-item-info__text {
		font-size: 14px;
	}

	.vision {
		padding: 63px 0;
	}

	.vision__row {
		display: block;
	}

	.vision__subtitle:not(:last-child) {
		margin-bottom: 8px;
	}

	.vision__title:not(:last-child) {
		margin-bottom: 38px;
	}

	.vision__text {
		font-size: 14px;
	}

	.vision__text > :not(:last-child) {
		margin-bottom: 16px;
	}

	.vision__grid-layout {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: 40px;
	}

	.vision__image-ibg {
		display: none;
	}

	.key {
		padding: 50px 0;
	}

	.key__head:not(:last-child) {
		margin-bottom: 64px;
	}

	.key__title:not(:last-child) {
		margin-bottom: 16px;
	}

	.key__subtitle {
		font-size: 14px;
	}

	.key__subtitle:not(:last-child) {
		margin-bottom: 32px;
	}

	.key__button {
		height: 56px;
	}

	.item-key {
		border-radius: 12px;
		padding: 32px 24px;
	}

	.item-key__icon:not(:last-child) {
		margin-bottom: 16px;
	}

	.item-key__title {
		margin-bottom: 18px;
	}

	.your {
		padding: 63px 0 32px;
	}
	.earn {
		padding: 40px 0 0px;
	}
	.your__head:not(:last-child) {
		margin-bottom: 67px;
	}

	.your__label {
		font-size: 12px;
		border-radius: 9.345px;
	}

	.your__label--1 img {
		max-width: 24px;
	}

	.your__label--2 img {
		max-width: 24px;
	}

	.your__label--3 {
		min-height: 26px;
		right: 13.7931034483%;
	}

	.your__label--3 img {
		max-width: 17px;
	}

	.your__label--4 {
		min-height: 26px;
	}

	.your__label--4 img {
		max-width: 17px;
	}

	.your__label--5 {
		min-height: 20px;
	}

	.your__label--5 img {
		max-width: 14px;
	}

	.your__row {
		padding-left: 0;
		display: block;
	}

	.your__row:not(:last-child) {
		margin-bottom: 34px;
	}

	.your__left {
		max-width: 400px;
		margin: 0 auto 66px;
		width: 100%;
	}
	@media (max-width: 500px) {
		.your__left {
			padding: 0px 25px;
		}
	}
	.your__content {
		max-width: 100%;
	}

	.your__items {
		gap: 20px;
	}

	.your__button {
		height: 56px;
	}

	.item-your {
		padding-bottom: 12px;
	}

	.item-your__title {
		font-size: 18px;
	}

	.item-your__title:not(:last-child) {
		margin-bottom: 4px;
	}

	.item-your__text {
		font-size: 14px;
	}

	.keep {
		padding: 32px 0 50px;
	}

	.keep__row {
		display: block;
	}

	.keep__content {
		max-width: 100%;
		margin-bottom: 40px;
	}

	.keep__subtitle:not(:last-child) {
		margin-bottom: 8px;
	}

	.keep__title br {
		display: none;
	}

	.keep__title:not(:last-child) {
		margin-bottom: 16px;
	}

	.keep__text {
		font-size: 14px;
		line-height: 155%;
		letter-spacing: 0.28px;
	}

	.keep__text br {
		display: none;
	}

	.keep__link {
		display: none;
	}

	.keep__image {
		max-width: 300px;
		margin: 0 auto;
	}

	.hear {
		padding: 50px 0;
	}

	.hear__nav-mob {
		width: 170px;
		margin-top: 32px;
	}

	.hear__head-left {
		max-width: 100%;
	}

	.hear__title br {
		display: none;
	}

	.hear__title:not(:last-child) {
		margin-bottom: 16px;
	}

	.hear__subtitle {
		font-size: 14px;
	}

	.hear__nav {
		display: none;
	}

	.hear__slider .swiper-slide {
		width: 312px;
	}

	.hear-card__descr {
		font-size: 14px;
		text-align: center;
	}

	.video {
		aspect-ratio: 312/171;
	}

	.earn__subtitle:not(:last-child) {
		margin-bottom: 8px;
	}

	.earn__head {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	.earn__title {
		max-width: 100%;
	}

	.earn__button {
		height: 56px;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.earn__row {
		display: block;
	}

	.earn__image-ibg {
		max-width: 400px;
		width: 100%;
		border-radius: 13.907px;
		margin: 0 auto 48px;
	}

	.item-earn {
		gap: 0;
		position: relative;
	}

	.item-earn__icon {
		position: absolute;
		top: -10px;
		left: 0;
	}

	.item-earn__content {
		padding-bottom: 12px;
	}

	.item-earn__title {
		font-size: 18px;
		letter-spacing: -0.36px;
		padding-left: 60px;
	}

	.item-earn__title:not(:last-child) {
		margin-bottom: 18.5px;
	}

	.item-earn__text {
		letter-spacing: 0.28px;
		font-size: 14px;
	}

	.what {
		padding: 100px 0 50px;
	}

	.what__title:not(:last-child) {
		margin-bottom: 32px;
	}

	.what__nav {
		width: 100%;
		max-width: 100%;
	}

	.what__nav .nav__item {
		min-width: auto;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}

	.form-what__info {
		margin-top: 48px;
		padding: 12px 32px;
	}

	.form-what__info:not(:last-child) {
		margin-bottom: 24px;
	}

	.form-what__row {
		display: block;
		gap: 18px;
		text-align: center;
	}

	.form-what__label-info {
		max-width: 100%;
		text-align: center;
		font-size: 14px;
		margin-bottom: 18px;
	}

	.form-what__info-value b {
		font-size: 28px;
	}

	.form-what__info-value p {
		font-size: 14px;
	}

	.form-what__descr {
		font-size: 12px;
	}

	.form__grid-layout {
		-ms-grid-columns: (1fr) [ 1];
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
	}

	.world {
		padding: 63px 0 40px;
	}

	.world__head:not(:last-child) {
		margin-bottom: 32px;
	}

	.world-card__title {
		font-size: 18px;
	}

	.world-card__title:not(:last-child) {
		margin-bottom: 8px;
	}

	.world-card__text {
		font-size: 14px;
		padding-bottom: 16px;
	}

	.meet {
		padding: 40px 0 50px;
	}

	.meet__row:not(:last-child) {
		margin-bottom: 32px;
	}

	.meet__top-row {
		display: none;
	}

	.meet__images {
		display: none;
	}

	.meet__content {
		width: 100%;
		text-align: left;
		min-height: auto;
		padding: 0;
	}

	.meet__content::after {
		display: none;
	}

	.meet__video .video {
		height: auto;
		aspect-ratio: 312/208;
		border-radius: 24px;
	}

	.video__content {
		padding: 8px;
		text-align: center;
	}

	.video__title {
		font-size: 14px;
	}

	.video__title:not(:last-child) {
		margin-bottom: 0;
	}

	.video__text {
		font-size: 14px;
	}

	.went {
		padding: 10px 0 50px;
	}

	.went__nav {
		display: none;
	}

	.went-card {
		display: block;
	}

	.went-card__content {
		max-width: 100%;
	}

	.went-card__title br {
		display: none;
	}

	.went-card__title:not(:last-child) {
		margin-bottom: 74px;
	}

	.went-card__author {
		text-align: center;
	}

	.went-card__company {
		font-size: 28px;
	}

	.went-card__company:not(:last-child) {
		margin-bottom: 4px;
	}

	.went-card__author-info {
		font-size: 14px;
	}

	.went-card__image-ibg {
		border-radius: 12.8px;
		aspect-ratio: 264/327;
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		display: none;
	}

	.footer {
		padding: 64px 0 50px;
	}

	.footer__logo {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 0;
	}

	.footer__column:nth-child(2) {
		-ms-grid-column: 1;
		-ms-grid-column-span: 2;
		grid-column: 1/3;
	}

	.footer__column:last-child {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.footer__column:nth-child(2) {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		width: 100%;
	}

	.footer__column:nth-child(3) {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}

	.footer__column:first-child {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}

	.footer__title {
		font-size: 18px;
	}

	.footer__title:not(:last-child) {
		margin-bottom: 8px;
	}

	.footer__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 42px;
		flex-direction: column;
	}

	.footer__menu {
		-ms-grid-columns: (1fr) [ 2];
		grid-template-columns: repeat(2, 1fr);
		display: -ms-grid;
		display: grid;
		gap: 24px;
		width: 100%;
	}

	.footer__menu-title {
		font-size: 14px;
	}

	.footer__menu-title:not(:last-child) {
		margin-bottom: 16px;
	}

	.footer__menu-list a {
		font-size: 14px;
		line-height: 155%;
	}

	.footer-play {
		max-width: 400px;
		margin: 0 auto;
		width: 100%;
		padding: 24px 16px;
	}

	.footer-play__title {
		font-size: 18px;
	}

	.footer-play__title:not(:last-child) {
		margin-bottom: 18px;
	}

	.footer-play__code::after {
		display: none;
	}

	.footer-play__code:not(:last-child) {
		margin-bottom: 24px;
	}

	.footer-play__title-code {
		font-size: 18px;
	}

	.footer__mob-text {
		display: none;
	}

	.footer__code {
		display: none;
	}
}

@media (max-width: 767.98px) and (any-hover: none) {
	.icon-menu {
		cursor: default;
	}
}

@media (max-width: 600px) {
	.key__grid-layout {
		-ms-grid-columns: (1fr) [ 1];
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (max-width: 479.98px) {
	.main-block__buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

@media (max-width: 370px) {
	.world__slider .swiper-slide {
		width: 250px;
	}
}

@media (min-width: 991px) and (max-width: 1300px) {
	@supports (width: clamp(300px, -347.8381877023px + 65.3721682848vw, 502px)) {
		.keep__image {
			width: clamp(300px, -347.8381877023px + 65.3721682848vw, 502px);
		}
	}
	@supports not (
		width: clamp(300px, -347.8381877023px + 65.3721682848vw, 502px)
	) {
		.keep__image {
			width: calc(300px + 12.625 * (100vw - 991px) / 19.3125);
		}
	}
}

@media (min-width: 768px) and (max-width: 1100px) {
	@supports (gap: clamp(30px, -182.8192771084px + 27.7108433735vw, 122px)) {
		.earn__row {
			gap: clamp(30px, -182.8192771084px + 27.7108433735vw, 122px);
		}
	}
	@supports not (gap: clamp(30px, -182.8192771084px + 27.7108433735vw, 122px)) {
		.earn__row {
			gap: calc(30px + 5.75 * (100vw - 768px) / 20.75);
		}
	}
}

@media (any-hover: hover) {
	.select__option:hover {
		color: var(--secondary);
	}
}

.meet-slider.main-block__sliders .main-block__slider {
	display: none;
}

@media (max-width: 767.98px) {
	.meet-slider.main-block__sliders .main-block__slider {
		display: block;
	}
}

.custom-select {
	position: relative;
	width: 100%;
}

.selected-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 12px;
	display: flex;
	position: relative;
	gap: 6px;
	border-radius: 27px;
	border: 1px solid var(--gray-100, #ececec);
}

.selected-image {
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.optionss {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border: 1px solid #ccc;
	background-color: #fff;
	color: #000;
	position: absolute;
	top: calc(100% - 1px);
	border-radius: 27px;
	border: 1px solid var(--gray-100, #ececec);
	background: var(--white, #fff);
	min-width: 100%;
	left: 0;
	padding: 10px 0 5px 0;
	display: block;
	overflow-y: auto;
	height: 0;
	overflow-x: hidden;
	z-index: 2;
	transition: opacity 0.7s ease-in-out, height 0.5s ease-in-out;
	opacity: 0;
}

.optionss.open {
	height: 280px;
	opacity: 1;
}

.option {
	display: flex;
	align-items: center;
	padding: 10px;
	cursor: pointer;
}

.option-image {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	border-radius: 50%;
}
.selected-option:after {
	content: '';
	-webkit-box-flex: 0;
	-ms-flex: 0 0 24px;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	background: url(../img/icons/chevron-down.svg) center/100% 100% no-repeat;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: auto;
	transform: rotate(0deg);
	transition: all 0.5s ease-in-out;
}
.selected-option.open:after {
	transform: rotate(180deg);
}

.amount_usd {
	padding: 8px 0 0 22px;
	font-size: 12px;
	color: rgba(12, 33, 51, 0.58);
}
video {
	width: 100%;
}
.marquee__slider .swiper-wrapper .swiper-slide {
	margin-top: 0px;
}

@media (max-width: 768xp) {
	.swiper-slide.adaptive__video {
		display: none;
	}
}
.swiper-slide.adaptive__video {
	display: none;
}
@media (max-width: 768xp) {
	.swiper-slide.adaptive__video {
		display: block;
	}
}
/* Стилі для оверлею */
.loader-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff; /* Темний фон з прозорістю */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999; /* Вищий z-index, щоб перекрити всі інші елементи */
}

/* Стилі для лоадера */
.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: rgba(0, 184, 129, 1);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}
.hear__box {
	display: flex;
	flex-direction: column;
	gap: 33px;
}
@media (max-width: 768px) {
	.hear__slider {
		display: none;
	}
}
.hear__slider-mob {
	display: none;
}
@media (max-width: 768px) {
	.hear__slider-mob {
		display: block;
	}
}
@media (max-width: 500px) {
	.footer__top {
		display: flex;
		flex-direction: column;
		gap: 48px;
		align-items: baseline;
		gap: 30px;
	}
}
@media (max-width: 340px) {
	.footer__menu {
		/* grid-template-columns: repeat(1, 1fr); */
	}
}
.media-main__link {
	position: fixed;
	right: 20px;
	bottom: 100px;
	width: 65px;
	height: 65px;
	z-index: 4;
}
.wrap_eb0b {
	z-index: 4 !important;
}
.saying {
	background: linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
	padding: 72px 0 105px;
	text-align: center;
}
.saying__title {
	color: #000;
	text-align: center;
	font-size: 56px;
	font-weight: 700;
	line-height: 132%;
	letter-spacing: -0.56px;
	margin: 0 auto 8px;
}
.saying__inner {
	max-width: 1414px;
	width: 100%;
	margin: 0 auto;
	padding: 0 16px;
}
.saying__subtitle {
	color: #6f7a83;
	text-align: center;
	font-size: 22px;
	font-weight: 400;
	max-width: 736px;
	width: 100%;
	margin: 0 auto 54px;
	line-height: 127.273%;
	letter-spacing: -0.44px;
}
.saying__slider {
	padding-bottom: 100px;
	padding-left: 2px;
	padding-right: 2px;
}
.saying__slider.swiper {
	padding-bottom: 100px;
	padding-left: 2px;
	padding-right: 2px;
}
.saying__slider .swiper-slide {
	height: auto;
}
.saying__bottom {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.32px;
}
.saying__bottom span {
	font-weight: 700;
}
.saying__bottom a {
	color: #64c485;
	text-decoration-line: underline;
}
.saying-slider__block {
	padding: 24px;
	border-radius: 16px;
	background: #fff;
	/* box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 8.389px 10.017px 0px rgba(31, 64, 60, 0.07); */
	display: flex;
	box-shadow: 0px 40px 16px 0px rgba(31, 64, 60, 0.03),
		0px 1.389px 0px 0px rgba(31, 64, 60, 0.03);
	flex-direction: column;
	text-align: start;
	height: 100%;
}
.saying-slider__block-top {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.saying-slider__block-invited {
	display: flex;
	align-items: center;
	gap: 7px;
}
.saying-slider__block-invited p {
	color: #6f7a83;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.28px;
}
.header-language__box-item-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.header-language__box-item-label:hover {
	cursor: pointer;
}
.saying-slider__block-content h6 {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
}
.saying-slider__block-content p {
	color: #000;
	font-size: 14px;
	line-height: 171.429%;
	letter-spacing: 0.28px;
	margin-bottom: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
}
.saying-slider__block-bottom {
	margin-top: auto;
	color: #6f7a83;
	font-size: 14px;
	font-weight: 400;
	line-height: 171.429%;
	letter-spacing: 0.28px;
}
.saying-slider__block-bottom span {
	color: #000;
	font-size: 14px;
	font-weight: 600;
	line-height: 171.429%;
	letter-spacing: 0.28px;
}
.saying__prev {
	position: absolute;
	left: 0;
	bottom: 30px;
}
.saying__next {
	position: absolute;
	right: 0;
	bottom: 30px;
}

.saying__prev {
	position: absolute;
	left: 0;
	bottom: 30px;
}
.saying__next {
	position: absolute;
	right: 0;
	bottom: 30px;
	border-radius: 52px;
	background: #fbfbfc;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 8px 0px rgba(0, 0, 0, 0.02) inset;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.saying__prev {
	position: absolute;
	left: 0;
	bottom: 30px;
	border-radius: 52px;
	background: #fbfbfc;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 8px 0px rgba(0, 0, 0, 0.02) inset;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.saying__next:hover {
	background: transparent;
}
.saying__next div {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 3px 5px 0px rgba(31, 64, 60, 0.08);
}
.saying__prev:hover {
	background: transparent;
}
.saying__prev div {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 3px 5px 0px rgba(31, 64, 60, 0.08);
}
.saying__next.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.6;
}

.saying__next.swiper-button-disabled svg path {
	stroke: #6f7a83;
}
.saying__prev.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.6;
}
.saying__prev.swiper-button-disabled svg path {
	stroke: #6f7a83;
}

.hear__prev.swiper-button-disabled svg path {
	stroke: #6f7a83;
}
.hear__next.swiper-button-disabled svg path {
	stroke: #6f7a83;
}
.hear__next.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.6;
}
.hear__prev.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.6;
}
.hear__prev div {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 3px 5px 0px rgba(31, 64, 60, 0.08);
}
.hear__next div {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 3px 5px 0px rgba(31, 64, 60, 0.08);
}
.hear__next {
	border-radius: 52px;
	background: #fbfbfc;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 8px 0px rgba(0, 0, 0, 0.02) inset;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hear__prev {
	border-radius: 52px;
	background: #fbfbfc;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 8px 0px rgba(0, 0, 0, 0.02) inset;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hear__prev:hover {
	background: transparent;
}
.hear__next:hover {
	background: transparent;
}

.world__prev.swiper-button-disabled svg path {
	stroke: #6f7a83;
}
.world__next.swiper-button-disabled svg path {
	stroke: #6f7a83;
}
.world__next.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.6;
}
.world__prev.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.6;
}
.world__prev div {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 3px 5px 0px rgba(31, 64, 60, 0.08);
}
.world__next div {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 3px 5px 0px rgba(31, 64, 60, 0.08);
}
.world__next {
	border-radius: 52px;
	background: #fbfbfc;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 8px 0px rgba(0, 0, 0, 0.02) inset;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.world__prev {
	border-radius: 52px;
	background: #fbfbfc;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 8px 0px rgba(0, 0, 0, 0.02) inset;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.world__prev:hover {
	background: transparent;
}
.world__next:hover {
	background: transparent;
}

.went__prev.swiper-button-disabled svg path {
	stroke: #6f7a83;
}
.went__next.swiper-button-disabled svg path {
	stroke: #6f7a83;
}
.went__next.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.6;
}
.went__prev.swiper-button-disabled {
	pointer-events: none;
	opacity: 0.6;
}
.went__prev div {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 3px 5px 0px rgba(31, 64, 60, 0.08);
}
.went__next div {
	background: #fff;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background: #fff;
	box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
		0px 3px 5px 0px rgba(31, 64, 60, 0.08);
}
.went__next {
	border-radius: 52px;
	background: #fbfbfc;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 8px 0px rgba(0, 0, 0, 0.02) inset;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.went__prev {
	border-radius: 52px;
	background: #fbfbfc;
	box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.06) inset,
		0px 1px 8px 0px rgba(0, 0, 0, 0.02) inset;
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.went__prev:hover {
	background: transparent;
}
.went__next:hover {
	background: transparent;
}

@media (max-width: 768px) {
	.saying {
		padding: 40px 0 50px;
	}
	.saying__title {
		color: #000;
		margin: 0 auto 24px;
		text-align: center;
		font-size: 38px;
		font-weight: 700;
		line-height: 45.6px;
		letter-spacing: -0.38px;
	}
	.saying__subtitle {
		margin: 0 auto 34px;
		font-size: 18px;
		line-height: 150%; /* 27px */
		letter-spacing: -0.36px;
	}
	.saying__slider {
		padding-bottom: 100px;
		padding-left: 2px;
		padding-right: 2px;
	}
	.saying__slider .swiper-slide {
		height: auto;
	}
	.saying__bottom {
		color: #000;
		font-size: 16px;
		font-weight: 400;
		line-height: 150%;
		letter-spacing: 0.32px;
	}
	.saying__bottom span {
		font-weight: 700;
	}
	.saying__bottom a {
		color: #64c485;
		text-decoration-line: underline;
	}
	.saying-slider__block {
		padding: 24px;
		border-radius: 16px;
		background: #fff;
		/* box-shadow: 0px 67px 80px 0px rgba(31, 64, 60, 0.04),
			0px 8.389px 10.017px 0px rgba(31, 64, 60, 0.07); */
		display: flex;
		box-shadow: 0px 40px 16px 0px rgba(31, 64, 60, 0.03),
			0px 1.389px 0px 0px rgba(31, 64, 60, 0.03);
		flex-direction: column;
		text-align: start;
		height: 100%;
	}
	.saying-slider__block-top {
		margin-bottom: 16px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.saying-slider__block-invited {
		display: flex;
		align-items: center;
		gap: 7px;
	}
	.saying-slider__block-invited p {
		color: #6f7a83;
		font-size: 14px;
		font-weight: 400;
		line-height: 24px;
		letter-spacing: 0.28px;
	}
	.saying-slider__block-content h6 {
		color: #000;
		font-size: 16px;
		font-weight: 700;
		line-height: 150%;
	}
	.saying-slider__block-content p {
		color: #000;
		font-size: 14px;
		line-height: 171.429%;
		letter-spacing: 0.28px;
		margin-bottom: 14px;
	}
	.saying-slider__block-bottom {
		margin-top: auto;
		color: #6f7a83;
		font-size: 14px;
		font-weight: 400;
		line-height: 171.429%;
		letter-spacing: 0.28px;
	}
	.saying-slider__block-bottom span {
		color: #000;
		font-size: 14px;
		font-weight: 600;
		line-height: 171.429%;
		letter-spacing: 0.28px;
	}
}
