:root {
    --black-color: #000000;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --font-heading: "Crimson Pro", serif;
    --color-primary: #333;
    --color-secondary: #384a71;
    --color-gray: #667085;
    --color-spec-icon-bg: #dbeafe;
    --left-width: 40%;
    --right-width: 60%;
    --sect-opacity-next: 0.5;
    --transition: 600ms cubic-bezier(.22, .9, .36, 1);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-body);
    overflow-x: hidden;
    overflow-y: auto
}

p,
ul {
    margin-bottom: 0;
    padding-left: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin: 0
}

a {
    color: #000;
    text-decoration: none
}

    a:hover {
        color: #000
    }

.container-fluid,
.container {
    padding: 0
}

.btn {
    border-radius: 0
}

    .btn:focus {
        box-shadow: none
    }

nav.page-nav .breadcrumb {
    align-items: center;
    margin: 0
}

nav.page-nav .breadcrumb-item {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%
}

    nav.page-nav .breadcrumb-item + .breadcrumb-item {
        padding-left: 1rem
    }

        nav.page-nav .breadcrumb-item + .breadcrumb-item::before {
            content: url("/img/svg/breadcrumb-arrow.svg");
            display: inline-block;
            padding-right: .875rem
        }

    nav.page-nav .breadcrumb-item:not(.active) a {
        display: inline-block;
        height: 100%;
        color: #667085
    }

    nav.page-nav .breadcrumb-item.active {
        color: #333
    }

.custom-arrows .swiper-button-prev::before {
    background-image: url("/img/svg/slider-arrow.svg");
    transform: rotate(180deg)
}

.custom-arrows .swiper-button-next::before {
    background-image: url("/img/svg/slider-arrow.svg")
}

.custom-arrows .swiper-button-prev,
.custom-arrows .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: rgba(56, 74, 113, 0.40);
}

    .custom-arrows .swiper-button-prev::before,
    .custom-arrows .swiper-button-next::before {
        content: "";
        background-repeat: no-repeat;
        background-size: contain;
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(307deg) brightness(104%) contrast(101%);
        width: 30px;
        height: 30px;
    }

.swiper-button-prev > svg,
.swiper-button-next > svg {
    display: none
}

main {
    position: relative
}

    main:has(.section-wrapper) {
        height: 100vh;
        overflow: hidden;
    }

    main.allow-scroll {
        height: auto !important;
        overflow: visible !important;
    }

.grecaptcha-badge {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.35s ease !important;
}

body.recaptcha-visible .grecaptcha-badge {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.submenu-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 1, 1, .5);
    z-index: 9
}

header {
    height: 70px;
    background-color: #fff;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color .5s ease-in
}

    header .header__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .9375rem 0;
    }

    header .header__logo {
        display: flex;
        align-items: center;
        height: 100%
    }

        header .header__logo .header__logo-web {
            width: 105px;
            height: 40px;
            aspect-ratio: 21/8;
        }

        header .header__logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    header .header__logo-white {
        display: none
    }

    header .header__menu > ul {
        position: relative;
        list-style: none;
        display: flex;
        align-items: center;
        gap: 2.25rem
    }

        header .header__menu > ul .has-submenu.active .submenu {
            opacity: 1;
            pointer-events: auto;
            background: #fff
        }

        header .header__menu > ul .has-submenu > a {
            display: flex;
            align-items: center;
            gap: 2px;
            position: relative
        }

            header .header__menu > ul .has-submenu > a.open::after {
                transform: rotate(180deg)
            }

            header .header__menu > ul .has-submenu > a::after {
                content: "";
                display: inline-block;
                background-image: url("/img/svg/caret-down.svg");
                background-repeat: no-repeat;
                background-size: contain;
                width: 12px;
                height: 12px;
                transition: transform .3s ease;
                transform-origin: center
            }

        header .header__menu > ul .submenu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: stretch;
            gap: 2rem;
            min-width: 950px;
            width: 100%;
            background: hsla(0, 0%, 100%, .9);
            margin-top: 2.0625rem;
            padding: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity .5s ease, background .5s ease;
            z-index: 1000
        }

            header .header__menu > ul .submenu .row {
                width: 100%
            }

        header .header__menu > ul .submenu__image {
            position: relative;
            display: flex;
            max-width: 312px;
            width: 100%;
            height: 100%;
            aspect-ratio: 16/9;
            overflow: hidden
        }

            header .header__menu > ul .submenu__image img {
                position: absolute;
                top: 0;
                left: 0;
                inset: 0;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
                pointer-events: none
            }

                header .header__menu > ul .submenu__image img.submenu__image--current {
                    opacity: 1
                }

        header .header__menu > ul .submenu__menus {
            position: relative;
            padding-top: .75rem;
            flex: 1
        }

            header .header__menu > ul .submenu__menus > h2 {
                font-weight: 500;
                font-size: 12px;
                color: #333;
                margin-bottom: 1.25rem;
                padding-left: 25px
            }

            header .header__menu > ul .submenu__menus ul {
                display: grid;
                grid-template-columns: repeat(2, minmax(200px, max-content));
                gap: 1rem 2rem;
                list-style: none
            }

                header .header__menu > ul .submenu__menus ul li {
                    display: flex
                }

                    header .header__menu > ul .submenu__menus ul li a {
                        display: inline-block;
                        white-space: nowrap;
                        position: relative;
                        padding-left: 25px;
                        font-weight: 300;
                        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), font-weight .3s ease;
                        color: #333;
                    }

                        header .header__menu > ul .submenu__menus ul li a::before {
                            content: "";
                            position: absolute;
                            left: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            width: 20px;
                            height: 20px;
                            background-image: url("/img/svg/menu-arrow.svg");
                            background-size: contain;
                            background-repeat: no-repeat;
                            opacity: 0;
                            transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), left 1.2s cubic-bezier(0.4, 0, 0.2, 1)
                        }

                        header .header__menu > ul .submenu__menus ul li a:hover {
                            transform: translateX(20px);
                            font-weight: 400
                        }

                            header .header__menu > ul .submenu__menus ul li a:hover::before {
                                opacity: 1;
                                left: 0
                            }

                        header .header__menu > ul .submenu__menus ul li a:not(:hover) {
                            transform: translateX(0);
                            font-weight: 300;
                            transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), font-weight .5s ease .5s
                        }

                            header .header__menu > ul .submenu__menus ul li a:not(:hover)::before {
                                opacity: 0;
                                left: -5px
                            }

.submenu .submenu__title {
    display: grid;
    grid-template-columns: repeat(2, minmax(235px, max-content));
    gap: 1.25rem 2rem;
}

    .submenu .submenu__title > a {
        display: block;
        padding-left: 25px;
        font-size: 14px;
        font-weight: 500;
    }

        .submenu .submenu__title > a:hover {
            text-decoration: underline;
        }

header .header__menu > ul .submenu__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0);
    border: 0;
    padding: 0
}

header .header__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem
}

header .header__actions-item {
    display: flex;
    align-items: center;
    gap: 5px
}

    header .header__actions-item a {
        display: block
    }

header .header-text {
    color: #333;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px
}

.section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    overflow-y: hidden;
    position: absolute;
    top: 70px;
    left: 0
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .btn.btn-home {
        background-color: rgba(0, 0, 0, 0);
        border: 2.22px solid #fff;
        padding: 1.25rem 2.25rem;
        max-width: 300px;
        width: 100%;
        height: calc(1.5em + 1.5rem + 22px);
        transition: all 1s ease
    }

        .btn.btn-home:hover {
            background-color: #fff
        }

            .btn.btn-home:hover span {
                opacity: 1;
                color: #333;
                transform: scale(1.1)
            }

        .btn.btn-home span {
            display: inline-block;
            color: #fff;
            font-weight: 400;
            font-size: 20px;
            transition: all 1s ease
        }

    .btn.btn-system {
        padding: .5rem 1.25rem;
        height: calc(1.5em + .75rem + 4px);
        min-width: 100px;
        width: auto;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        transition: background-color .5s ease, color .4s ease-in-out
    }

    .btn.btn-white {
        border: 1px solid #fff;
        color: #fff
    }

        .btn.btn-white:hover {
            background-color: #fff;
            color: #333
        }

    .btn.btn-blue {
        color: #16215B;
        border: 1px solid #16215B
    }

        .btn.btn-blue:hover {
            background-color: #111943;
            color: #fff
        }

.section-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative
}

.section:not(.section-1) {
    background: radial-gradient(82.72% 83.12% at 27.08% 20.1%, rgba(245, 244, 244, 0.40) 0%, rgba(3, 115, 255, 0.04) 100%);
}

.section.active {
    opacity: 1;
    visibility: visible
}

.section-home {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

    .section-home img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.section-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 23, 46, .7);
    z-index: 0
}

.swiper.home-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

    .swiper.home-swiper .swiper-slide[data-swiper-slide-index="0"] .section-home::before {
        background-color: rgba(8, 23, 46, .7);
    }

.section-content {
    opacity: 0;
    transform: translateY(200px);
    transition: opacity .8s ease, transform .8s ease;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

    .section-content.active {
        opacity: 1;
        transform: translateY(0)
    }

    .section-content .home-swiper-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        position: relative;
        z-index: 10;
    }

    .section-content .swiper-button-prev {
        left: 9%;
        transition: background-color .6s ease-in-out;
        background-image: url("/img/svg/left-arrow.svg")
    }

        .section-content .swiper-button-prev:hover {
            background-color: hsla(0, 0%, 100%, .5)
        }

    .section-content .swiper-button-next {
        right: 9%;
        background-image: url("/img/svg/right-arrow.svg")
    }

    .section-content .swiper-button-prev,
    .section-content .swiper-button-next {
        width: 57px;
        height: 65px;
        border-radius: 6px;
        background-color: hsla(0, 0%, 100%, .2);
        color: #fff;
        background-repeat: no-repeat;
        background-size: 10px;
        background-position: center;
        transform: translateX(-10%);
        z-index: 99;
        transition: transform .6s ease-in-out, background-color .6s ease-in-out;
    }

.section-1 {
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 100vh;
    min-height: 100vh;
    top: 0
}

    .section-1 .section-content {
        justify-content: center
    }

        .section-1 .section-content h1 {
            max-width: 881px;
            width: 100%;
            text-align: center;
            font-size: clamp(72px, 6vw + 5px, 96px);
            font-weight: 200;
            line-height: 90px;
            margin-bottom: 1.375rem;
            color: rgba(255, 255, 255, .8);
        }

        .section-1 .section-content p {
            text-align: center;
            font-size: 18px;
            font-weight: 400;
            color: hsla(0, 0%, 100%, .8)
        }

        .section-1 .section-content .btn-home {
            margin-top: 4.375rem
        }


    .section-1 .section-home {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: #0c1b26;
    }

        .section-1 .section-home::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        .section-1 .section-home img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            position: relative;
            z-index: 0;
        }

        .section-1 .section-home .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            z-index: 0;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

            .section-1 .section-home .hero-video.is-loaded {
                opacity: 1;
            }

