@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-Medium.woff') format('woff'),
         url('/assets/fonts/Manrope-Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-Semibold.woff') format('woff'),
         url('/assets/fonts/Manrope-Semibold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
}
@font-face {
    font-family: 'Manrope';
    src: url('/assets/fonts/Manrope-Bold.woff') format('woff'),
         url('/assets/fonts/Manrope-Bold.woff2') format('woff2');
    font-style: normal;
    font-weight: bold;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.7;
    color: #b8b8b8;
    background-color: #191a1d;
    margin: 0;
    padding: 0;
    text-rendering: optimizeSpeed;
}
.body-wrapper {
    overflow: clip;
    margin: 0;
}
a {
    text-decoration: none;
    transition: all .2s ease;
    color: #fff;
}
img, picture {
    max-width: 100%;
    display: block;
}
header {
    width: 100%;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
}
.header__container {
    width: 100%;
    min-width: 0;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 1;
    transition: all .3s ease;
    max-width: calc(100dvw - 8.5% - 8.5%);
    color: #fff;
}
a {
    color: #fff;
}
a:hover {
    color: #999999;
}
.header__logo {
    width: max-content;
    opacity: 0;
    transition: transform .25s ease;
    pointer-events: none;
}
.header__logo:hover {
    transform: scale(1.04);
    transform-origin: center center;
}
.header__first {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 80px;
}
.nav__list {
    display: flex;
    min-width: 0;
    gap: 56px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__list-el {
    margin: 0;
    padding: 0;
    position: relative;
}
.nav__list-el a {
    padding: 3px 0;
    position: relative;
}
.nav__list-el a::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    height: 2px;
    display: flex;
    gap: 4px;
    width: 100%;
    background: linear-gradient(to right,
        #fff 0 calc(100% - 16px),
        transparent 0 calc(100% - 12px),
        #ffc600 0 calc(100% - 8px),
        transparent 0 calc(100% - 4px),
        #ff0000 0 4px); 
    opacity: 0;
    visibility: hidden;
    transform-origin: left;
    transform: scaleX(0);
    transition: all .3s ease;
}
.nav__list-el.active a::after {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
}
.nav__list-el.active a:hover {
    color: #fff;
}
.header__second {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 60px;
    max-width: 490px;
    width: 100%;
    flex-shrink: 0;
}
.header__number {
    font-size: 22px;
    font-weight: 600;
}
.btn_rounded {
    position: relative;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-weight: bold;
    max-width: 254px;
    aspect-ratio: 254/58;
    color: #161616;
    background-image: url(/assets/img/btn-rounded.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 10px 20px;
    transition: all .3s ease;
    width: 100%;
    z-index: 1;
}
.btn_rounded span {
    z-index: 1;
}
.btn_rounded:hover {
    color: #161616;
    filter: brightness(125%);
}
header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease,
        min-height 0.3s ease;
}
.header__container {
    transition: padding 0.3s ease;
}
header.is-scrolled {
    background: rgba(0, 0, 0, 0.247);
    backdrop-filter: blur(10px);
}
header.is-scrolled .header__container {
    padding: 20px 0;
}
@keyframes logoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes logoFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
header.is-scrolled .header__logo {
    pointer-events: auto;
    animation: logoFadeIn .3s ease forwards;
    animation-delay: .4s;
}
header:not(.is-scrolled) .header__logo {
    animation: logoFadeOut .3s ease forwards;
    animation-delay: 0;
}
.header__nav {
    transition: transform .8s ease;
}
header:not(.is-scrolled) .header__nav {
    transform: translateX(-274px);
}
header.is-scrolled .header__nav {
    transform: translateX(0);
}
body:not(.front-page) .header__logo {
    pointer-events: auto !important;
    opacity: 1 !important;
    animation: none !important;
}
body:not(.front-page) header:not(.is-scrolled) .header__nav {
    transform: translateX(0);
}
section {
    display: flex;
    min-width: 0;
    justify-content: center;
    position: relative;
    padding: 180px 8.5%;
}
section:first-child {
    padding-bottom: 100px;
    padding-top: calc(100px + 140px);
}
section:last-child {
    padding-bottom: 200px;
}
.container {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
}

/* WELCOME */
section.welcome {
    background: url(/assets/img/backgrounds/welcome-bg.jpg) bottom no-repeat;
    background-size: cover;
    padding-top: calc(138px);
    padding-bottom: 0;
}
section.welcome .container {
    height: calc(100dvh - 138px);
    justify-content: center;
}
.section-title {
    line-height: 1.3;
    color: #fff;
    font-size: 40px;
    text-align: left;
    margin-top: 56px;
    margin-bottom: 26px;
}
section.welcome .section-title {
    max-width: 780px;
}
.section-desc {
    font-size: 20px;
    text-align: left;
}
section.welcome .section-desc {
    max-width: 600px;
    font-size: 22px;
}
.btn_rounded.red {
    background-image: url(/assets/img/btn-rounded_red.png);
    color: #fff;
    font-size: 26px;
    max-width: 398px;
    aspect-ratio: 398/86;
}
.btn_rounded.red:hover {
    filter: brightness(85%);
}
section.welcome .btn_rounded.red {
    margin-top: 56px;
}
.welcome__socials {
    /* padding-top: 344px; */
    padding-top: 16%;
    display: flex;
    min-width: 0;
    align-items: center;
    font-weight: 600;
    gap: 40px;
    font-size: 18px;
}

/* ABOUT */
section.about {
    background: linear-gradient(to top, #21232c, #212639);
    padding-top: 84px;
    padding-bottom: 160px;
    border-radius: 0 0 60px 60px;
    z-index: 4;
}
section.about .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
}
.about__text .section-title {
    max-width: 880px;
    margin-bottom: 30px;
}
.about__text .section-desc {
    max-width: 1040px;
}
.btn {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-weight: bold;
    max-width: 220px;
    aspect-ratio: 220/56;
    color: #161616;
    background: #ffc600;
    border-radius: 2px;
    padding: 10px 20px;
    transition: all .3s ease;
    width: 100%;
    margin-top: 44px;
}
.btn:hover {
    color: #161616;
    filter: brightness(125%);
}
.about__features {
    height: 100%;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    text-align: left;
    max-width: 963px;
    width: 100%;
    position: relative;
}
@keyframes float {
    0%   { transform: translate(var(--x, 0), 0); }
    50%  { transform: translate(var(--x, 0), -12px); }
    100% { transform: translate(var(--x, 0), 0); }
}
.feature {
    background: #2f3342;
    border-radius: 40px 0 40px 0;
    display: flex;
    min-width: 0;
    justify-content: space-between;
    padding: 40px 54px;
    max-width: 642px;
    width: 100%;
    align-items: center;
    will-change: transform;
}
.feature-text {
    font-size: 24px;
    max-width: 380px;
    width: 100%;
}
.feature:nth-child(2) {
    border-radius: 0 40px 0 40px;
    transform: translateX(50%);
    --x: 50%;
}
.feature:nth-child(3) {
    transform: translateX(25%);
    --x: 25%;
}
.about__features .feature {
    animation: float 4s forwards infinite;
    will-change: transform;
}
.about__features .feature:nth-child(1) {
    animation-delay: 0s;
}
.about__features .feature:nth-child(2) {
    animation-delay: 0.75s;
}
.about__features .feature:nth-child(3) {
    animation-delay: 2s;
}

/* SERVICE */
section.service {
    background: url(/assets/img/backgrounds/service-bg.jpg) center no-repeat;
    background-size: cover;
    margin-top: -50px;
    padding-top: calc(180px + 50px);
    border-radius: 0 0 60px 60px;
    z-index: 3;
}
section.service .container {
    gap: 48px;
}
.service-block {
    display: flex;
    min-width: 0;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
    border-radius: 0 60px 0 60px;
    background: linear-gradient(to top, #262a34, #323743);
    overflow: hidden;
}
.service-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 75px 0;
    padding-left: 156px;
}
.service-block:nth-child(2) .service-text {
    padding-left: 0;
    padding-right: 156px;
}
@media(max-width: 2500px) {
    .service-text {
        padding-left: 100px;
    }
    .service-block:nth-child(2) .service-text {
        padding-left: 0;
        padding-right: 100px;
    }
}

.service-tag {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    max-width: 189px;
    width: 100%;
    height: 48px;
    border-radius: 20px 0 20px 0;
    border: 2px solid #ffc600;
    color: #ffc600;
    font-weight: bold;
    font-size: 20px;
}
.service-images {
    position: relative;
    max-width: 960px;
    width: 100%;
    height: 100%;
    display: flex;
    min-width: 0;
    clip-path: polygon(4.5% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 0 0 60px;
    overflow: hidden;
}
.service-img {
    position: relative !important;
    z-index: 1 !important;
}
.service-img::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(42, 48, 61, 0.6), rgba(13, 12, 12, 0.1) 55%);
    z-index: 2 ;
}
.service-block:nth-child(2) .service-images {
    border-radius: 0 60px 0 0;
    clip-path: polygon(0% 0, 100% 0, 95.5% 100%, 0 100%);
}
.service-img img {
    height: 100%;
    object-fit: cover;
}
.service-text .section-title {
    margin-top: 30px;
    max-width: 720px;
    text-wrap: balance;
}
.service-text .section-desc {
    max-width: 900px;
}
.swiper-pagination {
    position: absolute;
    bottom: 24px !important;
    left: 0;
    right: 0;
    display: flex;
    gap: 13px;
    padding-left: 50px;
    padding-right: 90px;
}
.swiper-pagination-bullet {
    flex: 1;
    height: 5px;
    background: rgba(90, 96, 109, 0.7);
    border-radius: 2.5px;
    overflow: hidden;
    position: relative;
    opacity: 1;
    margin: 0 !important;
}
.swiper-pagination-bullet::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #fff;
}
.swiper-pagination-bullet-active::after {
    animation: progress 5s linear forwards;
}
@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}
.slider-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 5;
    cursor: pointer;
}
.slider-zone.left {
    left: 0;
}
.slider-zone.right {
    right: 0;
}

