/* =======================
   Base
======================= */
/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"); */
:root {
    --brand: #30b2d2;
    --text: #222;
    --muted: #666;
    --bg: #fff;
    --bgdark: #000;
    --bggrey: #f9f9f9;
    --lighttext: #fff;
    --darktext: #000;
    --color-dark-alt: #1C1C1C;

    --header-height: 72px;
    --color-shadow: rgba(0, 0, 0, .08);
    --color-brand-hover: #2490ad;
    --color-border-input: #e5e5e5;

    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-md: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-xxl: 28px;
    --font-size-xxxl: 36px;
    --font-size-faq-h3: 22px;

    --transition-btn: background .25s ease;

    --section-content-width: 80%;
    --section-max-width: 1200px;
    --section-margin-vertical: 50px;
    --section-margin-horizontal: auto;
    --section-gap: 50px;
}

@font-face {
    font-family: "Jost";
    src: url("../fonts/Jost-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "JostSemiBold";
    src: url("../fonts/Jost-SemiBold.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "PoppinsSemiBold";
    src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: "JostSemiBold", sans-serif;
    font-size: var(--font-size-base);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
}

a:focus,
a:active,
a:visited,
a:hover {
    text-decoration: none;
    outline: none;
}

h2 {
    margin-bottom: 48px;
    padding-bottom: 16px;
    font-size: var(--font-size-lg);
    line-height: 32px;
    font-weight: 700;
    position: relative;
    text-transform: capitalize;
}

h3 {
    margin: 0 0 10px;
    font-size: var(--font-size-xxl);
    line-height: 36px;
}

button {
    outline: none !important;
}

.clear {
    clear: both;
}

img {
    max-width: 100%;
    border: 0;
}

ul,
ol {
    list-style: none;
}

li {
    list-style: none;
}

ul {
    padding-left: 0;
}

.section-content-width {
    width: var(--section-content-width);
    margin: var(--section-margin-vertical) var(--section-margin-horizontal);
    box-sizing: border-box;
}

.section-full-width {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* центрируем относительно вьюпорта */
    box-sizing: border-box;
    position: relative; /* чтобы overflow не мешал */
}

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

.gridContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 50px auto;
    gap: 50px;
}

.toggleContainer {
    display: flex;
    width: 700px;
    height: 380px;
}

.toggleContainerWidth {
    width: auto;
}

.toggleContainerMobile {
    display: none;
}

#colorRed {
    /*color: red;*/
    color: #b40202
}

#activeImage {
    border: 2px solid gray;
    padding: 5%;
    width: 95%;
    height: 95%;
}

.title {
    font-size: 40px;
    width: 80%;
    margin: auto;
}

.subTitle {
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0;
    font-weight: bolder;
    font-size: var(--font-size-sm); /* ← Добавляем размер */
}

.titleH4 {
    margin-top: 50px;
    font-size: 15px;
    text-align: center;
    color: var(--brand);
}

.titleSection {
    margin-bottom: 50px;
}

.titleSection p {
    text-align: center;
    margin: 0;
    font-size: 35px;
}

.textReadability {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1px);
    padding: 10px 30px 50px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.svgContainer {
    border-radius: 50%;
    border: 1px solid var(--brand);
    background-color: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* ======================= Footer ======================= */
footer {
    background: var(--bgdark);
    color: var(--lighttext);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    display: flex;
    flex-direction: column;

    a:hover {
        color: #cfcfcf;
    }

    .footer-top {
        display: flex;
        justify-content: space-around;
        flex-direction: row;

        gap: 40px;

        .footer-col {
            .h4 {
                color: var(--lighttext);
                font-size: var(--font-size-md);
                font-weight: 600;
                margin: 0 0 15px
            }

            ul {
                list-style: none;
                padding: 0;
                margin: 15px 0 0;
            }

            .ulcities {
                columns: 2;
            }

            ul li {
                margin-bottom: 8px
            }
        }

        .footer-about {
            .footer-logo {
                display: flex;
                align-items: center;
                font-size: var(--font-size-md);
                color: white;

                img {
                    height: 40px;
                    width: auto;
                    display: block;
                    margin-right: 10px
                }

            }

            .footer-contact {
                list-style: none;
                padding: 0;
                margin: 14px 0 0;

                li {
                    span {
                        padding: 10px
                    }

                    gap: 12px;
                    align-items: start;
                    margin-bottom: 10px
                }

            }
        }
    }

    .footer-bottom {
        display: flex;
        gap: 40px;
        justify-content: space-around;

        .footer-social {
            a {
                svg {
                    width: 20px;
                    height: 20px;
                }
            }
        }

        .footer-copy {
        }

        .footer-payments {
        }
    }
}

/* =======================Header ======================= */
.headerContainer {
    height: var(--header-height);
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: auto;
}

a#activeHeader {
    color: var(--brand);
    font-weight: bold;
}

