html{
    scroll-behavior:smooth;
}
/* DROPDOWN FIX */

.classynav ul li .dropdown {

    width: 250px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

}

.classynav ul li .dropdown li {

    display: flex;
    align-items: center;

}

.classynav ul li .dropdown li a {

    width: 100%;
    height: 55px;

    display: flex;
    align-items: center;

    padding: 0 25px !important;

    font-size: 17px !important;
    font-weight: 600 !important;

    color: #111 !important;

    line-height: normal !important;

    transition: 0.3s;

}

.classynav ul li .dropdown li a:hover {

    background: #000;
    color: #fff !important;
    padding-left: 30px !important;

}
.product-img img{
    width:100%;
    height:clamp(280px,40vw,420px);
    object-fit:cover;
    border-radius:10px;
    transition:0.3s;
}
.product-img img:hover{
    transform:scale(1.03);
}

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

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

    /* Navbar */
    .navbar,
    nav {
        flex-direction: column;
        padding: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Hero Section */
    .hero-content{
    text-align:center;
    padding:40px 20px;
}

    .hero h1,
    .banner h1 {
        font-size: 32px;
    }

    /* Products */
    .products,
    .product-container,
    .card-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card,
    .card {
        width: 100%;
    }

    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Footer */
    footer {
        text-align: center;
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    /* General */
    body {
        overflow-x: hidden;
    }
}
/* =========================
   NAVBAR
========================= */
.classy-menu{
    width:100%;
}
.classynav ul li .dropdown{
    width:90%;
    left:5%;
}
.custom-nav{
    display:flex;
    align-items:center;
    gap:45px;
    margin-left:40px;
    font-size:22px;
    font-weight:700;
}
.classynav{
    width:100%;
}
.classy-navbar-toggler .navbarToggler span{
    background-color:#000;
}


/* =========================
   GLOBAL RESPONSIVE
========================= */

img{
    max-width:100%;
    height:auto;
}

body{
    overflow-x:hidden;
}

.essence-btn{
    padding:0 25px;
    min-width:auto;
}

/* =========================
   HERO SECTION
========================= */

.welcome_area{
    min-height:700px;
}

/* =========================
   FOOTER FIX
========================= */

.footer-about{
    margin-bottom:30px;
    color:#b5aec4;
    line-height:2;
}

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

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

    /* NAVBAR */

    /* MOBILE HEADER FIX */

.classy-navbar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 15px 20px !important;
    box-sizing: border-box;
}

.nav-brand {
    flex-shrink: 0;
    margin-right: auto;
}

.nav-brand img {
    width: 85px;
    height: auto;
    display: block;
}
.classy-navbar-toggler {
    display: block !important;
    flex-shrink: 0;
    margin-left: 16px !important;
    cursor: pointer;
    z-index: 999;
    position: static !important;
}

.navbarToggler {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.navbarToggler span {
    width: 25px;
    height: 3px;
    background: #000 !important;
    display: block;
    border-radius: 2px;
}

/* Mobile Menu */

.classy-menu{
    width:100%;
}

/* Mobile Nav Links */

.custom-nav{
    display:block;
    margin-left:0;
    padding:20px 0;
}

.custom-nav li{
    margin-bottom:10px;
    text-align:center;
}

    .custom-nav li a{
        font-size:18px !important;
    }

    /* HERO SECTION */

    .welcome_area{
        min-height:450px !important;
        background-position:center !important;
    }

    .hero-content{
        text-align:center;
        padding:0 20px;
    }

    .hero-content h2{
    font-size:clamp(32px,6vw,60px) !important;
}

    .hero-content h6{
        font-size:18px !important;
    }

    .essence-btn{
    height:45px;
    line-height:45px;
    font-size:14px;
    padding:0 20px;
    }

    .section-padding-80{
    padding-top:50px;
    padding-bottom:50px;

    /* BANNER */

    section h1{
        font-size:32px !important;
    }

    /* PRODUCTS */

    .product-img img{
        height:320px;
    }

    .single-product-wrapper{
        margin-bottom:30px;
    }

    /* FOOTER */

    .footer-about{
        margin-top:30px !important;
        text-align:center;
    }

    .footer_social_area a{
    margin-right:15px;
    display:inline-block;
}

    .single_widget_area{
        text-align:center;
    }

    /* CONTACT PAGE */

    iframe{
        height:300px !important;
    }

}
   }
/* =========================
   TABLET RESPONSIVE
========================= */

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

    .custom-nav{
        gap:20px;
        margin-left:10px;
    }

    .hero-content h2{
        font-size:48px !important;
    }

    .product-img img{
        height:350px;
    }

}
*{
    transition:0.3s ease;
}