.section-2 .section-intro {
    display: grid;
    grid-template-columns: var(--left-width) var(--right-width);
    min-height: 100vh;
    width: 100%
}

.section-2 .section-intro__items {
    position: relative;
    overflow: hidden
}

    .section-2 .section-intro__items .viewport {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden
    }

    .section-2 .section-intro__items .stack {
        will-change: transform;
        transition: transform var(--transition);
        margin-top: 8.75rem;
        padding: 0px 0px 0px 8.125rem
    }

    .section-2 .section-intro__items .stack-item {
        transition: opacity 400ms ease, transform 400ms ease;
        font-size: 1.05rem;
        padding-bottom: 6.25rem;
        text-align: left
    }

        .section-2 .section-intro__items .stack-item h2 {
            font-weight: 300;
            font-size: 48px;
            line-height: 60px;
            color: #384a71;
            margin-bottom: 1.5rem
        }

            .section-2 .section-intro__items .stack-item h2 span {
                font-weight: 500;
                font-style: Italic;
                margin-right: .5rem;
            }

        .section-2 .section-intro__items .stack-item p {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            color: #333;
            max-width: 364px;
            width: 100%
        }

        .section-2 .section-intro__items .stack-item .btn {
            margin-top: 3rem
        }

        .section-2 .section-intro__items .stack-item.inactive {
            opacity: .25;
            transform: translateY(4px) scale(0.995)
        }

        .section-2 .section-intro__items .stack-item.next {
            opacity: var(--sect-opacity-next);
            transform: translateY(0) scale(0.998)
        }

        .section-2 .section-intro__items .stack-item.current {
            opacity: 1;
            transform: translateY(0) scale(1)
        }

.section-2 .section-intro__image {
    position: relative;
    overflow: hidden;
    width: 100%
}

    .section-2 .section-intro__image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        opacity: 1;
        transform: scale(1);
        transition: opacity .6s ease, transform .6s ease !important;
        will-change: opacity, transform
    }

.section-3.section {
    background: none
}

.section-3 .section-content {
    margin-top: 2.875rem;
    position: relative
}

    .section-3 .section-content .container {
        height: 100%
    }

.section-3 .section-services {
    position: relative;
    height: 100%;
}

    .section-3 .section-services .row {
        height: 100%;
        position: relative
    }

        .section-3 .section-services .row::before,
        .section-3 .section-services .row::after,
        .section-3 .section-services .row .divider {
            content: "";
            position: absolute;
            top: 0;
            width: 0;
            height: 100%;
            border-right: 2px solid rgba(0, 0, 0, 0);
            -o-border-image: linear-gradient(180deg, rgba(62, 74, 88, 0.1) 0.83%, #FFFFFF 44.17%, rgba(62, 74, 88, 0.1) 100%) 1;
            border-image: linear-gradient(180deg, rgba(62, 74, 88, 0.1) 0.83%, #FFFFFF 44.17%, rgba(62, 74, 88, 0.1) 100%) 1
        }

        .section-3 .section-services .row::before {
            left: 25%
        }

        .section-3 .section-services .row::after {
            left: 50%
        }

        .section-3 .section-services .row .divider {
            left: 75%
        }

        .section-3 .section-services .row [class*=col-]:nth-child(n+5) .section-services__item {
            justify-content: flex-start;
            padding: 2rem 0 0
        }

        .section-3 .section-services .row [class*=col-]:not(:nth-child(1)):not(:nth-child(5)) .section-services__item {
            padding-left: 4rem;
            padding-right: 2rem;
        }

    .section-3 .section-services h2 {
        position: absolute;
        top: 0;
        left: 0;
        font-weight: 400;
        font-size: 48px;
        line-height: 60px;
        color: #fff
    }

.section-3 .section-services__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 2rem
}

    .section-3 .section-services__item > div {
        position: relative;
        cursor: pointer;
        padding: 0 0 2rem;
    }

        .section-3 .section-services__item > div > img,
        .section-3 .section-services__item > div p {
            transition: transform .5s ease
        }

        .section-3 .section-services__item > div:hover > img,
        .section-3 .section-services__item > div:hover p {
            transform: translateY(-12px)
        }

        .section-3 .section-services__item > div:hover .arrow-link {
            opacity: 1;
            pointer-events: auto
        }

    .section-3 .section-services__item .arrow-link {
        position: absolute;
        bottom: -0.25rem;
        width: 2rem;
        height: 2rem;
        display: flex;
        opacity: 0;
        transition: opacity .5s ease;
        pointer-events: none
    }

    .section-3 .section-services__item img {
        display: block;
    }

    .section-3 .section-services__item p {
        display: flex;
        align-items: flex-start;
        min-height: 48px;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 24px;
        line-height: 100%;
        color: #fff;
        text-align: left;
        margin-top: .625rem;
    }

.section-4.section {
    background: none
}

.section-4 .services-contact {
    max-width: 580px;
    width: 100%;
    margin: 0;
    cursor: grab
}

    .section-4 .services-contact .swiper-wrapper {
        padding-bottom: clamp(4rem, calc(4rem + (8 - 4) * (100vw - 1320px)), 8rem);
    }

    .section-4 .services-contact .swiper-pagination-bullet {
        width: 1.25rem;
        height: 1.25rem;
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid hsla(0, 0%, 100%, .5019607843);
        opacity: 1
    }

    .section-4 .services-contact .swiper-pagination-bullet-active {
        background-color: #d9d9d9
    }

.section-4 .services-contact-wrapper {
    padding-top: 5rem
}

.section-4 .services-contact-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    color: #fff
}

    .section-4 .services-contact-item h2 {
        font-weight: 400;
        font-size: 50px;
        line-height: 48px;
        margin-bottom: 1.5rem
    }

    .section-4 .services-contact-item p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 3rem
    }

.section-5 .section-content {
    padding: 1.6875rem 0 0
}

    .section-5 .section-content .container,
    .section-5 .section-content .row:not(.section-mobile__download) {
        height: 100%
    }

.section-5 .section-mobile,
.section-5 .section-mobile > .row [class*="col-"] {
    height: 100%;
}

.section-5 .section-mobile__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    height: 100%;
    color: #333
}

    .section-5 .section-mobile__content h2 {
        font-weight: 400;
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 1.25rem;
        color: #1B1C29;
    }

    .section-5 .section-mobile__content p {
        font-weight: 400;
        font-size: 16px;
        line-height: 32px
    }

.section-5 .section-mobile__download {
    margin-top: 2.5rem
}

    .section-5 .section-mobile__download h3 {
        font-weight: 600;
        font-size: 20px;
        line-height: 100%;
        margin-bottom: 1.375rem
    }

    .section-5 .section-mobile__download p {
        font-weight: 400;
        font-size: 14px;
        line-height: 24px
    }

.section-5 .section-mobile__download-items {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 3rem
}

    .section-5 .section-mobile__download-items img {
        display: block
    }

.section-5 .section-mobile__download .qr-code {
    display: block;
    margin-top: 1.6875rem
}

.section-6 .section-blogs .row {
    height: 100%
}

    .section-6 .section-blogs .row [class*=col-] {
        height: 100%
    }

.section-6 .section-blogs__main {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%
}

    .section-6 .section-blogs__main:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(18, 36, 64, .7);
        width: 100%;
        height: 100%;
        z-index: 9
    }

.section-6 .section-blogs__main-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    color: #fff;
    padding-top: 5rem;
    margin: 0 clamp(1.25rem, 10vw, 120px) 0 clamp(1.25rem, 10vw, 130px);
    text-align: left
}

    .section-6 .section-blogs__main-text h3 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 14px;
        margin-bottom: .75rem
    }

    .section-6 .section-blogs__main-text h4 {
        font-weight: 400;
        font-size: 48px;
        line-height: 48px;
        margin-bottom: 1.5rem
    }

    .section-6 .section-blogs__main-text p {
        font-weight: 400;
        font-size: 16px;
        line-height: 32px
    }

    .section-6 .section-blogs__main-text .btn {
        margin-top: 3rem
    }

.section-6 .section-blogs__list {
    padding: 0 clamp(1.25rem, 10vw, 186px) 0 1.5rem;
    height: calc(100vh - 70px);
    display: flex;
}

    .section-6 .section-blogs__list .swiper {
        height: 100%;
    }

        .section-6 .section-blogs__list .swiper .blog__list-body h3 {
            margin-bottom: 0;
        }

        .section-6 .section-blogs__list .swiper .blog__list-body h4 {
            line-height: normal;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 0;
            font-weight: 500;
        }

    .section-6 .section-blogs__list .blog__list-item--image {
        width: 180px;
        height: 160px;
        flex-shrink: 0;
    }

    .section-6 .section-blogs__list .swiper-button-prev,
    .section-6 .section-blogs__list .swiper-button-next {
        display: none;
    }

.section-7 .section-content > .container {
    height: 100%;
}

.section-7 .section-content .row {
    row-gap: 1.5rem;
    height: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -8px;
    margin-right: -8px;
}

    .section-7 .section-content .row > .col {
        flex: 0 0 20%;
        max-width: 20%;
        padding-left: 8px;
        padding-right: 8px;
        box-sizing: border-box;
    }

.section-7 .section-brands__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    margin-top: 5rem;
}

    .section-7 .section-brands__text h2 {
        font-weight: 400;
        font-size: 48px;
        line-height: 56px;
        color: #333;
        width: 100%;
        text-align: left;
        margin-bottom: 1.5rem
    }

    .section-7 .section-brands__text p {
        font-weight: 400;
        font-size: 16px;
        line-height: 32px;
        text-align: left;
        color: #333
    }

        .section-7 .section-brands__text p:not(:last-of-type) {
            margin-bottom: 1.5rem
        }

    .section-7 .section-brands__text .btn {
        margin-top: 3rem
    }