a#activeHeader svg path {
    fill: var(--brand);
}

.fa-magnifying-glass {
    font-size: var(--font-size-faq-h3);
    margin-left: 165px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 6px 18px var(--color-shadow);
    z-index: 1000;
    transition: var(--transition-btn), box-shadow .25s ease, border-color .25s ease;
}

.site-header.scrolled {
    background: var(--bg);
    box-shadow: 0 6px 18px var(--color-shadow);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.header-logo img {
    display: block;
    height: 45px;
    width: auto
}

.header-logo {
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 30px;
}

.headerArrow {
    width: 15px;
    height: auto;
    margin-left: 5px;

    path {
        fill: black;
    }
}

.headerLi {
    display: flex;
    align-items: center;
}

header {
    ul {
        padding-left: 0;
    }

    li {
        list-style: none;
    }

    .logoMobile {
        display: none;
    }

    .nav-close {
        display: none;
    }
}

/* =======================Navigation ======================= */
.main-nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li > a {
    padding: 8px 4px;
    font-size: 17px;
    font-weight: 600;
    color: #212529;
    text-decoration: none;
}

.submenuImage {
    width: 600px;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background: var(--bg);
    padding: 30px;
    list-style: none;
    width: 200px;
    max-width: 90vw;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 50px;

    div {
        width: max-content;
    }

    strong {
        font-size: var(--font-size-md);
        color: var(--color-dark-alt);
    }

    li a {
        display: block;
        margin: 15px 0;
        font-size: var(--font-size-base);
        color: var(--muted);
    }

}

.has-submenu {
    position: relative;
}

.has-submenu:hover > .submenu,
.has-submenu.open > .submenu {
    opacity: 1;
    visibility: visible;
}

/* Burger (hidden on desktop) */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 6px;
    cursor: pointer;

    span {
        display: block;
        width: 24px;
        height: 2px;
        background: #222;
        margin: 5px 0
    }

}

/* =======================Banner Section ======================= */
.bannerContainer {
    position: relative;

    .bannerImgContainer {
        position: relative;
        width: 100%;
        height: 100vh;
        background-color: black;
        overflow: hidden;

        img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /*object-position: left center;*/
        }
    }

    .bannerText {
        width: 45%;
        position: absolute;
        top: 50%;
        left: 10%;
        transform: translateY(-50%);

        h1, .marginH1 {
            font-size: clamp(25px, 4vw, 57px);
            font-family: "Jost", sans-serif;
            color: black;
            font-weight: bold;
            /*line-height: clamp(4vw, 7vw, 8vw) !important;*/
            line-height: 5vw;

        }

        p {
            font-size: var(--font-size-faq-h3);
            font-family: "Jost", sans-serif;
            margin: 20px 0;
            color: var(--darktext);
        }

        .marginH1 {
            margin-bottom: 40px;
        }

        .bannerButton {
            text-transform: uppercase;
            padding: 10px 10px;
            background: var(--brand);
            color: var(--lighttext);
            transition: 0.3s;
        }

        .bannerButton:hover {
            background-color: black;
        }
    }
}

/* ========== Intro Section ========== */
.intro {
    display: flex;
    flex-direction: row;
    gap: var(--section-gap);
    align-items: center;

    .intro_img {
        width: 50%;
        display: flex;
        order: 1;
    }

    .intro_content {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        order: 2;
        padding: 10px;
    }

    .intro_img picture {
        width: 100%;
        height: 380px;
        display: block;
    }

    .intro_img picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .intro_content_subtitle {
        text-transform: uppercase;
        color: var(--brand);
        /*margin-bottom: 20px;*/
        font-weight: bolder;
        font-size: var(--font-size-sm);
    }

    .intro_content_title h2 {
        font-size: var(--font-size-xl);
        margin: 0;
        color: var(--color-dark-alt);
    }

    .intro_content_text {
        overflow-y: visible;
        max-height: none;
        padding-right: 0;
    }

    .intro_content_text p {
        margin: 5px 0;
        line-height: 1.6;
        color: grey;
        font-family: "Jost", sans-serif;
    }
}

