@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
body
{
    transition: all 0.5s ease;
   scroll-behavior: smooth;
   transition-behavior: inherit;
}
.navLogo
{
    width: 100%;
    max-width: 1250px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navLogo img
{
    width: 200px;
}
.navbar
{
    width: 100%;
    max-width: 1250px;
    padding: 20px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
}
.navList
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.link
{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
}
.bag-icon
{
    font-size: 25px;
}
.link
{
    position: relative;
}
.link span
{
    position: absolute;
    background: white;
    color: black;
    padding: 1px 7px;
    border-radius: 50%;
    top: 0;
    right: -20px;
}

/* ----------------- Website Banner Section ------------------- */
.banner-container
{
    width: 100%;
    height: 700px;
    background-image:linear-gradient(to right, #00000045,#00000074), url('./img/banner-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    top: 0;
    position: absolute;
    z-index: -1;
}
.banner-inner-cont
{
    width: 60%;
    height: 500px;
    /* border: 1px solid blue; */
    position: absolute;
    top: 230px;
    left: 90px;
}

/* ------------------ Website Content Section ------------------------ */
.content-title
{
    width: 100%;
    max-width: 1250px;

}

/* ----------------- Website Cards Section ------------------ */
.bg:hover + .add-to-cart
{
 opacity: 1;
}

/* --------------- Website Banner 2 Container ------------------- */
.banner-2-Cont
{
    width: 100%;
    height: 450px;
    display: flex;
    flex-wrap: wrap;

}
/* ------------------------ Sidebar Section --------------------------- */
.sidebar
{
    right: -40%;
    transition: all 0.5s ease;
    /* right: 0; */
}
.sidebar.active
{
    right: -0%;
}


/* ------------------------------ Card Qunatity Section -------------------------------------------- */
.card-qunatity
{
    display: flex;
}
#decrement
{
    width: 38px;
    height: 25px;
    background: rgba(174, 174, 174, 0.742);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
#decrement:hover
{
    background: rgba(135, 135, 135, 0.742);
}
.number
{
    padding: 0px 5px;
    background: white;
}
#increment
{
    width: 38px;
    height: 25px;
    background: rgba(174, 174, 174, 0.742);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}
#increment:hover
{
    background: rgba(135, 135, 135, 0.742);
}












@media (max-width:767px) {
    .navLogo
    {
        justify-content: space-between;
        padding: 0 20px;       
    }
    .navbar
    {
        border: none;
    }
    .navLogo img
    {
        width: 170px;
        z-index: 12;
    }
    .navList
    {
      position: absolute;
      flex-direction: column;
      width: 100%;
      height: 100vh;
      border: 1px solid red;
      top: 0;
      left: 0;
      background: red;
      transform: translateX(-100%);
      transition: all 0.5s ease;
      z-index: 10;
    }
    #hamburger i
    {
        z-index: 1;
    }
    .navList.openHam
    {
        transform: translateX(0%);
    }
    .banner-container
    {
        z-index: -2;
    }
    .banner-inner-cont
    {
        width: 100%;
        padding-left: 20px;
        left: 0;
    }
}