.section-7 .section-brands .brands {
    display: flex;
    flex-direction: column;
    row-gap: 1.875rem;
    padding: 4.5rem 0;
}

    .section-7 .section-brands .brands .brands-card {
        display: block;
        position: relative;
        height: 100%;
        width: 100%;
    }

        .section-7 .section-brands .brands .brands-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(102, 102, 102, 0) 208.96%);
            z-index: 1;
        }

    .section-7 .section-brands .brands .section-title {
        display: none;
    }

    .section-7 .section-brands .brands .brands-card-logo {
        position: absolute;
        top: 23px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 65%;
        max-height: 40px;
        width: auto;
        height: auto;
        object-fit: contain;
        z-index: 2;
        pointer-events: none;
    }

    .section-7 .section-brands .brands .brands-card-bg {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog__wrapper {
    height: 100%;
    padding: 3.75rem 0 6.25rem;
    background: radial-gradient(79.9% 79.9% at 27.08% 20.1%, #F5F4F4 0%, rgba(180, 212, 255, 0.1) 100%)
}

.blog__content {
    color: #333;
}

.blog__content-top {
    max-width: 587px;
    width: 100%
}

    .blog__content-top h1 {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 16px;
        line-height: 26px
    }

    .blog__content-top h2 {
        font-weight: 400;
        font-size: 48px;
        line-height: 60px;
        margin-top: 2.9375rem
    }

.blog__list {
    margin-top: 3.5rem
}

    .blog__list .row {
        row-gap: 1.5rem
    }

.blog__list-item {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
}

.slider-blogs .blog__list-item > img {
    max-width: 146px;
}

.section-slider-blogs .blog__list-item > img {
    flex: 0 1 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-slider-blogs .blog__list-item .blog__list-body {
    text-align: left;
    justify-content: center;
    gap: .625rem;
}

.blog__list-item--image {
    width: 146px;
    height: 129px;
}

    .blog__list-item--image > img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.blog__list .blog__list-item-image {
    width: 255px;
    height: 225px;
}

    .blog__list .blog__list-item-image > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.blog__list-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    height: 100%;
    padding: 0 0 0 1.5rem;
    color: #333;
}

    .blog__list-body h3 {
        font-weight: 700;
        font-size: 14px;
        line-height: 100%;
        margin-bottom: .75rem;
    }

    .blog__list-body h4 {
        font-weight: 400;
        font-size: 24px;
        line-height: 24px;
        margin-bottom: .5rem;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .blog__list-body p {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog__list-body > div > span {
        font-weight: 400;
        font-size: 12px
    }

        .blog__list-body > div > span:last-child {
            margin-left: .15rem
        }

.blog-detail {
    position: relative;
    height: calc(100vh - 70px);
}

    .blog-detail::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.4);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .blog-detail.show::before {
        opacity: 1;
        z-index: 99;
    }

    .blog-detail .container-fluid > .row {
        align-items: flex-start;
        height: 100%;
    }

.blog-detail-main {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    background: radial-gradient(79.9% 79.9% at 27.08% 20.1%, #F5F4F4 0%, rgba(180, 212, 255, 0.1) 100%);
    padding: 0 clamp(1.25rem, 8vw, 7.5rem) 0 3rem
}

    .blog-detail__content nav {
        margin: 1.5rem 0 2.25rem
    }

.blog-detail__content-date {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #333;
    width: 100%;
    margin-bottom: .75rem
}

.blog-detail__content > h1 {
    font-weight: 500;
    font-size: 32px;
    margin-bottom: 1.5rem;
    color: #333
}

.blog-detail__content-text {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior: auto;
}

    .blog-detail__content-text::-webkit-scrollbar {
        display: none
    }

    .blog-detail__content-text p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px
    }

        .blog-detail__content-text p:not(:last-child) {
            margin-bottom: 1.5rem
        }

.blog-detail__slider {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    visibility: hidden;
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
}

    .blog-detail__slider.show {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        max-height: 1000px;
    }

.blog-detail__slider-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

    .blog-detail__slider-close:before {
        content: '';
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url('/img/svg/close.svg');
        background-repeat: no-repeat;
        width: 14px;
        height: 14px;
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(318deg) brightness(106%) contrast(103%);
        background-size: 12px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        background-position: center;
    }

    .blog-detail__slider-close:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

.blog-detail__slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 4rem;
    box-sizing: border-box;
}

.blog-detail__slider-blogs {
    display: flex;
    justify-content: flex-end;
    position: relative;
    left: 0;
    bottom: 0;
    z-index: 10;
    background-color: #fff;
    padding: 3rem 0;
    width: 100%
}

.blog-detail__slider-blogs--inner > .row {
    width: 100%;
}

.blog-detail__slider-blogs--inner h2 {
    font-weight: 500;
    font-size: 26px;
    color: #333;
}

.blog-detail__slider-blogs--inner .swiper-button-prev {
    left: 0
}

.blog-detail__slider-blogs--inner .swiper-button-next {
    right: 0
}

.blog-detail__slider-blogs--inner .blog__list-item h3 {
    font-size: 12px
}

.blog-detail__slider-blogs--inner .blog__list-item h4 {
    font-size: 20px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-detail__slider-blogs--inner .blog__list-body {
    padding: 0 0 0 .625rem
}

.legal__content h2 {
    margin-bottom: 2rem;
}

.legal__content h4 {
    margin-bottom: 1.25rem;
}

.legal__content p {
    margin-bottom: 1rem;
}

.legal__content .table th,
.legal__content .table td {
    padding: .5rem;
    border: 1px solid #000;
}

.legal__content ul {
    padding-left: 2rem;
}

    .legal__content ul > li:not(:last-child) {
        margin-bottom: .5rem;
    }

    .legal__content ul > li:last-child {
        margin-bottom: 1rem;
    }

.legal__wrapper figure.table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.contact__wrapper,
.legal__wrapper {
    height: 100%;
    padding: 3.75rem 0 0;
    background: radial-gradient(79.9% 79.9% at 27.08% 20.1%, #F5F4F4 0%, rgba(180, 212, 255, 0.1) 100%)
}

    .contact__wrapper h1 {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 16px;
        line-height: 26px;
        color: #333
    }

.legal__content ul > li {
    width: 100%;
    word-wrap: break-word;
}

.contact__office,
.legal__content {
    margin-bottom: 6.25rem
}

    .contact__office .row {
        margin-top: 3rem
    }

    .contact__office .card {
        border: none;
        background-color: rgba(0, 0, 0, 0)
    }

        .contact__office .card:hover .card-image-overlay {
            opacity: 1
        }

    .contact__office .card-body {
        padding: 1.5rem 0 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem
    }

        .contact__office .card-body a {
            display: inline-flex;
            align-items: center;
            gap: .625rem;
            font-weight: 400;
            font-size: 14px;
            color: #333
        }

            .contact__office .card-body a::before {
                content: "";
                background-repeat: no-repeat;
                background-size: contain;
                display: inline-block;
                width: 1.125rem;
                height: 1.125rem
            }

            .contact__office .card-body a.phone::before {
                background-image: url("/img/svg/phone-contact.svg")
            }

            .contact__office .card-body a.mail::before {
                background-image: url("/img/svg/mail.svg")
            }

            .contact__office .card-body a.mail {
                text-decoration: underline
            }

    .contact__office .card-image {
        position: relative
    }

    .contact__office .card-image-overlay {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity .4s ease-in-out;
        background-color: rgba(8, 23, 46, .6980392157)
    }

        .contact__office .card-image-overlay h4 {
            font-weight: 400;
            font-size: 36px;
            margin-bottom: 2.75rem;
            color: #fff
        }

        .contact__office .card-image-overlay .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 400;
            font-size: 16px;
            color: #fff;
            border: 1px solid #fff;
            padding: .75rem 1rem;
            cursor: pointer;
        }

    .contact__office .card-title {
        font-weight: 400;
        font-size: 24px;
        color: #333
    }

    .contact__office .card-text {
        font-weight: 400;
        font-size: 14px;
        line-height: 150%;
        color: #333
    }

.contact__form h2 {
    font-weight: 500;
    font-size: 48px;
    color: #333
}

.contact__form form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 0 4rem 0 clamp(1.25rem, 10vw, 130px)
}

.contact__form-image {
    width: 100%;
    object-fit: cover;
}

.contact__form-items {
    width: 100%;
    margin-top: 1.5rem
}

    .contact__form-items .form-control {
        border: none;
        border-bottom: 1px solid #737b7d;
        padding: .625rem 1rem;
        border-radius: 0;
        background-color: rgba(0, 0, 0, 0);
        font-weight: 400;
        font-size: 16px
    }

        .contact__form-items .form-control::-moz-placeholder {
            color: #8e8e8e
        }

        .contact__form-items .form-control::placeholder {
            color: #8e8e8e
        }

    .contact__form-items > div,
    .contact__form-checks > div {
        position: relative;
    }

        .contact__form-items > div:not(:last-child) {
            margin-bottom: 1.25rem
        }

    .contact__form-items .form-control:focus {
        box-shadow: none
    }

#contactForm small {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 12px;
}

.contact__form-checks > div:has(.contact-form-error) {
    margin-bottom: 1.5rem !important;
}

.contact__form-checks {
    margin: 2rem 0 3rem
}

    .contact__form-checks p {
        font-weight: 400;
        font-size: 14px;
        color: #8e8e8e;
        margin-bottom: 1rem
    }

        .contact__form-checks p > a {
            text-decoration: underline;
            color: #8e8e8e
        }

    .contact__form-checks .form-check {
        display: flex;
        align-items: flex-start;
        gap: .6875rem;
    }

    .contact__form-checks > div:not(:last-child) {
        margin-bottom: 1rem
    }

    .contact__form-checks .form-check-label {
        font-weight: 400;
        font-size: 14px;
        line-height: 160%;
        letter-spacing: .5px;
        text-align: left;
        color: #333;
        flex: 1;
    }

        .contact__form-checks .form-check-label p {
            margin: .5rem 0 0;
            font-weight: 400;
            font-size: 12px;
            line-height: 100%;
            letter-spacing: 0;
            line-height: 16px
        }

        .contact__form-checks .form-check-label > span {
            display: block;
            font-weight: 400;
            font-size: 12px;
            line-height: 135%;
            margin-top: 7px;
            color: #8E8E8E;
        }

    .contact__form-checks .form-check-input {
        width: 1.125em;
        height: 1.125em;
        border: 1px solid #384a71;
        cursor: pointer;
    }

        .contact__form-checks .form-check-input:checked {
            background-color: #16215B;
        }

        .contact__form-checks .form-check-input:focus {
            box-shadow: none
        }

.btn.submit {
    background-color: #16215B;
    color: #fff;
    width: 100%;
    padding: .8875rem .5rem;
    font-weight: 400;
    font-size: 20px;
    transition: background-color ease-in-out .5s;
}

    .btn.submit:hover {
        background-color: #111943;
    }

    .btn.submit.swal {
        width: auto;
        min-width: 150px;
    }

.about__wrapper {
    background: radial-gradient(79.9% 79.9% at 27.08% 20.1%, #F5F4F4 0%, rgba(180, 212, 255, 0.1) 100%)
}

.about__subtitle {
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    max-width: 590px;
    width: 100%;
    color: #333
}

.about__intro {
    padding: 3.75rem 0 5rem;
}

    .about__intro h1 {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 16px;
        line-height: 26px;
        color: #333
    }

    .about__intro .row {
        margin-top: 2.9375rem
    }

    .about__intro p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #333
    }

.about__servicePoints {
    position: relative
}

    .about__servicePoints img {
        position: relative;
        max-height: 700px;
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        z-index: 1
    }

    .about__servicePoints::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background-color: rgba(0, 0, 0, .4)
    }