/* ========== BENEFITS SECTION ========== */
.benefits {
    display: flex;
    flex-direction: row;
    gap: var(--section-gap);
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;

    .benefits_card {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1 1 10px;
        max-width: 200px; /* ← Ограничение ширины карточки */
        text-align: center; /* ← Центрирование текста */

        .benefits_card_icon {
            margin-bottom: 18px;
            width: 60px; /* ← Увеличил */
            height: 60px; /* ← Увеличил */
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefits_card_icon svg {
            width: 100%;
            height: 100%;
            object-fit: contain; /* ← Вписываем SVG в контейнер */
        }

        .benefits_card_icon svg path {
            fill: var(--brand);
        }

        .benefits_label {
            color: var(--muted);
            font-size: 1rem;
            letter-spacing: 1px;
            text-align: center;
            font-weight: 500;
            margin: 0;
        }
    }
}

/* ======================   Services section======================= */
.services {
    background: #f0f7f9;
    position: relative;
    overflow: hidden;

    .services-header {
        text-align: center;
        padding: 50px 0;

        h2 {
            font-size: var(--font-size-xxxl);
            line-height: 1.3;
            font-weight: 700;
            margin: 0;
            color: var(--darktext);
        }

        p {
            width: 50%;
            margin: auto;
            font-family: "Jost", sans-serif;
        }
    }

    .services-list {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        max-width: none;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;

        .services-list-item::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
            pointer-events: none;
            z-index: 1;
        }

        .services-list-item {
            /*flex: 0 0 calc(33.333% - 10.66px);*/
            flex: 30%;
            position: relative;
            overflow: hidden;
            height: 350px;
            background: var(--bg);

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

            .services-list-item-content {
                position: absolute;
                bottom: 0;
                left: 20px;
                z-index: 2;
                display: flex;
                flex-direction: column;
                gap: 8px;
                width: calc(100% - 40px);

                .services-list-item-content-label:hover {
                    background-color: var(--bgdark);
                }

                .services-list-item-content-label {
                    background: var(--brand);
                    color: var(--lighttext);
                    font-weight: 600;
                    padding: 0 10px;
                    text-transform: uppercase;
                    width: fit-content;
                    cursor: pointer;
                    transition: 0.3s;

                    h3 {
                        color: inherit;
                        text-decoration: none;
                        outline: none;
                        transition: all 0.4s ease-in-out;
                        -webkit-transition: all 0.4s ease-in-out;
                        font-size: var(--font-size-sm);
                        margin: 0;
                        padding: 0;

                        a {
                            margin: 0;
                            padding: 0;
                        }
                    }
                }

                .services-list-item-content-text {
                    font-size: var(--font-size-md);
                    color: var(--lighttext);
                    font-weight: 600;
                    line-height: 1.4;
                    margin: 0;
                }
            }
        }
    }
}

/* ======================   What We Do  section======================= */
.whatwedo {
    background: var(--bg);
    display: flex;
    gap: var(--section-gap);
    align-items: flex-start;

    a {
        padding: 12px 28px;
        background: var(--brand);
        color: var(--lighttext);
        font-weight: 600;
        text-transform: uppercase;
        transition: var(--transition-btn);
    }

    .whatwedo-main {
        flex: 0 0 33%;
        align-items: center;
        justify-content: center;
        text-align: center;

        h2 {
            font-size: var(--font-size-xxl);
            line-height: 1.3;
            font-weight: 700;
            margin: 0 0 20px;
            padding-bottom: 10px;
            color: var(--darktext);
        }

        .whatwedo-main-item {
            padding: 0 20px 40px 0;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .whatwedo-main-item .whatwedo-main-text {
            flex: 1;
            text-align: center;

        }

        .whatwedo-main-item .whatwedo-main-text h3 {
            font-size: var(--font-size-md);
            color: var(--darktext);
            font-weight: 600;
            margin: 0 0 8px;
            line-height: 1.4;
        }

        .whatwedo-main-item .whatwedo-main-text p {
            font-size: 15px;
            color: var(--muted);
            line-height: 1.6;
            letter-spacing: 0.03em;
            margin: 0;
            font-family: "Jost", sans-serif;
        }
    }


    .whatwedo-list {
        flex: 0 0 67%;
        display: flex;
        gap: 30px;
        flex-direction: row;
        flex-wrap: wrap;

        .whatwedo-list-item {
            padding: 20px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            flex: 1 1 calc(50% - 20px);
            justify-content: center;

            .whatwedo-list-item-icon {
                font-size: 40px;
                flex: 0 0 auto;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--bg);

                svg {
                    width: 40px;
                    height: 40px;
                    stroke: var(--brand);
                    fill: var(--brand);
                }
            }

            .whatwedo-list-item-text {
                flex: 1;

                h3 {
                    font-size: var(--font-size-md);
                    color: var(--darktext);
                    font-weight: 600;
                    margin: 0 0 8px;
                    line-height: 1.4;
                }

                p {
                    font-family: "Jost", sans-serif;
                    font-size: 15px;
                    color: var(--muted);
                    line-height: 1.6;
                    letter-spacing: 0.03em;
                    margin: 0;
                }
            }
        }
    }
}

