@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Light.woff2') format('woff2'),
	url('../fonts/Inter-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Regular.woff2') format('woff2'),
	url('../fonts/Inter-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Medium.woff2') format('woff2'),
	url('../fonts/Inter-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Bold.woff2') format('woff2'),
	url('../fonts/Inter-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

* {
	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%;
	position: relative;
}

form,
input,
textarea,
button {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-style: normal;
}

input[type="submit"],
input[type="button"] {
	appearance: none;
	-webkit-appearance: none;
}

button {
	cursor: pointer;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
}

a img {
	border: none;
}

body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #121316;
	position: relative;
}

.container {
	max-width: 1188px;
	width: 100%;
	padding: 0 16px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.header {
	z-index: 15;
	position: fixed;
	width: 100%;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 15px;
	transition: all 0.3s ease-in-out;
}

.header .container {
	padding: 0;
	max-width: 1082px;
}

.overlay-top {
	width: 100%;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 46px;
	background-color: rgba(25, 26, 30, 0.65);
	padding: 8px 10px;
	backdrop-filter: blur(36px);
	border: 1px solid rgba(140, 150, 208, 0.15);
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 0;
	list-style-type: none;
	margin: 0 auto;
}

.main-menu li {
	margin: 0;
}

.main-menu li a {
	padding: 6px 16px;
	display: inline-block;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.67);
	border-radius: 8px;
	transition: color 0.3s ease-in-out;
	position: relative;
	font-weight: 400;
}

.main-menu li a:hover {
	color: rgba(255, 255, 255, 1);
	background-color: rgba(0, 0, 0, 0.12);
}

.scroll {
	display: flex;
	align-items: center;
}

.logo {
	flex-shrink: 0;
	z-index: 19;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.languages {
	z-index: 2;
	position: relative;
	display: flex;
	flex-shrink: 0;
}

.languages.active .list-lang {
	display: block;
}

.languages.active .list-lang li {
	margin: 0;
}

.active-lang {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 16px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.67);
	border-radius: 8px;
}

.active-lang:hover {
	background-color: rgba(0, 0, 0, 0.12);
	color: #ffffff;
}

.languages .list-lang {
	position: absolute;
	width: 100%;
	min-width: 150px;
	text-align: center;
	left: -27px;
	right: 0;
	top: 100%;
	margin-top: 14px;
	display: none;
	border-radius: 14px;
	overflow: hidden;
	background-color: rgba(73, 80, 101, 0.90);
	z-index: 10;
	padding: 0;
	/*backdrop-filter: blur(16px);*/
	border: 1px solid rgba(140, 150, 208, 0.15);
}

.languages .list-lang li a {
	padding: 7px 12px;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 15px;
	color: #ffffff;
	transition: all 0.3s ease-in-out;
}

.languages .list-lang li a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.languages.active .active-lang:after {
	transform: rotate(180deg);
}

.btn-header {
	background-color: #C44517;
	border-radius: 28px;
	height: 40px;
	min-width: 117px;
	padding: 5px 15px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #ffffff;
	border: 1px solid #F85414;
	transition: background-color 0.3s ease-in-out;
}

.btn-header:hover {
	background-color: #EF5215;
}

.btn-header.inactive {
	background-color: rgba(73, 80, 101, 0.55);
	color: #fff;
	border: 1px solid rgba(140, 150, 208, 0.15);
	backdrop-filter: blur(16px);
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.btn-header.inactive:hover {
	background-color: #EF5215;
}

.main {
	padding: 158px 0 153px;
	position: relative;
	z-index: 0;
}

.main:before {
	content: "";
	min-height: 100%;
	background-image: url("../img/bg_banner.webp");
	background-repeat: no-repeat;
	background-size: cover;
	width: 1408px;
	height: 935px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
	opacity: 0.5;
}

.ripple-waves {
	position: absolute;
	z-index: -2;
	left: -35px;
	top: 101px;
	/* margin: auto; */
	width: 600px;
	height: 600px;
	border-radius: 50%;
	will-change: transform, opacity;
}

.ripple-waves span {
	position: absolute;
	left: -40px;
	right: -40px;
	top: -40px;
	bottom: -40px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.04);
	box-shadow: 0 0 24px 9px rgba(255, 255, 255, 0.12);
	opacity: 0;
	animation: pulse 9s linear infinite;
}

.ripple-waves span:nth-child(2) {
	animation-delay: 3s;
}

.ripple-waves span:nth-child(3) {
	animation-delay: 6s;
}

/*.ripple-waves span:nth-child(4) {
	animation-delay: 7.5s;
}*/