.about__servicePoints-inner {
    position: absolute;
    top: 5rem;
    width: 100%;
    z-index: 3
}

.about__servicePoints-list .row.g-0 {
    --bs-gutter-x: 3.5625rem
}

.about__servicePoints-list > h2 {
    font-weight: 500;
    font-size: 32px;
    color: #fff;
    margin-bottom: 5rem
}

.about__servicePoints-list--item {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden
}

    .about__servicePoints-list--item .item-text {
        position: absolute;
        left: 0;
        top: 0;
        width: 55%;
        height: 100%;
        background-color: #f0f0f0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        margin: 0;
        padding: 0 .25rem 0 1.25rem;
        box-sizing: border-box;
        z-index: 1
    }

        .about__servicePoints-list--item .item-text h3 {
            font-weight: 500;
            font-size: 20px;
            margin-bottom: 1rem
        }

        .about__servicePoints-list--item .item-text p {
            font-weight: 400;
            font-size: 14px
        }

    .about__servicePoints-list--item .item-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        clip-path: inset(0 0 0 55%);
        -webkit-clip-path: inset(0 0 0 55%);
        transition: clip-path 0.4s ease-in-out, -webkit-clip-path 0.4s ease-in-out;
    }

        .about__servicePoints-list--item .item-image img {
            width: 100% !important;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    .about__servicePoints-list--item .item-image-open {
        display: none;
        position: absolute;
        top: 50%;
        right: 10%;
        transform: translate(-50%, -50%);
        background-image: url("/img/svg/item-image-open.svg");
        background-size: contain;
        background-repeat: no-repeat;
        width: 67px;
        height: 67px;
        z-index: 9
    }

    .about__servicePoints-list--item.is-active .item-image-open {
        display: none;
    }

.about__team {
    margin: 0 2.1875rem 5rem;
    padding: 4.375rem 0 0;
}

.about__team-head {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

    .about__team-head .about__subtitle {
        max-width: 100%;
        font-weight: 500;
        font-size: 48px;
        line-height: 100%;
        margin-bottom: 1.5rem;
    }

    .about__team-head .about__team-desc {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        color: #333;
    }

.bg-img {
    background-image: url('/img/svg/bg-img.svg');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-size: contain;
}

.about__team-list {
    max-width: 645px;
    width: 100%;
    margin: 0 auto;
    padding: 3.125rem 0 5rem;
}

    .about__team-list > .row {
        --bs-gutter-x: 42px;
        row-gap: 3.125rem;
    }

        .about__team-list > .row > [class*="col-"] {
            display: flex;
            flex-direction: column;
        }

.about__team-thumb {
    width: 100%;
    height: 175px;
}

    .about__team-thumb img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.about__team-info {
    margin-top: 1.5rem;
    text-align: center;
    color: #333333;
}

    .about__team-info > h3 {
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        margin-bottom: .625rem;
    }

    .about__team-info > h4 {
        font-weight: 400;
        font-style: Italic;
        font-size: 16px;
        line-height: 24px;
    }

.about__team-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 1rem
}

.about__team-arrows--prev,
.about__team-arrows--next {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 38px;
    background-color: rgba(56, 74, 113, .2);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 6px;
    cursor: pointer
}

    .about__team-arrows--prev::before,
    .about__team-arrows--next::before {
        content: "";
        width: 20px;
        height: 20px;
        background-position: center
    }

    .about__team-arrows--prev::before {
        background-image: url("/img/svg/slider-arrow.svg");
        transform: rotate(180deg)
    }

    .about__team-arrows--next::before {
        background-image: url("/img/svg/slider-arrow.svg")
    }

.search__wrapper {
    background: radial-gradient(79.9% 79.9% at 27.08% 20.1%, #F5F4F4 0%, rgba(180, 212, 255, 0.1) 100%)
}

    .search__wrapper h1 {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 1.5rem;
        color: #333
    }

.search__content {
    padding: 3.75rem 0 5rem
}

.search__content-words {
    font-weight: 500;
    font-size: 48px;
    color: #333;
    max-width: 486px;
    width: 100%
}

.search__section {
    margin-top: 3rem
}

    .search__section input.form-control {
        max-width: 384px;
        width: 100%;
        padding: .5rem .5rem .4375rem 2.375rem;
        font-weight: 400;
        font-size: 14px;
        color: #333;
        background-image: url("/img/svg/search-soft.svg");
        background-repeat: no-repeat;
        background-position: center left .5rem;
        height: calc(1.5em + 1rem + 3px);
        background-size: 26px 26px;
        border-radius: 3px;
        border-color: rgba(0, 0, 0, 0);
        margin-bottom: 2.375rem
    }

        .search__section input.form-control::-moz-placeholder {
            color: rgba(51, 51, 51, .5019607843)
        }

        .search__section input.form-control::placeholder {
            color: rgba(51, 51, 51, .5019607843)
        }

        .search__section input.form-control:focus {
            box-shadow: none
        }

.search__section-result {
    font-weight: 400;
    font-size: 16px;
    color: #333
}

    .search__section-result span {
        display: block
    }

        .search__section-result span:not(:last-child) {
            margin-bottom: 1.75rem
        }

.search__section-list {
    margin-top: 3.125rem;
    color: #333
}

    .search__section-list .row {
        row-gap: 3rem
    }

    .search__section-list h3 {
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 1rem
    }

    .search__section-list h4 {
        font-weight: 400;
        font-size: 24px;
        line-height: 24px;
        max-width: 226px;
        width: 100%;
        margin-bottom: 1rem
    }

    .search__section-list p {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 1.5rem
    }

.search__section-list--navigate {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    width: 32px;
    height: 32px;
    background-image: url("/img/svg/chevron-right.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px
}

.search__section .pager-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 1rem;
    border-radius: .25rem;
    gap: 12px;
    margin-top: 5rem
}

    .search__section .pager-row .page-info,
    .search__section .pager-row .page-per-text {
        font-weight: 400;
        font-size: 14px;
        color: #333
    }

    .search__section .pager-row .page-list {
        display: flex;
        gap: 8px;
        list-style: none;
        padding: 0;
        margin: 0
    }

        .search__section .pager-row .page-list li {
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            font-weight: 300;
            font-size: 14px;
            padding: 0 .25rem;
            color: #323232
        }

            .search__section .pager-row .page-list li.active {
                font-weight: 600
            }

            .search__section .pager-row .page-list li.disabled {
                opacity: .4;
                pointer-events: none
            }

            .search__section .pager-row .page-list li:not(:nth-child(-n+2)):not(:nth-last-child(-n+2)) {
                padding: 0 .625rem;
                line-height: 36px
            }

            .search__section .pager-row .page-list li:nth-child(-n+2),
            .search__section .pager-row .page-list li:nth-last-child(-n+2) {
                font-size: 22px
            }

    .search__section .pager-row .page-per {
        display: flex;
        align-items: center;
        gap: .5rem
    }

        .search__section .pager-row .page-per > select {
            width: 3.125rem;
            font-weight: 500;
            font-size: 14px;
            padding: .3125rem .5rem;
            color: #333;
            background-position: right .25rem center;
            border: inherit;
            cursor: pointer
        }

            .search__section .pager-row .page-per > select:focus {
                box-shadow: none
            }

.showcase__wrapper .showcase__top > .row {
    margin-top: 3.5rem;
}

.showcase__wrapper {
    background: radial-gradient(79.9% 79.9% at 27.08% 20.1%, #F5F4F4 0%, rgba(180, 212, 255, 0.1) 100%);
}

.showcase__top nav {
    padding-top: 1.75rem;
    margin-bottom: 3rem
}

.showcase__top h1 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #333;
    margin-bottom: 3.5rem;
}

.showcase__top .showcase__subtitle {
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    color: #333;
}

.showcase__top .showcase__tagline {
    max-width: 840px;
    width: 100%;
    margin-right: auto;
    color: #333;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 65px;
    padding: 1.5rem 0 .75rem;
}

    .showcase__top .showcase__tagline > span {
        font-style: italic;
        color: #384A71;
    }

.showcase__top .showcase__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    max-width: 775px;
    width: 100%;
    margin-right: auto;
}

.showcase__banner {
    width: auto;
    margin: 5.3125rem 2.1875rem 3rem;
}

    .showcase__banner > img {
        display: block;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.showcase__section > p {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
}

.showcase__section > a.btn.btn-system {
    padding: 0 43px;
    height: calc(1.5em + 2rem + 8px);
    font-size: 20px;
    font-weight: 400;
    margin-top: 3rem;
}

.showcase__section > a.btn.btn-blue {
    border: 2.217px solid #384A71;
}

.showcase__slider {
    position: relative;
    margin: 6.25rem 0;
}

    .showcase__slider .swiper-button-prev {
        left: 60px
    }

    .showcase__slider .swiper-button-next {
        right: 60px
    }

.showcase__slider-inner {
    position: relative;
}

.brands__wrapper {
    background: radial-gradient(ellipse at 35% 15%, rgba(245, 244, 233, 0.4) 3%, rgba(3, 115, 255, 0.1) 32%, transparent 100%);
}

    .brands__wrapper h1 {
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 1.5rem;
        color: #333
    }

.brands__head {
    padding: 3.75rem 0 0
}

.brands__head-words {
    font-weight: 500;
    font-size: 48px;
    color: #333;
    max-width: 486px;
    width: 100%
}

.brands__head .search__section input.form-control {
    margin-bottom: 0
}

.brands__expand {
    padding: 3.375rem 0 5.625rem;
}

    .brands__expand .nav-tabs {
        border: none;
        margin-bottom: 56px;
        gap: 82px;
    }

    .brands__expand .nav-link {
        color: #666 !important;
        border: none !important;
        background: transparent !important;
        padding: 16px 0;
        font-weight: 500;
        font-size: 26px;
        line-height: 100%;
        color: #333;
    }

        .brands__expand .nav-link.active {
            color: #000 !important;
            border-bottom: 2px solid #000 !important;
        }

    .brands__expand .brand-container {
        display: flex;
        height: 560px;
        width: 100%;
        gap: 32px;
        overflow: hidden;
    }

    .brands__expand .brand-card {
        position: relative;
        flex: 1;
        min-width: 158px;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: flex;
    }

        .brands__expand .brand-card.active {
            flex: 12;
            cursor: default;
        }

    .brands__expand .card-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center 30%;
        background-repeat: no-repeat;
        z-index: 1;
        pointer-events: none;
    }

    .brands__expand .brand-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 20.04%, rgba(102, 102, 102, 0) 100%);
        z-index: 2;
        transition: background 0.4s ease;
    }

    .brands__expand .brand-content {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        text-align: center;
        width: 500px;
        height: 100%;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        backface-visibility: hidden;
    }

    .brands__expand .brand-logo-wrapper {
        position: absolute;
        top: 48px;
        left: 50%;
        transform: translateX(-50%) scale(0.8);
        transition: top 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: top, transform;
    }

    .brands__expand .brand-card.active .brand-logo-wrapper {
        top: 12vh;
        transform: translateX(-50%) scale(1.5);
    }

    .brands__expand .brand-logo {
        max-width: 90px;
        height: auto;
    }

    .brands__expand .details-btn {
        opacity: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        font-size: 13px;
        visibility: hidden;
        transform: translateY(10px);
        transition: transform 0.5s ease 0.2s, opacity 0.5s ease 0.2s, visibility 0.5s 0.2s;
        pointer-events: auto;
        cursor: pointer;
        z-index: 10;
        position: relative;
        font-weight: 500;
        font-size: 20px;
        line-height: 100%;
    }

    .brands__expand .brand-card.active .details-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .brands__expand .details-btn > span {
        background: #fff;
        border-radius: 50%;
        width: 26px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .brands__expand .details-btn > span > img {
            width: 12px;
            height: 12px;
            margin: 0 auto;
        }

    .brands__expand .brand-slider-mobile {
        display: none;
    }

.page-404__wrapper {
    position: relative;
    height: calc(100vh - 70px)
}

    .page-404__wrapper img {
        height: 100%;
        width: 100%;
        display: block;
        -o-object-fit: cover;
        object-fit: cover
    }

    .page-404__wrapper p {
        position: absolute;
        bottom: 7.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-weight: 200;
        font-size: 24px;
        color: #fff
    }

        .page-404__wrapper p a {
            display: block;
            color: #fff;
            text-decoration: underline
        }

            .page-404__wrapper p a:hover {
                text-decoration: none
            }

.footer {
    background-color: #16215B;
    width: 100%
}

.footer__wrapper {
    padding: 5rem 0;
}

.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8.3125rem;
    margin-bottom: 5rem;
}