/* =======================   FAQ Section ======================= */
.faq {
    padding: 10px 0;

    .faq-header {
        text-align: center;
        margin-bottom: 40px;

        h2 {
            font-size: var(--font-size-xxxl);
            line-height: 1.3;
            font-weight: 700;
            margin: 0;
            color: var(--darktext);
        }
    }

    .faq-list {
        max-width: 800px;
        margin: 0 auto;

        .faq-item {
            margin-bottom: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;

            .faq-question {
                width: 100%;
                font-size: var(--font-size-lg);
                font-weight: 600;
                background: var(--bg);
                border: none;
                text-align: left;
                cursor: pointer;
                transition: background 0.2s;
                position: relative;
                padding: 20px 40px 20px 20px;
            }

            .faq-question::after {
                content: '▼'; /* закрыто */
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
                font-size: 14px;
                color: var(--muted);
                transition: transform 0.2s;
            }

            .faq-question:hover {
                background: #f9f9f9;
            }

            .faq-question[aria-expanded="true"] {
                background: var(--brand);
                color: var(--lighttext);
            }

            .faq-question[aria-expanded="true"]::after {
                content: '▲'; /* открыто */
                color: var(--lighttext);
            }

            .faq-answer {
                font-family: "Jost", sans-serif;
                padding: 20px 20px;
                font-size: var(--font-size-base);
                line-height: 1.6;
                color: var(--muted);
            }

            .faq-answer p {
                margin: 0;
            }
        }
    }
}

/* =======================  R E V I E W S Section ======================= */
.reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;

    .reviews-header {
        flex: 100%;
        text-align: center;

        h2 {
            font-size: var(--font-size-xxxl);
            line-height: 1.3;
            font-weight: 700;
            margin: 0;
            color: var(--darktext);
        }
    }

    .reviews-item {
        background: #eef5f7;
        padding: 20px 20px;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        flex: 1 0 370px;
        /*min-width: 280px;*/
        /*max-width: 370px;*/
        /*height: 300px;*/
        min-height: 225px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-sizing: border-box;

        .reviews-item-text {
            color: #444;
            font-size: 1.1rem;
            line-height: 1.7;
            font-family: "Jost", sans-serif;
        }

        .reviews-item-bottom {
            display: flex;
            align-items: center;
            margin-top: 32px;

            .reviews-item-bottom-icon svg {
                width: 56px;
                height: 56px;
                border-radius: 50%;
                object-fit: cover;
                margin-right: 16px;
            }

            .reviews-item-bottom-icon svg path {
                fill: var(--brand);
            }

            .reviews-item-bottom-name span {
                color: #666;
                font-family: "Jost", sans-serif;
            }
        }
    }
}

/* ======================  CTA S E C T I O N======================= */
.cta-block {
    text-align: center;
    margin: 100px auto;

    h2 {
        margin: 0;
        font-size: 35px;
    }

    p {
        font-family: "Jost", sans-serif;
    }
}

