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

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

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

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

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

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

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

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

#preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #02020b;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
	opacity: 0;
	visibility: hidden;
}

.load {
	background-image: linear-gradient(rgb(118, 26, 179) 35%, rgb(22, 139, 110));
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	animation: spinning82341 1.7s linear infinite;
	text-align: center;
	border-radius: 50px;
	filter: blur(1px);
	box-shadow: 0px -5px 20px 0px rgb(88, 5, 147),
	0px 5px 20px 0px rgb(17, 99, 78);
}

.load1 {
	background-color: rgb(2, 2, 11);
	width: 100px;
	height: 100px;
	border-radius: 50px;
	filter: blur(10px);
}

@keyframes spinning82341 {
	to {
		transform: rotate(360deg);
	}
}

/*body {
	cursor: none;
}*/

.custom-cursor {
	width: 41px;
	height: 41px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 9999;
	transition: border-color 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cursor-dot {
	width: 23px;
	height: 23px;
	background-color: #ffffff;
	border-radius: 50%;
	transition: background-color 0.2s ease;
}

.custom-cursor.active {
	border-color: #02020B;
}

.custom-cursor.active .cursor-dot {
	background-color: #02020B;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

.non-scroll {
	overflow: hidden;
}

.wrapper {
	flex-direction: column;
	display: flex;
	overflow: hidden;
	min-height: 100%;
}

ul, ol {
	list-style-type: none;
}

form, input, textarea, button {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
}

input[type="submit"],
input[type="button"] {
	appearance: none;
	-webkit-appearance: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
}

a img {
	border: none;
}

b, strong {
	font-weight: 700;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #02020B;
	color: #ffffff;
}

.container {
	max-width: 1390px;
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.main {
	background-image: url("../img/bg_main.webp");
	background-repeat: no-repeat;
	background-position: top right;
	position: relative;
	padding-top: 80px;
	padding-bottom: 54px;
}

.main .container {
	position: relative;
	z-index: 1;
}

.main > .container:after {
	content: "";
	background-image: url("../img/main_blur.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 1554px;
	height: 1291px;
	position: absolute;
	left: -40px;
	top: -360px;
	z-index: -2;
}

.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 15;
	padding: 13px 0;
}

.header:after {
	content: "";
	height: 100px;
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	z-index: -1;
}

.header.scrolled:after {
	background: linear-gradient(180deg, #02020B 52%, rgba(2, 2, 11, 0) 100%);
	opacity: 1;
}

.overlay-top {
	flex: 1;
}

.header-inners {
	display: flex;
	align-items: center;
}

.header .logo {
	z-index: 16;
	position: relative;
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	list-style-type: none;
	position: relative;
	margin-left: 47px;
}

.main-menu li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	border-radius: 30px;
	background-color: transparent;
	position: relative;
	transition: all 0.3s ease-in-out;
	color: #DAE5EB;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	height: 37px;
	width: auto;
	white-space: nowrap;
	overflow: hidden;
}

.menu-text-wrap {
	display: inline-block;
	position: relative;
	height: 37px;
	overflow: hidden;
}

.menu-text,
.menu-text-copy {
	display: block;
	height: 37px;
	line-height: 37px;
	text-align: center;
	transition: transform 0.3s ease-in-out;
}

.menu-text-copy {
	transform: translateY(100%);
	color: #060515;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.menu-anim:hover .menu-text {
	transform: translateY(-100%);
}

.menu-anim:hover .menu-text-copy {
	transform: translateY(0%);
}

.main-menu li a:hover {
	background-color: #ffffff;
}

.languages {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}

.languages a {
	border-radius: 50%;
	display: flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
	text-decoration: none;
	color: #DAE5EB;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	background-color: transparent;
	transition: all 0.3s ease-in-out;
}

.languages a:hover {
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0.1);
}

.languages a.active {
	color: #FFFFFF;
	pointer-events: none;
}

.scroll {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.btn-top {
	margin-left: 16px;
	min-width: 150px;
}

.btn-anim {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	border-radius: 30px;
	background-color: transparent;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.btn-anim .btn-wrap {
	position: relative;
	display: inline-block;
	height: 100%;
	width: 100%;
	padding: 0 20px;
	font-size: 15px;
	font-weight: 700;
	color: #191C42;
	border-radius: 30px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	background-color: #00FDCB;
	overflow: hidden;
	white-space: nowrap;
}

.btn-wrap .btn-text,
.btn-wrap .btn-text-copy {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	line-height: 45px;
	text-align: center;
	transition: transform 0.3s ease-in-out;
}

.btn-text {
	transform: translateY(0%);
}

.btn-text-copy {
	transform: translateY(100%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.btn-text, .btn-text-copy {
	transition: top 0.3s ease-in-out;
}

.btn-anim:hover .btn-text {
	transform: translateY(-100%);
}

.btn-anim:hover .btn-text-copy {
	transform: translateY(0%);
}

.btn-anim:hover {
	background-color: rgba(0, 213, 163, 0.4);
}

.btn-anim:hover .btn-wrap {
	background-color: #ffffff;
}

.main-block {
	display: flex;
	align-items: center;
}
.video-container {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 500px;
	height: 700px;
		display: flex;
	justify-content: center;
}

.video-main {
	max-width: 860px;
	margin-left: -70px;
	position: relative;
	z-index: -1;
}
.main-block-info {
	max-width: 760px;
}

.img-main {
	max-width: 860px;
	margin-left: -70px;
	position: relative;
	z-index: -1;
	animation: floatCube 4s ease-in-out infinite;
}

.title {
	text-transform: uppercase;
}

.subtitle {
	font-size: 24px;
	margin-top: 40px;
	color: #ffffff;
}

.subtitle span {
	font-weight: 800;
}

.btn-main {
	margin-top: 35px;
	max-width: 332px;
	width: 100%;
}

.btn-main .btn-wrap {
	height: 57px;
	font-size: 18px;
}

.btn-main .btn-wrap .btn-text, .btn-main .btn-wrap .btn-text-copy {
	height: 57px;
	line-height: 57px;
}

h1 {
	font-family: 'DrukWideCyr', sans-serif;
	font-weight: 700;
	font-size: 78px;
	line-height: normal;
	text-transform: uppercase;
}

h2 {
	font-family: 'DrukWideCyr', sans-serif;
	font-weight: 700;
	font-size: 51px;
	text-transform: uppercase;
}

.why {
	background-color: #0F1525;
	padding: 40px 0 57px;
	position: relative;
	z-index: 1;
}

.why-wrapper {
	position: relative;
	z-index: 0;
}

.why-wrapper:before {
	content: "";
	background-image: url("../img/why_blur.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 2076px;
	height: 993px;
	position: absolute;
	left: -490px;
	bottom: -190px;
}

.why-wrapper:after {
	content: "";
	width: 100%;
	height: 655px;
	position: absolute;
	bottom: -93px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-image: url("../img/bg_why.svg");
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	background-position: bottom;
}

.bg-figure, .bg-figure-top {
	position: relative;
}

.bg-figure::before, .bg-figure-top::before {
	content: "";
	background-image: url("../img/figure_top.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	width: 100%;
	height: 89px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -89px;
	z-index: 0;
}

.bg-figure::after {
	content: "";
	background-image: url("../img/figure_bottom.svg");
	background-size: cover;
	background-position: top center;
	width: 100%;
	height: 101px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	bottom: -101px;
	z-index: -2;
}

.why-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 15px;
}

.swiper-why {
	margin-top: 48px;
	position: relative;
}

.swiper-why:after {
	content: "";
	width: 150px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(15, 21, 37, 0) 0%, #0F1525 80%);
	z-index: 1;
}

.why-item {
	padding: 8px;
}

.why-item-wrap {
	position: relative;
	height: 434px;
	border-radius: 30px;
	background: linear-gradient(180deg, #499B76 0%, #572291 47%, #18193F 62%);
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	padding: 20px;
}

.why-item-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 30px;
	border: 2px solid rgba(81, 121, 213, 0.18);
	pointer-events: none;
	z-index: 2;
}

.why-item-wrap:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(180deg, #499B76 0%, #572291 47%, #221C54 62%);
	opacity: 0;
	z-index: -1;
	transition: opacity 0.3s ease-in-out;
}

.why-item:hover .why-item-wrap {
	box-shadow: 0 0 0 8px rgba(75, 61, 186, 0.3);
}

.why-item:hover .why-item-wrap::after {
	opacity: 1;
	z-index: 1;
}

.why-item-info {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 18px;
	align-items: flex-start;
	font-size: 24px;
	color: #ffffff;
}

.why-item-info .why-item-title {
	font-weight: 700;
}

.why-img {
	position: absolute;
	z-index: 2;
	transition: all 0.3s ease-in-out;
}

.why-img1 {
	right: -32px;
	top: -81px;
}

.why-item:hover .why-img1 {
	right: -29px;
	top: -71px;
}

.why-img2 {
	right: -73px;
	top: -125px;
}

.why-item:hover .why-img2 {
	right: -70px;
	top: -115px;
}

.why-img3 {
	right: -55px;
	top: -80px;
}

.why-item:hover .why-img3 {
	right: -52px;
	top: -70px;
}

.why-img4 {
	right: -55px;
	top: -97px;
}

.why-item:hover .why-img4 {
	right: -52px;
	top: -87px;
}

.why-img5 {
	right: -37px;
	top: -64px;
}

.why-item:hover .why-img5 {
	right: -34px;
	top: -54px;
}

.btn-arrow {
	position: static;
	height: 51px;
	width: 95px;
	border-radius: 40px;
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease-in-out;
	cursor: pointer;
	margin: 0;
}

.btn-arrow svg path {
	transition: all 0.3s ease-in-out;
}

.btn-arrow:hover {
	background-color: #FFFFFF;
}

.btn-arrow:hover svg path {
	stroke: #2D1744;
}

.swiper-arrow {
	display: flex;
	align-items: center;
	gap: 8px;
}

.swiper-button-prev:after, .swiper-button-next:after {
	content: '';
}

.block-description {
	text-align: center;
	margin: 60px auto 0;
	font-size: 24px;
	font-weight: 700;
}

.block-description .figure-line {
	position: relative;
	color: #00FDCB;
}

.block-description .figure-line:before {
	content: "";
	background-repeat: no-repeat;
	position: absolute;
	top: 100%;
	left: 0;
}

.block-description .why-line:before {
	background-image: url("../img/why_line.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 364px;
	height: 11px;
}

.block-description .meet-line:before {
	background-image: url("../img/meet_line.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 219px;
	height: 15px;
}

.why .btn-main {
	margin: 40px auto 0;
	display: flex;
	max-width: fit-content;
}

.wrapper-running {
	overflow: hidden;
	opacity: 0.9;
	transform: rotate(-3deg);
	backdrop-filter: blur(40px);
	position: relative;
	z-index: 2;
}

.running-line {
	display: flex;
	align-items: center;
	gap: 30px;
	height: 100px;
	position: relative;
	white-space: nowrap;
	background-color: rgba(94, 0, 156, 0.4);
}

.running-line-inners {
	display: flex;
	align-items: center;
	gap: 30px;
	font-family: 'DrukWideCyr', sans-serif;
	font-size: 30px;
	font-weight: 700;
	color: #CB7EFF;
	white-space: nowrap;
	text-transform: uppercase;
}

.figure-dollars {
	background-image: url("../img/icon_dollars.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 71px;
	height: 75px;
}

.animated-row-1 {
	animation: moving-string-1 20s linear infinite;
}

.offers {
	background-image: url("../img/bg_offers.svg");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0 127px;
	background-position: top 140px center;
	margin-top: 0;
	position: relative;
	z-index: 3;
}

.offers .subtitle {
	margin-top: 32px;
}

.offers-inners {
	margin-top: 25px;
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 32px;
	flex-wrap: wrap;
}

.offers-item {
	width: calc(25% - 25px);
	border-radius: 20px;
	overflow: hidden;
	background-color: rgba(97, 21, 142, 0.44);
	position: relative;
	transition: all 0.3s ease-in-out;
	backdrop-filter: blur(11px);
}

.offers-item::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 20px;
	border: 2px solid rgba(115, 54, 155, 0.49);
	pointer-events: none;
	z-index: 2;
}

.offers-item:hover {
	box-shadow: 0 0 0 7px rgba(171, 85, 227, 0.35);
	background-color: rgba(97, 21, 142, 0.64);
}

.offers-item:hover:before {
	border: 2px solid rgba(115, 54, 155, 0.80);
}

.offers-item-media {
	height: 177px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 20px 20px 0 0;
}

.offers-item-media img {
	transition: transform 0.3s ease-in-out;;
	max-height: 90px;
}

.offers-item-body {
	padding: 32px 24px 19px;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 8px;
	position: relative;
}

.offers-item-body:before {
	content: "";
	width: 145px;
	height: 2px;
	background-color: rgba(208, 159, 240, 0.16);
	position: absolute;
	top: 16px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
}

.offers-item-body p {
	font-size: 22px;
	color: #ffffff;
}

.offers-item-body .mark {
	font-weight: 700;
	color: #00FDCB;
}

.btn-offer {
	height: 45px;
	width: fit-content;
	padding: 5px 23px;
	min-width: 216px;
	border-radius: 40px;
	border: 1px solid #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	margin-top: 35px;
}

.btn-offer:hover {
	background-color: #FFFFFF;
	color: #02020B;
}

.offers-item:hover .offers-item-media img {
	transform: scale(1.1);
}

.offers .container {
	position: relative;
}

.offers .container:after {
	content: "";
	background-image: url("../img/img_coins.webp");
	background-size: cover;
	width: 917px;
	height: 1022px;
	position: absolute;
	right: -180px;
	top: -110px;
	z-index: -2;
}

.meet {
	background-color: #0F1525;
	padding: 24px 0 7px;
	position: relative;
	z-index: 3;
}

.swiper-meet {
	margin: 40px -8px 0;
}

.meet-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 15px;
}

.meet-item {
	padding: 8px;
	text-decoration: none;
	display: flex;
}

.meet-item-wrap {
	position: relative;
	height: 527px;
	width: 100%;
	border-radius: 30px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	z-index: 1;
	display: flex;
	align-items: flex-end;
}

.meet-item-body {
	position: absolute;
	bottom: 16px;
	left: 16px;
	right: 16px;
	padding: 16px;
	background-color: rgba(6, 5, 21, 0.5);
	border-radius: 20px;
	backdrop-filter: blur(24px);
	color: #ffffff;
	font-size: 16px;
	display: flex;
	align-items: center;
}

.meet-item-info {
	padding-right: 5px;
	flex: 1;
}

.meet-date {
	font-weight: 700;
}

.meet-name {
	font-weight: 700;
	font-size: 25px;
}

.meet-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(150, 126, 174, 0.4);
	position: relative;
	flex-shrink: 0;
	transition: all 0.3s ease-in-out;
}

.meet-arrow:after {
	content: "";
	background-image: url("../img/icon_arrow_right.svg");
	opacity: 0.5;
	background-size: cover;
	width: 8px;
	height: 15px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 0.3s ease-in-out;
}

.meet-item:hover .meet-item-wrap {
	box-shadow: 0 0 0 8px rgba(75, 61, 186, 0.3);
}

.meet-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 1s ease-in-out;
}

.meet-img.scale-fast {
	transform: scale(1.1);
}

.meet-img.scale-slow {
	transform: scale(1.5);
	transition: transform 15s ease-in-out;
}

.meet-item:hover .meet-arrow {
	border-color: rgba(226, 217, 235, 0.4);
}

.meet-item:hover .meet-arrow:after {
	opacity: 1;
}

.swiper-button-lock {
	display: none !important;
}

@keyframes moving-string-1 {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - 30px));
	}
}

@keyframes moving-string-2 {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-92% - 0px));
	}
}

