@charset "UTF-8";

@font-face {
    font-display: swap;
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/gothampro_light.ttf") format("truetype");
}

@font-face {
    font-display: swap;
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/gothampro.ttf") format("truetype");
}

@font-face {
    font-display: swap;
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/gothampro_medium.ttf") format("truetype");
}

@font-face {
    font-display: swap;
  font-family: "Gotham Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/gothampro_bold.ttf") format("truetype");
}

@font-face {
    font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
}
/* CSS Reboot Styles */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body,
ul,
ol,
p,
dl,
dd,
figure,
blockquote,
pre {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font: inherit;
    margin: 0;
}

ul, ol {
    padding: 0;
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

td,
th {
    padding: 0;
    text-align: left;
    font-weight: normal;
}

a {
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

img,
audio,
canvas,
iframe,
svg,
video {
    max-width: 100%;
 /* Set responsive behaviour */
    height: auto;
    vertical-align: middle;
 /* Remove bottom spacing under element (line-height) */
}

iframe {
    border: none;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

input,
textarea,
button,
optgroup,
select {
    margin: 0;
    font-family: inherit;
    vertical-align: middle;
}

textarea {
    resize: vertical;
}

/* Fast Tap enables no-delay taps (FastClick-esque) on supporting browsers */
a,
button,
input,
label,
select,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

/* Make fonts more sexy */
body,
input,
textarea,
button,
select {
    -webkit-font-smoothing: antialiased;
}

:root {
    --main-brand-color: #2BCBF3;
    --main-light-brand-color: #D7F8FF;
    --error-color: #FF5569;
    --main-brand-color-hover: #4DDBFE;
    --main-brand-color-disabled: #AAEEFF;
    --first-dark-color: #000000;
    --second-dark-color: #666666;
    --third-dark-color: #999999;
    --strokes-color: #E6E6E6;
    --elements-color: #CFD0D9;
    --icons-color: #E7E9F1;
    --input-color: #F2F3F8;
    --main-light: #ffffff;
    --fourth-color: #000000;
    --fifth-color: #000000;
    --formular-font: "Formular", Arial, Helvetica, sans-serif;
    --sf-pro-font: "SF Pro", Arial, Helvetica, sans-serif;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

*::-webkit-input-placeholder {
    opacity: 1;
}

*::-moz-placeholder {
    opacity: 1;
}

*:-ms-input-placeholder {
    opacity: 1;
}

*::-ms-input-placeholder {
    opacity: 1;
}

*::placeholder {
    opacity: 1;
}

body {
    width: 100%;
    height: auto;
    min-height: 100dvh;
    font-family: "Gotham Pro", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    position: relative;
}

.wrapper {
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
    position: relative;
}

.header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

input {
    border: 0;
    outline: 0;
    border-radius: 0;
}

button {
    padding: 0;
    border: 0;
    background-color: transparent;
    color: #fff;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

img {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.no-scroll {
    overflow: hidden;
}

@media (min-width: 500px) {
    .no-scroll {
        padding-right: 10.5px;
    }

    .no-scroll .header.mobile-menu-opened {
        padding-right: 10.5px;
    }
}
/* firefox */
@supports (-moz-appearance: none) {
    .no-scroll {
        padding-right: 0;
    }
}

@media (hover: none) and (pointer: coarse) {
    .no-scroll {
        margin-right: 0;
    }
}

textarea:focus {
    outline: none;
}

._container {
    width: 100%;
    max-width: 1600px;
    padding-left: 32px;
    padding-right: 32px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.btn:active {
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    transform: translateY(1px);
}

/* Scrollbar change */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
}

/* Header styles */
/* Media queries */
@media (min-width: 768px) {
    .br-tab {
        display: none;
    }

    .br-mob {
        display: none;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .br-desc {
        display: none;
    }

    .br-mob {
        display: none;
    }
}

@media (max-width: 480px) {
    .br-desc {
        display: none;
    }

    .br-tab {
        display: none;
    }
}
/* STYLES */
/* burger menu */
:root {
    --burger-menu-color: #fff;
    --burger-menu-width: 22px;
    --burger-menu-height: 12px;
    --burger-top-plus: 6px;
    --burger-top-minus: -6px;
    --burger-line-height: 1px;
    --burger-line-round: 0;
}

.header__burger {
    width: var(--burger-menu-width);
    height: var(--burger-menu-height);
    position: relative;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    background-color: transparent;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.header__burger span {
    height: var(--burger-line-height);
    border-radius: var(--burger-line-round);
    background-color: var(--burger-menu-color);
    width: 70%;
    position: absolute;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.header__burger span::before {
    content: "";
    height: var(--burger-line-height);
    border-radius: var(--burger-line-round);
    background-color: var(--burger-menu-color);
    left: 0px;
    position: absolute;
    top: var(--burger-top-minus);
    width: 130%;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition: top 0.25s 0.25s, -webkit-transform 0.25s;
    transition: top 0.25s 0.25s, -webkit-transform 0.25s;
    -o-transition: transform 0.25s, top 0.25s 0.25s;
    transition: transform 0.25s, top 0.25s 0.25s;
    transition: transform 0.25s, top 0.25s 0.25s, -webkit-transform 0.25s;
}

.header__burger span::after {
    content: "";
    height: var(--burger-line-height);
    border-radius: var(--burger-line-round);
    background-color: var(--burger-menu-color);
    left: 0px;
    position: absolute;
    top: var(--burger-top-plus);
    width: 130%;
    -webkit-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition: top 0.25s 0.25s, -webkit-transform 0.25s;
    transition: top 0.25s 0.25s, -webkit-transform 0.25s;
    -o-transition: transform 0.25s, top 0.25s 0.25s;
    transition: transform 0.25s, top 0.25s 0.25s;
    transition: transform 0.25s, top 0.25s 0.25s, -webkit-transform 0.25s;
}

.header__burger.open span {
    -webkit-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
    background: transparent;
}

.header__burger.open span:before {
    -webkit-transition: top 0.25s, -webkit-transform 0.25s 0.25s;
    transition: top 0.25s, -webkit-transform 0.25s 0.25s;
    -o-transition: top 0.25s, transform 0.25s 0.25s;
    transition: top 0.25s, transform 0.25s 0.25s;
    transition: top 0.25s, transform 0.25s 0.25s, -webkit-transform 0.25s 0.25s;
    top: 0px;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotateZ(-45deg);
}

.header__burger.open span:after {
    -webkit-transition: top 0.4s, -webkit-transform 0.25s 0.25s;
    transition: top 0.4s, -webkit-transform 0.25s 0.25s;
    -o-transition: top 0.4s, transform 0.25s 0.25s;
    transition: top 0.4s, transform 0.25s 0.25s;
    transition: top 0.4s, transform 0.25s 0.25s, -webkit-transform 0.25s 0.25s;
    top: 0px;
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
}

/* header */
.header {
    width: 100%;
    height: 82px;
    min-height: 82px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(18, 1, 19, 0.25);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 50;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.header.header-fixed {
    height: 60px;
    min-height: 60px;
}

.header__inner {
    width: 100%;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
}

.header__inner-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    color: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 50;
}

.header__inner-left p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

.header__logo {
    width: 357px;
    max-width: 357px;
    width: 19dvw;
    min-width: 157px;
}

.find-dealer-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    text-transform: uppercase;
    color: #D9D9D9;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    cursor: pointer;
}

.find-dealer-btn::before {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 19L14.65 14.65M9 4C11.7614 4 14 6.23858 14 9M17 9C17 13.4183 13.4183 17 9 17C4.58172 17 1 13.4183 1 9C1 4.58172 4.58172 1 9 1C13.4183 1 17 4.58172 17 9Z' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 16px;
}

.hero-section {
    height: 100dvh;
    max-height: 900px;
}

.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0;
    position: relative;
}

.hed-logo-mob {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-duration: 0.45s;
    -o-transition-duration: 0.45s;
    transition-duration: 0.45s;
}

.hed-logo {
    -webkit-transition-duration: 0.35s;
    -o-transition-duration: 0.35s;
    transition-duration: 0.35s;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hed-logo-mob {
    width: 50px;
}

.hed-logo.hed-logo--hide {
    visibility: hidden;
    width: 0;
}

.hed-logo-mob.hed-logo-mob--show {
    width: 35px;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.hero-swiper {
    overflow: hidden;
    width: 100%;
    height: 100dvh;
    max-height: 900px;
}

.hero-section .hero-swiper .swiper-pagination {
    position: absolute;
    left: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    row-gap: 13px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.hero-section .hero-swiper .swiper-pagination-bullet-active {
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #FFF0F4;
}

.hero-swiper .swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none"><path d="M25 1H1V25" stroke="%23FFF0F4" stroke-linecap="round"/><path d="M29 5V29H5" stroke="%23FFF0F4" stroke-linecap="round"/></svg>') no-repeat center;
    background-size: contain;
    -webkit-transition-duration: 0.6s !important;
    -o-transition-duration: 0.6s !important;
    transition-duration: 0.6s !important;
    opacity: 0;
}

.custom-pagination-indicator {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'><path d='M25 1H1V25' stroke='%23FFF0F4' stroke-linecap='round'/><path d='M29 5V29H5' stroke='%23FFF0F4' stroke-linecap='round'/></svg>") no-repeat center;
    background-size: contain;
    -webkit-transition: top 0.3s ease;
    -o-transition: top 0.3s ease;
    transition: top 0.3s ease;
    opacity: 1;
    pointer-events: none;
    z-index: 10;
}

.hero-swiper .swiper-pagination-bullet-active::after {
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 4px !important;
    height: 4px !important;
    border-radius: 100px !important;
    margin-bottom: 20px;
    background-color: #FFF0F4 !important;
    opacity: 1 !important;
    -webkit-transition-duration: 0.3s !important;
    -o-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 20px !important;
    height: 20px !important;
    background-color: transparent !important;
    position: relative !important;
    margin: 0 !important;
    -webkit-transition-duration: 0.3s !important;
    -o-transition-duration: 0.3s !important;
    transition-duration: 0.3s !important;
}

.hero-swiper .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
}

.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #aaa;
    border-radius: 50%;
    opacity: 1;
    -webkit-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.hero-section .hero-swiper .swiper-pagination-bullet-active {
    background-color: #000;
    height: 50px;
    width: 30px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.sw-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sw-img-mob {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: none;
}

.sw-sli-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    position: relative;
    top: 40px;
}

.sw-title {
    width: 100%;
    max-width: 1200px;
    max-width: 80dvw;
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 48px;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.sw-text {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: #fff;
}

.find-more-btn {
    border: 1px solid #fff;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 0;
    padding-bottom: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 56px;
    font-weight: 400;
    font-size: 18px;
    line-height: 133%;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.find-more-btn--brand-color {
    border: 1px solid #E91D8F;
    color: #E91D8F;
}

.find-more-btn::after {
    content: "";
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="14" viewBox="0 0 18 14" fill="none"><path d="M1 7H17M17 7L11 1M17 7L11 13" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-left: 8px;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.find-more-btn--brand-color::after {
    -webkit-filter: brightness(0) saturate(100%) invert(37%) sepia(99%) saturate(5551%) hue-rotate(311deg) brightness(91%) contrast(100%);
    filter: brightness(0) saturate(100%) invert(37%) sepia(99%) saturate(5551%) hue-rotate(311deg) brightness(91%) contrast(100%);
}

.find-more-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.find-more-btn:hover::after {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

.find-more-btn--brand-color:hover {
    background: rgba(233, 29, 145, 0.0352941176);
}

/* solution section */
.solution-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.solution-section-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.solution-section__left {
    width: 480px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
}

.solution-section__img {
    position: absolute;
    top: 145px;
    left: 44%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 95%;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.solution-section__right {
    width: 725px;
    left: -10px;
    position: relative;
}

.solution-section__subtitle {
    font-weight: 400;
    font-size: 24px;
    font-size: clamp(1.25rem, 1.1893rem + 0.2589vw, 1.5rem);
    line-height: 150%;
    color: #E91D8F;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.header-h2 {
    font-weight: 400;
    font-size: 44px;
    font-size: clamp(1.875rem, 1.6626rem + 0.9061vw, 2.75rem);
    line-height: 120%;
    text-transform: uppercase;
    color: #06070A;
    margin-bottom: 40px;
}

.solution-section__box {
    margin-bottom: 40px;
    width: 700px;
}

.solution-section__box p {
    margin-bottom: 20px;
}

.solution-section__box p:last-child {
    margin-bottom: 0;
}

.solution-section__b-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.outstanding-quality-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #B1B5C3;
    height: auto;
    width: 100%;
    aspect-ratio: 1536/487;
    margin-top: 120px;
    z-index: 2;
    position: relative;
}

.outstanding-quality-item {
    width: 33.33%;
    border-right: 1px solid #B1B5C3;
    padding: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

.outstanding-quality-item:last-child {
    border-right: none;
}

.outstanding-quality-item__img {
    aspect-ratio: 64/71;
    height: auto;
    margin-bottom: 25px;
    width: 64px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.outstanding-quality-item__title {
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.outstanding-quality-item__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    max-width: 95%;
}

.outstanding-quality-item__number {
    position: absolute;
    right: 40px;
    bottom: 24px;
    font-weight: 400;
    font-size: 56px;
    line-height: 120%;
    text-transform: uppercase;
    color: #E91D8F;
}

.outstanding-quality-item::after {
    content: "";
    position: absolute;
    left: 40px;
    bottom: 36px;
    display: inline-block;
    width: 37px;
    height: auto;
    aspect-ratio: 1/1;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="39" viewBox="0 0 40 39" fill="none"><path d="M20 0.833313V38.1666M1.33337 19.5H38.6667" stroke="%23B1B5C3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
    background-size: contain;
}

.header__inner-left p {
    min-width: 50px;
}

.card-ion {
    width: 100%;
}

.left-block {
    position: relative;
}

.cont-box {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.cont-box.show {
    opacity: 1;
    visibility: visible;
}

/* animation */
@media (min-width: 0px) {
    .outstanding-quality-box {
        border: 1px solid transparent;
        -webkit-transition-duration: 0.2s;
        -o-transition-duration: 0.2s;
        transition-duration: 0.2s;
        -webkit-transition-delay: 1s;
        -o-transition-delay: 1s;
        transition-delay: 1s;
    }

    .active-anim.outstanding-quality-box {
        border: 1px solid #B1B5C3;
    }

    .outstanding-quality-item {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(300px);
        -ms-transform: translateY(300px);
        transform: translateY(300px);
        -webkit-transition-duration: 1s;
        -o-transition-duration: 1s;
        transition-duration: 1s;
        -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0, 1);
        -o-transition-timing-function: cubic-bezier(0.25, 0.1, 0, 1);
        transition-timing-function: cubic-bezier(0.25, 0.1, 0, 1);
    }

    .active-anim .outstanding-quality-item:nth-child(1) {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .active-anim .outstanding-quality-item:nth-child(2) {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.15s;
        -o-transition-delay: 0.15s;
        transition-delay: 0.15s;
    }

    .active-anim .outstanding-quality-item:nth-child(3) {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    .products-section .header-h2 {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transition-duration: 1s;
        -o-transition-duration: 1s;
        transition-duration: 1s;
    }

    .products-section .section-text {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transition-duration: 1s;
        -o-transition-duration: 1s;
        transition-duration: 1s;
    }

    .anim-start.products-section .header-h2 {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .anim-start.products-section .section-text {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .card-ion {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px);
        -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
        transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
        -o-transition: opacity 1.2s ease, transform 1.2s ease;
        transition: opacity 1.2s ease, transform 1.2s ease;
        transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    .anim-start .card-ion {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
  /* Появление по порядку */
    .anim-start .card-ion:nth-child(1) {
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    .anim-start .card-ion:nth-child(2) {
        -webkit-transition-delay: 0.25s;
        -o-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }

    .anim-start .card-ion:nth-child(3) {
        -webkit-transition-delay: 0.45s;
        -o-transition-delay: 0.45s;
        transition-delay: 0.45s;
    }

    .up-block .aviation__subtitle,
  .up-block .header-h2,
  .up-block .text {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
        -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
        transition: opacity 1s ease, -webkit-transform 1s ease;
        -o-transition: opacity 1s ease, transform 1s ease;
        transition: opacity 1s ease, transform 1s ease;
        transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
    }

    .up-block .aviation__subtitle,
  .up-block .header-h2,
  .up-block .text {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
        -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
        transition: opacity 1s ease, -webkit-transform 1s ease;
        -o-transition: opacity 1s ease, transform 1s ease;
        transition: opacity 1s ease, transform 1s ease;
        transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
    }

    .show .up-block .aviation__subtitle {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
    }

    .show .up-block .header-h2 {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }

    .show .up-block .text {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.4s;
        -o-transition-delay: 0.4s;
        transition-delay: 0.4s;
    }

    .list-feature__item .aviation__subtitle,
  .list-feature__item .text {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
        -webkit-transition: opacity 1s ease 1s, -webkit-transform 1s ease 1s;
        transition: opacity 1s ease 1s, -webkit-transform 1s ease 1s;
        -o-transition: opacity 1s ease 1s, transform 1s ease 1s;
        transition: opacity 1s ease 1s, transform 1s ease 1s;
        transition: opacity 1s ease 1s, transform 1s ease 1s, -webkit-transform 1s ease 1s;
    }

    .show .list-feature .list-feature__item:nth-child(1) .aviation__subtitle {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.25s;
        -o-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }

    .show .list-feature .list-feature__item:nth-child(1) .text {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    .show .list-feature .list-feature__item:nth-child(2) .aviation__subtitle {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.45s;
        -o-transition-delay: 0.45s;
        transition-delay: 0.45s;
    }

    .show .list-feature .list-feature__item:nth-child(2) .text {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.55s;
        -o-transition-delay: 0.55s;
        transition-delay: 0.55s;
    }

    .show.list-feature .list-feature__item:nth-child(1) .aviation__subtitle {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.25s;
        -o-transition-delay: 0.25s;
        transition-delay: 0.25s;
    }

    .show.list-feature .list-feature__item:nth-child(1) .text {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    .show.list-feature .list-feature__item:nth-child(2) .aviation__subtitle {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.45s;
        -o-transition-delay: 0.45s;
        transition-delay: 0.45s;
    }

    .show.list-feature .list-feature__item:nth-child(2) .text {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.55s;
        -o-transition-delay: 0.55s;
        transition-delay: 0.55s;
    }

    .show .list-feature__item .aviation__subtitle {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.45s;
        -o-transition-delay: 0.45s;
        transition-delay: 0.45s;
    }

    .show .list-feature__item .text {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: 0.45s;
        -o-transition-delay: 0.45s;
        transition-delay: 0.45s;
    }

    .aviation-section .list-feature.list-feature--mobile {
        display: none;
    }

    .aviation-swiper {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
        transform: translateX(100px);
        -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
        transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
        -o-transition: opacity 1.2s ease, transform 1.2s ease;
        transition: opacity 1.2s ease, transform 1.2s ease;
        transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
    }

    .anim-start .aviation-swiper {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .aviation-section .find-more-btn {
        opacity: 0;
        -webkit-transition: opacity 2s ease;
        -o-transition: opacity 2s ease;
        transition: opacity 2s ease;
    }

    .show .find-more-btn {
        opacity: 1;
    }
}

@media (min-width: 650px) {
    .hero-section {
        opacity: 0;
        visibility: hidden;
        -webkit-transition-duration: 1.5s;
        -o-transition-duration: 1.5s;
        transition-duration: 1.5s;
    }

    .anim-start.hero-section {
        opacity: 1;
        visibility: visible;
    }

    .solution-section__right {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(300px);
        -ms-transform: translateX(300px);
        transform: translateX(300px);
        -webkit-transition-duration: 1s;
        -o-transition-duration: 1s;
        transition-duration: 1s;
        -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0, 0.8);
        -o-transition-timing-function: cubic-bezier(0.25, 0.1, 0, 0.8);
        transition-timing-function: cubic-bezier(0.25, 0.1, 0, 0.8);
    }

    .solution-section__img {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateX(-300px);
        -ms-transform: translateX(-300px);
        transform: translateX(-300px);
        -webkit-transition-duration: 1s;
        -o-transition-duration: 1s;
        transition-duration: 1s;
        -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0, 1);
        -o-transition-timing-function: cubic-bezier(0.25, 0.1, 0, 1);
        transition-timing-function: cubic-bezier(0.25, 0.1, 0, 1);
    }

    .anim-start .solution-section__right {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transition-duration: 0.7s;
        -o-transition-duration: 0.7s;
        transition-duration: 0.7s;
    }

    .anim-start .solution-section__img {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition-duration: 0.75s;
        -o-transition-duration: 0.75s;
        transition-duration: 0.75s;
        -webkit-transition-timing-function: ease-out;
        -o-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
}

@media (max-width: 1100px) {
    .anim-start .solution-section__img {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@media (max-width: 1900px) {
    .outstanding-quality-item__title {
        font-size: clamp(20px, 1.68dvw, 32px);
    }

    .outstanding-quality-item__text {
        font-size: clamp(16px, 0.95dvw, 18px);
    }

    .solution-section__box p {
        font-size: clamp(16px, 0.95dvw, 18px);
    }

    .solution-section__box {
        width: 100%;
    }

    .solution-section__b-text {
        font-size: 1.15dvw;
        font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    }

    .solution-section__img {
        top: 12%;
    }

    .outstanding-quality-item__number {
        font-size: clamp(30px, 3dvw, 56px);
    }

    .sw-title {
        font-size: clamp(1.5rem, 1.1359rem + 1.5534vw, 3rem);
    }
}

@media (max-width: 1800px) {
    .solution-section ._container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width: 1700px) {
    .solution-section__img {
        top: 10%;
    }
}

@media (max-width: 1500px) {
    .solution-section-box {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .solution-section__left {
        width: 35%;
    }

    .solution-section__img {
        top: 10%;
    }

    .sw-text {
        max-width: 1000px;
    }

    .outstanding-quality-box {
        margin-top: 50px;
    }
}

@media (max-width: 1450px) {
    .solution-section ._container {
        padding-left: 32px;
        padding-right: 32px;
    }

    .solution-section__img {
        top: 0;
    }
}

@media (max-width: 1300px) {
    .outstanding-quality-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        aspect-ratio: initial;
    }

    .outstanding-quality-item {
        width: 100%;
        padding-bottom: 130px;
        border-right: none;
        border-bottom: 1px solid #B1B5C3;
    }

    .outstanding-quality-item:last-child {
        border-bottom: none;
    }

    .outstanding-quality-item__text {
        max-width: 100%;
    }

    .sw-title br {
        display: none;
    }

    .hero-swiper .swiper-pagination {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 30px;
        top: initial;
    }

    .outstanding-quality-box {
        margin-top: 70px;
    }
}

@media (max-width: 1200px) {
    .sw-text {
        font-size: clamp(0.75rem, 0.6893rem + 0.2589vw, 1rem);
        width: 80%;
    }

    .solution-section__left {
        width: 40%;
    }

    .solution-section__right {
        width: 50%;
        max-width: initial;
    }
}

@media (max-width: 1100px) {
    .solution-section__left {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .solution-section__right {
        width: 700px;
        max-width: initial;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .solution-section-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        row-gap: 40px;
    }

    .solution-section__img {
        position: relative;
        top: initial;
        bottom: initial;
        left: initial;
        right: initial;
        -webkit-transform: initial;
        -ms-transform: initial;
        transform: initial;
        min-width: initial;
        width: 100%;
    }

    .find-more-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .solution-section__right {
        width: 600px;
    }

    .outstanding-quality-box {
        width: 600px;
    }

    .solution-section__left {
        width: 400px;
    }

    .outstanding-quality-box {
        margin-top: 50px;
    }
}

@media (max-width: 700px) {
    .outstanding-quality-box {
        width: 100%;
    }
}

@media (max-width: 650px) {
    ._container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header__inner._container {
        padding-left: 0;
        padding-right: 0;
        width: calc(100% - 32px);
    }

    .outstanding-quality-item {
        padding-top: 40px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 24px;
    }

    .outstanding-quality-item__text {
        margin-bottom: 130px;
    }

    .header {
        min-height: initial;
        height: 56px;
        max-height: 56px;
    }

    .find-dealer-btn {
        font-size: 0;
    }

    .header__inner-left p {
        display: none;
    }

    .sw-title {
        width: calc(100% - 32px);
        max-width: initial;
    }

    .sw-text {
        width: calc(100% - 32px);
        max-width: initial;
    }

    .hero-section {
        height: 700px;
        max-height: 700px;
    }

    .hero-swiper {
        height: 700px;
        max-height: 700px;
    }

    .find-more-btn {
        height: 48px;
        font-size: 18px;
        padding-left: 42px;
        padding-right: 42px;
    }

    .find-more-btn::after {
        width: 16px;
        height: 12px;
        margin-left: 12px;
    }

    .outstanding-quality-box {
        border-right: none;
    }

    .sw-title {
        font-size: 24px;
    }

    .find-dealer-btn::before {
        margin-right: 0;
    }

    .sw-sli-box {
        top: 0;
    }

    .sw-text {
        margin-bottom: 40px;
    }

    .solution-section__left {
        width: 90%;
    }

    .solution-section__right {
        width: 100%;
    }

    .solution-section-box .find-more-btn {
        width: 100%;
    }

    .solution-section ._container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .solution-section-box {
        row-gap: 40px;
    }

    .outstanding-quality-box {
        margin-top: 128px;
    }
}

@media (max-width: 500px) {
    .sw-img-mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .hero-section,
  .hero-swiper {
        width: 100%;
        height: auto;
        aspect-ratio: 375/700;
        max-height: initial;
    }

    .section-text.container-text {
        max-width: 98%;
    }
}
/* semnew styles */
.header-h2 {
    font-size: clamp(1.875rem, 1.6626rem + 0.9061vw, 2.75rem);
}

.section-text {
    font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
}

.container-text {
    max-width: 1056px;
    margin: 0 auto;
}

.products-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.products-section .header-h2 {
    text-align: center;
}

.products-section .section-text {
    text-align: center;
    text-transform: uppercase;
    margin-top: 8px;
    color: #06070A;
}

.ion-list {
    margin-top: 80px;
}

.card-ion {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 24px;
    text-align: center;
    overflow: hidden;
}

.card-ion::before {
    position: absolute;
    content: "";
    width: 100%;
    max-width: 499px;
    aspect-ratio: 499/594;
    -webkit-transform: rotate(-4.38deg);
    -ms-transform: rotate(-4.38deg);
    transform: rotate(-4.38deg);
    top: -35px;
    left: 0;
    background-image: url("../img/bg-card-ion.svg");
    background-size: 100%;
    background-position-y: top;
    background-position-x: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
}

.card-ion__img {
    width: 496px;
    aspect-ratio: 1/1;
}

.card-ion__sub-title {
    color: #E91D8F;
    font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
    font-size: 18px;
    text-transform: uppercase;
    line-height: 150%;
}

.card-ion__title {
    color: #06070A;
    font-size: clamp(1.25rem, 1.068rem + 0.7767vw, 2rem);
    text-transform: uppercase;
    line-height: 120%;
}

.card-ion__text {
    color: #1F222C;
    font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
    line-height: 150%;
}

.card-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
    padding: 24px;
    padding-bottom: 40px;
}

.aviation-section {
    display: grid;
    grid-template-columns: auto 756px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    padding-top: 128px;
    padding-bottom: 128px;
}

.aviation-section._container {
    padding-right: 0;
}

.aviation-section .left-block {
    max-width: 756px;
    padding: 71.5px 0;
}

.aviation-section .up-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 8px;
}

.aviation-section .header-h2 {
    margin-bottom: 0px;
    max-height: 48px;
}

.aviation-section .text {
    color: #0A0C13;
    font-size: clamp(1rem, 0.9697rem + 0.1294vw, 1.125rem);
    line-height: 150%;
}

.aviation-section .list-feature {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 80px;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}

.aviation-section .list-feature__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 16px;
}

.aviation-section .list-feature__item .aviation__subtitle {
    line-height: 120%;
    font-size: clamp(1.25rem, 1.068rem + 0.7767vw, 2rem);
    margin-bottom: 0;
}

.aviation-btn {
    max-width: 300px;
    width: 100%;
    margin-top: 80px;
}

.aviation__subtitle {
    font-size: clamp(1.25rem, 1.1893rem + 0.2589vw, 1.5rem);
    line-height: 150%;
    color: #e91d8f;
    text-transform: uppercase;
}

.aviation-swiper {
    position: relative;
    width: 100%;
    min-height: 650px;
    max-height: 750px;
    height: auto;
    aspect-ratio: 950/756;
}

.aviation-swiper .image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.aviation-swiper .image--mobile {
    display: none;
}

.aviation-swiper .swiper-pagination {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    right: 16px;
    bottom: 16px;
    left: auto;
    text-transform: uppercase;
    color: #F4F5F6;
    line-height: 120%;
    font-size: clamp(1.875rem, 1.6019rem + 1.165vw, 3rem);
}

.aviation-swiper .swiper-slide {
    max-width: 1722px;
}

.aviation-swiper .swiper-pagination__span {
    color: #E91D8F;
}

.aviation-swiper .block-btns {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.aviation-swiper .block-btns .swiper-button-prev {
    margin-right: 24px;
}

.aviation-swiper .block-btns .swiper-button-prev, .aviation-swiper .block-btns .swiper-button-next {
    position: relative;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    top: 0;
    right: 0;
    left: 0;
}

.aviation-swiper .block-btns .swiper-button-prev::after, .aviation-swiper .block-btns .swiper-button-next::after {
    content: "";
    display: block;
    width: 16px;
    height: 32px;
    background-image: url("../img/arrow-swiper-btns.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.aviation-swiper .block-btns .swiper-button-prev.swiper-button-disabled::after {
    background-image: url("../img/arrow-swiper-btns-white.svg");
}

.aviation-swiper .block-btns .swiper-button-prev:not(.swiper-button-disabled)::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.aviation-swiper .block-btns .swiper-button-next.swiper-button-disabled::after {
    background-image: url("../img/arrow-swiper-btns-white.svg");
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.aviation-swiper .block-btns .swiper-button-next.swiper-button-disabled, .aviation-swiper .block-btns .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
}

.footer {
    background: #000;
}

.footer__logo img {
    width: 50px;
    height: 60px;
}

.footer .top-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.footer .block-msg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
    padding: 10px 0;
}

.footer .center-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
    padding-top: 40px;
}

.footer .center-block .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.footer .center-block .nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 14px;
}

.footer .center-block .nav__item span {
    line-height: 24px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 0.8143rem + 0.2589vw, 1.125rem);
}

.footer .center-block .nav__item a {
    line-height: 24px;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 0.8143rem + 0.2589vw, 1.125rem);
}

.nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.footer .center-block .nav {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
}

.footer .center-block .nav {
    grid-template-columns: 1fr 133px;
}

.footer .nav li a {
    line-height: 1.25;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 0.8143rem + 0.2589vw, 1.125rem);
}

.footer .nav__left {
    max-width: 660px;
}

.footer .nav__right {
    max-width: 600px;
}

.footer .center-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: clamp(0.75rem, 0.7197rem + 0.1294vw, 0.875rem);
    line-height: 150%;
}

.footer .center-bottom a {
    color: white;
}

.footer .center-bottom .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
}

.bottom-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 16px;
    color: white;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    position: fixed;
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    background-color: #000;
    z-index: 200;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.bottom-block .text {
    font-family: "Inter";
    color: white;
    line-height: 150%;
    font-size: 14px;
}

.bottom-block .btn {
    background-color: #E91D8F;
    color: white;
    border: 0;
    text-transform: none;
    height: 40px;
    padding: 0 24px;
}

.white-line-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #FFF0F4;
}

.a-under-effect a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    text-decoration: none;
  /* Убираем стандартное подчеркивание */
}

.a-under-effect a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
  /* Позиция подчеркивания */
    width: 100%;
    height: 1px;
  /* Толщина подчеркивания */
    background-color: #ffffff;
  /* Цвет подчеркивания */
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  /* Начальное состояние (невидимо) */
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /* Плавный переход */
}

.a-under-effect a:hover::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  /* Конечное состояние (подчеркивание становится видимым) */
}

.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 38dvw;
    height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-duration: 0.7s;
    -o-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 100px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-backdrop-filter: 0;
    backdrop-filter: 0;
    background-color: transparent;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(18, 1, 19, 0.25);
}

.mobile-menu::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("../img/menu-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-filter: brightness(10%);
    filter: brightness(10%);
}

@supports (-moz-appearance: none) {
    .mobile-menu {
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        background: rgba(18, 1, 19, 0.25);
    }

    .mobile-menu::before {
        display: none;
    }
}

.mobile-menu-opened .nav-menu {
    padding-left: 0;
    margin-left: 32px;
}

.mobile-menu-opened .mobile-menu {
    max-height: initial;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.nav-menu {
    margin-top: 15px;
    margin-bottom: 50px;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu li a {
    color: #fff;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    font-size: 36px;
    font-size: clamp(1rem, 0.6966rem + 1.2945vw, 2.25rem);
    font-weight: 400;
    text-transform: uppercase;
}

.nav-menu li a:hover {
    opacity: 0.7;
}

.nav-menu--one {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0;
}

.nav-menu li {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.nav-menu--two {
    margin-top: 30px;
}

.nav-menu--two li a {
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    color: #E6E8EC;
}

.footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-logo-mob {
    display: none;
}

@media (max-width: 1650px) {
    .mobile-menu-opened .nav-menu {
        margin-left: 32px;
        padding-left: 0;
    }
}

@media (max-width: 1560px) {
    .aviation-section .left-block {
        padding-top: 0;
    }

    .footer .nav__left {
        max-width: 600px;
    }

    .footer .nav__right {
        max-width: 600px;
    }
}

@media (max-width: 1450px) {
    .footer .nav__left {
        max-width: 550px;
    }

    .footer .nav__right {
        max-width: 550px;
    }
}

@media (max-width: 1350px) {
    .aviation-section {
        padding-top: 80px;
        padding-bottom: 80px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .aviation-section .left-block {
        max-width: 100%;
    }

    .aviation-swiper .image {
        display: none;
    }

    .aviation-swiper .image--mobile {
        display: block;
    }

    .aviation-swiper {
        margin-top: 80px;
        aspect-ratio: 1/1;
        max-height: initial;
        min-height: initial;
    }

    .aviation-section._container {
        padding-right: 32px;
    }

    .image--mobile {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .aviation-swiper {
        margin-top: 40px;
        aspect-ratio: 1/1;
        max-height: initial;
        min-height: initial;
    }

    .aviation-swiper {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .cont-box {
        width: 100%;
        height: auto;
    }

    .left-block {
        min-height: 570px;
    }

    .cont-box {
        -webkit-transition-duration: 0.5s;
        -o-transition-duration: 0.5s;
        transition-duration: 0.5s;
    }

    .left-block .list-feature {
        display: none;
    }

    .dark-theme .find-more-btn--brand-color {
        display: none;
    }

    .aviation-section .left-block {
        min-height: 230px;
    }

    .hero-section .hero-swiper .swiper-pagination {
        display: none;
    }

    .aviation-section .list-feature.list-feature--mobile {
        display: block;
        position: relative;
    }
}

@media (max-width: 1250px) {
    .footer .nav__left {
        max-width: 500px;
    }

    .footer .nav__right {
        max-width: 500px;
    }
}

@media (max-width: 1150px) {
    .nav-wrap {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer .nav__left {
        width: 450px;
        min-width: 450px;
    }

    .footer .nav__right {
        width: 450px;
        min-width: 450px;
    }
}

@media (max-width: 1000px) {
    .aviation-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .nav-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px;
    }
}

@media (max-width: 750px) {
    .footer .center-block .nav {
        display: grid;
        row-gap: 20px;
    }

    .solution-section__right {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 700px) {
    .card-ion__img {
        width: 100%;
    }

    .card-ion {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .aviation-section._container {
        padding-right: 16px;
    }

    .solution-section__b-text {
        width: 85%;
    }

    .aviation-section .list-feature {
        margin-top: 40px;
    }

    .nav-wrap {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer .center-block .nav {
        row-gap: 10px;
    }
}

@media (max-width: 600px) {
    .footer .top-block {
        display: grid;
        grid-template-columns: repeat(2, "auto");
        grid-template-rows: repeat(2, "auto");
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
        row-gap: 40px;
    }

    .footer__logo {
        grid-column: span 2;
        grid-row: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .nav-wrap {
        row-gap: 0px;
    }
}

@media (max-width: 530px) {
    .footer .center-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 8px;
    }
}

@media (max-width: 500px) {
    .ion-list {
        margin-top: 40px;
        row-gap: 16px;
    }

    .aviation-section .left-block {
        padding-top: 0px;
        padding-bottom: 0;
    }

    .aviation-swiper {
        margin-top: 40px;
    }

    .aviation-swiper .block-btns .swiper-button-next, .aviation-swiper .block-btns .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .aviation-swiper .block-btns .swiper-button-next::after, .aviation-swiper .block-btns .swiper-button-prev::after {
        width: 10px;
        height: 20px;
    }

    .aviation-swiper .block-btns .swiper-button-prev {
        margin-right: 8px;
    }

    .aviation-section .list-feature {
        margin-top: 40px;
        grid-template-columns: 1fr;
    }

    .aviation-btn {
        margin-top: 40px;
        max-width: 100%;
    }

    .footer .bottom-block {
        display: none;
    }

    .footer .center-block .nav {
        gap: 10px;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
    }

    .footer .center-block .nav__item {
        row-gap: 10px;
    }

    .footer__logo {
        grid-column: span 2;
        grid-row: 1;
    }

    .footer .block-msg:last-child {
        margin-left: auto;
    }

    .footer .block-msg {
        padding: 0;
        margin-top: auto;
    }

    .footer__logo img {
        width: 158px;
        height: 22px;
        margin: 0 auto;
    }

    .aviation-swiper {
        height: 343px;
    }

    .aviation-swiper .image--mobile {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .white-line-container {
        left: 50%;
        width: calc(100% - 32px);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .solution-section__subtitle {
        max-width: 80%;
        line-height: 1.6;
    }

    .card-ion::before {
        max-width: initial;
        width: 140%;
        background-position-x: -50px;
    }

    .footer .center-block .nav {
        grid-template-columns: 170px 1fr;
    }

    .a-under-effect a::after {
        display: none;
    }
}

@media (max-width: 1700px) {
    .header__inner {
        width: calc(100% - 64px);
    }
}

@media (max-width: 650px) {
    .mobile-menu {
        top: 56px;
        width: calc(100% - 32px);
    }

    .nav-menu li a {
        font-size: 14px;
    }

    .mobile-menu {
        background: rgba(18, 1, 19, 0.25);
    }

    .footer-logo {
        display: none;
    }

    .footer__logo .footer-logo-mob {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 157px;
    }
}

@media (max-width: 500px) {
    .sw-img {
        display: none;
    }
}

.body.dark-theme {
    background-color: #06070A;
    color: #fff;
}

.dark-theme .body {
    background-color: #06070A;
    color: #fff;
}

.dark-theme .header-h2 {
    color: #fff;
}

.dark-theme .find-more-btn--brand-color {
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
}

.dark-theme .find-more-btn--brand-color:hover {
    border: 1px solid #fff;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.0823529412);
}

.dark-theme .find-more-btn--brand-color::after {
    -webkit-filter: none;
    filter: none;
}

.dark-theme .products-section .section-text,
.dark-theme .card-ion__title,
.dark-theme .card-ion__text {
    color: #fff;
}

.dark-theme .anim-start .up-block .text {
    color: #fff;
}

.dark-theme .list-feature .text {
    color: #fff;
}

.card-ion__img {
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    z-index: 2;
}

.card-ion::before {
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.card-ion:hover .card-ion__img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.card-ion:hover::before {
    -webkit-transform: scale(0.79) translateY(0px);
    -ms-transform: scale(0.79) translateY(0px);
    transform: scale(0.79) translateY(0px);
}

@media (max-width: 1500px) {
    .mobile-menu {
        max-width: 38dvw;
    }
}

@media (max-width: 1250px) {
    .mobile-menu {
        max-width: 37dvw;
    }

    .nav-menu li a {
        font-size: 24px;
    }

    .nav-menu--two.nav-menu li a {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .mobile-menu-opened .mobile-menu {
        min-width: 435px;
    }
}

@media (max-width: 650px) {
    .mobile-menu-opened .mobile-menu {
        min-width: initial;
        width: 100dvw;
        padding-top: 0px;
        max-width: initial;
    }

    .mobile-menu-opened .nav-menu {
        margin-left: 10px;
    }

    .nav-menu {
        margin-top: 35px;
    }
}

@media (max-width: 500px) {
    .nav-menu li a {
        font-size: 20px;
    }

    .nav-menu--two.nav-menu li a {
        font-size: 16px;
    }
}
/* Начальное состояние ссылок */
.mobile-menu .nav-menu a {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* Поочерёдное появление ссылок с задержкой */
.mobile-menu-opened .mobile-menu .nav-menu--one li:nth-child(1) a,
.mobile-menu-opened .mobile-menu .nav-menu--two li:nth-child(1) a {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu-opened .mobile-menu .nav-menu--one li:nth-child(2) a,
.mobile-menu-opened .mobile-menu .nav-menu--two li:nth-child(2) a {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu-opened .mobile-menu .nav-menu--one li:nth-child(3) a,
.mobile-menu-opened .mobile-menu .nav-menu--two li:nth-child(3) a {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu-opened .mobile-menu .nav-menu--one li:nth-child(4) a,
.mobile-menu-opened .mobile-menu .nav-menu--two li:nth-child(4) a {
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu-opened .mobile-menu .nav-menu--one li:nth-child(5) a,
.mobile-menu-opened .mobile-menu .nav-menu--two li:nth-child(5) a {
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.mobile-menu-opened .mobile-menu .nav-menu--one li:nth-child(6) a,
.mobile-menu-opened .mobile-menu .nav-menu--two li:nth-child(6) a {
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.swiper-controls {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 45px;
    margin-top: 30px;
}

.products-swiper .swiper-button-prev {
    position: relative;
    top: initial;
    bottom: initial;
    left: initial;
    right: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
}

.products-swiper .swiper-button-next {
    position: relative;
    top: initial;
    bottom: initial;
    left: initial;
    right: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
}

.swiper-button-next::after {
    display: none;
}

.swiper-button-prev::after {
    display: none;
}

.products-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M20%2012H4M4%2012L10%206M4%2012L10%2018'%20stroke='%23fff'%20stroke-width='1.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

.products-swiper .swiper-button-next {
    width: 45px;
    height: 45px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20M20 12L14 6M20 12L14 18' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
}

.products-section .section-text {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 650px) {
    .products-swiper .swiper-button-prev {
        width: 30px;
        height: 30px;
    }

    .products-swiper .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .swiper-controls {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
        margin-top: 10px;
    }

    .card-ion::before {
        width: 100%;
        max-width: 100%;
    }
  @    supports (-moz-appearance: none) {
        .header {
      -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        background: rgba(18, 1, 19, 0.25);
    }
}

.bottom-block {
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 15px;
}

.bottom-block .text {
    font-size: 12px;
    text-align: center;
}

.aviation-btn {
    margin-top: 40px;
}
}

.box-box {
    width: 50px;
    height: 100px;
    background-color: #fff;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.box-box:hover {
    width: 50px;
    height: 200px;
    background-color: #fff;
}

.cookies-message {
    -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
    opacity: 1;
    -webkit-transform: translateY(0) translateX(-50%);
    -ms-transform: translateY(0) translateX(-50%);
    transform: translateY(0) translateX(-50%);
}

.cookies-message.hide {
    opacity: 0;
    -webkit-transform: translateY(20px) translateX(-50%);
    -ms-transform: translateY(20px) translateX(-50%);
    transform: translateY(20px) translateX(-50%);
    pointer-events: none;
}

.swiper-pagination-bullet {
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    height: 30px !important;
}

.list-feature--mobile {
    display: block;
}

.list-feature--mobile .cont-box {
    position: absolute;
    top: 0;
    bottom: initial;
    left: 0;
    right: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    width: 100%;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
}

.list-feature--mobile .show.cont-box {
    position: relative;
    top: initial;
    bottom: initial;
    left: initial;
    right: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
    width: 100%;
    pointer-events: none;
}

@media (min-width: 2000px) {
    .header__inner .nav-menu li a {
        font-size: 35px;
    }

    .mobile-menu {
        max-width: 39dvw;
    }
}

@media (min-width: 2200px) {
    .mobile-menu {
        max-width: 40dvw;
    }
}

@media (min-width: 2400px) {
    .mobile-menu {
        max-width: 42dvw;
    }
}

@media (min-width: 3000px) {
    .mobile-menu {
        max-width: 44dvw;
    }
}

@media (min-width: 4200px) {
    .mobile-menu {
        max-width: 45dvw;
    }
}