/* ======================  4card S E C T I O N ======================= */
.four-card {
    text-align: center;
    margin: 100px auto;

    .four-card-title h2 {
        font-size: var(--font-size-xxxl);
        line-height: 1.3;
        font-weight: 700;
        margin: 0;
        color: var(--darktext);
    }

    .text {
        padding: 10px;
        font-size: var(--font-size-lg);
        font-family: "Jost", sans-serif;
    }

    .four-card-cardlist {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        max-width: none;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
        justify-content: center;

        .four-card-cardlist-item {
            flex: 23%;

            div {
                height: 100%;

                img {
                    width: 100%;
                    height: 90%;
                    max-height: 400px;
                    object-fit: cover;
                    transition: 0.3s;
                    display: block;
                }
            }
        }

        .four-card-cardlist-item:hover img {
            transform: scale(1.09);
        }

        .four-card-cardlist-item .four-card-text {
            font-family: "Jost", sans-serif;
        }
    }
}

/* ======================   brands list======================= */
.brands-list {
    margin: 100px auto;

    .brands-list-title {
        text-align: center;
        margin-bottom: 40px;

        h2 {
            margin: 0;
            font-size: 35px;
        }
    }

    .brands-grid {

        ul {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        li {
            padding: 2px;
        }
    }
}

/* ======================   Contact page ======================= */
.contactus {
    margin-top: var(--header-height);
    padding-top: 25px;

    .contact-title {
        h1 {
            text-align: center
        }
    }

    .contact-grid {
        display: flex;
        width: 100%;
        gap: 20px;

        .contactform {
            flex: 1.3;
            background: var(--bggrey);
            padding: 20px;

            .successMessage {
                border: 2px solid #d43f3f;
                padding: 5px 16px;
                margin: 10px 0;
                text-align: center;
            }
        }

        .contactmap {
            flex: 1.7;
            /*margin: auto;*/
            min-height: 400px;

            iframe {
                min-height: 400px;
                height: 100%;
            }
        }
    }
}

.form :is(input, textarea, button) {
    width: 100%;
    margin-bottom: 12px;
    padding: 15px;
    font-size: var(--font-size-sm);
    border: solid 1px #d3d3d3;
    border-radius: 3px;
}

.form {
    background: #f9f9f9;
    padding: 20px;

    h2 {
        margin-top: 0;
    }

    textarea {
        resize: vertical;
    }

    label {
        color: var(--muted);

        span {
            color: red;
        }
    }

    input, textarea {
        margin-bottom: 30px;
    }

    input:focus,
    textarea:focus {
        outline: none;
    }

    button {
        background: var(--brand);
        color: var(--lighttext);
        border: none;
        cursor: pointer;
        width: fit-content;
        padding: 10px 30px;
        border-radius: 0;
    }


}

.contact-info {
    width: 100%;
    display: flex;
    margin: 30px auto auto;

    .info-box {
        flex: 1;
        padding: 30px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        background-color: #f7f7f7;

        svg {
            width: 20px;
            height: 20px;
            fill: #0aa2c0;
        }
    }

    .info-box:nth-child(odd) {
        background-color: #ebf3f5;
    }
}

/* ======================   Breadcrumbs======================= */
.breadcrumbs {
    width: 100%;
    height: 200px;
    background-color: #ebf3f5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 105px;
    text-align: center;

    h1 {
        margin: 20px 0 0;
    }
}

.about {
    /* =======================About Section ======================= */

    .about-section {
        padding: 120px 0;
        background: #f9f9f9;
    }

    .about-content {
        display: flex;
        gap: 80px;
        align-items: center;
    }

    .about-left {
        flex: 0 0 30%;
        max-width: 400px;
    }

    .about-tag {
        font-size: var(--font-size-xs);
        font-weight: 600;
        color: var(--brand);
        margin-bottom: 12px;
        display: block;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .about-left h2 {
        font-size: var(--font-size-xxxl);
        line-height: 1.3;
        font-weight: 700;
        margin: 0 0 16px;
        padding-bottom: 10px;
        color: var(--darktext);
    }

    .about-left p {
        font-size: var(--font-size-base);
        line-height: 1.6;
        color: var(--muted);
        margin: 0 0 20px;
    }

    .about-left .btn {
        padding: 12px 28px;
        background: var(--brand);
        color: var(--lighttext);
        font-weight: 600;
        text-transform: uppercase;
        transition: background var(--transition-btn);
    }

    .about-left .btn:hover {
        background: var(--color-brand-hover);
    }

    .about-right {
        flex: 0 0 70%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.sal {
    /* =======================SALE IMAGE Section ======================= */

    .sale-image-block {
        position: relative;
    }

    .sale-image-block img {
        display: block;
        width: 100%;
        height: auto;
    }

    .sale-image-block .sale-caption {
        position: absolute;
        top: 30px;
        left: 30px;
        color: var(--text);
        text-align: left;
    }

    .sale-image-block .saleText {
        background: var(--bg);
        color: #1a355e;
        font-size: 15px;
        font-weight: 600;
        padding: 2px 10px;
        border-radius: 2px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }

    .sale-image-block .saveUs {
        font-size: var(--font-size-xxl);
        font-weight: 700;
        margin: 10px 0 6px 0;
        line-height: 1.1;
    }

    .sale-image-block .newArr {
        font-size: var(--font-size-md);
        font-weight: 400;
    }
}

.pag {
    /* =======================Pagination Section ======================= */

    .pagination {
        text-align: center;
        margin: 32px 0 0 0;
    }

    .pagination a {
        margin: 0 4px;
        padding: 6px 14px;
        border-radius: 4px;
        background: #f2f2f2;
        color: var(--text);
        text-decoration: none;
    }

    .pagination a.active,
    .pagination a:hover {
        background: var(--brand);
        color: var(--lighttext);
    }

}

.sli {
    /* =======================   Slider ======================= */

    .slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        height: 100vh;
    }

    .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .slide.active {
        animation: fadeIn .8s ease forwards;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

    /* Caption — left-aligned */

    .slide-caption {
        position: absolute;
        top: 50%;
        left: 120px;
        transform: translateY(-50%);
        width: 540px;
        text-align: left;
        pointer-events: none;
        z-index: 2;
    }

    .slide-content {
        pointer-events: auto;
    }

    .slide-caption h2 {
        font-size: 57px;
        line-height: 61px;
        font-weight: 700;
        color: var(--darktext);
        margin: 0 0 20px;
    }

    .slide-caption p {
        font-size: var(--font-size-faq-h3);
        line-height: 1.6;
        color: var(--darktext);
        margin: 0 0 25px;
    }

    .slide-caption .btn {
        padding: 14px 32px;
        background: var(--brand);
        color: var(--bg);
        font-weight: 600;
        text-transform: uppercase;
        transition: var(--transition-btn);
    }

    .slide-caption .btn:hover {
        background: var(--color-brand-hover);
    }

    .slider-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        z-index: 5;
        background: rgba(0, 0, 0, .35);
        color: var(--lighttext);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    }

    .sliderBtnMobileContainer {
        display: none;
        justify-content: center;
        align-items: center;
        gap: 5px;
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .sliderBtnMobileContainer div {
        width: 16px;
        height: 16px;
        border: 3px solid var(--brand);
        border-radius: 50%;
    }

    .sliderBtnMobileActive {
        background-color: var(--brand);
    }

    .slider-btn:hover {
        background: rgba(0, 0, 0, .55)
    }

    .slider-btn.prev {
        left: 15px
    }

    .slider-btn.next {
        right: 15px
    }
}

/* =======================Form Section ======================= */
.gridBigImage {
    width: 150px;
    margin-right: 20px;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
        transition: 0.3s;
    }

    img:hover {
        scale: 1.05;
    }

}

.gridLittleImage {
    width: 165px;
}

.textBlock {
    width: 80%;
    margin: 100px auto;
}

.textBlockMap {
    width: 70%;
    margin: 50px auto;
    font-size: var(--font-size-md);
}

.textGrid {
    color: grey;
    width: calc(100% - 750px);

    ul li {
        margin: 10px 0;
        display: flex;
        align-items: center;
    }

    .textMargin {
        margin-bottom: 12px;
    }

    ul li:hover svg path {
        fill: black;
    }

    p:hover svg path {
        fill: black;
    }

    ul li p {
        margin: 0 0 0 10px;
    }

    .withIcon {
        margin: 10px 0;
    }

    ul svg {
        width: 14px;
        height: 14px;
    }

    .e-fas-check-circle {
        width: 14px;
        height: 14px;
        margin-right: 10px;
    }

    ul svg path {
        fill: var(--brand);
        transition: 0.2s;
    }

    p svg path {
        fill: var(--brand);
        transition: 0.2s;
    }
}

.blockGrid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: 100px auto;
}

.blockScaleImage {
    width: 100%;
    height: 97px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggleImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gridImage {
    width: 540px;

    img {
        margin: 10px 0;
    }
}

.titleGrid {
    font-size: 26px;
    margin: 0 0 20px;
    color: var(--color-dark-alt);
}

.blockImage {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 80%;
    margin: auto;
    flex-wrap: wrap;

    img {
        border-radius: 10px;
    }
}

.map-form {
    width: 70%;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.map {
    min-height: 400px;
}

.description {
    margin: 1em auto 2.25em;
}

.titleText {
    text-align: center;
    width: 80%;
    margin: 100px auto;

    h2 {
        margin: 0;
        font-size: 35px;
    }
}

.titleTextBlock {
    margin-top: 0;
}

.last {
    margin-bottom: 0;
}

.cardContainer {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.searchContainer {
    width: 320px;

    label {
        font-size: var(--font-size-base);
        color: var(--muted);
    }

    input {
        padding: 11px 15px;
        border: 1px solid var(--color-border-input);
        border-radius: 3px;
    }

    button {
        padding: 12px 15px;
        border: none;
        background-color: #ebf3f5;
        font-size: var(--font-size-sm);
        font-weight: bold;
        color: var(--muted);
        border-radius: 3px;
        margin-left: 10px;
    }

    hr {
        border: none;
        border-top: 1px solid var(--color-border-input);
    }
}

.inputButtonContainer {
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .brands-list .brands-grid ul {
        grid-template-columns: 1fr;
    }

    .slide-caption {
        left: 16px;

        h2 {
            font-size: var(--font-size-xl);
            line-height: 1.3;
        }
    }
}

@media (max-width: 575px) {
    header .logoMobile {
        font-size: var(--font-size-xl);
    }

    .textGrid ul {
        padding: 0;
    }

    .newsletter-form {
        max-width: 100%
    }

    .about-section {
        padding: 80px 0;
    }

    .about-left {
        h2 {
            font-size: var(--font-size-xxl);
        }

        h2 {
            font-size: var(--font-size-xxl);
        }
    }

    .stat-circle-svg {
        width: 90px;
        height: 90px;
    }

    .stat-percentage {
        font-size: var(--font-size-lg);
    }

    .stat-item {
        h3 {
            font-size: var(--font-size-sm);
        }

        p {
            font-size: var(--font-size-xs);
        }
    }
}

@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .bannerText {
        width: 85%;

        p {
            font-size: 15px;
        }
    }

    .services .services-list .services-list-item {
        flex: 100% !important;
    }
}

@media (max-width: 660px) {
    .textBlock div {
        display: block;
    }

    .blockImage {
        width: 90%;
    }

    .map-form {
        width: 90%;
    }
}

@media (max-width: 768px) {

    .bannerContainer {
        .bannerText {
            h1, .marginH1 {
                line-height: 7vw;

            }
        }
    }

    .brands-list .brands-grid ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .whatwedo-list {
        flex-direction: column !important;
        gap: 15px;
    }

    .whatwedo-list-item {
        flex: 0 0 100%;
        min-height: 100px;
        justify-content: center;
    }

    .slide-content {
        max-width: 50%;
    }

    .slider {
        height: 50vh;
    }

    .slide-caption {
        left: 20px;
        width: calc(100% - 40px);

        h2 {
            font-size: var(--font-size-xxl);
            line-height: 1.2;
            margin: 0 0 12px;
        }

        p {
            font-size: var(--font-size-sm);
            line-height: 1.5;
            margin: 0 0 16px;
        }

        .btn {
            padding: 10px 20px;
            font-size: var(--font-size-sm);
        }
    }

    .slider-btn {
        display: none
    }

    .sliderBtnMobileContainer {
        display: flex;
    }

    #carouselExampleAutoplaying {
        width: 100%;
    }

    .toggleContainer {
        width: 100%;
    }

    .textBlockMap {
        width: 100%;
    }

    .titleText {
        margin: 50px auto;

        h2 {
            font-size: var(--font-size-xl);
        }
    }
}

@media (max-width: 991px) {
    footer {
        .footer-top, .footer-bottom {
            flex-direction: column;
        }

        .footer-col {
            text-align: center;
        }
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .contactform,
    .contactmap {
        width: 100%;
        flex: none;
    }

    .brands-list .brands-grid ul {
        grid-template-columns: repeat(3, 1fr);
    }

    .whatwedo {
        flex-direction: column;
        gap: 30px;

        .whatwedo-main,
        .whatwedo-list {
            flex: none;
            width: 100%;
        }

        .whatwedo-list-item {
            flex: 0 0 calc(50% - 8px);
            min-height: 130px;
        }
    }

    header {
        .logoDesktop {
            display: none;
        }

        .logoMobile {
            display: flex;
            margin: 15px 0 15px 30px;
        }

        .nav-toggle {
            display: flex;
            align-items: center;
        }

        .fa-magnifying-glass {
            margin-left: 0;
        }

        .nav-close {
            display: block;
        }

        .headerContainer {
            justify-content: start;
        }
    }

    .map-form {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }

    .bannerText {
        width: 80% !important;

        p {
            font-size: var(--font-size-md);
        }
    }

    .service-content h3 {
        font-size: var(--font-size-sm);
        font-weight: 500;
        max-width: 95%;
    }
}

@media (max-width: 1100px) {
    .textReadability {
        padding: 20px 30px 40px;
    }

    .services .services-list .services-list-item {
        flex: calc(50% - 8px);
    }

    .four-card .four-card-cardlist .four-card-cardlist-item {
        flex: 48%
    }
}

@media (max-width: 1200px) {
    /* ========== Intro Section ========== */
    .intro {
        flex-direction: column;
        gap: 10px;

        .intro_img {
            width: 100%;
            order: 2;
        }

        .intro_img img {
            height: 380px;
        }

        .intro_content {
            width: 100%;
            order: 1;
        }

        .intro_content_text {
            max-height: 300px;
            overflow-y: auto;
            padding-right: 10px;
        }
    }
}

@media (max-width: 1300px) {
    .submenu {
        transform: translateX(0);
    }

    .header-inner {
        grid-template-columns:auto 1fr auto
    }

    .nav-toggle {
        display: block;
        order: 0
    }

    .header-logo {
        order: 1
    }

    header .nav-close {
        display: block;
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        font-size: var(--font-size-xxl);
        cursor: pointer;
        z-index: 1000;
    }

    .main-nav {
        position: absolute;
        top: 0;
        left: 0;
        background: var(--bg);
        box-shadow: 0 10px 24px var(--color-shadow);
        padding: 12px 0;
        z-index: 990;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        transition: 0.3s;
        margin-left: -100%;
    }

    .main-nav.active {
        margin-left: 0;
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-top: 50px;
    }

    .main-nav > ul > li {
        border-bottom: 1px solid #eee
    }

    .main-nav > ul > li > a {
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .has-submenu:hover > .submenu {
        display: none
    }

    .submenu {
        position: static;
        margin: 0;
        border: 0;
        box-shadow: none;
        padding: 0;
        display: none
    }

    .has-submenu.open > .submenu {
        display: block
    }

    .submenu {
        li {
            margin: 15px 0;

            a {
                padding: 8px 20px
            }
        }

        strong {
            padding: 8px 20px;
        }
    }

    .headerContainer {
        justify-content: space-between;
    }

    .gridContainer {
        display: block;
        margin: auto;
    }

    .textGrid {
        margin: auto;
        width: 100%;
    }

    .textGridCenter {
        width: fit-content;
    }

    .toggleContainerCenter {
        margin: auto;
    }

    .toggleContainerDesktop {
        display: none;
    }

    .toggleContainerMobile {
        display: block;
    }

    .gridContainerBack {
        padding: 50px 0;
    }
}

@media (max-width: 1350px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-left {
        flex: 0 0 auto;
        max-width: none;
        text-align: center;
    }

    .about-right {
        flex: 0 0 auto;
        grid-template-columns: 1fr;
        gap: 20px;

        .btn {
            margin: 0 auto;
        }
    }
}

@media (max-width: 1400px) {
    .blockImage {
        justify-content: center;
    }
}

@media (max-width: 1500px) {
    .bannerText {
        h1, .marginH1, p {
            /*color: white;*/
        }
    }

    .bannerImgContainer {
        img {
            opacity: 0.9;
            object-position: center center;
        }

        .bannerImg {
            margin-left: 0;
        }

        .textReadability {
            background: rgba(0, 0, 0, 0.5);
        }
    }

    .site-header {
        background-color: white;
        box-shadow: 0 6px 18px var(--color-shadow);
        border-bottom: 1px solid rgba(0, 0, 0, .06);
    }

    .toggleContainer {
        width: 50%;
    }

    .toggleContainerWidth {
        width: auto;
    }

    .toggleImage {
        width: 100%;
    }

    .textGrid {
        width: calc(50% - 50px);
    }
}