@keyframes pulse {
	0% {
		transform: scale(0.55);
		opacity: 0;
	}
	18% {
		opacity: 1;
	}
	70% {
		transform: scale(1.0);
		opacity: 1;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

.main .container {
	max-width: 1300px;
}

.main-inner {
	display: flex;
	align-items: flex-start;
}

.main-info {
	max-width: 827px;
}

h1 {
	font-size: 57px;
	font-weight: 700;
	color: #ffffff;
}

h2 {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
}

.main-info .description {
	font-size: 32px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 19px;
}

.btn {
	background-color: #C44517;
	border-radius: 12px;
	height: 50px;
	min-width: 213px;
	border: 1px solid #F85414;
	transition: background-color 0.3s ease-in-out;
	position: relative;
	display: inline-flex;
	padding: 2px 32px;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #ffffff;
}

.btn-main {
	margin-top: 48px;
	min-width: 270px;
}

.btn:hover {
	background-color: #EF5215;
}

.btn:active, .btn:focus {
	background-color: #C44517;
	border-color: #210652;
}

.main-media {
	position: absolute;
	margin-top: -200px;
	margin-right: -20px;
	z-index: -1;
	right: 0;
	top: 0;
}

.main-media img {
	max-width: 529px;
}

.main-media:after {
	content: "";
	background-image: url("../img/orbita.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 461px;
	height: 452px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	animation: rotate-orbit 15s linear infinite;
	transform-origin: 50% 50%;
}

.main-media:before {
	content: "";
	background-image: url("../img/bg_orbita.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 540px;
	height: 540px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	animation: rotate-orbit 15s linear infinite;
	transform-origin: 50% 50%;
}

@keyframes rotate-orbit {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.section-info {
	margin-top: 16px;
	text-align: center;
}

.section-info > *:first-child {
	margin-top: 0;
}

.section-info p {
	margin-top: 16px;
	font-size: 23px;
	color: rgba(255, 255, 255, 0.7);
}

.about {
	padding-bottom: 50px;
	position: relative;
	z-index: 0;
}

.about:after {
	content: "";
	background-image: url("../img/bg-about.svg");
	background-repeat: no-repeat;
	background-position: center;
	width: 1087px;
	height: 969px;
	position: absolute;
	top: 60px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: -1;
}

.about-inner {
	display: flex;
	align-items: stretch;
	gap: 24px;
	margin-top: 32px;
}

.about-item {
	flex: 1;
	padding: 32px;
	border-radius: 12px;
	overflow: hidden;
	background-color: rgba(26, 29, 36, 0.5);
	position: relative;
	text-align: center;
	border-top: 2px solid #5D3331;
	backdrop-filter: blur(20px);
}

.about-item1 {
	border-color: #5D3331;
}

.about-item2 {
	border-color: #3B4575;
}

.about-item3 {
	border-color: #24508D;
}

.about-item-title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
}

.about-item-content {
	margin-top: 24px;
}

.about-item-content p {
	font-size: 16px;
	line-height: 21px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 15px;
}

.avantages {
	padding: 50px 0;
}

.avantages-inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-gap: 24px;
	margin-top: 32px;
}

.avantages-item {
	border-radius: 16px;
	background-color: rgba(32, 34, 45, 0.6);
	padding: 29px 20px 39px;
	text-align: center;
	transition: background-color 0.3s ease-in-out;
}

.avantages-item:hover {
	background-color: rgba(32, 34, 45, 0.8);
}

.avantages-item-title {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin-top: 10px;
}

.avantages-item-content {
	margin-top: 12px;
}

.avantages-item-content p {
	font-size: 16px;
	line-height: 21px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 12px;
}

.avantages-item-img {
	max-width: 306px;
	margin: 0 auto;
	transition: transform 0.3s ease-in-out;
}

.avantages-item:hover .avantages-item-img {
	transform: scale(1.1);
}

.cta {
	padding: 50px 0;
	position: relative;
	z-index: 0;
}

.wrapper-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 110vw;
	height: 110vh;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	z-index: 0;
	overflow: visible;
}

.bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

.wrapper-video::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 120px;
	z-index: 2;
	background: linear-gradient(180deg, #121316 0%, rgba(18, 19, 22, 0) 100%);
	pointer-events: none;
}

.wrapper-video::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 120px;
	z-index: 2;
	background: linear-gradient(00deg, #121316 0%, rgba(18, 19, 22, 0) 100%);
	pointer-events: none;
}

.cta-block {
	background-color: #191A1E;
	background-image: url("../img/bg_cta.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 345px;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(140, 150, 208, 0.15);
	position: relative;
	z-index: 0;
}

.cta-block:after {
	content: "";
	width: 100%;
	height: 280px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	backdrop-filter: blur(10px);
	mask-image: linear-gradient(180deg, transparent 0%, black 60%, black 100%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, black 60%, black 100%);
	background: linear-gradient(180deg, rgba(25, 28, 35, 0) 3%, rgba(25, 28, 35, 0.8) 82%);
}

.btn-cta {
	margin-top: 24px;
}

.products {
	padding: 50px 0;
	position: relative;
	z-index: 10;
}

.products:after {
	content: "";
	background-image: url("../img/bg_products.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 1440px;
	height: 767px;
	position: absolute;
	top: -30px;
	left: 0;
	z-index: -1;
	/* right: 0; */
	margin: 0 auto;
}

.products-inner {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.products-item {
	width: calc(25% - 12px);
	border-radius: 16px;
	background-color: rgba(32, 34, 45, 0.6);
	backdrop-filter: blur(12px);
	padding: 32px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.products-item:after {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #205EA7 0%, #202129 60%);
	position: absolute;
	top: 0;
	z-index: -1;
	left: 0;
	right: 0;
	border-radius: 16px;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}

.products-item:hover:after {
	opacity: 1;
}

.products-item-img {
	margin: 0 auto;
}

.products-item-title {
	padding: 8px 0;
	font-size: 26px;
	font-weight: 700;
	color: #ffffff;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.products-item-text {
	padding: 16px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-product {
	margin-top: 32px;
	min-height: 50px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background-color: #2A2C39;
	color: #ffffff;
	border: 1px solid rgba(140, 150, 208, 0.15);
	transition: all 0.3s ease-in-out;
}

.btn-product:hover {
	background-color: #EF5215;
	border-color: #F85414;
}

.contacts {
	padding: 50px 0 74px;
	position: relative;
	z-index: 0;
}

.contacts:after {
	content: "";
	background-image: url("../img/bg_contacts_blur.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 1174px;
	height: 637px;
	position: absolute;
	right: 0;
	bottom: -60px;
	z-index: -2;
}

.contacts-block {
	max-width: 712px;
	margin: 32px auto 0;
	border-radius: 16px;
	background-color: rgba(31, 35, 49, 0.5);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(140, 150, 208, 0.15);
	padding: 32px 82px;
}

.form-group {
	margin-bottom: 32px;
	position: relative;
	transition: all 0.3s ease-in-out;
}

.form-group label {
	font-size: 15px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	display: inline-block;
	margin-bottom: 8px;
}

.form-group input {
	width: 100%;
	height: 56px;
	border-radius: 15px;
	outline: 0;
	background-color: rgba(2, 2, 11, 0.26);
	border: 1px solid #8284A2;
	padding: 0 16px;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
}

.form-group textarea {
	width: 100%;
	height: 99px;
	resize: none;
	border-radius: 15px;
	outline: 0;
	background-color: rgba(2, 2, 11, 0.26);
	border: 1px solid #8284A2;
	padding: 16px;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
}

.form-group input:active, .form-group input:focus {
	border-color: #BFC0D7;
	background-color: rgba(2, 2, 11, 0.66);
}

.form-group textarea:active, .form-group textarea:focus {
	border-color: #BFC0D7;
	background-color: rgba(2, 2, 11, 0.66);
}

.main-form .form-group.error input {
	border-color: #FF6B00;
}

.form-group-field {
	position: relative;
}

.form-group.error .form-group-field:after {
	content: "";
	background-image: url("../img/icon-error.svg");
	background-size: cover;
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: all 0.3s ease-in-out;
}

::placeholder {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 300;
	font-style: italic;
}

.form-group-btn {
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.after-form {
	text-align: center;
	margin-top: 16px;
}

.after-form p {
	font-size: 14px;
	line-height: 22px;
	color: rgba(255, 255, 255, 0.6);
}

.form-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 8px;
}

.form-links a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	color: #ffffff;
	transition: all 0.3s ease-in-out;
}

.form-links a:before {
	content: "";
	width: 40px;
	height: 40px;
	background-size: cover;
	background-repeat: no-repeat;
}

.form-links a.link-mail:before {
	background-image: url("../img/icon-mail.svg");
}

.form-links a.link-tg:before {
	background-image: url("../img/icon-telegram.svg");
}

.form-links a:hover {
	color: #FF6B00;
	text-decoration: underline;
}

.contacts .container {
	z-index: 4;
}

.canvas-wrapper {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 600px;
	right: 0;
}

.overlay {
	display: block;
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 100%;
	right: 0;
	left: 0;
	opacity: 0.3;
	z-index: 1;
	pointer-events: auto;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.canvas-wrapper:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 110px;
	z-index: 2;
	background: linear-gradient(180deg, #121316 0%, rgba(18, 19, 22, 0) 100%);
	pointer-events: none;
}

.footer-top {
	display: flex;
	align-items: center;
	gap: 58px;
}

.footer-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-menu a {
	padding: 6px 16px;
	display: block;
	font-size: 14px;
	color: rgba(141, 144, 159, 0.67);
	border-radius: 8px;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.footer-menu a:hover {
	background-color: rgba(0, 0, 0, 0.12);
	color: #8D909F;
}

.footer-bot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-links a {
	padding: 6px 16px;
	display: block;
	font-size: 13px;
	color: #8D909F;
	border-radius: 8px;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.footer-links a:hover {
	background-color: rgba(0, 0, 0, 0.12);
}

.copy {
	font-size: 13px;
	color: rgba(141, 144, 159, 0.7);
}

#menu-toggle {
	display: none;
}

.footer {
	background-color: #15161A;
	padding: 25px 0 14px;
	margin-top: auto;
	position: relative;
	z-index: 2;
}

.rights {
	font-size: 14px;
	color: #8D909F;
	margin-left: auto;
}

.thanks-page {
	position: relative;
	padding: 158px 0 20px;
	height: 100%;
	flex: 1;
}

.thanks-page:after {
	content: "";
	background-image: url("../img/bg_contacts_blur.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 1174px;
	height: 637px;
	position: absolute;
	right: 0;
	bottom: -60px;
	z-index: -2;
}

.thanks-page .container {
	height: 100%;
}

.thanks-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.thanks-box h1 {
	font-size: 32px;
	font-weight: 700;
	color: #ffffff;
}

.thanks-box p {
	font-size: 23px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 19px;
}

.thanks-box .btn {
	margin-top: 48px;
}

.thanks-page .canvas-wrapper {
	height: 100%;
	opacity: 0.5;
}

.technical-page {
	position: relative;
	padding: 158px 0 20px;
	height: 100%;
	flex: 1;
}

.technical-box {
	max-width: 720px;
	margin: 0 auto;
}

.technical-box h1 {
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	color: #ffffff;
}

.technical-box .modified {
	text-align: center;
	font-size: 23px;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.6);
}

.technical-content {
	margin-top: 56px;
}

.technical-content h2 {
	margin-top: 32px;
	font-size: 23px;
	font-weight: 500;
	text-transform: uppercase;
	color: #ffffff;
	text-align: left;
}

.technical-content ul, .technical-content ol {
	padding-left: 40px;
	margin-top: 10px;
}

.technical-content p, .technical-content ul li, .technical-content ol li {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 16px;
}

.technical-content a {
	color: #ffffff;
	text-decoration: underline;
}

.technical-content .color-white {
	color: rgba(255, 255, 255, 0.8);
}

.loader-overlay {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999999;
	display: none;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.7);
}

.loader-overlay.active {
	display: flex;
}

.loader-overlay .loader-icon {
	width: 50px;
	height: 50px;
	background: url("../img/loader_icon.svg") no-repeat top center / contain;
}

.loader-overlay.active .loader-icon {
	animation: spin 1s linear infinite;
}

.grecaptcha-badge {
	z-index: 2;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.overlay-modal {
	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: 1050px;
}

.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 .contacts-block {
	background-color: rgba(31, 35, 49, 1) !important;
	backdrop-filter: none !important;
	margin: auto;
}

.modal_wrapper {
	width: 100%;
	height: auto;
	padding: 0;
	background: transparent;
	border-radius: 40px;
	margin: auto;
	position: relative;
	z-index: 0;
}

.modal-form .modal_main {
	max-width: 712px;
}

.close-icon {
	background-image: url("../img/icon-close.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 16px;
	position: absolute;
	right: 20px;
	top: 20px;
	cursor: pointer;
	transition: opacity 0.3s ease-in-out;
	z-index: 99;
}

.close-icon:hover {
	opacity: 0.8;
}

.block-cookie {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	opacity: 0;
	transform: translateY(100%);
	transition: transform 0.5s ease, opacity 0.5s ease;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	max-height: 100%;
	overflow-y: auto;
}

.block-cookie.active {
	transform: translateY(0);
	opacity: 1;
}

.block-cookie-main {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: auto;
	text-align: left;
	width: 100%;
	max-width: 1240px;
}

.block-cookie-wrapper {
	background-color: rgba(31, 35, 49, 1);
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
	padding: 24px;
	font-size: 15px;
	border-radius: 12px;
	line-height: 20px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 auto 10px;
	width: 100%;
	height: auto;
	position: relative;
}

.cookie-close {
	background-image: url("../img/icon-close.svg");
	background-repeat: no-repeat;
	background-size: cover;
	width: 18px;
	height: 18px;
	position: absolute;
	right: 18px;
	top: 18px;
	cursor: pointer;
	transition: opacity 0.3s ease-in-out;
}

.cookie-close:hover {
	opacity: 0.7;
}

.block-cookie .cookie-t1 {
	font-size: 32px;
	line-height: 36px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 12px;
}

.block-cookie-inner {
	display: flex;
	align-items: center;
	gap: 51px;
	margin-top: 12px;
}

.block-cookie-inner p a {
	color: #ffffff;
	border-bottom: 1px solid #ffffff;
	transition: all 0.3s ease-in-out;
}

.block-cookie-inner p a:hover {
	color: #FF6B00;
	border-color: #FF6B00;
}

.cookie-btns {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-btns .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 140px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 12px;
}

.cookie-btns .btn-dark {
	background-color: #070B19;
}

.cookie-btns .btn-dark:hover {
	background-color: #EF5215;
}

.cookie-item {
	width: 100%;
	margin-top: 24px;
}

.cookie-item-body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 12px;
}

.cookie-name {
	font-size: 24px;
	line-height: 28px;
	font-weight: 600;
	color: #ffffff;
}

.check-always {
	color: #EF5215;
	font-weight: 500;
}

.customize .cookie-btns {
	margin-top: 24px;
	width: 100%;
}

.customize .cookie-btns .btn {
	flex: 1;
	text-align: center;
}

.check_copy {
	display: flex;
	align-items: center;
	position: relative;
	width: 52px;
	height: 28px;
	border-radius: 100px;
	background-color: #ffffff;
	padding: 1px;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.check_copy:before {
	content: "";
	background-color: #EF5215;
	border-radius: 50%;
	position: absolute;
	left: 2px;
	top: 0;
	z-index: 0;
	width: 24px;
	height: 24px;
	margin: auto;
	transition: all 0.2s ease-in-out;
	bottom: 0;
}

.switcher-box input[type="checkbox"] {
	display: none;
}

.switcher-box input[type="checkbox"]:checked + .check_copy:before {
	left: auto;
	right: 2px;
}

.switcher-box input[type="checkbox"]:checked + .check_copy {
	background-color: #ffffff;
}

.wrapper-page .main {
	background-color: #1D1D22;
	padding-bottom: 78px;
	overflow: hidden;
}

.wrapper-page .main:before {
	background-image: url("../img/bg_banner_page.webp");
	width: 1408px;
	height: 935px;
}

.wrapper-page .main-media:after {
	display: none;
}

.wrapper-page .main-media:before {
	display: none;
}

.wrapper-page .main-media img {
	max-width: 584px;
	width: 100%;
	min-width: 410px;
}

.wrapper-page h1 {
	font-size: 53px;
}

.wrapper-page .main-info {
	max-width: 747px;
}

.wrapper-page .main-info .description {
	font-size: 24px;
	margin-top: 19px;
}

.wrapper-page .main-media {
	margin-top: -160px;
	margin-right: -20px;
}

.wrapper-content {
	padding: 78px 0 48px;
}

.page-content-header {
	display: flex;
	align-items: flex-start;
	gap: 32px;
}

.wrapper-content .container {
	max-width: 1308px;
}

.page-content-right {
	width: 469px;
	padding: 32px 16px;
	border-radius: 12px;
	overflow: hidden;
	background-color: rgba(26, 29, 36, 0.5);
	position: relative;
	border-top: 2px solid #24508D;
	backdrop-filter: blur(20px);
	flex-shrink: 0;
}

.wrapper-page h2 {
	text-align: inherit;
	margin-top: 48px;
}

.wrapper-page h3 {
		font-size: 26px;
		font-weight: 700;
		color: #ffffff;
	margin-top: 30px;
}

.page-content ul, .page-content ol {
	padding-left: 30px;
	margin-top: 16px;
}

.page-content li {
	margin-top: 6px;
	font-size: 23px;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.6);
}

.page-content .page-content-left > *:first-child {
	margin-top: 0;
}

.page-content p {
	margin-top: 16px;
	font-size: 22px;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.7);
}

.page-content-right-list {
	color: rgba(255, 255, 255, 0.6);
	list-style-type: none;
	padding: 0!important;
	margin: 0!important;
}

.page-content-right-list li a {
	padding: 8px 12px 8px 20px;
	border-radius: 40px;
	transition: all 0.3s ease-in-out;
	margin-top: 6px;
	font-size: 18px;
	line-height: 30px;
	color: rgba(255, 255, 255, 0.6);
	position: relative;
	display: flex;
	align-items: baseline;
	gap: 15px;
}

.page-content-right-list li a:before{
	content: "";
	width: 5px;
	height: 5px;
	display: block;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.6);
	opacity: 0.6;
	flex-shrink: 0;
	position: relative;
	top: -3px;
	transition: all 0.3s ease-in-out;
}

.page-content-right-list li a:hover{
	background-color: #121316;
	color: #55A4FF;
}

.page-content-right-list li a:hover:before {
	background-color: #B8D9FF;
	box-shadow: 0 0 15px 9px rgba(6, 97, 200, 0.4);
}

.page-content-caption {
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: #FFFFFF;
}

.page-content .page-content-right .page-content {
	font-size: 18px;
	line-height: 21px;
	margin-top: 16px;
	color: rgba(255, 255, 255, 0.6);
}

.wrapper-faq {
	background-color: #17191E;
	padding: 80px 0;
}

.wrapper-faq h2 {
	color: rgba(255, 255, 255, 0.8);
	text-align: center;
	font-size: 32px;
	margin: 0;
}

.wrapper-faq .container {
	max-width: 1308px;
}

.answers-area {
	margin-top: 32px;
}


.drop {
	background-color: transparent;
	border-radius: 12px;
	border: 1px solid #31394A;
	overflow: hidden;
	color: #ffffff;
	margin-top: 8px;
	transition: all 0.3s ease-in-out;
}

.drop .toc-default {
	display: flex;
	align-items: center;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease-in-out;
	padding: 14px 70px 14px 24px;
	font-size: 23px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
}

.drop .toc-default:after {
	content: "";
	position: absolute;
	width: 46px;
	height: 46px;
	background-color: #292C33;
	right: 24px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-image: url("../img/icon-arrow-down.svg");
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.3s ease-in-out;
	border-radius: 50%;
}

.drop.active .toc-default {
	color: #ffffff;
}
.drop.active {
	background-color: #24272E;
	border-color: #24272E;
}

.drop.active .toc-default:after {
	transform: rotate(-180deg);
}

.drop .options-holder {
	display: none;
	padding: 10px 70px 14px 24px;
	font-size: 20px;
}

.drop .options-holder p {
	margin: 0;
	font-weight: 300;
}

.drop .options-holder ul,
.drop .options-holder ol {
	font-size: 18px;
	padding-left: 25px;
}

.wrapper-content-bottom {
		padding: 60px 0;
}

.wrapper-content-bottom .page-content > *:first-child {
	margin-top: 0;
}


.main-menu li.has-submenu .submenu-header {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	padding: 6px 16px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.67);
	border-radius: 8px;
	transition: color 0.3s ease-in-out;
	position: relative;
	font-weight: 400;
}

.main-menu li.has-submenu .submenu-header:hover {
	color: rgba(255, 255, 255, 1);
	background-color: rgba(0, 0, 0, 0.12);
}
.has-submenu .submenu-header:after {
	content: "";
	width: 10px;
	height: 11px;
	display: block;
	background-image: url("../img/icon-arrow-right.svg");
	background-repeat: no-repeat;
	background-color: transparent;
	transition: transform 0.3s ease-in-out;
	border: 0;
	outline: 0;
}

.main-menu > li.has-submenu .child-block {
	position: absolute;
	overflow-y: auto;
	left: 0;
	top: 70%;
	width: 100%;
	display: none;
	z-index: 10;
	background: transparent;
	padding: 20px 20px;
	border-radius: 20px;
}

.main-menu > li.has-submenu .child-block .child-list {
	border-radius: 14px;
	min-width: 170px;
	padding: 8px 0 30px;
	background: linear-gradient(90deg, #202227 0%, #1C1E2E 74%, #212C3E 100%);
	list-style-type: none;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: repeat(5, auto);
	grid-auto-flow: column;
	gap: 0 16px;
	white-space: normal;
}

.main-menu > li.has-submenu .child-block .child-list li a {
	padding: 15px 16px;
	display: block;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.main-menu > li.has-submenu .child-block .child-list li a:after {
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.1);
}

.main-menu > li.has-submenu .child-block .child-list li:nth-child(5n) a::after {
	content: none;
}

.main-menu > li.has-submenu .child-block .child-list li:last-child a::after {
	content: none;
}

.main-menu > li.has-submenu .child-block .child-list li a:hover {
	background-color: rgba(0, 0, 0, 0.2);
	color: #ffffff;
}

.main-menu > li.has-submenu .child-block .child-list::-webkit-scrollbar {
	width: 3px;
	background: transparent;
}

.main-menu > li.has-submenu .child-block .child-list::-webkit-scrollbar-track {
	margin: 5px;
}

.main-menu > li.has-submenu > ul::-webkit-scrollbar-thumb {
	width: 3px;
	border-radius: 3px;
	background: #000000;
}

.table-wrapper {
	overflow-x: auto;
	width: 100%;
}


.table-wrapper table {
	color: #ffffff;
	width: 100%;
	border-collapse: collapse;
	font-size: 22px;
	margin-top: 16px;
}

.table-wrapper table thead tr th{
	padding: 15px 25px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	font-size: 22px;
	line-height: 30px;
	color: rgba(255, 255, 255, 1);
}

.table-wrapper table tbody tr td{
	padding: 15px 25px;
	color: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.8);
}


@media screen and (min-width: 1100px) {
	.main-menu li.has-submenu:hover .child-block {
		display: block;
	}

}

@media screen and (max-width: 1550px) {
	.products:after {
		top: -110px;
	}
}

@media (min-width: 1100px) {
	.lang-mobile-header {
		display: none !important;
	}
}

@media screen and (max-width: 1100px) {

	.header .container {
		padding: 0 16px;
	}

	.header-inner {
		padding: 10px 16px;
		backdrop-filter: none;
		background-color: rgba(25, 26, 30, 0.95);
	}

	.main-menu li {
		width: 100%;
	}

	.main-menu li a {
		width: 100%;
		padding: 10px 16px;
		color: #ffffff;
	}

	#menu-toggle {
		margin-left: auto;
		display: flex;
		z-index: 99;
	}

	.header-right {
		align-items: flex-start;
		gap: 8px;
		flex-direction: column;
		justify-content: space-between;
		height: 100%;
		width: 100%;
		padding-top: 13px;
		margin-top: 13px;
		border-top: 1px solid rgba(220, 223, 223, 0.3);
	}

	.active-lang {
		padding: 10px 16px;
		cursor: pointer;
		transition: all 0.3s ease-in-out;
		font-size: 16px;
		color: #ffffff;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.languages {
		width: 100%;
	}

	.active-lang:after {
		content: "";
		background-image: url("../img/icon-arrow-right.svg");
		background-size: cover;
		background-repeat: no-repeat;
		width: 10px;
		height: 11px;
	}

	.active-lang:hover {
		background-color: rgba(255, 255, 255, 0.1);
	}

	#menu-toggle .unitbox {
		display: block;
		background: #ffffff;
		border-radius: 3px;
		transition: .25s ease-in-out;
	}

	#menu-toggle #hamburger {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
	}

	#menu-toggle #hamburger .unitbox {
		width: 18px;
		height: 3px;
		position: relative;
		top: 0;
		right: 0;
		margin: 2px 0;
	}

	#menu-toggle.open #hamburger .unitbox:nth-child(1) {
		transform: rotate(-45deg) translate(-1px, 1px);
		margin: 0;
	}

	#menu-toggle.open #hamburger .unitbox:nth-child(3) {
		opacity: 0;
	}

	#menu-toggle.open #hamburger .unitbox:nth-child(2) {
		margin: 0;
		transform: rotate(45deg) translate(-1px, -1px);
	}

	.overlay-top {
		position: fixed;
		background-color: #20222D;
		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;
		align-items: flex-start;
		padding: 40px 16px 10px;
	}

	.overlay-top.open {
		z-index: 15;
		transform: translateX(0);
		width: 100%;
	}

	.main-menu {
		gap: 8px;
		margin-left: 0;
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		text-align: left;
		padding: 0;
		margin-top: 0;
		max-width: 450px;
	}

	.lang-mobile {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		background-color: #20222D;
		width: 100%;
		padding: 96px 16px 0 16px;
		height: auto;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
	}

	.lang-mobile.open {
		z-index: 15;
		transform: translateX(0);
		width: 100%;
	}

	.languages .list-lang li a {
		padding: 10px 16px;
		font-size: 16px;
	}

	.lang-mobile-header {
		display: flex;
		align-items: center;
		min-height: 36px;
		padding: 0 16px;
		font-size: 18px;
		color: #fff;
		border-bottom: 0;
		background: transparent;
	}

	.icon-arrow-left {
		width: 16px;
		height: 16px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		margin-right: 12px;
		background: url('../img/icon-arrow-left.svg') center no-repeat;
	}

	.main-media {
		position: relative;
		margin-top: -56px;
		margin-right: 0;
		z-index: -1;
		right: 0;
		top: 0;
	}

	.main-inner {
		display: flex;
		align-items: center;
		flex-direction: column-reverse;
	}

	.main-info {
		max-width: 100%;
		margin-top: -70px;
		align-self: flex-start;
	}

	h1 {
		font-size: 51px;
	}

	.main-info .description {
		font-size: 22px;
		margin-top: 18px;
	}

	.btn-main {
		margin-top: 24px;
		min-width: 270px;
	}

	.main-media img {
		max-width: 400px;
	}

	.main-media:before {
		width: 400px;
		height: 400px;
	}

	.main-media:after {
		width: 351px;
		height: 342px;
	}

	.ripple-waves {
		left: 0;
		top: 101px;
		width: 400px;
		height: 400px;
	}

	.about-item {
		padding: 32px 15px;
	}

	.about-item-content p {
		font-size: 14px;
	}

	.products-item {
		width: calc(50% - 8px);
	}

	.main {
		padding: 0 0 100px;
	}

	.footer-top {
		gap: 20px;
	}

	.btn-header {
		border-radius: 12px;
		height: 50px;
		min-width: 200px;
		padding: 5px 15px;
		font-size: 16px;
	}

	.languages .list-lang {
		position: static;
		width: 100%;
		min-width: 150px;
		text-align: left;
		left: 0;
		right: 0;
		top: 0;
		margin-top: 8px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		border-radius: 0;
		gap: 8px;
		overflow: hidden;
		background-color: transparent;
		z-index: 10;
		padding: 0;
		border: 0;
	}

	.wrapper-page .main-media {
		margin-top: -10px;
		margin-right: 0;
	}

	.wrapper-page h1 {
		font-size: 29px;
	}

	.wrapper-page .main-info .description {
		font-size: 16px;
	}

	.wrapper-page .main-info {
		max-width: 100%;
		margin-top: -28px;
	}

	.wrapper-content {
		padding: 48px 0 48px;
	}

	.page-content-header {
		align-items: center;
		gap: 48px;
		flex-direction: column-reverse;
	}

	.page-content-right {
		width: 100%;
		max-width: 500px;
		padding: 32px 0;
		border-radius: 12px;
	}

	.page-content-right-list li a {
		padding: 8px 12px 8px 20px;
		font-size: 14px;
		line-height: 20px;
		gap: 15px;
	}

	.page-content-right-list {
		margin-top: 24px!important;
	}

	.wrapper-page h2 {
		font-size: 24px;
	}

	.page-content p {
		margin-top: 16px;
		font-size: 14px;
		line-height: 21px;
	}


	.table-wrapper table {
		font-size: 14px;
		margin-top: 16px;
	}

	.table-wrapper table thead tr th{
		padding: 10px 15px;
		font-size: 14px;
		line-height: 16px;
	}

	.table-wrapper table tbody tr td {
		padding: 10px;
		font-size: 14px;
	}

	.page-content li {
		margin-top: 6px;
		font-size: 14px;
		line-height: 21px;
	}

	.wrapper-page h3 {
		font-size: 20px;
		margin-top: 30px;
	}

	.wrapper-faq {
		padding: 32px 0 46px;
	}

	.wrapper-faq h2 {
		text-align: inherit;
		font-size: 24px;
		margin: 0;
	}

	.drop .toc-default {
		padding: 14px 70px 14px 12px;
		font-size: 18px;
	}

	.drop .options-holder {
		padding: 0 12px 14px 12px;
		font-size: 16px;
	}

	.drop .toc-default:after {
		right: 12px;
	}

	.main-menu li.has-submenu .submenu-header {
		padding: 10px 16px;
		color: #ffffff;
		width: 100%;
		justify-content: space-between;
	}

	.main-menu > li.has-submenu .child-block {
		position: fixed;
		top: 56px;
		right: 0;
		bottom: 0;
		display: block;
		background-color: #20222D;
		width: 100%;
		padding: 30px 16px 0 16px;
		height: auto;
		transform: translateX(100%);
		transition: transform 0.3s ease-in-out;
		border-radius: 0;
	}

	.main-menu {
		max-width: 100%;
	}

	.main-menu > li.has-submenu .child-block.open {
		z-index: 15;
		transform: translateX(0);
		width: 100%;
	}

	.child-mobile-header {
		display: flex;
		align-items: center;
		min-height: 36px;
		padding: 0 16px;
		font-size: 18px;
		color: #fff;
		border-bottom: 0;
		background: transparent;
	}

	.main-menu > li.has-submenu .child-block .child-list {
		border-radius: 0;
		min-width: 170px;
		padding: 8px 0 30px;
		background: transparent;
		list-style-type: none;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		gap: 28px;
		white-space: normal;
	}

	.main-menu > li.has-submenu .child-block .child-list li a {
		padding: 10px 16px;
		color: #ffffff;
		font-size: 16px;
		overflow: visible;
		white-space: normal;
	}

	.main-menu > li.has-submenu .child-block .child-list li a:after {
		bottom: -14px;
	}

	.wrapper-page .main {
		padding-bottom: 54px;
	}
}