.footer__menu {
    display: flex;
    align-items: flex-start;
    gap: 1.5625rem;
}

.footer__menu-list {
    list-style: none
}

    .footer__menu-list > li:not(:first-child) > a {
        display: inline-block;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        transition: color .3s ease
    }

        .footer__menu-list > li:not(:first-child) > a:hover {
            color: hsla(0, 0%, 100%, .8)
        }

    .footer__menu-list > li:not(:last-child) {
        margin-bottom: 1.3125rem
    }

    .footer__menu-list > li:first-child {
        font-weight: 600;
        font-size: 16px;
        color: #fff;
        margin-bottom: 1.8125rem
    }

.footer__subscribe {
    color: #fff
}

    .footer__subscribe h3 {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 1.25rem
    }

    .footer__subscribe p {
        font-weight: 400;
        font-size: 14px;
        margin-bottom: .875rem
    }

.footer__subscribe-mail {
    display: flex;
    align-items: center;
    gap: .4375rem
}

    .footer__subscribe-mail [type=mail] {
        max-width: 257px;
        width: 100%;
        padding: .5rem 1rem;
        border: 1px solid #fff;
        background-color: rgba(134, 142, 150, .1019607843)
    }

        .footer__subscribe-mail [type=mail]::-moz-placeholder {
            color: #adb5bd
        }

        .footer__subscribe-mail [type=mail]::placeholder {
            color: #adb5bd
        }

        .footer__subscribe-mail [type=mail]:focus {
            box-shadow: none
        }

    .footer__subscribe-mail [type=mail],
    .footer__subscribe-mail .btn {
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 4px
    }

    .footer__subscribe-mail .btn {
        max-width: 100%;
        display: inline-flex;
        flex: 1;
        align-items: center;
        justify-content: center;
        padding-top: .5rem;
        padding-bottom: .5rem;
        background-color: rgba(0, 0, 0, 0)
    }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding-top: 3rem
}

.footer__bottom-meta {
    display: flex;
    align-items: center;
    gap: 2.1875rem
}

    .footer__bottom-meta p {
        font-weight: 400;
        font-size: 12px;
        color: #fff
    }

.footer__bottom-meta--legal {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.375rem
}

    .footer__bottom-meta--legal li a {
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        transition: color .3s ease
    }

        .footer__bottom-meta--legal li a:hover {
            color: hsla(0, 0%, 100%, .8)
        }

.footer__bottom-social {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .75rem
}

    .footer__bottom-social li a img {
        display: inline-block;
        opacity: 1;
        transition: opacity .3s ease
    }

    .footer__bottom-social li a:hover img {
        opacity: .8
    }

/* Loading Wrapper */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.3s ease;
}

.loader-box {
    background: white;
    padding: 10px 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.loader-gif {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    display: block;
}

.loader-content p {
    font-weight: 500;
    color: #333;
    letter-spacing: 1px;
    text-align: center;
}

.loader-hidden {
    display: none !important;
    opacity: 0;
}

.product-detail {
    background: radial-gradient(ellipse at 27% 20%, rgba(245, 244, 244, 1) 0%, rgba(180, 212, 255, 0.1) 100%);
    min-height: calc(100vh - 70px);
}

.product-detail-wrapper {
    display: flex;
    min-height: calc(100vh - 70px);
}

.product-image-col {
    width: 49.17%;
    flex-shrink: 0;
    position: relative;
}

.product-main-image {
    position: sticky;
    top: 0;
    width: 100%;
    height: calc(100vh - 70px);
    overflow: hidden;
}

.product-image-swiper {
    width: 100%;
    height: 100%;
}

    .product-image-swiper .swiper-slide {
        position: relative;
    }

        .product-image-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 36, 64, 0.2);
    pointer-events: none;
}

.product-image-pagination.swiper-pagination {
    position: absolute;
    right: 28px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}

.product-image-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 29px;
    border-radius: 0;
    background: #fff;
    opacity: 0.2;
    margin: 0 !important;
    transition: opacity 0.2s;
}

.product-image-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}

.image-expand-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 5;
    cursor: pointer;
}

    .image-expand-btn:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .image-expand-btn.binoculars {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background-color: #fff;
        background-image: url('/img/svg/binoculars.svg');
        background-repeat: no-repeat;
        background-position: center;
    }

.product-info-col {
    flex: 1;
    padding: 24px 40px 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 33px;
    background-color: #F5F4F4;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

h1.product-name,
h2.product-title {
    line-height: 1.1;
    color: var(--color-primary);
    margin: 0;
}

h1.product-name {
    font-weight: 600;
    font-size: 36px;
}

h2.product-title {
    font-weight: 500;
    font-size: 32px;
}

.product-description p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--color-primary);
    margin: 0;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 24px 15px;
    width: 100%;
}

.spec-card {
    width: 152px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0 24px;
    gap: 4px;
}

.spec-icon-circle {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
    background: var(--color-spec-icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .spec-icon-circle img {
        max-width: 100%;
        height: auto;
    }

.spec-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #0a0a0a;
    text-align: center;
    letter-spacing: -0.3125px;
    white-space: nowrap;
}

.spec-value {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #0a0a0a;
    text-align: center;
    letter-spacing: -0.3125px;
}

.other-models-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 15px;
}

.other-models-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 1.1;
    color: var(--color-primary);
    margin: 0;
}

.other-models-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.slider-nav-btn {
    width: 31px;
    min-width: 31px;
    height: 32px;
    background-color: rgba(56, 74, 113, 0.2);
    border: none;
    border-radius: 6px;
    color: var(--color-secondary);
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    background-image: url('/img/svg/chevron-right.svg');
    filter: brightness(0) saturate(100%) invert(24%) sepia(77%) saturate(3150%) hue-rotate(219deg) brightness(98%) contrast(101%);
}

    .slider-nav-btn:hover {
        background-color: rgba(56, 74, 113, 0.35);
    }

    .slider-nav-btn.slider-prev {
        transform: rotate(180deg);
    }

.other-models-swiper {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    overflow: hidden;
}

.model-card > a {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.model-card-image {
    width: 150px;
    min-width: 100px;
    height: 111px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .model-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.model-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.model-card-brand {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
    color: var(--color-primary);
}

.model-card-name {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0;
}

.modal-image-swiper img {
    max-height: 85vh;
    height: 100vh;
    object-fit: contain;
}

#imageLightbox .modal-header .btn-close {
    border-radius: 50%;
    background-color: #fff;
    width: 46px;
    height: 46px;
    background-image: url('/img/svg/close.svg');
    background-repeat: no-repeat;
    padding: 0;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
    z-index: 999;
    margin: calc(-1 * 2rem) calc(-.5 * 1rem) calc(-.5 * 2rem) auto;
}

    #imageLightbox .modal-header .btn-close:hover {
        opacity: 0.75;
    }

    #imageLightbox .modal-header .btn-close:focus {
        box-shadow: 0;
    }

#imageLightbox .modal-body {
    padding: 0 3.125rem;
}

#imageLightbox .swiper-button-next,
#imageLightbox .swiper-button-prev {
    width: 50px;
    height: 45px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 1);
    transition: background-color .2s ease-in-out;
}

    #imageLightbox .swiper-button-next::after,
    #imageLightbox .swiper-button-prev::after {
        font-size: 14px;
        color: #384A71;
    }

    #imageLightbox .swiper-button-next:hover,
    #imageLightbox .swiper-button-prev:hover {
        background-color: rgba(255, 255, 255, .8);
    }

    #imageLightbox .swiper-button-next svg,
    #imageLightbox .swiper-button-prev svg {
        display: block;
        width: 18%;
        fill: #384A71;
    }

        #imageLightbox .swiper-button-next svg > path,
        #imageLightbox .swiper-button-prev svg > path {
            fill: #384A71;
        }

#imageLightbox .swiper-button-next {
    right: 0;
}

#imageLightbox .swiper-button-prev {
    left: 0;
}

#imageLightbox .swiper-pagination-fraction {
    text-align: center;
}

.modal-backdrop.show {
    opacity: .7;
}

