    
    /* =========================================
   HERO RESPONSIVE
========================================= */

.hero {
    overflow: hidden;
}

.hero .container {
    position: relative;
}

.hero .row {
    min-height: 500px;
}

/* Hero Text */
.hero .intro-excerpt {
    position: relative;
    z-index: 2;
}

.hero .intro-excerpt h1 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero .intro-excerpt p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 550px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-buttons .btn {
    white-space: nowrap;
}

/* Hero Image */
.hero-img-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    display: block;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1200px) {

    .hero .row {
        min-height: 560px;
    }

    .hero-product-image {
        max-width: 680px;
    }

}


/* =========================================
   LAPTOP / WINDOWS
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .hero .row {
        min-height: 500px;
    }

    .hero .intro-excerpt h1 {
        font-size: 48px;
    }

    .hero .intro-excerpt p {
        font-size: 15px;
    }

    .hero-product-image {
        max-width: 550px;
    }

}


/* =========================================
   TABLET LANDSCAPE
========================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .hero .row {
        min-height: 450px;
    }

    .hero .intro-excerpt h1 {
        font-size: 40px;
    }

    .hero .intro-excerpt p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-product-image {
        max-width: 430px;
    }

}


/* =========================================
   TABLET PORTRAIT
========================================= */

@media (min-width: 576px) and (max-width: 767px) {

    .hero {
        padding: 60px 0;
    }

    .hero .row {
        min-height: auto;
    }

    .hero .intro-excerpt {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero .intro-excerpt h1 {
        font-size: 42px;
    }

    .hero .intro-excerpt p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-product-image {
        max-width: 450px;
        margin: 0 auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .hero {
        padding: 45px 0 35px;
    }

    .hero .row {
        min-height: auto;
    }

    .hero .intro-excerpt {
        text-align: center;
        margin-bottom: 35px;
        padding: 0 5px;
    }

    .hero .intro-excerpt h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .hero .intro-excerpt h1 span {
        font-size: 31px;
    }

    .hero .intro-excerpt p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px !important;
    }

    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 10px 16px;
        margin-right: 0 !important;
    }

    .hero-img-wrap {
        margin-top: 10px;
        padding: 0 10px;
    }

    .hero-product-image {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .hero {
        margin-top: 20px;
        padding: 35px 0 30px;
    }

    .hero .intro-excerpt h1 {
        font-size: 29px;
    }

    .hero .intro-excerpt h1 span {
        font-size: 27px;
    }

    .hero .intro-excerpt p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 230px;
    }

    .hero-product-image {
        max-width: 320px;
    }

}