@media screen and (max-width: 900px) {
	#cookie .block-cookie-inner {
		gap: 24px;
		flex-direction: column;
	}

	#cookie .cookie-btns {
		width: 100%;
	}

	#cookie .cookie-btns .btn {
		width: auto;
		min-width: auto;
		flex: 1;
		padding: 0;
	}

}

@media screen and (max-width: 767px) {
	h1 {
		font-size: 28px;
	}

	.main-info .description {
		font-size: 18px;
		margin-top: 16px;
	}

	.ripple-waves {
		display: none;
	}

	.main {
		padding: 0 0 48px;
	}

	h2 {
		font-size: 24px;
	}

	.section-info p {
		font-size: 16px;
	}

	.about-inner {
		align-items: center;
		flex-direction: column;
		gap: 8px;
	}

	.about-item {
		padding: 24px 16px;
	}

	.about-item-title {
		font-size: 16px;
	}

	.about-item-content {
		margin-top: 16px;
	}

	.about:after {
		background-size: cover;
		width: 517px;
		height: 509px;
		opacity: 0.7;
	}

	.about {
		padding-bottom: 24px;
	}

	.avantages {
		padding: 24px 0;
	}

	.avantages-item-img {
		max-width: 228px;
	}

	.avantages-inner {
		grid-template-columns: 1fr;
	}

	.avantages-item {
		width: 100%;
		border-radius: 16px;
		padding: 16px;
		background-color: #20222D;
	}

	.avantages-item:hover {
		background-color: #20222D;
	}

	.avantages-item-title {
		font-size: 16px;
		margin-top: 8px;
	}

	.avantages-item-content {
		margin-top: 8px;
	}

	.avantages-item-content p {
		font-size: 14px;
		line-height: 21px;
		margin-top: 8px;
	}

	.wrapper-video {
		display: none;
	}

	.cta {
		padding: 24px 0;
	}

	.cta-block {
		height: 297px;
		padding: 0 16px;
	}

	.products {
		padding: 24px 0;
	}

	.products-inner {
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 16px;
		margin-top: 16px;
	}

	.products-item {
		width: 100%;
		padding: 16px 32px;
	}

	.products-item-title {
		padding: 16px 0;
		font-size: 20px;
	}

	.products-item-text {
		padding: 16px 0;
		font-size: 14px;
	}

	.btn-product {
		margin: 32px auto 0;
		min-height: 50px;
		background-color: #EF5215;
		color: #ffffff;
		border: 1px solid #F85414;
		max-width: 400px;
	}

	.contacts {
		padding: 24px 0 48px;
		position: relative;
		z-index: 0;
	}

	.contacts-block {
		margin: 16px auto 0;
		border-radius: 16px;
		background-color: #1F2331;
		backdrop-filter: none;
		border: 1px solid rgba(140, 150, 208, 0.15);
		padding: 32px 16px;
	}

	.form-group label {
		font-size: 12px;
		margin-bottom: 8px;
	}

	.form-group input {
		height: 48px;
		border-radius: 8px;
		padding: 0 16px;
		font-size: 14px;
	}

	.form-group textarea {
		height: 81px;
		border-radius: 8px;
		padding: 16px;
		font-size: 14px;
	}

	.contacts:after {
		display: none;
	}

	.after-form p {
		font-size: 12px;
	}

	.form-links {
		align-items: center;
		justify-content: center;
		gap: 16px;
		margin-top: 8px;
		flex-direction: column;
	}

	.form-links a {
		gap: 8px;
		font-size: 14px;
	}

	.form-links a:before {
		width: 32px;
		height: 32px;
	}

	.footer-top {
		gap: 8px;
		flex-direction: column;
		padding-bottom: 10px;
	}

	.rights {
		margin-left: 0;
	}

	.footer-menu a {
		padding: 6px 8px;
		font-size: 12px;
	}

	.footer-links a {
		padding: 6px 6px;
		font-size: 12px;
	}

	.footer-bot {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column-reverse;
		padding-top: 10px;
		gap: 8px;
	}

	.logo {
		max-width: 129px;
	}

	.thanks-box h1 {
		font-size: 24px;
	}

	.thanks-box p {
		font-size: 16px;
	}

	.footer-menu, .footer-links {
		justify-content: center;
	}

	.thanks-page:after {
		width: 494px;
		height: 277px;
		bottom: -20px;
		opacity: 0.5;
	}

	.technical-box h1 {
		font-size: 22px;
	}

	.technical-box .modified {
		font-size: 18px;
		margin-top: 8px;
	}

	.technical-content h2 {
		margin-top: 26px;
		font-size: 18px;
	}

	.technical-content p, .technical-content ul li, .technical-content ol li {
		font-size: 16px;
		margin-top: 10px;
	}

	.technical-content ul, .technical-content ol {
		padding-left: 30px;
		margin-top: 10px;
	}

	.block-cookie .cookie-t1 {
		font-size: 25px;
		line-height: 27px;
		padding-right: 30px;
	}

	.cookie-name {
		font-size: 20px;
		line-height: 24px;
	}

	.customize .cookie-btns .btn {
		flex: 1;
		width: auto;
		min-width: auto;
		text-align: center;
		padding: 0;
	}

	.customize .cookie-btns {
		gap: 11px;
	}

	.check_copy {
		width: 48px;
		height: 24px;
	}

	.check_copy::before {
		width: 20px;
		height: 20px;
	}

	.cookie-btns .btn {
		font-size: 13px;
	}

}