@media(max-width: 767px) {
    header .header__wrapper {
        padding: 1.25rem .9375rem;
    }

    .section .btn.btn-home {
        padding: 0 1.25rem;
        height: calc(1.5em + .75rem + 9px)
    }

        .section .btn.btn-home span {
            font-size: 16px;
            line-height: 24px
        }

    .section-6 .section-blogs__main-text p {
        font-size: 14px;
        line-height: 20px
    }

    .section-7 .section-brands__text p {
        font-size: 14px;
        line-height: 26px;
        max-width: 320px;
        width: 100%;
    }

    .showcase__section > p {
        font-size: 14px;
        line-height: 26px;
    }

    .contact__wrapper h1 {
        font-size: 14px
    }

    .contact__form-checks .form-check-label {
        font-size: 12px;
        line-height: 125%
    }

    .about__intro h1,
    .about__intro p {
        font-size: 14px
    }

    .about__intro p {
        line-height: 22px
    }

    .search__wrapper {
        font-size: 14px
    }

    .search__section-result {
        font-size: 14px
    }

    .mobile-menu {
        background-position: center bottom -200px;
        background-image: url("/img/mobile-menu-bg.png")
    }

    .footer__menu {
        flex-wrap: wrap;
        margin-top: 2rem
    }

    .footer__menu-list li:first-child {
        margin-bottom: 1.5rem
    }

    .footer__menu-list li:not(:last-child) {
        margin-bottom: .75rem
    }

    .contact__form-checks .form-check-input {
        margin-top: 0.15rem;
    }

    .about__team-info {
        margin-top: 1rem;
    }

        .about__team-info > h3 {
            margin-bottom: .25rem;
        }

    .about__team-list {
        margin: 0;
    }

    .about__servicePoints img {
        max-height: 100%;
    }

    .section-7 .section-content .row > .col {
        flex: 0 0 auto !important;
        width: 135px;
        max-width: none;
    }

    .section-7 .section-brands .brands {
        padding: 0 0 0 1rem;
    }

        .section-7 .section-brands .brands .row {
            gap: .75rem;
            overflow-x: auto;
            flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
        }

    .section-7 .section-brands__text {
        padding: 0 1rem
    }

    .section-7 .section-brands .brands .brands-card {
        height: 100%;
    }

    .blog__content-top h1 {
        font-size: 14px
    }

    .blog__list .row {
        --bs-gutter-y: 0;
        --bs-gutter-x: 0;
    }

    .blog-detail__content-date {
        font-weight: 500;
        font-size: 14px;
        line-height: 100%
    }

    .blog-detail__content-text {
        font-size: 14px
    }

    .brands__expand .nav-tabs {
        gap: 32px;
    }

    .brands__expand .nav-link {
        font-size: 20px;
    }

    .model-card-image {
        width: 100%;
    }

    nav.page-nav .breadcrumb-item + .breadcrumb-item {
        padding-left: .625rem;
    }

    .specs-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        gap: 12px;
    }

    .spec-card {
        flex: 0 0 152px;
        scroll-snap-align: center;
        padding: 28px 0 36px;
    }

    .specs-grid::-webkit-scrollbar {
        display: none;
    }

    .specs-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .other-models-title {
        font-size: 24px;
    }

    .model-card > a {
        flex-direction: column;
        gap: unset;
    }

    .model-card-info {
        width: 100%;
        padding: 12px 14px 8px;
    }

    .slider-nav-btn {
        display: none;
    }

    .model-card-image {
        border-radius: 0;
    }

    #imageLightbox .modal-header .btn-close {
        position: absolute;
        top: 20%;
        transform: translateY(-50%);
        right: 8px;
    }

    .brands__expand .details-btn {
        font-size: 16px;
    }

        .brands__expand .details-btn > span {
            width: 22px;
            height: 22px;
        }

    .section-2 .section-intro__items .stack-item p {
        max-width: 100%;
    }

    .section-6 .section-blogs__list .swiper .blog__list-body h3 {
        font-size: 12px;
    }

    .section-6 .section-blogs__list .swiper .blog__list-body h4 {
        font-size: 20px;
        font-weight: 500;
    }
}

@media(min-width: 768px)and (max-width: 991px) {
    header .header__wrapper {
        padding-right: 0;
        padding-left: 0;
    }

    .mobile-menu {
        background-image: url("/img/tablet-menu-bg.jpg")
    }

        .mobile-menu::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(8, 23, 46, .7);
            z-index: -1
        }

    .about__servicePoints img {
        max-height: 1440px;
    }

    .specs-grid {
        grid-template-columns: repeat(4, 152px);
        justify-content: center;
    }

    #imageLightbox .modal-dialog {
        max-width: 700px;
        margin: 0 auto;
    }

    #imageLightbox .modal-header .btn-close {
        margin: 0;
    }

    .blog-detail__slider-wrapper.space-m {
        margin: 0;
    }
}