.meet .subtitle span {
	color: #00FDCB;
}

.meet .btn-main {
	margin: 40px auto 0;
	display: flex;
	min-width: 341px;
	max-width: fit-content;
}

.meet-wrapper {
	position: relative;
	z-index: 0;
}

.meet-wrapper .container {
	position: relative;
}

.meet-wrapper .container:before {
	content: "";
	background-image: url("../img/meet_blur.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 2057px;
	height: 1024px;
	position: absolute;
	right: -340px;
	top: -150px;
	z-index: -1;
}

.meet-wrapper:after {
	content: "";
	width: 100%;
	height: 1037px;
	position: absolute;
	bottom: -93px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-image: url("../img/bg_meet.svg");
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
	background-position: bottom;
}

.work {
	padding: 140px 0;
	background-image: url("../img/bg_work.webp");
	background-repeat: no-repeat;
	background-position: top center;
}

.work-inners {
	margin-top: 68px;
	display: flex;
	align-items: stretch;
	gap: 63px;
	flex-wrap: wrap;
}

.work-item {
	width: calc(50% - 33px);
	position: relative;
}

.work-item-body {
	max-width: 500px;
	width: 80%;
	height: 244px;
	border-radius: 20px;
	margin-left: auto;
	background-color: rgba(97, 21, 142, 0.64);
	border: 1px solid #A576C4;
	background-image: url("../img/bg_item_work.svg");
	background-position: top right;
	background-repeat: no-repeat;
	padding: 0 20px 32px 123px;
	color: #ffffff;
	display: flex;
	backdrop-filter: blur(11px);
}

.work-item-body p {
	font-size: 24px;
}

.work-item-body div {
	margin-top: auto;
}

.work-item-body .text2 {
	font-weight: 700;
	margin-top: 10px;
	text-transform: uppercase;
}

.work-number {
	position: absolute;
	left: 0;
	top: -17px;
	z-index: 1;
}

.work .container {
	position: relative;
}

.work .container:after {
	content: "";
	background-image: url("../img/figure_cube.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 458px;
	height: 398px;
	position: absolute;
	right: 40px;
	top: -220px;
	z-index: -1;
	animation: floatCube 4s ease-in-out infinite;
}

.work .container:before {
	content: "";
	background-image: url("../img/work_blur.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 1725px;
	height: 1408px;
	position: absolute;
	left: -500px;
	bottom: -220px;
	z-index: -1;
}

@keyframes floatCube {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(10deg);
	}
	100% {
		transform: translateY(0px) rotate(0deg);
	}
}

.work .btn-main {
	margin: 40px auto 0;
	display: flex;
	min-width: 341px;
	max-width: fit-content;
}

.traffic {
	padding: 0;
	position: relative;
	background-image: url("../img/bg_traffic.webp");
	background-repeat: no-repeat;
	background-position: left;
}

.traffic-wrapper {
	position: relative;
}

.traffic:after {
	content: "";
	position: absolute;
	width: 100%;
	top: 81px;
	left: 0;
	bottom: 102px;
	background-color: #0F1525;
	z-index: -1;
}

.traffic-wrapper:before {
	content: "";
	background-image: url("../img/why_blur.svg");
	background-size: cover;
	width: 2076px;
	height: 993px;
	position: absolute;
	left: -530px;
	bottom: -150px;
}

.traffic-inners {
	display: flex;
	align-items: center;
}

.traffic .btn-main {
	margin-top: 90px;
	display: flex;
	min-width: 341px;
	max-width: fit-content;
}

.traffic-media {
	display: flex;
	align-items: center;
}

.traffic-wheel {
	background-image: url("../img/bg_wheel.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 898px;
	height: 898px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.traffic-wheel:after {
	content: "";
	background: linear-gradient(270deg, #030407 32%, rgba(5, 7, 12, 0.84) 50%, rgba(5, 7, 12, 0.59) 64%, rgba(14, 20, 34, 0) 86%);
	position: absolute;
	top: 0;
	bottom: 0;
	width: 696px;
	height: 701px;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 50%;
}

.traffic-media-button {
	height: 162px;
	width: 490px;
	display: flex;
	margin-right: -240px;
	align-items: center;
	padding: 20px 40px;
	background-color: rgba(134, 34, 188, 0.2);
	backdrop-filter: blur(15px);
	border-radius: 120px;
	border: 2px solid rgba(134, 81, 213, 0.18);
}

.wheel-btn {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #61158E;
	border-radius: 30px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	color: #ffffff;
	transition: all 0.3s ease-in-out;
}

.wheel-btn-wrap {
	border-radius: 30px;
	width: 197px;
	height: 57px;
	overflow: hidden;
	padding: 2px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(144, 100, 173, 0.4) 100%);
	transition: all 0.3s ease-in-out;
}

.wheel-btn-wrap:hover .wheel-btn {
	background-color: #7112A9;
}

.wheel-btn-wrap:hover {
	background: linear-gradient(180deg, rgba(252, 217, 255, 0.56) 0%, rgba(166, 57, 239, 0.94) 100%);
}

.wheel-arrow {
	position: absolute;
	left: -12px;
	top: 26px;
	bottom: 0;
	margin: auto;
}

.traffic-info {
	margin-top: -100px;
}

.bonuses {
	padding: 80px 0;
}

.bonuses .subtitle {
	margin-top: 32px;
	max-width: 1030px;
}

.bonuses .subtitle span {
	color: #00FDCB;
}

.bonuses-item {
	padding: 8px;
	text-decoration: none;
}

.bonuses-item-wrap {
	position: relative;
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	z-index: 1;
	background-color: rgba(0, 253, 203, 0.44);
	backdrop-filter: blur(11px);
	border: 2px solid rgba(0, 253, 203, 0.49);
}

.bonuses-item:hover .bonuses-item-wrap {
	box-shadow: 0 0 0 8px rgba(0, 253, 203, 0.34);
	background-color: rgba(0, 253, 203, 0.64);
	border: 2px solid rgba(0, 253, 203, 0.80);
}

.bonuses-item-media {
	height: 173px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FFFFFF;
	border-radius: 20px 20px 0 0;
}

.bonuses-item-media img {
	max-height: 148px;
}

.bonuses-item-body {
	padding: 20px 0 24px;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 21px;
	position: relative;
}

.btn-bonus {
	height: 45px;
	width: fit-content;
	padding: 5px 23px;
	min-width: 216px;
	border-radius: 40px;
	border: 1px solid #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.btn-bonus:hover {
	background-color: #FFFFFF;
	color: #02020B;
}

.block-gift {
	display: flex;
	align-items: center;
}

.block-gift .percent {
	font-family: 'DrukWideCyr', sans-serif;
	font-size: 45px;
	font-weight: 700;
	color: #ffffff;
}

.block-gift {
	transition: all 0.3s ease-in-out;
}

.bonuses-item:hover .block-gift {
	transform: scale(1.07);
}

.bonuses-wrapper {
	margin-top: 16px;
}

.swiper-bonuses {
	margin-top: 8px;
}

.bonuses .container {
	position: relative;
}

.bonuses .container:after {
	content: "";
	background-image: url("../img/img_stars.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 365px;
	height: 385px;
	position: absolute;
	right: -50px;
	top: -130px;
	z-index: -1;
	animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.bonuses .container:before {
	content: "";
	background-image: url("../img/bonuses_blur.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 1581px;
	height: 1010px;
	position: absolute;
	right: -370px;
	top: -220px;
	z-index: -1;
}

.swiper-bonuses-arrow {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.team {
	padding: 100px 0 120px;
}

.team .container {
	position: relative;
}

.team .container:after {
	content: "";
	background-image: url("../img/bg_team.webp");
	background-repeat: no-repeat;
	background-position: top right;
	background-size: cover;
	width: 952px;
	height: 874px;
	position: absolute;
	right: -40px;
	top: -140px;
	z-index: -1;
}

.team .container:before {
	content: "";
	background-image: url("../img/team_blur.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 1788px;
	height: 924px;
	position: absolute;
	left: -550px;
	bottom: -360px;
	z-index: -1;
}

.team-inners {
	display: flex;
	align-items: stretch;
	margin-top: 32px;
	flex-wrap: wrap;
	gap: 18px;
}

.team-item {
	width: calc(33% - 9px);
	transition: all 0.3s ease-in-out;
}

.team-item-body {
	height: 274px;
	border-radius: 30px;
	background-color: rgba(20, 44, 67, 0.3);
	border: 2px solid rgba(103, 101, 208, 0.18);
	backdrop-filter: blur(19px);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
	padding: 24px;
	background-image: url("../img/bg_item_team.svg");
	background-repeat: no-repeat;
	background-position: top right;
	transition: all 0.3s ease-in-out;
}

.team-name {
	font-size: 34px;
	color: #00FDCB;
}

.team-position {
	font-size: 18px;
	color: #ffffff;
	margin-top: 8px;
}

.btn-border {
	cursor: pointer;
	text-decoration: none;
	height: 56px;
	max-width: 309px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid #887F9F;
	border-radius: 40px;
	margin: 24px auto 0;
	font-size: 18px;
	color: #FFFFFF;
	transition: all 0.3s ease-in-out;
}

.btn-border svg path {
	transition: all 0.3s ease-in-out;
}

.btn-border:hover {
	background-color: #FFFFFF;
	border-color: #ffffff;
	color: #02020B;
}

.btn-border:hover svg path {
	stroke: #02020B;
}

.team-item-media {
	margin: 0 auto -60px;
	display: flex;
	width: fit-content;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	top: 0;
	transition: all 0.3s ease-in-out;
}
.team-item-media img{
	width: 120px;
	height: 120px;
	border-radius: 50%;
}
.team-item:hover .team-item-body {
	background-color: rgba(20, 44, 67, 0.77);
	box-shadow: 0 0 0 8px rgba(61, 128, 186, 0.2);
}

.team-item:hover .team-item-media {
	box-shadow: 0 0 0 7px rgba(61, 128, 186, 0.2);
	top: -7px;
}

.contacts {
	background-color: #0F1525;
	padding: 40px 0 53px;
	margin-top: 100px;
	background-image: url("../img/bg_contacts.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	position: relative;
}

.contacts:after {
	content: "";
	height: 216px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(15, 21, 37, 0.06) 0%, #02020B 100%);
}

.contacts .container {
	position: relative;
}

.img-contacts {
	position: absolute;
	left: 640px;
	top: 90px;
}

.contacts .container:before {
	content: "";
	background-image: url("../img/contacts_blur.svg");
	background-size: cover;
	width: 2058px;
	height: 1042px;
	position: absolute;
	right: -440px;
	top: -150px;
}

.contacts-block {
	margin-top: 32px;
	max-width: 693px;
	width: 100%;
	background-color: rgba(25, 31, 53, 0.3);
	border-radius: 30px;
	border: 2px solid rgba(107, 97, 197, 0.3);
	padding: 32px 80px;
	backdrop-filter: blur(9px);
	-webkit-backdrop-filter: blur(9px);
	position: relative;
	z-index: 1;
}

.form-title {
	font-size: 24px;
	color: #ffffff;
	font-weight: 700;
	text-align: center;
}

.groups-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	padding-top: 32px;
}

.form-groups {
	display: flex;
	align-items: stretch;
	gap: 16px;
}

.form-group label {
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 4px;
}

.form-group {
	flex: 1 1 0%;
	min-width: 0;
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
}

.form-group input {
	height: 48px;
	width: 100%;
	outline: none;
	border-radius: 40px;
	background-color: rgba(2, 2, 11, 0.26);
	border: 1px solid #8284A2;
	padding: 13px 16px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 300;
	font-style: italic;
	transition: all 0.3s ease-in-out;
}

.form-group textarea {
	height: 100px;
	width: 100%;
	outline: none;
	border-radius: 40px;
	background-color: rgba(2, 2, 11, 0.26);
	border: 1px solid #8284A2;
	padding: 13px 16px;
	font-weight: 300;
	font-style: italic;
	transition: all 0.3s ease-in-out;
	resize: none;
	display: block;
}

.form-group-field {
	position: relative;
	width: 100%;
}

.form-group label {
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 4px;
}

.form-group input:hover, .form-group textarea:hover {
	border-color: #FFFFFF;
}

.form-group input:active, .form-group input:focus {
	border-color: #FFFFFF;
	background-color: rgba(2, 2, 11, 1);
}

.form-group textarea:active, .form-group textarea:focus {
	border-color: #FFFFFF;
	background-color: rgba(2, 2, 11, 1);
}

.form-group.error input,
.form-group.error textarea {
	border-color: #DD5A7B !important;
	background-color: #1F040C;
}

.form-group .error-message {
	color: #DD5A7B;
	font-size: 14px;
	margin-top: 16px;
}

.form-groups-label {
	position: relative;
}

.form-group .error-field, .form-groups-label .error-field {
	position: absolute;
	bottom: -17px;
	left: 10px;
	color: #DD5A7B;
	font-size: 12px;
}

.form-group + .error-field, .form-groups-label +  .error-field{
	color: #DD5A7B;
	font-size: 14px;
	margin-top: 10px;
}

.error-field-last {
	color: #DD5A7B;
	font-size: 14px;
	margin-top: 10px;
}

.toggle-password {
	position: absolute;
	right: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 24px;
	height: 24px;
	background-image: url("../img/icon_eye.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.toggle-password.show {
	background-image: url("../img/icon_eye_off.svg");
}

.form-groups-socials {
	padding-top: 16px;
	border-top: 2px solid rgba(153, 153, 186, 0.22);
	position: relative;
}

.form-groups-socials-wrap {
	display: flex;
	gap: 7px;
	align-items: stretch;
}

.form-groups-socials .error-field {
	position: absolute;
	bottom: -17px;
	left: 10px;
	color: #DD5A7B;
	font-size: 12px;
}

.radio-block {
	display: flex;
	align-items: flex-start;
	position: relative;
	z-index: 1;
	flex: 1;
	width: 100%;
}

.radio-block input[type="radio"], .radio-block input[type="checkbox"] {
	display: none;
}

.radio-block label {
	transition: all 0.3s ease-in-out;
	border-radius: 40px;
	height: 48px;
	width: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background-color: rgba(128, 137, 161, 0.15);
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
}

.radio-block label svg path {
	transition: all 0.3s ease-in-out;
}

.radio-block input[type="radio"]:checked + label, .radio-block input[type="checkbox"]:checked + label {
	background-color: #00FDCB;
	color: #191C42;
}

.radio-block:hover label {
	background-color: rgba(128, 137, 161, 0.26);
}

.radio-block.social-tg input[type="radio"]:checked + label svg path, .radio-block.social-tg input[type="checkbox"]:checked + label svg path {
	stroke: #191C42;
}

.radio-block.social-whats input[type="radio"]:checked + label svg path, .radio-block.social-skype input[type="radio"]:checked + label svg path, .radio-block.social-whats input[type="checkbox"]:checked + label svg path, .radio-block.social-skype input[type="checkbox"]:checked + label svg path {
	fill: #191C42;
}

.check label,
.check input {
	cursor: pointer;
	margin: 0;
}

.check .check-in input[type="checkbox"] {
	display: none;
}

.form-group-check .check label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: #ffffff;
}

.check label a {
	font-size: 14px;
	font-weight: 500;
	color: #00FDCB;
}

.check .check-in input[type="checkbox"] + label .check-copy, .check .check-in input[type="radio"] + label .check-copy {
	width: 16px;
	height: 16px;
	cursor: pointer;
	display: inline-block;
	flex-shrink: 0;
	background-color: transparent;
	border: 1px solid #8284A2;
	border-radius: 3px;
	position: relative;
	transition: all 0.3s ease-in-out;
	top: 2px;
}

.check-copy:after {
	content: "";
	background-image: url("../img/icon_check.svg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	width: 10px;
	height: 9px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}

.check .check-in input[type="checkbox"]:checked + label .check-copy, .check .check-in input[type="radio"]:checked + label .check-copy {
	background-color: #00FDCB;
	border-color: #00FDCB;
}

.check .check-in input[type="checkbox"]:checked + label .check-copy:after, .check .check-in input[type="radio"]:checked + label .check-copy:after {
	opacity: 1;
}

.form-group-check {
	margin-top: 16px;
}

.form-group-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 16px auto 0;
}

.btn-form {
	border: 0;
}

.btn-form.btn-main {
	margin: 11px auto 0;
	display: flex;
	min-width: 341px;
	max-width: fit-content;
}

.footer {
	padding: 20px 0 32px;
	margin-top: auto;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 14px;
	color: #9294AC;
}

.footer-inners {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 2px solid rgba(49, 41, 71, 0.6);
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 35px;
}

.footer-links a {
	padding: 4px;
	font-size: 15px;
	color: #9294AC;
	transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
	color: #ffffff;
}

.block-m {
	display: none;
}

.overlay {
	position: fixed;
	background: rgba(2, 2, 11, 0.6);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1010;
	display: none;
}

.modal_main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: left;
	width: 100%;
	max-width: 620px;
}

.modal {
	position: fixed;
	overflow-y: auto;
	overflow-x: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 9999;
	display: none;
	text-align: center;
}

.modal_wrapper {
	width: 100%;
	height: auto;
	padding: 32px 51px;
	background: #1A2133;
	border-radius: 20px;
	margin: auto;
	position: relative;
}

.modal_close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	border: 1px solid #8284A2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.modal_close svg path {
	transition: all 0.3s ease-in-out;
}

.modal_close:hover {
	background-color: #8284A2;
}

.modal_close:hover svg path {
	stroke: #1A2133;
}

.page-contacts {
	background-image: url("../img/bg_page_contacts.svg");
}

.page-block h1 {
	font-family: 'DrukWideCyr', sans-serif;
	font-weight: 700;
	font-size: 51px;
	text-transform: uppercase;
}

.contacts-inners {
	display: flex;
	align-items: center;
	gap: 76px;
	justify-content: center;
	margin-top: 85px;
}

.contacts-inners .btn-border {
	height: 64px;
	max-width: 256px;
	font-weight: 500;
	margin: 0;
}

.contacts-inners .btn-border.btn-contacts1:hover svg path {
	stroke: #02020B;
}

.contacts-inners .btn-border.btn-contacts2:hover svg path {
	stroke: none;
	fill: #02020B;
}

.page-block {
	padding-top: 40px;
}

.page-block .container {
	position: relative;
}

.page-block .container:before {
	content: "";
	background-image: url("../img/page_contacts_blur.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 1552px;
	height: 831px;
	position: absolute;
	left: -550px;
	top: -350px;
	z-index: -2;
}

.contacts-all {
	display: flex;
	align-items: flex-end;
	margin-top: 32px;
	flex-wrap: wrap;
	gap: 18px;
}

.contact-item {
	width: calc(33% - 9px);
	transition: all 0.3s ease-in-out;
}

.contact-item-body {
	height: 274px;
	border-radius: 30px;
	background-color: rgba(20, 44, 67, 0.3);
	border: 2px solid rgba(103, 101, 208, 0.18);
	backdrop-filter: blur(19px);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-direction: column;
	padding: 24px;
	background-image: url("../img/bg_item_team.svg");
	background-repeat: no-repeat;
	background-position: top right;
	transition: all 0.3s ease-in-out;
	text-align: center;
}

.contact-item-body p {
	margin-top: 24px;
}

.contact-item-media {
	margin: 0 auto -60px;
	display: flex;
	width: fit-content;
	position: relative;
	z-index: 1;
	top: 0;
	transition: all 0.3s ease-in-out;
}

.contact-item:hover .contact-item-body {
	background-color: rgba(20, 44, 67, 0.77);
	box-shadow: 0 0 0 8px rgba(61, 128, 186, 0.2);
}

.contact-item:hover .contact-item-media {
	top: -7px;
}

.page-additional {
	background: none !important;
}

.faq-item {
	padding: 40px 0;
	border-bottom: 2px solid rgba(44, 45, 87, 0.8);
	font-size: 24px;
	color: #ffffff;
}

.faq-item .faq-question {
	font-weight: 700;
	margin-bottom: 16px;
	color: #00FDCB;
}

.faq-item p {
	max-width: 1166px;
}

.btn-back {
	margin-top: 41px;
	font-weight: 500;
}

.content-area {
	margin-top: 40px;
	font-size: 24px;
	color: #ffffff;
	max-width: 1166px;
}

.content-area p {
	margin-top: 20px;
}

.content-area ul,.content-area ol {
	padding-left: 25px;
	margin-top: 15px;
}

.content-area ul {
	list-style-type: disc;
}

.content-area ol {
	list-style-type: decimal;
}


.content-area a {
	color: #00FDCB;
}

.wrapper-forms {
	max-width: 956px;
	margin: 0 auto;
}

.forms-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.forms-nav-item {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.forms-nav-item.active span {
	background-color: #00FDCB;
	color: #140F2C;
	box-shadow: 0 0 0 9px rgba(157, 157, 180, 0.18);
}

.forms-nav-item.actived span {
	background-color: #00FDCB;
	color: #140F2C;
}

.forms-nav-item.actived + .forms-nav-line {
	background-color: #00FDCB;
}

.forms-nav-item span {
	width: 38px;
	height: 38px;
	background-color: #2C2C48;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 16px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.4);
}

.forms-nav-line {
	flex-grow: 1;
	height: 4px;
	background-color: #2C2C48;
	z-index: 1;
}

.forms-body {
	margin: 40px auto 0;
}

.step-1 {
	max-width: 520px;
	margin: 0 auto;
}

.step-2 {
	width: 100%;
}

.step-3 {
	max-width: 710px;
	margin: 0 auto;
}

.forms-body .groups-wrapper {
	padding-top: 0;
	gap: 24px;
}

.step-1 .forms-btns {
	margin-top: 50px;
}

.groups-wrapper .label-text {
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 8px;
}

.forms-body .form-group label {
	font-size: 18px;
	margin-bottom: 8px;
}

.form-groups-label .radio-block label {
	border-radius: 30px;
	height: 74px;
	gap: 0;
	font-size: 15px;
	font-weight: 400;
	backdrop-filter: blur(19px);
	text-align: center;
	padding: 0 10px;
}

.form-groups-label .radio-block input[type="radio"]:checked + label, .form-groups-label .radio-block input[type="checkbox"]:checked + label {
	font-weight: 500;
}

.form-groups-label .radio-block:hover label {
	background-color: #1F2944;
}

.forms-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 11px;
	gap: 40px;
}

.forms-btns .btn-border {
	margin: 0;
	max-width: 256px;
}

.forms-btns .btn-form {
	margin: 0;
}

.custom-select-wrapper {
	position: relative;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s ease-in-out;
}

.icon-info {
	position: absolute;
	right: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.icon-info svg path {
	transition: all 0.3s ease-in-out;
}

.icon-info:hover svg path {
	stroke: #ffffff;
}

.info-body {
	border-radius: 20px;
	background-color: #535677;
	max-width: 444px;
	width: 100%;
	padding: 24px;
	font-size: 15px;
	line-height: normal;
	color: #ffffff;
	display: none;
	position: absolute;
	bottom: 100%;
	left: 0;
	z-index: 2;
	transform: translateX(47%) translateY(-1px);
}

.icon-info:hover + .info-body {
	display: block;
}

.custom-select-trigger {
	height: 48px;
	width: 100%;
	outline: none;
	border-radius: 40px;
	background-color: rgba(2, 2, 11, 0.26);
	border: 1px solid #8284A2;
	padding: 13px 70px 13px 16px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 18px;
	font-weight: 300;
	font-style: italic;
	transition: all 0.3s ease-in-out;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.custom-select-trigger:after {
	content: "";
	background-image: url('../img/icon_arrow_select.svg');
	background-repeat: no-repeat;
	right: 50px;
	top: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	width: 14px;
	height: 15px;
	transition: all 0.3s ease-in-out;
}

.custom-options-wrap {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #1A2133;
	border: 1px solid #8284A2;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	z-index: 10;
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
	pointer-events: none;
	overflow-y: auto;
	padding: 8px 12px;
	scrollbar-width: thin;
	scrollbar-color: #8284A2 transparent;
	margin-top: 1px;
}

.custom-select-wrapper.active .custom-options-wrap {
	max-height: 331px;
	opacity: 1;
	pointer-events: auto;
	border-color: #8284A2;
}

.custom-select-wrapper.active .custom-options-wrap.wrap-geo {
	max-height: 600px;
}

.custom-options-wrap::-webkit-scrollbar {
	height: 2px;
	background: transparent;
}

.custom-options-wrap::-webkit-scrollbar-thumb {
	background: #8284A2;
	border-radius: 10px;
}

.custom-options-wrap::-webkit-scrollbar-track {
	background: transparent;
}

.custom-options {
	display: flex;
	flex-direction: column;
}

.custom-select-trigger:hover {
	border-color: #FFFFFF;
}

.custom-select-wrapper.active .custom-select-trigger {
	border-color: #FFFFFF;
}

.custom-option .check label {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 18px;
	color: #ffffff;
	padding: 16px;
	height: 54px;
	border-radius: 77px;
	margin: 0;
}

.custom-select-wrapper.active .custom-select-trigger:after {
	transform: rotate(180deg);
	background-image: url('../img/icon_arrow_select_white.svg');
}

.custom-option {
	cursor: pointer;
	transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.custom-option:hover .check label {
	background-color: rgba(83, 86, 119, 0.2);
	color: #ffffff;
}

.custom-option .check .check-in input[type="checkbox"] + label .check-copy {
	top: 4px;
}

.btn-select {
	background-color: transparent;
	height: 45px;
	width: 100%;
	max-width: 100%;
	margin-top: 15px;
}

.step-3 .form-groups-label .radio-block label {
	height: 46px;
}

.upload-wrap {
	border-radius: 30px;
	background-color: #0F1525;
	height: 143px;
	display: flex;
	align-items: center;
	gap: 86px;
	justify-content: center;
}

.upload-wrap.dragover {
	background-color: rgba(130, 132, 162, 0.2);
	border: 2px dashed #8284A2;
}

.upload-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	font-size: 15px;
	color: #8284A2;
	width: fit-content;
}

.upload-right {
	width: 246px;
}

.upload-left {
	cursor: pointer;
}

.upload-item .btn-border {
	margin: 0;
	height: 45px;
	width: 100%;
	max-width: 246px;
	font-size: 18px;
	font-weight: 500;
	border: 1px solid #ffffff;
	cursor: pointer;
}

.btn-link-back {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.btn-link-back svg path {
	transition: all 0.3s ease-in-out;
}

.btn-link-back:hover svg path {
	fill: #02020B;
	stroke: none;
}

.content-thanks {
	display: flex;
	align-items: flex-start;
	gap: 114px;
}

.content-thanks-info {
	max-width: 880px;
}

.content-thanks-info p {
	font-size: 24px;
	color: #ffffff;
}

.content-thanks-info p.text1 {
	margin: 40px 0 16px;
	font-weight: 600;
	color: #00FDCB;
}

.content-thanks-info p.text2 {
	margin-top: 40px;
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
}

.content-thanks-btns {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	margin-top: 16px;
	gap: 16px;
}

.content-thanks-btns a {
	margin: 0;
}

.content-thanks-btns .btn-thanks-tg {
	height: 64px;
	max-width: 294px;
}

.content-thanks-btns .btn-link-back {
	height: 64px;
	max-width: 294px;
}

.content-thanks-media {
	position: relative;
}

.content-thanks-media:after {
	content: "";
	background-image: url("../img/thanks_blur.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 1027px;
	height: 874px;
	position: absolute;
	left: -330px;
	top: -200px;
	z-index: -1;
}

.groups-wrapper .form-group-check {
	margin-top: 0;
}

.btn-form[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
	transition: all 0.3s ease;
	background-color: #555
}

.form-group.error input,
.form-group.error textarea,
.form-group.error .custom-select-trigger {
	border-color: #DD5A7B !important;
	background-color: #1F040C;
}

.form-group.error .icon-info svg path {
	stroke: #DD5A7B;
}

.form-group.error .custom-option .check label {
	color: inherit;
}

.form-groups-label.error .label-text {
	color: #DD5A7B;
}

.form-group.error label, .form-group.error .label-text {
	color: #DD5A7B;
}

.error-message {
	color: #DD5A7B;
	font-size: 14px;
	display: block;
}

.form-group-check .error-message {
	margin-top: 4px;
}

.form-groups-language-wrap {
	display: flex;
	align-items: stretch;
	gap: 16px;
	width: 100%;
}

@media screen and (min-width: 1400px) {
	.bg-figure::after {
		height: 145px;
	}
}

@media screen and (min-width: 1600px) {
	.bg-figure::after {
		height: 175px;
		bottom: -151px;
	}
}

@media screen and (max-width: 1350px) {
	.main-menu {
		margin-left: 20px;
	}

	h1 {
		font-size: 68px;
	}

	h2 {
		font-size: 40px;
	}

	.page-block h1 {
		font-size: 40px;
	}

	.btn-arrow {
		height: 41px;
		width: 85px;
	}

	.btn-arrow svg {
		width: 20px;
		height: auto;
	}

	.swiper-why {
		margin: 40px -15px 0;
		padding: 0 15px;
	}

	.why-item-info {
		font-size: 20px;
	}

	.why-item-wrap {
		height: 400px;
		padding: 20px 15px;
	}

	.work-item-body {
		height: 204px;
		padding: 0 9px 22px 153px;
	}

	.work-item-body p {
		font-size: 20px;
	}

	.work-number {
		max-width: 250px;
	}

	.traffic-media-button {
		height: 122px;
		width: 330px;
		margin-right: -110px;
		padding: 20px 20px;
	}

	.traffic-wheel {
		width: 818px;
		height: 818px;
	}

	.img-wheel {
		max-width: 640px;
	}

	.block-gift .percent {
		font-size: 35px;
	}

	.img-contacts {
		left: 600px;
		top: 110px;
		max-width: 640px;
	}

	.img-main {
		max-width: 720px;
	}

	.traffic {
		background-size: cover;
	}

	.traffic:after {
		display: none;
	}
}

@media screen and (max-width: 1200px) {
	.main-menu li a {
		padding: 10px 5px;
		font-size: 13px;
	}

	.btn-top {
		margin-left: 10px;
	}

	h1 {
		font-size: 58px;
	}

	.subtitle {
		font-size: 20px;
		margin-top: 30px;
	}

	.block-description {
		margin: 40px auto 0;
		font-size: 20px;
	}

	.block-description .why-line:before {
		width: 314px;
		height: 9px;
	}

	.btn-main .btn-wrap {
		font-size: 15px;
	}

	.running-line {
		gap: 30px;
		height: 80px;
	}

	.running-line-inners {
		font-size: 20px;
	}

	.figure-dollars {
		width: 51px;
		height: 54px;
	}

	.offers-item-body {
		padding: 22px 14px 15px;
		gap: 8px;
	}

	.offers-item-body p {
		font-size: 18px;
	}

	.offers-item-body:before {
		top: 12px;
	}

	.btn-offer {
		height: 45px;
		padding: 5px 10px;
		font-size: 16px;
	}

	.offers-item-media img {
		max-width: 180px;
	}

	.offers-item-media {
		height: 137px;
	}

	.offers-inners {
		gap: 20px;
	}

	.offers-item {
		width: calc(25% - 15px);
	}

	.block-description .meet-line:before {
		width: 179px;
		height: 12px;
	}

	.why-item-info {
		font-size: 18px;
		gap: 10px;
	}

	.meet-name {
		font-size: 24px;
	}

	.meet-item-info {
		padding-right: 10px;
		font-size: 15px;
	}

	.meet-arrow {
		width: 48px;
		height: 48px;
	}

	.img-gift {
		max-width: 70px;
	}

	.block-gift .percent {
		font-size: 30px;
	}

	.work-item-body {
		padding: 0 9px 22px 123px;
		font-size: 16px;
		width: 75%;
	}

	.work-item-body p {
		font-size: 16px;
	}

	.work-inners {
		gap: 41px;
	}

	.work-item {
		width: calc(50% - 22px);
	}

	.contacts-inners {
		gap: 36px;
		margin-top: 65px;
	}

	.content-thanks {
		gap: 50px;
	}

}

@media screen and (max-width: 1100px) {
	.header {
		padding: 12px 0;
	}

	#menu-toggle {
		margin-left: auto;
	}

	#menu-toggle span {
		display: block;
		background: #ffffff;
		border-radius: 2px;
		transition: .25s ease-in-out;
	}

	#menu-toggle #hamburger {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		width: 32px;
		padding: 0 6px;
		height: 32px;
	}

	#menu-toggle #hamburger span {
		width: 18px;
		height: 2px;
		position: relative;
		top: 0;
		right: 0;
		margin: 4px 0;
	}

	#menu-toggle #hamburger span:last-child {
		width: 12px;
		height: 2px;
	}

	#menu-toggle.open #hamburger span:nth-child(1) {
		transform: rotate(-45deg) translate(-1px, 1px);
		margin: 0;
	}

	#menu-toggle.open #hamburger span:last-child {
		width: 18px;
		height: 2px;
	}

	#menu-toggle.open #hamburger span:nth-child(3) {
		opacity: 0;
	}

	#menu-toggle.open #hamburger span:nth-child(2) {
		margin: 0;
		transform: rotate(45deg) translate(0px, -1px);
	}

	.overlay-top {
		position: fixed;
		background-color: #13182C;
		top: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: auto;
		transform: translateX(100%);
		-webkit-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
		overflow: hidden;
		display: block;
		padding: 56px 0 0;
	}

	.scroll {
		width: 100%;
		height: 100%;
		display: flex;
		overflow: hidden;
		overflow-y: scroll;
		flex-direction: column;
		justify-content: flex-start;
		padding-top: 36px;
	}

	.overlay-top.open {
		z-index: 15;
		transform: translateX(0);
		width: 100%;
	}

	#menu-toggle {
		display: flex;
		z-index: 99;
	}

	.top-btns {
		margin-left: auto;
		margin-top: -10px;
	}

	#menu-toggle {
		margin-left: auto;
	}

	.header .logo {
		max-width: 145px;
	}

	.main-menu li a {
		padding: 10px;
		font-size: 15px;
		height: 40px;
		font-weight: 500;
	}

	.menu-text-wrap {
		height: 40px;
	}

	.menu-text, .menu-text-copy {
		height: 40px;
		line-height: 40px;
	}

	.main-menu {
		gap: 8px;
		margin-left: 0;
		flex-direction: column;
		width: 100%;
		padding: 0 20px;
	}

	.main-menu li {
		width: 100%;
		max-width: 450px;
	}

	.main-menu li a:hover {
		background-color: rgba(255, 255, 255, 0.1);
	}

	.menu-anim:hover .menu-text-copy {
		transform: translateY(100%);
	}

	.menu-anim:hover .menu-text {
		transform: none;
	}

	.languages {
		margin-top: 32px;
		gap: 4px;
		margin-left: 0;
	}

	.languages a {
		font-size: 15px;
	}

	.btn-top {
		margin-left: 0;
		margin-top: 48px;
		max-width: 400px;
		width: 90%;
	}

	.main-block {
		flex-direction: column-reverse;
	}

	.img-main {
		max-width: 550px;
		width: 100%;
		margin: 0 auto;
	}

	.header:after {
		height: 70px;
	}

	h1 {
		font-size: 36px;
	}

	.main {
		padding-top: 58px;
		padding-bottom: 100px;
		background-image: url("../img/bg_main_m.webp?v=2");
		background-position: top center;
	}

	.page-contacts {
		background-image: url("../img/bg_page_contacts.svg");
		background-size: 580px;
	}

	.subtitle {
		font-size: 16px;
		margin-top: 16px;
	}

	.btn-main {
		margin-top: 24px;
	}

	h2 {
		font-size: 27px;
	}

	.page-block h1 {
		font-size: 27px;
	}

	.why-top {
		align-items: flex-start;
		gap: 10px;
		flex-direction: column;
	}

	.swiper-why-arrow {
		align-self: flex-end;
	}

	.btn-arrow {
		height: 40px;
		width: 76px;
	}

	.swiper-why {
		margin: 16px -15px 0;
	}

	.swiper-why:after {
		display: none;
	}

	.why-item-wrap {
		height: 360px;
	}

	.main > .container:after {
		width: 1117px;
		height: 964px;
		left: -390px;
		top: -150px;
	}

}

@media screen and (max-width: 1023px) {
	.team-inners {
		align-items: center;
		flex-direction: column;
		margin-top: 16px;
		gap: 18px;
	}

	.team-item {
		max-width: 500px;
		width: 100%;
	}

	.team-item-body {
		height: 219px;
		padding: 24px 17px;
		background-image: url("../img/bg_item_team_m.svg");
		background-position: top center;
	}

	.team-item-media {
		margin: 0 auto -50px;
		width: 100px;
	}

	.team-name {
		font-size: 24px;
	}

	.team-position {
		font-size: 16px;
	}

	.btn-border {
		max-width: 360px;
		gap: 10px;
		margin: 16px auto 0;
		font-size: 16px;
	}

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

	.offers-item {
		width: calc(33% - 15px);
	}

	.swiper-meet {
		margin: 16px -15px 0;
		padding: 0 15px;
	}

	.meet-top {
		align-items: flex-start;
		justify-content: space-between;
		gap: 15px;
		flex-direction: column;
	}

	.swiper-meet-arrow {
		align-self: flex-end;
	}

	.work-inners {
		gap: 41px;
		flex-direction: column;
		align-items: center;
	}

	.work-item {
		width: 100%;
		max-width: 560px;
	}

	.work {
		padding: 110px 0 30px;
	}

	.work-number {
		max-width: 220px;
	}

	.work-item-body {
		padding: 0 9px 22px 123px;
		width: 80%;
		max-width: 570px;
		background-size: 240px;
	}

	.work-number {
		position: absolute;
		left: 0;
		top: -10px;
		z-index: 1;
	}

	.work .container:after {
		width: 298px;
		height: 258px;
		right: 0;
		top: -140px;
	}

	.traffic-inners {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}

	.traffic-info {
		margin-top: 0;
	}

	.img-wheel {
		max-width: 380px;
	}

	.traffic {
		padding: 64px 0;
	}

	.traffic-wheel:after {
		display: none;
	}

	.traffic-wheel {
		width: 488px;
		height: 488px;
	}

	.wheel-btn-wrap {
		width: 131px;
		height: 45px;
		padding: 1px;
	}

	.wheel-btn {
		font-size: 15px;
	}

	.traffic-media-button {
		height: 92px;
		width: 281px;
		margin-right: -140px;
		padding: 24px 16px;
	}

	.wheel-arrow {
		left: -6px;
		top: 15px;
		bottom: 0;
		margin: auto;
		max-width: 93px;
	}

	.block-m {
		display: block;
	}

	.block-d {
		display: none !important;
	}

	.traffic h2 br {
		display: none;
	}

	.traffic-media {
		margin: 0 auto;
	}

	.swiper-bonuses {
		margin-left: -15px;
		margin-right: -15px;
		padding: 0 15px;
	}

	.traffic .btn-main {
		margin-top: -20px;
	}

	.footer-links {
		gap: 20px;
	}

	.contacts-all {
		align-items: center;
		flex-direction: column;
		margin-top: 16px;
		gap: 18px;
	}

	.contact-item {
		max-width: 500px;
		width: 100%;
	}

	.contact-item-body {
		height: 222px;
		padding: 24px 17px;
		background-image: url("../img/bg_item_team_m.svg");
		background-position: top center;
	}

	.contact-item .btn-main {
		height: 46px;
	}

	.contact-item-body p {
		margin-top: 19px;
		font-size: 16px;
	}

	.img-letter-a {
		height: 98px;
	}

	.contact-item-media {
		margin: 0 auto -50px;
	}

	.img-letter-w {
		height: 92px;
	}

	.img-letter-p {
		height: 101px;
	}

	.page-block {
		padding-top: 0;
	}

	.contacts-inners {
		gap: 16px;
		margin-top: 32px;
		flex-direction: column;
	}

	.contacts-inners .btn-border {
		height: 56px;
		max-width: 350px;
		font-size: 15px;
	}

	.faq-item {
		padding: 24px 0;
		font-size: 16px;
	}

	.page-additional {
		padding-bottom: 50px;
	}

	.btn-back {
		margin-top: 24px;
	}

	.content-area {
		margin-top: 24px;
		font-size: 16px;
	}

	.content-thanks {
		gap: 15px;
		align-items: center;
		flex-direction: column-reverse;
	}

	.content-thanks-info p {
		font-size: 16px;
	}

	.content-thanks-info p.text2 {
		font-size: 14px;
		font-weight: 500;
	}

	.content-thanks-info {
		max-width: 100%;
		width: 100%;
	}

	.content-thanks-media {
		max-width: 200px;
	}

	.wrapper-forms {
		margin-top: 55px;
	}

	.step-1 .forms-btns {
		margin-top: 11px;
	}

}

@media screen and (max-width: 767px) {
	.why-item:hover .why-item-wrap {
		box-shadow: 0 0 0 4px rgba(75, 61, 186, 0.3);
	}

	.why-item {
		padding: 4px;
	}

	.why-item-wrap {
		height: 237px;
		padding: 10px;
		border-radius: 15px;
	}

	.why-item-wrap::before {
		border-radius: 15px;
	}

	.why-item-info {
		font-size: 14px;
		gap: 8px;
	}

	.why-img {
		max-width: 150px;
	}

	.why-img1 {
		right: -2px;
		top: -30px;
	}

	.why-item:hover .why-img1 {
		right: 1px;
		top: -20px;
	}

	.why-img2 {
		right: -20px;
		top: -46px;
	}

	.why-item:hover .why-img2 {
		right: -17px;
		top: -36px;
	}

	.why-img3 {
		right: -10px;
		top: -40px;
	}

	.why-item:hover .why-img3 {
		right: -7px;
		top: -30px;
	}

	.why-img4 {
		right: -16px;
		top: -49px;
		max-width: 180px;
	}

	.why-item:hover .why-img4 {
		right: -13px;
		top: -39px;
	}

	.why-img5 {
		right: -3px;
		top: -29px;
		max-width: 175px;
	}

	.why-item:hover .why-img5 {
		right: 0;
		top: -19px;
	}

	.swiper-why {
		margin: 16px -24px 0;
	}

	.bg-figure::before, .bg-figure-top::before {
		height: 59px;
		top: -59px;
	}

	.bg-figure::after {
		height: 71px;
		bottom: -71px;
	}

	.why {
		padding: 0 0 10px;
	}

	.block-description {
		margin: 22px auto 0;
		font-size: 16px;
	}

	.block-description .why-line:before {
		display: none;
	}

	.block-description br {
		display: none;
	}

	.why .btn-main {
		margin: 17px auto 0;
		text-align: center;
	}

	.btn-main .btn-wrap {
		white-space: normal;
	}

	.btn-main {
		text-align: center;
		max-width: 400px;
		width: 100%;
	}

	.btn-main .btn-wrap .btn-text, .btn-main .btn-wrap .btn-text-copy {
		height: 57px;
		line-height: 1;
	}

	.why .btn-main .btn-wrap {
		padding: 0 55px;
	}

	.running-line {
		gap: 16px;
		height: 53px;
	}

	.wrapper-running {
		margin-top: 20px;
	}

	.running-line-inners {
		font-size: 16px;
		gap: 16px;
	}

	.figure-dollars {
		width: 38px;
		height: 40px;
	}

	@keyframes moving-string-1 {
		from {
			transform: translateX(0);
		}
		to {
			transform: translateX(calc(-100% - 16px));
		}
	}
	@keyframes moving-string-2 {
		from {
			transform: translateX(0);
		}
		to {
			transform: translateX(calc(-100% - 16px));
		}
	}

	.why-wrapper:before {
		width: 1246px;
		height: 562px;
		left: -550px;
		bottom: auto;
		top: -110px;
	}

	.team .container:before {
		width: 968px;
		height: 534px;
		left: -520px;
		bottom: -200px;
	}

	.team .container:after {
		width: 622px;
		height: 544px;
		right: -190px;
		top: 130px;
	}

	.offers .subtitle {
		margin-top: 16px;
	}

	.offers-item-media {
		height: 93px;
		border-radius: 10px 10px 0 0;
	}

	.offers-inners {
		gap: 10px;
		margin-top: 16px;
	}

	.offers-item {
		width: calc(50% - 5px);
		border-radius: 10px;
	}

	.offers-item::before {
		border-radius: 10px;
	}

	.offers-item:hover {
		box-shadow: 0 0 0 4px rgba(171, 85, 227, 0.35);
	}

	.offers-item-body p {
		font-size: 14px;
	}

	.offers-item-media img {
		max-width: 140px;
		width: 100%;
	}

	.offers-item-body {
		padding: 22px 6px 10px;
		gap: 8px;
	}

	.btn-offer {
		height: 35px;
		padding: 5px 5px;
		width: 100%;
		font-size: 13px;
		min-width: auto;
		text-align: center;
		margin-top: 20px;
	}

	.offers {
		padding: 30px 0 67px;
		background-position: top 10px center;
	}

	.offers h2 br {
		display: none;
	}

	.offers .container:after {
		width: 507px;
		height: 562px;
		right: -160px;
		top: 30px;
	}

	.meet {
		padding: 0;
	}

	.meet-item-body {
		bottom: 11px;
		left: 11px;
		right: 11px;
		padding: 11px;
		border-radius: 11px;
		font-size: 14px;
	}

	.meet-item {
		padding: 5px;
	}

	.meet-item:hover .meet-item-wrap {
		box-shadow: 0 0 0 5px rgba(75, 61, 186, 0.3);
	}

	.meet-item-wrap {
		height: 320px;
		border-radius: 11px;
	}

	.meet-date {
		font-size: 12px;
	}

	.meet-name {
		font-size: 19px;
	}

	.meet-arrow {
		width: 39px;
		height: 39px;
	}

	.meet-arrow:after {
		width: 6px;
		height: 11px;
	}

	.block-description .meet-line:before {
		display: none;
	}

	.meet .btn-main {
		margin: 16px auto 0;
		min-width: auto;
		max-width: 400px;
	}

	.meet-wrapper .container:before {
		width: 887px;
		height: 464px;
		right: -300px;
		top: -20px;
	}

	.work {
		padding: 90px 0 30px;
		background: url("../img/bg_work1_m.webp") no-repeat top right,
		url("../img/bg_work2_m.webp") no-repeat bottom 90px left;
	}

	.work .container:after {
		width: 228px;
		height: 198px;
		right: -100px;
		top: -130px;
	}

	.work h2 br {
		display: none;
	}

	.work-number {
		max-width: 137px;
	}

	.work-item-body {
		padding: 0 9px 8px 63px;
		width: 81%;
		max-width: 570px;
		background-size: 180px;
		min-height: 130px;
		height: auto;
	}

	.work-inners {
		gap: 28px;
		margin-top: 38px;
	}

	.work-number2 {
		top: -5px;
		left: -7px;
	}

	.work-number3 {
		top: -2px;
		left: -7px;
	}

	.work-number4 {
		top: 0;
		left: -4px;
	}

	.work .container:before {
		width: 995px;
		height: 897px;
		left: -570px;
		bottom: auto;
		top: -270px;
	}

	.traffic {
		padding: 40px 0;
	}

	.traffic-wrapper:before {
		width: 1076px;
		height: 693px;
		left: -670px;
		bottom: auto;
		top: 0;
	}

	.bonuses h2 br {
		display: none;
	}

	.bonuses-item-media {
		height: 134px;
		border-radius: 15px 15px 0 0;
	}

	.bonuses-item {
		padding: 6px;
	}

	.bonuses-item:hover .bonuses-item-wrap {
		box-shadow: 0 0 0 6px rgba(0, 253, 203, 0.34);
	}

	.bonuses-item-wrap {
		border-radius: 15px;
	}

	.block-gift .percent {
		font-size: 26px;
	}

	.img-gift {
		max-width: 63px;
	}

	.bonuses-item-body {
		padding: 16px 0;
		gap: 21px;
	}

	.bonuses {
		padding: 40px 0;
	}

	.bonuses .container:after {
		width: 155px;
		height: 165px;
		right: -20px;
		top: -40px;
	}

	.bonuses .subtitle {
		margin-top: 16px;
	}

	.btn-bonus {
		height: 35px;
		padding: 5px 6px;
		min-width: auto;
		width: 90%;
		font-size: 14px;
	}

	.bonuses .container:before {
		width: 1001px;
		height: 690px;
		right: -170px;
		top: -170px;
	}

	.contacts {
		padding: 0;
		margin-top: 50px;
		background-image: none;
	}

	.contacts h2 br {
		display: none;
	}

	.img-contacts {
		max-width: 450px;
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
		margin: 0 auto;
	}

	.contacts-block {
		margin: -58px auto 0;
		width: 100%;
		padding: 24px 16px;
	}

	.form-title {
		font-size: 16px;
		text-align: left;
	}

	.groups-wrapper {
		gap: 24px;
		padding-top: 16px;
	}

	.form-groups {
		gap: 24px;
		flex-direction: column;
	}

	.form-group label {
		font-size: 15px;
		margin-bottom: 12px;
	}

	.form-groups-socials label span {
		display: none;
	}

	.form-groups-socials {
		padding-top: 0;
		border-top: 0;
	}

	.form-groups-socials-wrap {
		gap: 7px;
	}

	.check .check-in input[type="checkbox"] + label .check-copy {
		width: 20px;
		height: 20px;
	}

	.form-group-check .check label {
		font-size: 14px;
		line-height: 170%;
	}

	.btn-form.btn-main {
		min-width: auto;
		width: 100%;
		max-width: 450px;
	}

	.form-group input {
		font-size: 16px;
	}

	.footer {
		padding: 16px 0 24px;
	}

	.footer-inners {
		align-items: flex-start;
		gap: 24px;
		flex-direction: column;
	}

	.footer-links {
		gap: 20px;
		align-self: center;
	}

	.modal_wrapper {
		padding: 22px 21px;
	}

	.modal_main {
		width: 95%;
	}

	.modal .form-title {
		padding-right: 30px;
	}

	.meet {
		z-index: 2;
	}

	.content-thanks-media {
		max-width: 110px;
	}

	.content-thanks-media:after {
		width: 487px;
		height: 464px;
		left: -100px;
		top: -150px;
	}

	.groups-wrapper .label-text {
		font-size: 16px;
	}

	.form-groups-label .radio-block label {
		border-radius: 30px;
		height: 70px;
		gap: 0;
		font-size: 15px;
		font-weight: 400;
		backdrop-filter: blur(19px);
		text-align: center;
		padding: 0 10px;
	}

	.form-groups-label .form-groups {
		flex-wrap: wrap;
		flex-direction: row;
		gap: 15px;
	}

	.form-groups-label .form-groups .radio-block {
		flex: none;
		width: calc(50% - 8px);
		max-width: none;
	}

	.form-groups-label .form-groups .radio-block-traffic-1 {
		width: 100%;
	}

	.forms-btns {
		flex-direction: column;
		margin-top: 11px;
		gap: 20px;
	}

	.forms-btns .btn-border {
		max-width: 440px;
	}

	.form-groups-label .form-groups-language .radio-block {
		flex: 1;
		width: auto;
		max-width: none;
	}

	.upload-left {
		display: none;
	}

	.text-or {
		display: none;
	}

	.upload-wrap {
		height: 118px;
	}

	.form-group .error-field, .form-groups-label .error-field {
		position: static;
		bottom: 0;
		left: 0;
		font-size: 12px;
		margin-top: 3px;
		margin-left: 10px;
	}

}

@media screen and (max-width: 550px) {
	.traffic-wheel:after {
		display: block;
		background: linear-gradient(270deg, #030407 32%, rgba(5, 7, 12, 0.84) 50%, rgba(7, 11, 18, 0.59) 64%, rgba(14, 20, 34, 0) 86%);
		width: 380px;
		height: 381px;
	}

	.traffic-media {
		margin-top: -15px;
		margin-left: -10px;
	}

	.block-m {
		width: 100%;
	}

	.traffic .btn-main {
		margin-top: -20px;
		display: flex;
		min-width: auto;
		max-width: 400px;
		width: 100%;
	}

	.contacts .container:before {
		width: 1028px;
		height: 542px;
		right: -270px;
		top: 0;
	}

	.footer-links {
		gap: 5px;
		justify-content: space-between;
		width: 100%;
		flex-wrap: wrap;
	}

	.footer-links a {
		font-size: 14px;
	}
}



/* =============================*/

.grecaptcha-badge {
	display: none !important;
}


.partners {
    padding: 80px 0;
    background: #02020B;
}


.partners-slider {
    overflow: hidden;
    position: relative;
		margin-top: 80px;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 120px; /* Расстояние между логотипами */
    animation: moving-string-2 30s linear infinite;
}

/* Обертки для групп, если решили их использовать (необязательно, можно и без них) */
.partners-group {
    display: flex;
    align-items: center;
    gap: 120px; 
}

.partners-track a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    transition: transform 0.3s ease;
}

.partners-track img {
    width: 100%;
    transition: all 0.3s ease;
		object-fit: cover;
}

/* Hover эффект в стиле сайта */
.partners-track a:hover img {
    opacity: 1;
    transform: scale(1.1);
}


/* Адаптив для мобильных */
@media (max-width: 768px) {
    .partners-track {
        gap: 40px; /* Уменьшаем зазор */
				animation: moving-string-2 30s linear infinite;
    }
    
    .partners-group {
        gap: 40px; /* Зазор в группе тоже должен быть 40px */
    }

    .partners-track a {
        min-width: 80px; /* Размер лого на мобилках */
    }
}