@media screen and (max-width: 500px) {
	.main:before {
		background-image: url("../img/bg_banner_m.webp");
		background-repeat: no-repeat;
		background-size: cover;
		width: 100%;
		height: 636px;
		min-height: auto;
	}

	.about:after {
		width: 407px;
		height: 349px;
	}

	.btn-cta {
		width: 100%;
	}

	.btn-main {
		width: 100%;
	}

	.products:after {
		display: none;
	}

	.form-group-btn .btn {
		width: 100%;
	}

	.canvas-wrapper {
		display: none;
	}

	.main-media img {
		max-width: 310px;
	}

	.main-media {
		margin-top: -43px;
	}

	.main-media:before {
		width: 310px;
		height: 310px;
	}

	.main-media:after {
		width: 271px;
		height: 262px;
	}

	.btn-header {
		max-width: 90%;
		width: 100%;
		margin: 0 auto;
	}

	.thanks-page .canvas-wrapper {
		display: block;
	}

	.cta-block {
		background-image: url("../img/bg_cta_m.webp?v=2");
	}
}

@media screen and (max-width: 400px) {
	.main:before {
		height: 495px;
	}

	.block-cookie-wrapper {
		padding: 20px;
	}

	.customize .cookie-btns {
		gap: 8px;
	}
}

@media screen and (max-width: 365px) {
	.block-cookie-wrapper {
		padding: 16px;
		border-radius: 34px;
	}

	.cookie-btns {
		gap: 7px;
	}

	.cookie-btns .btn {
		font-size: 12px;
	}

	.customize .cookie-btns {
		gap: 7px;
	}
}

@media screen and (max-width: 350px) {
	h1 {
		font-size: 25px;
	}
}