@media(max-width: 991px) {
    :root {
        --transition: 900ms ease-in-out;
    }

    .section-2 .section-intro__image img {
        transition: opacity 1.5s ease, transform 1s ease !important;
    }

    header {
        height: 84px
    }

        header > .container {
            height: 100%
        }

        header .header__wrapper {
            height: 100%;
            margin: 0;
        }

        header .header__menu {
            display: none
        }

        header .header__actions {
            gap: unset
        }

        header .header__actions-item:first-child {
            margin-right: 1rem;
            align-items: flex-end
        }

            header .header__actions-item:first-child a {
                font-weight: 400;
                font-size: 16px;
                color: #384a71;
                line-height: 1;
            }

        header .header__actions-item:last-child {
            margin-left: .5625rem
        }

        header .header__actions-item:nth-last-child(2) {
            display: none
        }

    .section .btn.btn-home {
        min-width: 100px;
        max-width: none;
        width: auto
    }

    .section-1 {
        min-height: unset
    }

        .section-1 .section-content h1 {
            font-weight: 500;
            font-size: 48px;
            text-align: center;
            line-height: 125%;
            margin-bottom: 1.5rem
        }

        .section-1 .section-content p {
            font-size: 16px;
            text-align: center
        }

        .section-1 .section-content .btn-home {
            margin-top: 3.5rem
        }

        .section-1 .section-content .swiper-button-prev {
            left: auto;
            right: 4.25rem;
            background-image: url("/img/svg/left-arrow.svg")
        }

        .section-1 .section-content .swiper-button-next {
            right: 1rem;
            background-image: url("/img/svg/right-arrow.svg")
        }

        .section-1 .section-content .swiper-button-prev,
        .section-1 .section-content .swiper-button-next {
            width: 36px;
            height: 36px;
            top: unset;
            bottom: 6.875rem;
            background-size: 7px
        }

    .section-2 .section-intro {
        grid-template-columns: unset;
        grid-template-rows: unset;
        display: unset;
    }

    .section-2 .section-intro__items .stack {
        margin-top: 0;
        padding: 3rem 0 1.5rem;
        height: 100%;
        display: flex;
        flex-direction: column
    }

    .section-2 .section-intro__items .stack-item {
        padding-bottom: 1.5rem;
        opacity: 1 !important;
    }

        .section-2 .section-intro__items .stack-item h2 {
            font-weight: 500;
            font-size: 32px;
            line-height: 1;
            color: #16215B;
        }

        .section-2 .section-intro__items .stack-item p {
            font-size: 14px;
        }

        .section-2 .section-intro__items .stack-item .btn {
            display: none
        }

    .section-3 .section-content {
        margin: 0
    }

        .section-3 .section-content::after {
            display: none
        }

    .section-3 .section-services {
        padding-top: 5.3125rem;
        height: 100vh;
    }

        .section-3 .section-services h2 {
            position: relative;
            font-weight: 500;
            font-size: 32px;
            line-height: 100%;
            text-align: left
        }

        .section-3 .section-services .row {
            height: 75%;
            margin-top: 2.1875rem;
        }

            .section-3 .section-services .row::before,
            .section-3 .section-services .row::after,
            .section-3 .section-services .row .divider,
            .section-3 .section-services .row > [class*="col-"]::after {
                content: "";
                width: 100%;
                position: absolute;
                height: 0;
                left: 0;
                border-right: none;
                border-bottom: 2px solid rgba(0, 0, 0, 0);
                -o-border-image: linear-gradient(90deg, rgba(62, 74, 88, 0.1) 0.83%, #ffffff 44.17%, rgba(62, 74, 88, 0.1) 100%) 1;
                border-image: linear-gradient(90deg, rgba(62, 74, 88, 0.1) 0.83%, #ffffff 44.17%, rgba(62, 74, 88, 0.1) 100%) 1
            }

    .section-services .row > [class*="col-"]:not(:has(+ [class*="col-"]))::after {
        display: none;
    }

    .section-3 .section-services .row .vertical-line {
        display: none;
    }

    .section-3 .section-services .row::before {
        display: none;
    }

    .section-3 .section-services .row::after {
        display: none;
    }

    .section-3 .section-services .row .divider {
        display: none;
    }

    .section-3 .section-services .row [class*=col-]:nth-child(odd) .section-services__item > div {
        padding: 0 0 0 .75rem
    }

    .section-3 .section-services .row [class*=col-]:nth-child(even) .section-services__item > div {
        padding: 0 .75rem 0 1.25rem
    }

    .section-3 .section-services .row [class*=col-]:not(:nth-child(1)):not(:nth-child(5)) .section-services__item {
        padding-left: 0;
        padding-right: 0;
    }

    .section-3 .section-services .row [class*=col-]:nth-child(n+5) .section-services__item {
        padding: 1rem 0 2.5rem
    }

    .section-3 .section-services__item {
        justify-content: center;
        align-items: center;
        padding: 0;
    }

        .section-3 .section-services__item > div {
            padding: 0
        }

        .section-3 .section-services__item p {
            font-weight: 500;
            font-size: 20px;
            text-align: left;
            margin-top: .5rem;
            min-height: unset;
        }

    .section-4 .services-contact-wrapper {
        padding-top: 8.625rem
    }

    .section-4 .services-contact-item h2 {
        font-weight: 500;
        font-size: 32px;
        line-height: 100%
    }

    .section-4 .services-contact-item p {
        font-size: 14px
    }

    .section-4 .services-contact .swiper-wrapper {
        padding-bottom: 12rem
    }

    .section-5 .section-mobile__download {
        margin-top: 1.5rem;
        position: relative;
    }

        .section-5 .section-mobile__download h3 {
            font-weight: 500;
            font-size: 16px;
            margin-bottom: .5rem
        }

    .section-5 .section-mobile__download-group {
        display: flex;
        align-items: center;
        margin-top: 2rem
    }

        .section-5 .section-mobile__download-group a:first-child {
            margin-right: .5rem
        }

        .section-5 .section-mobile__download-group .qr-code {
            margin: 0 0 0 2rem;
            width: 46px;
            height: 46px
        }

    .section-5 .section-mobile__download [class*=col-]:first-child {
        margin-bottom: 1rem;
    }

        .section-5 .section-mobile__download [class*=col-]:first-child .section-mobile__download-items {
            position: absolute;
            bottom: 0;
        }

    .section-5 .section-mobile__download [class*=col-]:last-child .section-mobile__download-items {
        justify-content: flex-end;
    }

        .section-5 .section-mobile__download [class*=col-]:last-child .section-mobile__download-items > a > img {
            max-width: 50%;
        }

    .section-5 .section-mobile__content h2 {
        font-size: 32px;
        margin-bottom: 0;
    }

    .section-5 .section-mobile__content p {
        font-size: 14px;
        line-height: 26px;
    }

    .section-5 .section-mobile__content > img {
        max-width: 60%;
        margin: 2rem auto;
    }

    .section-5 .section-content {
        padding: 3rem 0;
        overflow-y: auto
    }

        .section-5 .section-content .container,
        .section-5 .section-content .row:not(.section-mobile__download) {
            height: auto
        }

    .section-6 .section-content {
        align-items: unset
    }

    .section-6 .section-blogs .row [class*=col-] {
        height: auto
    }

    .section-6 .section-blogs__main-text {
        padding: 0;
        padding: 2.5rem 1rem;
        margin: 0;
        justify-content: center;
        height: 100%
    }

        .section-6 .section-blogs__main-text h3 {
            margin-bottom: 1rem
        }

        .section-6 .section-blogs__main-text h4 {
            font-size: 26px;
            line-height: 32px;
            margin-bottom: 1rem
        }

        .section-6 .section-blogs__main-text .btn {
            margin-top: 1.5rem
        }

    .section-6 .section-blogs__list {
        margin-top: 2rem;
        height: auto;
        padding: 0;
    }

        .section-6 .section-blogs__list .swiper {
            height: 100%;
            padding-left: 1.125rem
        }

    .section-7 .section-content {
        height: 100%;
        margin: 3rem 0;
    }

        .section-7 .section-content .row {
            padding: 0;
            height: auto;
            margin: 0;
        }

    .section-7 .section-brands .brands {
        row-gap: unset;
    }

        .section-7 .section-brands .brands .row:first-of-type {
            margin-bottom: 3.5rem;
        }

        .section-7 .section-brands .brands .section-title {
            display: block;
            color: #1B1C29;
            font-size: 16px;
            font-weight: 700;
            text-align: left;
            margin-bottom: 1rem;
        }

    .section-7 .section-brands__text {
        margin: 0;
    }

        .section-7 .section-brands__text h2 {
            font-weight: 500;
            font-size: 32px;
            line-height: 100%;
            margin-bottom: 1.5rem
        }

        .section-7 .section-brands__text p:not(:last-of-type) {
            margin-bottom: 1rem
        }

        .section-7 .section-brands__text .btn {
            display: none
        }

    .section-8 {
        overflow-y: auto
    }

    .mobile-menu {
        position: fixed;
        width: 100%;
        top: 0;
        right: 0;
        height: 100dvh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        padding: 0 1.25rem;
        background-repeat: no-repeat;
        background-size: cover;
        list-style-type: none;
        -webkit-font-smoothing: antialiased;
        z-index: 999;
        transform-origin: 0% 0%;
        transform: translate(101%, 0);
        transition: transform .3s cubic-bezier(0.77, 0.2, 0.05, 1)
    }

    .mobile-menu-body {
        padding-bottom: 2rem;
    }

    .mobile-menu-open {
        transform: none
    }

    .mobile-menu-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 4.0625rem
    }

    .mobile-menu-body {
        margin-top: 3rem
    }

    .mobile-menu-actions {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 3.125rem
    }

        .mobile-menu-actions input {
            width: 100%;
            height: 40px;
            font-weight: 400;
            font-size: 14px;
            line-height: 100%;
            border-radius: 3px;
            padding: 0 0 0 2.5rem;
            background-image: url("/img/svg/search.svg");
            background-repeat: no-repeat;
            background-size: 24px 24px;
            background-position: center left 9px
        }

            .mobile-menu-actions input::-moz-placeholder {
                color: #384a71
            }

            .mobile-menu-actions input::placeholder {
                color: #384a71
            }

        .mobile-menu-actions .dropdown-menu {
            min-width: 1rem;
            padding: .5rem;
            background-color: #c1bebe
        }

            .mobile-menu-actions .dropdown-menu li > a {
                padding: 0 .5rem
            }

                .mobile-menu-actions .dropdown-menu li > a:active {
                    color: inherit;
                    background-color: inherit
                }

        .mobile-menu-actions .dropdown-divider {
            margin: .25rem 0;
            border-top: 1px solid #000;
            opacity: 1
        }

        .mobile-menu-actions .dropdown .btn {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #fff;
            font-weight: 400;
            font-size: 20px;
            padding: 0
        }

            .mobile-menu-actions .dropdown .btn::after {
                content: "";
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
                filter: brightness(0) saturate(100%) invert(100%) sepia(39%) saturate(1%) hue-rotate(169deg) brightness(103%) contrast(101%);
                width: 20px;
                height: 20px;
                background-position: center top 1px;
                transform-origin: center
            }

            .mobile-menu-actions .dropdown .btn.show::after {
                transform: rotate(180deg)
            }

    .mobile-menu-accordion {
        margin-bottom: 3rem;
        padding-bottom: 5rem;
        border-bottom: 1px solid hsla(0, 0%, 100%, .4)
    }

        .mobile-menu-accordion .accordion-item,
        .mobile-menu-accordion .accordion-button {
            background-color: rgba(0, 0, 0, 0)
        }

        .mobile-menu-accordion .accordion-item {
            border: none
        }

            .mobile-menu-accordion .accordion-item:not(:last-child) {
                margin-bottom: 1.375rem
            }

        .mobile-menu-accordion .accordion-button {
            color: #fff;
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 20px;
            line-height: 100%;
            padding: 0 0 1.5625rem;
            border-bottom: 1px solid hsla(0, 0%, 100%, .4)
        }

            .mobile-menu-accordion .accordion-button::after {
                background-position: center top 2px;
                filter: brightness(0) saturate(100%) invert(100%) sepia(39%) saturate(1%) hue-rotate(169deg) brightness(103%) contrast(101%);
                margin-right: 1.125rem
            }

            .mobile-menu-accordion .accordion-button:not([data-bs-toggle=collapse]):after {
                background-image: none
            }

            .mobile-menu-accordion .accordion-button:focus {
                box-shadow: none
            }

            .mobile-menu-accordion .accordion-button:not(.collapsed) {
                color: #fff
            }

        .mobile-menu-accordion .accordion-body {
            padding: 1.5rem 0;
            color: #fff
        }

            .mobile-menu-accordion .accordion-body ul {
                list-style: none
            }

                .mobile-menu-accordion .accordion-body ul li > a {
                    display: block;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 100%;
                    color: #fff
                }

                .mobile-menu-accordion .accordion-body ul li:not(:last-child) {
                    margin-bottom: 1rem
                }

    .mobile-menu-social-media {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem
    }

        .mobile-menu-social-media a {
            display: inline-block
        }

    .blog__wrapper {
        padding: 1rem 0 3rem
    }

    .blog__content-top h2 {
        font-size: 32px;
        font-weight: 500;
        line-height: 35px;
        margin-top: 1.5rem
    }

    .blog__list {
        margin-top: 3rem
    }

        .blog__list .row {
            row-gap: 3rem
        }

    .blog__list-item {
        flex-direction: column
    }

        .blog__list-item > img {
            width: 100%;
        }

    .blog__list-item--image {
        width: 100% !important;
        height: 192px !important;
    }

    .slider-blogs .blog__list-item > img {
        max-width: 100%;
    }

    .blog__list-body {
        padding: 1rem 0 0;
        width: 100%;
        min-width: 0;
    }

        .blog__list-body h3 {
            margin-bottom: .5rem
        }

    .blog-list-body h4 {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .blog-detail-main {
        margin-top: 4.0625rem
    }

    .blog-detail__content {
        background: inherit;
        margin-top: 1.5rem;
        padding: 0 1rem
    }

        .blog-detail__content nav {
            position: absolute;
            top: 0;
            left: 0;
            margin: 1.0625rem 0 1.5rem;
            padding: 0 1rem;
            width: 100%
        }

    .blog-detail__content-date {
        margin-bottom: 1rem
    }

    .blog-detail__slider-wrapper {
        padding: 0;
    }

        .blog-detail__slider-wrapper .swiper {
            padding: 0 1rem;
        }

            .blog-detail__slider-wrapper .swiper .swiper-slide {
                height: auto;
            }

    .blog-detail__slider {
        display: block;
        height: auto;
        position: relative;
        background: inherit;
        opacity: 1;
        transform: none;
        visibility: visible;
        max-height: unset;
    }

    .blog-detail__slider-blogs {
        background-color: inherit;
    }

        .blog-detail__slider-blogs > .container {
            max-width: 100%;
        }

    .blog-detail__slider-blogs--inner h2 {
        padding: 0 1rem;
        margin-bottom: 1.5rem
    }

    .blog-detail__slider-blogs--inner .swiper-button-next,
    .blog-detail__slider-blogs--inner .swiper-button-prev {
        display: none
    }

    .slider-blogs .blog__list-body {
        padding: .625rem 0 0;
        width: 100%;
    }

        .slider-blogs .blog__list-body h3,
        .slider-blogs .blog__list-body h4 {
            margin-bottom: .625rem
        }

    .contact__wrapper {
        padding-top: 1rem
    }

    .contact__office {
        margin-bottom: 3rem
    }

        .contact__office .row {
            margin-top: 1.5rem;
            row-gap: 3rem
        }

        .contact__office .card-title {
            font-weight: 500;
            font-size: 20px
        }

    .contact__form form {
        padding: 0 1rem
    }

        .contact__form form h2 {
            font-weight: 500;
            font-size: 32px
        }

    .contact__form-items {
        margin-top: .75rem
    }

        .contact__form-items .form-control:not(:last-child) {
            margin-bottom: .75rem
        }

    .contact__form-checks {
        margin-top: 2.25rem
    }

        .contact__form-checks .form-check-label {
            margin-left: .5rem
        }

    .contact__form [type=submit] {
        margin-bottom: 3rem
    }

    .about__subtitle {
        font-weight: 500;
        font-size: 32px;
        line-height: 43px;
        margin-bottom: 1.5rem
    }

    .about__intro {
        padding: 1rem 0 3rem;
    }

        .about__intro .row {
            margin-top: 1.5rem
        }

    .about__servicePoints-inner {
        top: 2.75rem
    }

    .about__servicePoints-list > h2 {
        margin-bottom: 2rem
    }

    .about__servicePoints-list .row {
        row-gap: 3rem
    }

    .about__servicePoints-list--item.is-active .item-image {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }

    .about__servicePoints-list--item.open .item-image::before {
        background-color: rgba(0, 0, 0, 0)
    }

    .about__servicePoints-list--item.open .item-image-open {
        display: none
    }

    .about__servicePoints-list--item .item-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .3);
        width: 100%;
        height: 100%;
        z-index: 5
    }

    .about__servicePoints-list--item .item-image-open {
        display: block
    }

    .bg-img {
        background-image: none;
    }

    .about__team {
        padding: 0 1rem;
        margin: 2rem 0
    }

    .about__team-list {
        padding: 2rem 0 0;
    }

    .about__team-thumb {
        height: 250px;
    }

    .about__team-head .about__subtitle {
        font-size: 32px;
        line-height: 43px;
    }

    .about__team-head .about__team-desc {
        text-align: left;
    }

    .search__content {
        padding: 1rem 0 3rem
    }

    .search__content-words {
        font-size: 32px
    }

    .search__section {
        margin-top: 1.5rem
    }

        .search__section input.form-control {
            margin-bottom: 1rem
        }

    .search__section-list {
        margin-top: 3rem
    }

        .search__section-list h3 {
            margin-bottom: .5rem
        }

    .search__section-list--navigate {
        width: 40px;
        height: 40px
    }

    .search__section .pager-row {
        justify-content: center;
        margin-top: 3rem
    }

        .search__section .pager-row .page-info,
        .search__section .pager-row .page-per {
            display: none
        }

    .showcase__wrapper .showcase__top > .row {
        margin-top: 1.5rem;
    }

    .showcase__top {
        padding: 1rem 0 2rem;
    }

        .showcase__top nav {
            padding-top: 0;
            margin-bottom: 1.5rem
        }

    .showcase__subtitle h2 {
        font-weight: 500;
        font-size: 32px
    }

    .showcase__subtitle img {
        margin-top: 1rem
    }

    .showcase__banner-desc {
        line-height: 25px;
        margin: 0 1rem;
        padding: 3rem 0;
    }

    .showcase__slider {
        margin: 3rem 0;
    }

        .showcase__slider .swiper-button-next,
        .showcase__slider .swiper-button-prev {
            display: none
        }

    .brands__head {
        padding: 1rem 1rem 0
    }

    .brands__expand {
        padding: 2rem 1rem 3rem;
    }

    .brands__head-words {
        font-size: 32px
    }

    .page-404__wrapper {
        height: calc(100vh - 84px)
    }

        .page-404__wrapper p {
            bottom: unset;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -100%)
        }

    .footer {
        padding: 0 .20rem;
    }

    .footer__wrapper {
        padding: 1.875rem 0 1.25rem
    }

    .footer__inner {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .footer__menu {
        gap: 2rem;
        margin-top: 2rem;
    }

    .footer__subscribe {
        margin-top: 2rem;
    }

        .footer__subscribe h3 {
            margin-bottom: 1.5rem
        }

        .footer__subscribe p {
            margin-bottom: 2rem
        }

    .footer__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 1.5rem;
        row-gap: 3rem
    }

    .footer__bottom-meta,
    .footer__bottom-meta--legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem
    }

    .about__team-list > .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
        row-gap: 1rem;
    }

    .brands__expand .nav-tabs {
        margin-bottom: 40px;
    }

    .showcase__top h1 {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .showcase__top .showcase__tagline {
        font-size: 32px;
        line-height: 120%;
        padding: 1rem 0;
    }

    .showcase__banner {
        margin: 0 0 1.5rem;
    }

    .showcase__section > a.btn.btn-system {
        font-size: 16px;
        line-height: 24px;
        padding: 0 5px;
        height: calc(1.5em + .75rem + 4px);
    }

    .product-detail-wrapper {
        position: relative;
        flex-direction: column;
    }

    .product-image-col {
        margin-top: 4.3125rem;
        width: 100%;
    }

    .product-main-image {
        position: relative;
        top: 0;
        height: 400px;
    }

    .product-info-col {
        padding: 24px 16px 48px;
        gap: 48px;
    }

        .product-info-col .page-nav {
            position: absolute;
            top: 1.125rem;
        }

    .product-image-pagination.swiper-pagination {
        flex-direction: row;
        transform: none;
        top: unset;
        bottom: 20px;
        right: 20px;
    }

    .product-image-pagination .swiper-pagination-bullet {
        width: 21px;
        height: 4px;
    }

    #imageLightbox .modal-body {
        padding: 0;
    }

    #imageLightbox .swiper-button-next,
    #imageLightbox .swiper-button-prev {
        display: none;
    }

    .space-m {
        margin: 0 1rem;
    }

    .space-p {
        padding: 0 1rem;
    }

    .blog-detail,
    .blog-detail .container-fluid > .row {
        height: auto;
    }

    .blog-detail__slider-blogs--inner.space-m {
        margin: 0;
    }

    .brands__expand .card-bg {
        inset: 0;
        background-size: cover;
        background-position: center center;
    }

    .brands__expand .brand-container {
        height: auto;
        flex-direction: column;
    }

    .brands__expand .brand-card {
        flex: 0 0 93px;
        transition: flex-basis 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: flex-basis;
    }

        .brands__expand .brand-card.active {
            flex: 0 0 180px;
        }

            .brands__expand .brand-card.active .details-btn {
                transform: translateY(185%);
            }

            .brands__expand .brand-card.active .brand-logo-wrapper {
                top: 3vh;
            }

    .brands__expand .brand-logo-wrapper {
        top: 50%;
        transform: translateX(-50%) scale(0.8) translateY(-50%);
    }

    .section-5 .section-mobile__download-items {
        margin-top: 2.1875rem;
    }

    .section-7 .section-content .row > .col {
        height: 240px;
        padding: 0;
    }

    .blog__list .blog__list-item-image {
        width: 100%;
        height: 300px;
    }

    main:has(.section-wrapper) {
        overflow: visible;
    }

    .section {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        overflow: visible;
    }

    .section-content {
        opacity: 1;
        transform: none;
    }

    .section-2 .section-intro__image {
        display: none;
    }

    .section-2 .section-intro__items .viewport {
        height: unset;
    }

    .stack-item-group {
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .section-2 .section-intro__items .stack-item h2 span {
        font-style: normal;
    }

    .section-3 .section-services__item img {
        margin: 0 auto;
    }

    .brands-card-detail {
        position: absolute;
        top: 112px;
        right: 0;
        left: 0;
        color: #fff;
        z-index: 999;
        font-size: 14px;
        font-weight: 500;
    }

        .brands-card-detail span {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            margin-top: 9px;
            background-color: #fff;
            margin: 9px auto 0;
        }

            .brands-card-detail span::before {
                content: '';
                background-image: url('/img/svg/arrow-right.svg');
                background-repeat: no-repeat;
                background-size: contain;
                width: 12px;
                height: 12px;
            }

    .section-3 .section-services__item > div:hover .arrow-link {
        opacity: 0;
    }

    .section-3 .section-services__item > div:hover > img,
    .section-3 .section-services__item > div:hover p {
        transform: none;
    }
}