/* TUNING */
section.tuning {
    background: url(/assets/img/backgrounds/tuning-bg.jpg) bottom no-repeat;
    background-size: cover;
    border-radius: 0 0 60px 60px;
    margin-top: -50px;
    z-index: 2;
    height: 1000px;
}
section.tuning .container {
    justify-content: center;
    align-items: center;
}
section.tuning .section-title {
    font-size: 52px;
    line-height: 1.2;
    max-width: 800px;
    text-align: center;
    margin: 0;
    margin-top: 28px;
}
section.tuning .btn {
    margin-top: 36px;
}

/* CONTACTS */
section.contacts {
    background: url(/assets/img/backgrounds/contacts-bg.jpg) bottom no-repeat;
    background-size: cover;
    z-index: 1;
    margin-top: -50px;
    padding-top: calc(180px + 50px);
    border-radius: 0 0 60px 60px;
}
section.contacts .container {
    flex-direction: row;
    align-items: center;
    height: 632px;
}
.map, .contacts__block {
    height: 100%;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.map {
    position: relative;
    width: 55%;
    clip-path: polygon(3.5% 0, 100% 0, 96.5% 100%, 0 100%);
    overflow: hidden;
    border-radius: 0 60px 0 60px;
}
/* .map::before {
    content: "Map Widget";
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 40%;
    text-transform: uppercase;
    color: #545760;
    width: 100%;
    height: 100%;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    background: #333844;
    border-radius: 0 60px 0 60px;
} */
.map::before {
    display: none;
}
.map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.contacts__block {
    width: 45%;
    background: linear-gradient(to top, #262a34, #323743);
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    border-radius: 0 60px 0 60px;
    gap: 76px;
}
.contacts-subtitle, .contacts-title, .contacts-link {
    line-height: 1;
}
.contacts-title {
    font-size: 54px;
    color: #fff;
    line-height: 1;
    margin-top: 16px;
}
.contacts-links {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    max-width: 400px;
    width: 100%;
    gap: 36px;
}
.contacts-link {
    width: 100%;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    color: #fff;
}
.contacts-link::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(/assets/img/links-arrow.png) center no-repeat;
    background-size: contain;
    transition: all .2s ease;
}
.contacts-link:hover::after {
    filter: brightness(60%);
}

/* FOOTER */
.footer__container {
    background: url(/assets/img/backgrounds/footer-bg.jpg) center no-repeat;
    background-size: cover;
    margin-top: -50px;
    padding: 90px 8.5%;
    padding-top: calc(50px + 90px);
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
}
.footer__main {
    width: 100%;
    display: flex;
    min-width: 0;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
}
.footnote {
    color: #b8b8b857;
    font-size: 12px;
}
.footer__brand {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}
.footer__socials {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    font-size: 16px;
}
.footer__contacts {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.footer__number {
    font-size: 54px;
}
.footer__address {
    font-size: 20px;
    color: #8d8d8d;
}
.footer__agreement {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}
.agreement__text {
    line-height: 1.85;
    color: #8d8d8d;
    max-width: 650px;
}
.footer__links {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 30px;
}

section.text {
    background: url(/assets/img/backgrounds/text-bg.jpg) center no-repeat;
    background-size: cover;
    border-radius: 0 0 60px 60px;
    z-index: 3;
    padding-bottom: 130px;
}
section.text.second {
    margin-top: -50px;
    background: url(/assets/img/backgrounds/text-bg-second.jpg) center no-repeat;
    background-size: cover;
    border-radius: 0 0 60px 60px;
    padding-top: calc(160px + 50px);
    z-index: 2;
}
section.text .container {
    text-align: left;
}
section.text .section-desc {
    max-width: 1710px;
}
.img-swiper-wrapper {
    padding-top: 120px;
    width: 100%;
    overflow: hidden;
}
.img-slider {
    height: 510px;
}
.img-slider .swiper-slide {
    height: 480px;
    transition: all 0.5s ease;
    opacity: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.85);
    border-radius: 32px 0 32px 0;
    position: relative;
    overflow: hidden;
}
.img-slider .swiper-slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(34, 39, 50, 0.5);
    transition: all .6s ease;
}
.img-slider .swiper-slide-active::after {
    opacity: 0;
}
.img-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-slider .swiper-slide-active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}
.img-slider .swiper-slide-prev,
.img-slider .swiper-slide-next {
    opacity: 0.7;
}
.img-slider .swiper-pagination {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    bottom: 0px !important;
}
.swiper-button-prev, .swiper-button-next {
    content: "";
    appearance: none;
    width: 77px;
    height: 70px;
    aspect-ratio: 77/70;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.swiper-button-prev svg, .swiper-button-next svg {
    display: none;
}
.swiper-button-prev {
    background-image: url(/assets/img/arrow-left.png);
    left: 35% !important;
}
.swiper-button-next {
    background-image: url(/assets/img/arrow-right.png);
    right: 35% !important;
}

/* ADAPTIVE */
.burger {
    position: relative;
    width: 30px;
    height: 30px;
    border: none;
    display: none;
    z-index: 1002;
    background-color: transparent;
    cursor: pointer;
}
.burger span {
    position: absolute;
    width: 18px;
    height: 1.5px;
    background-color: #fff;
    left: 6px;
    transition: transform .5s;
    will-change: transform;
}
.burger span:nth-child(1) {
    transform: translateY(-7.5px);
} 
.burger span:nth-child(3) {
    transform: translateY(7.5px);
} 
.burger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
} 
.burger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.burger.active span:nth-child(2) {
    display: none;
}
.menu {
    display: none;
    visibility: hidden;
    z-index: 1001;
    min-height: 100vh;
}
.menu__list {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

@media(max-width: 2000px) {
    body {
        font-size: 15px;
    }
    .header__container {
        font-size: 14px;
        padding: 30px 0;
    }
    .header__first {
        gap: 60px;
    }
    .header__logo {
       aspect-ratio: 194/57;
       width: 145.5px;
    }
    header:not(.is-scrolled) .header__nav {
        transform: translateX(-205.5px);
    }
    .nav__list {
        gap: 42px;
    }
    .nav__list-el a::after {
        bottom: -7px;
        height: 1.5px;
    }
    .header__second {
        gap: 45px;
        max-width: 368px;
    }
    .header__number {
        font-size: 16.5px;
    }
    .btn_rounded {
        max-width: 190.5px;
        padding: 7.5px 15px;
    }

    section {
        padding: 135px 8.5%;
    }
    section:first-child {
        padding-top: calc(100px + 103.5px);
    }

    section.welcome {
        padding-top: 103.5px;
    }
    section.welcome .container {
        height: calc(100dvh - 103.5px);
        min-height: 800px;
    }
    .welcome__logo {
        aspect-ratio: 432/126;
        width: 324px;
    }
    .section-title {
        font-size: 30px;
        margin-top: 42px;
        margin-bottom: 26px;
    }
    section.welcome .section-title {
        max-width: 585px;
    }
    .section-desc {
        font-size: 15px;
    }
    section.welcome .section-desc {
        max-width: 450px;
        font-size: 16.5px;
    }
    .btn_rounded.red {
        font-size: 19.5px;
        max-width: 298.5px;
    }
    section.welcome .btn_rounded.red {
        margin-top: 42px;
    }
    .welcome__socials {
        gap: 30px;
        font-size: 13.5px;
    }

    section.about {
        padding-bottom: 120px;
        padding-top: 63px;
        border-radius: 0 0 45px 45px;
    }
    section.about .container {
        gap: 30px;
    }
    .about__text .section-title {
        max-width: 660px;
        margin-bottom: 22.5px;
    }
    .about__text .section-desc {
        max-width: 780px;
    }
    .btn {
        max-width: 165px;
        padding: 7.5px 15px;
        margin-top: 33px;
    }
    .about__features {
        gap: 13.5px;
        max-width: 722px;
    }
    .feature {
        padding: 30px 40px;
        max-width: 480px;
        border-radius: 30px 0 30px 0;
    }
    .feature:nth-child(2) {
        border-radius: 0 30px 0 30px;
    }
    .feature-text {
        font-size: 18px;
        max-width: 285px;
    }
    .feature-img {
        transform: scale(0.75);
        transform-origin: right center;
    }

    section.service {
        margin-top: -38px;
        padding-top: calc(135px + 38px);
        border-radius: 0 0 45px 45px;
    }
    section.service .container {
        gap: 36px;
    }
    .service-block {
        border-radius: 0 45px 0 45px;
        gap: 18px;
    }
    .service-text {
        padding: 56px 0;
        padding-left: 117px;
    }
    .service-block:nth-child(2) .service-text {
        padding-left: 0;
        padding-right: 117px;
    }
    .service-images {
        border-radius: 0 0 0 45px;
    }
    .service-block:nth-child(2) .service-images {
        border-radius: 0 45px 0 0;
    }
    .service-tag {
        max-width: 142px;
        height: 36px;
        border-radius: 15px 0 15px 0;
        font-size: 15px;
    }
    .service-text .section-title {
        margin-top: 22.5px;
        max-width: 540px;
    }
    .service-text .section-desc {
        max-width: 675px;
    }
    .service-images {
        max-width: 720px;
    }
    .swiper-pagination {
        bottom: 18px !important;
        padding-left: 37.5px;
        padding-right: 67.5px;
        gap: 9.75px;
    }
    .swiper-pagination-bullet {
        height: 3.75px;
    }

    section.tuning {
        border-radius: 0 0 45px 45px;
        margin-top: -38px;
        height: 750px;
    }
    section.tuning .section-title {
        font-size: 39px;
        max-width: 600px;
        margin-top: 21px;
    }
    section.tuning .btn {
        margin-top: 27px;
    }

    section.contacts {
        margin-top: -38px;
        padding-top: calc(135px + 38px);
        border-radius: 0 0 45px 45px;
    }
    section.contacts .container {
        height: 474px;
    }
    .map {
        border-radius: 0 45px 0 45px;
    }
    .map::before {
        font-size: 40px;
        border-radius: 0 45px 0 45px;
    }
    .contacts__block {
        gap: 57px;
        border-radius: 0 45px 0 45px;
    }
    .contacts-title {
        font-size: 40px;
        margin-top: 12px;
    }
    .contacts-links {
        max-width: 300px;
        gap: 27px;
    }
    .contacts-link {
        font-size: 16.5px;
    }
    .contacts-link::after {
        width: 15px;
        height: 15px;
    }

    .footer__container {
        margin-top: -38px;
        padding: 68px 8.5%;
        padding-top: calc(68px + 38px);
    }
    .footer__main {
        font-size: 12px;
    }
    .footer__brand {
        gap: 18.775px;
    }
    .footer__logo {
        aspect-ratio: 256/73;
        width: 192px;
    }
    .footer__socials {
        gap: 18px;
        font-size: 14px;
    }
    .footer__contacts {
        gap: 15px;
    }
    .footer__number {
        font-size: 40px;
    }
    .footer__address {
        font-size: 15px;
    }
    .footer__agreement {
        gap: 22px;
        max-width: 488px;
    }
    .footer__links {
        gap: 22px;
    }

    section.text .section-desc {
        max-width: 1280px;
    }
    .img-swiper-wrapper {
        padding-top: 90px;
    }
    section.text {
        border-radius: 0 0 45px 45px;
        padding-bottom: 97.5px;
    }
    section.text.second {
        margin-top: -38px;
        border-radius: 0 0 45px 45px;
        padding-top: calc(120px + 38px);
    }
    .swiper-button-prev {
        left: 33% !important;
    }
    .swiper-button-next {
        right: 33% !important;
    }
}

@media(max-width: 1700px) {
    .service-text {
        padding-left: 80px;
    }
    .service-block:nth-child(2) .service-text {
        padding-left: 0;
        padding-right: 80px;
    }
}

@media(max-width: 1600px) {
    body {
        font-size: 12px;
    }
    .header__container {
        font-size: 12px;
        padding: 20px 0;
        max-width: calc(100dvw - 5% - 5%);
    }
    .header__first {
        gap: 45px;
    }
    .header__logo {
       width: 110px;
    }
    header:not(.is-scrolled) .header__nav {
        transform: translateX(-155px);
    }
    .nav__list {
        gap: 42px;
    }
    .nav__list-el a::after {
        bottom: -3px;
        height: 1.5px;
    }
    .header__second {
        gap: 33.75px;
        max-width: 310px;
    }
    .header__number {
        font-size: 14px;
    }
    .btn_rounded {
        max-width: 164px;
        padding: 7.5px 15px;
    }

    section {
        padding: 100px 5%;
    }
    section:first-child {
        padding-top: calc(75px + 78px);
        padding-bottom: 75px;
    }

    section.welcome {
        padding-top: 78px;
    }
    section.welcome .container {
        height: calc(100dvh - 78px);
        min-height: 600px;
    }
    .welcome__logo {
        aspect-ratio: 432/126;
        width: 324px;
    }
    .section-title {
        font-size: 25.5px;
        margin-top: 32px;
        margin-bottom: 20px;
    }
    section.welcome .section-title {
        max-width: 498px;
    }
    .section-desc {
        font-size: 12px;
    }
    section.welcome .section-desc {
        max-width: 350px;
        font-size: 13px;
    }
    .btn_rounded.red {
        font-size: 14.5px;
        max-width: 220px;
    }
    section.welcome .btn_rounded.red {
        margin-top: 32px;
    }
    .welcome__socials {
        gap: 22px;
        font-size: 12px;
        padding-top: 10%;
    }

    section.about {
        padding-bottom: 90px;
        padding-top: 48px;
        border-radius: 0 0 34px 34px;
    }
    section.about .container {
        gap: 22px;
    }
    .about__text .section-title {
        max-width: 560px;
        margin-bottom: 16px;
    }
    .about__text .section-desc {
        max-width: 630px;
    }
    .btn {
        max-width: 140px;
        padding: 7.5px 15px;
        margin-top: 24px;
    }
    .about__features {
        gap: 10px;
        max-width: 540px;
    }
    .feature {
        padding: 22px 30px;
        max-width: 360px;
        border-radius: 22px 0 22px 0;
    }
    .feature:nth-child(2) {
        border-radius: 0 22px 0 22px;
    }
    .feature-text {
        font-size: 13px;
        max-width: 210px;
    }
    .feature-img {
        transform: scale(0.5);
    }

    section.service {
        margin-top: -28px;
        padding-top: calc(100px + 28px);
        border-radius: 0 0 34px 34px;
    }
    section.service .container {
        gap: 27px;
    }
    .service-block {
        border-radius: 0 34px 0 34px;
        gap: 13px;
    }
    .service-text {
        padding: 42px 0;
        padding-left: 80px;
    }
    .service-block:nth-child(2) .service-text {
        padding-left: 0;
        padding-right: 80px;
    }
    .service-images {
        border-radius: 0 0 0 34px;
    }
    .service-block:nth-child(2) .service-images {
        border-radius: 0 34px 0 0;
    }
    .service-tag {
        max-width: 110px;
        height: 28px;
        border-radius: 12px 0 12px 0;
        font-size: 12px;
    }
    .service-text .section-title {
        margin-top: 16px;
        max-width: 460px;
    }
    .service-text .section-desc {
        max-width: 675px;
    }
    .service-images {
        max-width: 540px;
    }
    .swiper-pagination {
        bottom: 13.5px !important;
        padding-left: 28px;
        padding-right: 50px;
        gap: 7px;
    }
    .swiper-pagination-bullet {
        height: 3px;
    }

    section.tuning {
        border-radius: 0 0 34px 34px;
        margin-top: -28px;
        height: 560px;
    }
    section.tuning .section-title {
        font-size: 29px;
        max-width: 450px;
        margin-top: 15px;
    }
    section.tuning .btn {
        margin-top: 20px;
    }

    section.contacts {
        margin-top: -28px;
        padding-top: calc(100px + 28px);
        border-radius: 0 0 34px 34px;
    }
    section.contacts .container {
        height: 350px;
    }
    .map {
        border-radius: 0 34px 0 34px;
    }
    .map::before {
        font-size: 30px;
        border-radius: 0 34px 0 34px;
    }
    .contacts__block {
        gap: 42px;
        border-radius: 0 34px 0 34px;
    }
    .contacts-title {
        font-size: 30px;
        margin-top: 9px;
    }
    .contacts-links {
        max-width: 225px;
        gap: 20px;
    }
    .contacts-link {
        font-size: 12px;
    }
    .contacts-link::after {
        width: 12px;
        height: 12px;
    }

    .footer__container {
        margin-top: -28px;
        padding: 50px 5%;
        padding-top: calc(50px + 28px);
        font-size: 12px;
        align-items: center;
    }
    .footer__brand {
        gap: 13.5px;
    }
    .footer__logo {
        width: 144px;
    }
    .footer__socials {
        gap: 13px;
        font-size: 12.5px;
    }
    .footer__contacts {
        gap: 11px;
    }
    .footer__number {
        font-size: 30px;
    }
    .footer__address {
        font-size: 13px;
    }
    .footer__agreement {
        gap: 16px;
        max-width: 425px;
    }
    .footer__links {
        gap: 16px;
    }

    section.text .section-desc {
        max-width: 960px;
    }
    .img-swiper-wrapper {
        padding-top: 68px;
    }
    .img-slider {
        height: 382.5px;
    }
    .img-slider .swiper-slide {
        height: 360px;
        border-radius: 24px 0 24px 0;
    }
    .swiper-button-prev, .swiper-button-next {
        width: 57.75px;
        height: 52.5px;
    }
    .img-slider .swiper-pagination {
        max-width: 750px;
    }
    section.text {
        border-radius: 0 0 34px 34px;
        padding-bottom: 72px;
    }
    section.text.second {
        margin-top: -28px;
        border-radius: 0 0 34px 34px;
        padding-top: calc(90px + 28px);
    }
}

@media(max-width: 1400px) {
    .service-text {
        padding-left: 40px;
    }
    .service-block:nth-child(2) .service-text {
        padding-left: 0;
        padding-right: 40px;
    }
}


@media(max-width: 1150px) {
    header.is-scrolled .header__logo {
        pointer-events: auto;
        opacity: 1;
        animation: none;
    }
    header:not(.is-scrolled) .header__logo {
        pointer-events: auto;
        opacity: 1;
        animation: none;
    }
    .header__nav {
        transition: transform .8s ease;
    }
    .nav__list, .header__number, .header__second .btn_rounded {
        display: none;
    }
    .header__second {
        max-width: max-content;
    }
    .burger {
        display: block;
        position: relative;
        transition: transform .2s ease;
    }
    .logo:hover {
        transform: none;
    }
    .menu__list {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .menu__list li:first-of-type {
        border-top: 1px solid #ffffff52;
    }
    .menu__list li {
        text-align: center;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid #ffffff52;
        padding-left: 5%;
    }
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        padding: 72px 0;
        transform: translateY(-100%);
        transition: all .5s;
        display: block;
    }
    header.is-scrolled .menu {
        padding: 52.5px 0;
    }
    .header__logo {
        z-index: 1002;
    }
    .menu.active {
        transform: translateY(0);
        visibility: visible;
        background-color: rgba(20, 21, 26, 0.95);
    }
    .menu__item a {
        font-size: 14px;
        width: calc(100% - 25px);
        height: 100%;
        display: flex;
        padding: 15px 0;
        text-transform: none;
    }
    .menu__list .menu__item:last-child {
        border-top: none;
    }
    .no-scroll {
        overflow: hidden;
    }
    .header__scroll {
        top: 10px;
    }
    .header__scroll .menu {
        top: -10px;
        padding: 50px 0;
    }
    .menu__item-special {
        padding-top: 20px;
        display: flex;
        min-width: 0;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .menu__item-special .btn_rounded {
        display: flex;
    }
    .menu__item-special .header__number {
        display: flex;
    }

    section {
        padding: 60px 5%;
    }
    section:first-child {
        padding-top: calc(60px + 72px);
        padding-bottom: 60px;
    }

    section.welcome {
        padding-top: 72px;
    }
    section.welcome {
        background-position: left;
    }
    section.welcome .container {
        height: calc(100dvh - 72px);
        min-height: 650px;
    }
    section.welcome .section-title {
        max-width: 400px;
    }
    .welcome__logo {
        width: 250px;
    }
    .welcome__socials {
        padding-top: 15%;
    }
    .section-title {
        font-size: 18px;
    }
    section.about {
        padding-bottom: 60px;
    }
    section.about .container {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .about__features {
        justify-content: center;
        flex-direction: row;
        align-items: center;
        max-width: 100%;
        height: auto;
        flex-wrap: wrap;
    }
    .about__text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about__text .section-title, .about__text .section-desc {
        text-align: center;
    }
    .feature:nth-child(2), .feature:nth-child(3) {
        --x: 0;
        transform: translateX(0);
    }
    @keyframes float {
        0%   { transform: translate(0, 0); }
        50%  { transform: translate(0, -10px); }
        100% { transform: translate(0, 0); }
    }
    .feature {
        flex-shrink: 0;
    }

    section.service {
        padding-top: calc(60px + 28px);
    }

    section.tuning {
        height: 350px;
    }
    section.tuning .section-title {
        font-size: 20px;
        max-width: 300px;
    }

    section.contacts {
        padding-top: calc(60px + 28px);
        padding-bottom: 60px;
    }

    .footer__main {
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-direction: column;
    }
    .footer__container {
        justify-content: center;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    .footer__brand, .footer__socials, .footer__contacts, .footer__agreement {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    section.text .section-desc {
        max-width: 816px;
    }
    section.text .section-title, section.text .section-desc {
        text-align: left;
    }
    .img-swiper-wrapper {
        padding-top: 51px;
    }
    .img-slider {
        height: 286px;
    }
    .img-slider .swiper-slide {
        height: 270px;
        border-radius: 18px 0 18px 0;
    }
    .swiper-button-prev, .swiper-button-next {
        width: 39.5px;
        height: 39px;
    }
    .img-slider .swiper-pagination {
        max-width: 562.5px;
    }
    .swiper-button-prev {
        left: 28% !important;
    }
    .swiper-button-next {
        right: 28% !important;
    }

    section.text {
        padding-bottom: 60px;
    }
    section.text.second {
        margin-top: -28px;
        padding-top: calc(60px + 28px);
    }
}

@media(max-width: 800px) {
    .service-block {
        flex-direction: column;
        clip-path: none;
        border-radius: 30px;
    }
    .service-text {
        padding: 20px;
        justify-content: center;
        align-items: center;
    }
    .service-text .section-title, .service-text .section-desc {
        text-align: center;
    }
    .service-images {
        clip-path: none;
        border-radius: 30px;
        max-width: 100%;
    }
    .service-block:nth-child(2) .service-images {
        border-radius: 30px;
        clip-path: none;
    }
    .service-block:nth-child(2) .service-text {
        padding: 20px;
    }

    section.contacts .container {
        height: auto;
        flex-direction: column;
        gap: 20px;
    }
    .map {
        width: 100%;
        min-height: 250px;
        clip-path: none;
        border-radius: 30px;
    }
    .map::before {
        font-size: 25px;
    }
    .contacts__block {
        padding: 30px 10px;
        width: 100%;
        clip-path: none;
        border-radius: 30px;
        gap: 25px;
    }

    .swiper-button-prev {
        left: 0% !important;
    }
    .swiper-button-next {
        right: 0% !important;
    }
}

@media(max-width: 400px) {
    section.welcome .container {
        justify-content: center;
        align-items: center;
    }
    .welcome__header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .section-title, .section-desc {
        text-align: center;
        text-wrap: balance;
    }
}

/* SCROLL REVEAL */
.reveal,
.reveal_stagger > * {
    opacity: 0;
    transform: translateY(40px);
}
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes revealUp2 {
    from {
        opacity: 0;
        transform: translate(var(--x, 0), 40px);
    }
    to {
        opacity: 1;
        transform: translate(var(--x, 0), 0);
    }
}
.about__features.reveal_stagger_visible > * {
    animation: revealUp2 0.7s cubic-bezier(.2, .65, .25, 1) forwards;
}
.reveal_visible {
    animation: revealUp 0.8s cubic-bezier(.2, .65, .25, 1) forwards;
}
.reveal_stagger_visible > * {
    animation: revealUp 0.7s cubic-bezier(.2, .65, .25, 1) forwards;
}
.reveal_stagger > *:nth-child(1)  { animation-delay: 0.00s; }
.reveal_stagger > *:nth-child(2)  { animation-delay: 0.12s; }
.reveal_stagger > *:nth-child(3)  { animation-delay: 0.24s; }
.reveal_stagger > *:nth-child(4)  { animation-delay: 0.36s; }
.reveal_stagger > *:nth-child(5)  { animation-delay: 0.48s; }
.reveal_stagger > *:nth-child(6)  { animation-delay: 0.60s; }
.reveal_stagger > *:nth-child(7)  { animation-delay: 0.72s; }
.reveal_stagger > *:nth-child(8)  { animation-delay: 0.84s; }
.reveal_stagger > *:nth-child(9)  { animation-delay: 0.96s; }
.reveal_stagger > *:nth-child(10) { animation-delay: 1.08s; }
.reveal_stagger > *:nth-child(11) { animation-delay: 1.20s; }
.reveal_stagger > *:nth-child(12) { animation-delay: 1.32s; }
.reveal_stagger > *:nth-child(13) { animation-delay: 1.44s; }
.reveal_stagger > *:nth-child(14) { animation-delay: 1.56s; }
.reveal_stagger > *:nth-child(15) { animation-delay: 1.68s; }
.reveal_stagger > *:nth-child(16) { animation-delay: 1.80s; }
.reveal_stagger > *:nth-child(17) { animation-delay: 1.92s; }
.reveal_stagger > *:nth-child(18) { animation-delay: 2.04s; }
.reveal_stagger > *:nth-child(19) { animation-delay: 2.16s; }
.reveal_stagger > *:nth-child(20) { animation-delay: 2.28s; }

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
}
.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}
.modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 840px;
    background: linear-gradient(to top, #262a34, #323743);
    border-radius: 16px;
    padding: 50px 80px;
    transform: translateY(20px);
    transition: transform .3s ease;
}
.modal.active .modal__dialog {
    transform: translateY(0);
}
.modal__close {
    position: absolute;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    top: -20px;
    right: -20px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #5e5f63;
    cursor: pointer;
    transition: all .2s ease;
}
.modal__close:hover {
    background: #4d4f52;
    transform: scale(1.05);
}
.modal__title {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    margin-top: 16px;
    text-transform: uppercase;
    text-align: center;
}
.modal__form {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}
.modal__input {
    width: 100%;
    border: 1px solid transparent;
    background: #404653;
    color: #fff;
    padding: 25px 40px;
    height: 80px;
    font-size: 18px;
    border-radius: 4px;
    outline: none;
    transition: all .2s ease;
}
.modal__input:focus {
    border-color: #ffc600;
    background: #242835;
}
.modal__input::placeholder {
    color: #5d626d;
}
.modal__submit {
    font-size: 18px;
    max-width: 220px;
    cursor: pointer;
    border: none;
    margin: 0 auto;
    margin-top: 18px;
}
body.modal-open {
    overflow: hidden;
}
@media(max-width: 1600px) {
    .modal__dialog {
        border-radius: 12px;
        padding: 37.5px 50px;
        max-width: 630px;
    }
    .modal__close {
        top: -15px;
        right: -15px;
        width: 31.5px;
        height: 31.5px;
    }
    .modal__close img {
        width: 10.5px;
        height: 10.5px;   
    }
    .modal__title {
        font-size: 27px;
        margin-top: 12px;
    }
    .modal__form {
        gap: 9px;
        margin-top: 30px;
    }
    .modal__input {
        padding: 18.75px 30px;
        height: 60px;
        font-size: 13.5px;
        border-radius: 3px;
    }
    .modal__submit {
        font-size: 13.5px;
        max-width: 165px;
        margin-top: 21px;
    }
}

@media (max-width: 1150px) {
    .modal__dialog {
        border-radius: 9px;
        padding: 28px 20px;
        max-width: 470px;
    }
    .modal__close {
        top: -11.25px;
        right: -11.25px;
        width: 23.625px;
        height: 23.625px;
    }
    .modal__close img {
        width: 7.875px;
        height: 7.875px;   
    }
    .modal__title {
        font-size: 20px;
        margin-top: 9px;
    }
    .modal__form {
        gap: 6.75px;
        margin-top: 22.5px;
    }
    .modal__input {
        padding: 14px 22.5px;
        height: 45px;
        font-size: 12px;
        border-radius: 3px;
    }
    .modal__submit {
        font-size: 12px;
        max-width: 140px;
        margin-top: 15.75px;
    }
}
.modal__textarea {
    min-height: 140px;
    height: auto;
    resize: vertical;
    padding-top: 20px;
    padding-bottom: 20px;
    font-family: "Manrope", sans-serif;
    line-height: 1.5;
}
.modal__input.input-error {
    border-color: #ff4d4f;
    background: #2f1f24;
}
.modal__status {
    min-height: 24px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    margin-top: 4px;
}
.modal__status.is-error {
    color: #ff6b6b;
}
.modal__status.is-success {
    color: #7CFC8A;
}
.modal__submit[disabled] {
    opacity: 0.7;
    pointer-events: none;
}