@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;
	position: relative;
	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: 71px;
	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: 0;
}

.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: 9999;
	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;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@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;
	}

}


@media screen and (max-width: 767px) {
	h1 {
		font-size: 31px;
	}

	.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;
	}

}

@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;
	}
}

@media screen and (max-width: 400px) {
	.main:before {
		height: 495px;
	}
}

@media screen and (max-width: 350px) {
	h1 {
		font-size: 28px;
	}
}