@media(min-width: 992px) {
    .section:not(.section-1):not(.section-8) {
        height: calc(100vh - 70px)
    }

    .section-5 .section-mobile__download-group a {
        display: none
    }

    .section-content .swiper-button-prev:hover {
        transform: translateX(-25px);
    }

    .section-content .swiper-button-next:hover {
        transform: translateX(25px);
    }

    .section-content .swiper-button-prev:hover,
    .section-content .swiper-button-next:hover {
        background-color: hsla(0, 0%, 100%, .5)
    }

    header.on-first {
        background-color: rgba(0, 0, 0, 0);
        transition: background-color .5s ease-in;
    }

        header.on-first .header__logo-web {
            display: none
        }

        header.on-first .header__logo-white {
            display: block
        }

        header.on-first .header__menu ul .has-submenu > a::after {
            background-image: url("/img/svg/caret-down-white.svg")
        }

        header.on-first .header__actions-item img {
            filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(285deg) brightness(105%) contrast(103%)
        }

        header.on-first .header-text {
            color: #fff
        }

    header .header__actions-item img {
        width: 24px;
        height: 24px;
        filter: brightness(0) saturate(100%) invert(18%) sepia(0%) saturate(1355%) hue-rotate(58deg) brightness(99%) contrast(92%)
    }

    header .header__actions-item:last-child {
        display: none
    }

    header .header__actions-item .dropdown-menu {
        min-width: auto;
    }

    header .mobile-menu {
        display: none
    }

    .about__servicePoints-list--item:hover .item-image {
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }

    .blog-detail__slider-wrapper {
        margin: 0 !important;
    }

    .blog-detail__slider-blogs--inner .row [class*="col-"]:has(h2) {
        display: flex;
        align-items: center;
    }

    .brands-card-detail {
        display: none;
    }

    .section-2 .section-intro__items .stack-item > img {
        display: none;
    }

    .section-7 .section-brands .brands {
        height: 100%;
    }
}

@media(min-width: 1024px)and (max-width: 1281px) {
    .section-2 .section-intro {
        grid-template-columns: 45% 55%
    }

    .section-2 .section-intro__items .stack {
        margin-top: 11.25rem
    }

    .contact__form [type=submit] {
        margin-bottom: 1rem;
    }

    .product-info-col {
        padding: 60px 30px 40px 30px;
    }

    .spec-card {
        width: 140px;
        height: 140px;
    }

    .blog__content {
        padding: 0;
    }

    .brands__expand .card-bg {
        background-size: 1024px auto;
    }

    .section-4 .services-contact .swiper-wrapper {
        padding-left: .25rem;
    }
}

@media(min-width: 1282px) {
    .space-m {
        margin: 0 2.1875rem;
    }

    .space-p {
        padding: 0 2.1875rem;
    }

    .section-7 .section-brands__text {
        padding: 0 4rem 0 2.1875rem;
    }
}

@media(min-width: 1920px) {
    .section-2 .section-intro-items .stack-item {
        padding-bottom: 12.5rem
    }

    .about__team-thumb {
        height: 100%;
    }

    .about__team-head {
        max-width: 100%;
    }

    .about__team-list {
        max-width: 1080px;
    }

    .showcase__banner > img {
        object-fit: contain;
    }
}
