*{
    margin: 0 0;
    padding: 0 auto;
    font-family: "poppins", sans-serif;
    box-sizing: border-box;
}

.header{
    position: fixed;
    top: 0;
    z-index: 200;
    display: flex;
    width: 100%;
    background-color: rgb(255, 255, 255);
    color: black;
    align-content: center;
    justify-content: space-between;
}

.left-nav{
    display: flex;
    margin: 20px 5px;
    align-items: center;
    left: 0;
}
.left-nav ul{
    display: flex;
    list-style: none;
    font-size: 13px;

    li{
        cursor: pointer;
        padding-left: 20px;
    }
}
.left-nav ul a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s ;
}

.left-nav ul input{
    border: 1px solid black;
    color: rgb(0, 0, 0);
}
.left-nav ul input:hover{
    background-color: rgb(98, 129, 98);
    border: 3px solid black;
}
.right-nav{
    display: flex;
    align-items: center;
    margin: 20px 20px 20px 20px;
}
.right-nav a{
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 13px;
    padding-left: 20px;
    transition: 0.3s;
}
.hamburger{
    display: none;
    align-items: center;
}

.logoImg{
    margin: 20px;
    text-align: center;
    align-items: center;
    
    img{
        height: 50px;
    }
}
.top-section{
    
    /* position: relative; */
    margin: 10px 0px;
    z-index: 1;
    height: 100vh;
    background-image: url("images/style\ iit\ hero\ website.jpg") ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    
    
}
.top-items{
    text-align: center;
}
.top-section h1{
    text-align: center;
    line-height: 55px;
    font-weight: 1000;
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding-top: 110px;
    padding-bottom: 5px;
    font-size: 55px;

    span{
        font-size: 30px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    /* animation: type 4s ease-in infinite;
    transform: translate(-0%, -50%); */
}
/* @keyframes type{
    0% { transform: (0deg); }
    100% {transform: rotate(360deg);}
} */
.top-section p{
    font-size: 14px;
    color: rgb(0, 0, 0);
    padding-top: 5px;
    padding-bottom: 30px;
    
}
.top-section a{
    margin-right: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    color: white;
    padding: 10px 40px;
    background-color:transparent;
    border: 2px solid black;
    border-radius: 50px;
    transition: .3s ease;
}
.top-section a:hover{
    background-color: rgb(190, 0, 0);
    border: 2px solid rgb(190, 0, 0);
}
.featured-dress{
    margin: 60px 30px 30px 60px;
    font-size: 27px;
    font-weight: 500;
}
.overlay-section{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin-top: 40px;
    margin-left: 0px;
    gap: 20px;
}
.shop-image{
    height: 300px;
    width: 270px;
    margin-bottom: 90px;
}
.shop-image img{
    height: 100%;
    width: 100%;
    margin-bottom: 15px;
}
.shop-container{
    margin-bottom: 40px;
}
.shop-link{
    color: black;
    text-decoration: none;
}

.shop-image h3{
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
}
.shop-image p{
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}
.shop-image button{

    font-size: 15px;
    width: 100%;
    padding: 16px 10px;
    transition: .3s ease;
}
.shop-image button:hover{
    background-color: #9c9c9c;
}
.container{
    margin: 60px 30px;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.container a{
    color: rgb(255, 255, 255);
    padding: 10px 30px;
    border-radius: 20px;
    background-color: black;
    text-decoration: none;
    transition: .3s;
}
.container a:hover{
    font-size: 18px;
    text-decoration: underline;
}
.discover{
    width: 100%;
    text-align: center;
}
.discover h2{
    text-align: center;
    font-size: 35px;
    margin-bottom: 5px;
    margin-left: 30px;
    font-weight: 500;
}
.discover p{
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
}
.collections{
    display: flex;
    flex-wrap: wrap;
    background-color: #eeeeee;
    padding-top: 50px ;
    padding-bottom: 50px;
}
.collection-image{
    width: 300px;
    height: 350px;
    margin-left: 30px;
    position: relative;
    margin-bottom: 30px;
}
.collection-image img{
    width: 100%;
    height: 100%;
}
.collection-image h3{
    position: absolute;
    top: 20%;
    margin-left: 20px;
    font-size: 27px;
    font-weight: 400;
    color: white;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.466);
    transition: background 0.3s ease;

}
.collection-image:hover .overlay{
    background: rgba(0,0,0,0.7);
}
.collection-image p{
    position: absolute;
    top: 35%;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
    font-size: 13px;
    color: white;
    transform: translateY(80px);
    transition: opacity .5s ease, transform .5s ease ;
    opacity: 0;
}
.collection-image:hover p{
    transform: translateY(0);
    opacity: 1;
}
.featured-products{
    display: flex;
    margin-top: 40px;
    margin-left: 30px;
    text-align: center;
    justify-content: space-around;
}
.featured-container{
    position: relative;
}
.featured-image{
    height: 350px;
    width: 250px;
    margin-bottom: 30px;
}
.featured-image img{
    width: 100%;
    height: 100%;
    
}

.featured-container h3{
    position: absolute;
    top: 40%;
    left: 25%;
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: white;
}
.featured-text{
    text-align: center;
}
.featured-text h2{
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 30px;
}
.featured-text a{
    text-decoration: none;
    color: white;
    padding: 10px;
    background-color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    justify-content: center;
}
.featured-text a:hover{
    text-decoration: underline;
}

.slideshow-container {
    position: relative;
    width: 100%;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 80px;
    justify-content: center;
    align-items: center;
    text-align: center;
    
  }
  
  .slide {
    display: none;
    text-align: center;
    /* height: 500px;
    width: 500px; */
    /* margin-left: 25%; */
  }
  
  .slide img {
    height: 500px;
    width: 400px;
  }
  
  .text {
    font-weight: 700;
    font-size: 25px;
    position: absolute;
    top: 50%;
    left: 45%;
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    box-shadow: 2px 2px 5px rgb(0, 0, 0);
  }
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    font-size: 24px;
    color: white;
    border: none;
    border-radius: 30px;
    background-color: black;
    transition: 0.3s;
    transform: translateY(-50%);
  }
  
  .prev:hover, .next:hover {
    color: rgb(98, 129, 98);
    background-color: rgb(63, 82, 63);
  }
  
  .prev {
    left: 20%;
  }
  
  .next {
    right: 20%;
  }
.aboutus-item{
    text-align: left;
    padding: 60px 40px;
    background-color: #eeeeee;
}
.aboutus-item h3{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 400;
    padding-bottom: 30px;
}
.aboutus-item p{
    font-size: 13px;
    line-height: 25px;
    padding-bottom: 30px;
}
.aboutus-item div{
    font-size: 20px;
}
.aboutus-item div span{
    text-decoration: underline;
    cursor: pointer;
}
.newsletter{
    padding: 60px 40px;
    text-align: center;
    

    h3{
        font-size: 23px;
        font-weight: 400;
        margin-bottom: 25px;
    }
    p{
        margin: 0 20%;
        font-size: 14px;
        line-height: 25px;
        color: #3b3b3b;
        padding-bottom: 20px;
    }

    form{
        input{
            padding: 15px ;
            color: black;
            border: none;
            border-bottom: 1px solid black;
            width: 300px;
        }
        input:focus{
            border-bottom: 1px solid black;
            outline: none;
        }
        button{
            font-size: 16px;
            font-family: 'Courier New', Courier, monospace;
            background-color: black;
            color: white;
            padding: 15px 35px;
            border: none;
            cursor: pointer;
        }
    }
}
footer{
    text-align: center;
    background-color: #ddd;
    padding: 30px;

    .footer-cont{
        display: flex;
        justify-content: space-around;
    }
    .footer-logo{
        margin-left: 80px;
        img{
            height: 150px;
        }
    }
    .footer-links{
        display: flex;
        justify-content: center;
        padding: 30px;
        gap: 90px;

        .quick-links{
            text-align: left;
            p{
                font-size: 25px;
                margin-bottom: 25px;
            }
            ul{
                list-style-type: none;
                padding: 0;

                li{
                    margin-bottom: 20px;
                    font-size: 14px;

                    a{
                        color: #3b3b3b;
                        text-decoration: none;
                        transition: .3s ease;
                    }
                    a:hover{
                        color: orange;
                    }
                }
            }
        }
    }
}




.cart {
    font-family: Arial, sans-serif;
    margin: 0px;
    gap: 0px;
    position: absolute;
    width: 45%;
    top: 0;
    right: 0px;
    height: auto;
    background-color: white;
    padding-bottom: 50px;
    display: none;
    overflow: hidden;
              
}
.cart img{
    height: 30px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
.cart-line{
    height: 1px;
    width: 100%;
    background-color: rgb(82, 82, 82);
    margin-bottom: 30px;


}
.cart h1{
    color: rgb(82, 82, 82);
    margin-bottom: 10px;
    padding: 20px;
    margin-top: 5px;
    margin-left: 5px;
    font-size: 20px;
}

table {
    margin: 10px;
    border-collapse: collapse;
    margin-bottom: 10px;
  }
  .cart h3{
    color: rgb(82, 82, 82);
    margin-top: 20vh;
    margin-left: 10px;
    margin-bottom: 30px;
  }
  .cart a{
    text-align: center;
    text-decoration: none;
    padding: 13px 90px 13px 13px;
    border: 1px solid rgb(82, 82, 82);
    color: rgb(82, 82, 82);
    font-weight: bold;
    width: 100%;
    margin: 20px;
    transition: .3s;
  }
  .cart a:hover{
    color: white;
    background-color: black;
  }
  .add-to-cart {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
  }
  
  .add-to-cart:hover {
    background-color: #218838;
  }
  
table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
  }
  
table th {
    background-color: #f8f9fa;
  }
  
  button.remove {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button.remove:hover {
    background-color: #c82333;
  }




@media screen and (max-width: 855px) {
   
    
    .header{
        display: flex;
        left: 0;
        width: 100%;
        justify-content: space-between;
        align-content: center;
    }
    .hamburger{
        align-items: center;
        margin: 30px;
        display: block;
        cursor: pointer;
        height: 100%;
        transition: transform .5s ease-in-out;
    }
    .bar{
        width: 35px;
        height: 2px;
        background-color: #000000;
        margin-bottom: 6px;
        border-radius: 10px;
        transition: transform .5s ease-in-out;
    }
    .hamburger.change .bar1{
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-5px, 6px);

    }
    .hamburger.change .bar2{
        opacity: 0;
    }
    .hamburger.change .bar3{
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .left-nav{
        height: 100vh;
        width: 70%;
        position: fixed;
        align-items: start;
        background-color: #fff;
        padding: 20px;
        display: flex;
        margin-top: 60px;
        left: -1000px;
        top:0;
        margin-left: 0;
        margin-right: 0;
        align-items: top;
        transition: left .5s ease-in-out;
        z-index: 30;
    }
     .left-nav.visible{
        left: 0;
        text-align: left;
    }
    .dark-background{
        right: 1000px;
        position: absolute;
        width: 100%;
        height: 100vh;
        top: 60px;
        background-color: rgba(0, 0, 0, 0.76);
        opacity: 0;
        transition: opacity .5s ease-in-out;
        z-index: 20;
    }
    .dark-background.visible{
        right: 0;
        opacity: 1;
    }
    .left-nav ul{
        margin-top: 20px;
        padding-left: 0;
        display: block;
        list-style: none;
        font-size: 16px;
        margin-right: 3px;
    }
    .left-nav ul li{
        margin-bottom: 30px;
    }
    .left-nav ul a{
        margin-left: 0px;
        color: rgb(0, 0, 0);
        text-decoration: none;
        transition: 0.3s ;
    }
    .left-nav ul input{
        border: 1px solid black;
        color: rgb(0, 0, 0);
    }
    .left-nav ul input:hover{
        background-color: rgb(98, 129, 98);
        border: 3px solid black;
    }
    .right-nav{
        display: flex;
        align-items: center;
        margin: 30px;
        right: 0;
    }
    .right-nav a{
        color: rgb(0, 0, 0);
        text-decoration: none;
        font-size: 12px;
        padding-left: 10px;
        transition: 0.3s;
    }
    .right-nav a:hover{
        font-size: 15px;
    }
    .logoImg{
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-left: 10%;
    }
    .top-section{
        /* position: relative; */
        z-index: 1;
        height: 100vh;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        text-align: center;
    }
    .top-items{
        margin-left: 0;
    }
    .top-section h1{
        text-align: center;
        color: white;
        line-height: 27px;
        padding-top: 90;
        padding-bottom: 0px;
        font-size: 28px;
        margin-left: 20px;
        margin-right: 20px;

        span{
            font-size: 23px;
        }
    }
    .top-section p{
        text-align: center;
        color: white;
        font-size: 12px;
        padding-top: 10px;
        padding-bottom: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .top-section a{
        text-align: center;
        text-decoration: none;
        font-size: 12px;
        color: white;
        padding: 8px 20px;
        transition: .3s ease;
        margin-right: 0;
    }



    .shop-image{
        height: 220px;
        width: 200px;
        margin-bottom: 90px;
        margin-right: 5px;
    }
    .shop-image img{
        height: 100%;
        width: 100%;
    }
    .discover h2{
        text-align: left;
        font-size: 25px;
        margin-bottom: 20px;
        margin-left: 30px;
        font-weight: 400;
    }
    .discover p{
        text-align: left;
        margin-left: 30px;
        font-size: 13px;
        margin-right: 20px;
    }
    .collections{
    justify-content: center;
    align-items: center;
    
    }
    .collection-image{
    width: 200px;
    height: 250px;
    
    position: relative;
    margin-bottom: 30px;
    }
    .collection-image h3{
        position: absolute;
        top: 10%;
        margin-left: 10px;
        font-size: 20px;
        color: white;
    }
    
    .collection-image p{
        position: absolute;
        top: 30%;
        margin-left: 10px;
        margin-right: 20px;
        text-align: left;
        font-size: 13px;
        color: white;
        transform: translateY(60px);
        transition: opacity .5s ease, transform .5s ease ;
    }

    .slideshow-container {
        position: relative;
        width: 100%;
        margin-top: 30px;
        overflow: hidden;
        border-radius: 10px;
        margin-bottom: 80px;
        justify-content: center;
        align-items: center;
        text-align: center;
        
      }
      
      .slide {
        display: none;
        text-align: center;
        /* height: 500px;
        width: 500px; */
        /* margin-left: 25%; */
      }
      
      .slide img {
        height: 400px;
        width: 300px;
      }
      
      .text {
        font-weight: 700;
        font-size: 25px;
        position: absolute;
        text-align: center;
        top: 50%;
        left: 40%;
        color: white;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
      }
      
      .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        padding: 16px;
        font-size: 24px;
        color: white;
        border: none;
        border-radius: 30px;
        background-color: black;
        transition: 0.3s;
        transform: translateY(-50%);
      }
      
      .prev:hover, .next:hover {
        color: rgb(98, 129, 98);
        background-color: rgb(63, 82, 63);
      }
      
      .prev {
        left: 10px;
      }
      
      .next {
        right: 10px;
      }
      .aboutus-item div{
        font-size: 15px;
    }
    .newsletter p{
        margin: 0px;
        font-size: 13px;
        line-height: 20px;
    }
    footer{

        .footer-cont{
            flex-direction: column;
        }
        .footer-logo{
            margin-left: 0;
            img{
                height: 120px;
            }
        }
    .footer-links{
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    }




    .cart {
    
        font-family: Arial, sans-serif;
        gap: 50px;
        position: absolute;
        width: 80%;
        background-color: white;
        padding-bottom: 50px;
                  
    }
    .cart h1{
        margin-top: 5px;
        margin-left: 5px;
    }
    
    table {
        
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 10px;
      }
      .cart h3{
        font-size: 18px;
        margin-top: 30px;
        margin-left: 10px;
        margin-bottom: 30px;
      }
      .cart a:hover{
        color: rgb(98, 129, 98);
      }
      
    table th, table td {
        border: 1px solid #adadad;
        padding: 10px;
        text-align: center;
      }
      
    table th {
        background-color: #f8f9fa;
      }
      
      button.remove {
        background-color: #dc3545;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
      }
    


}





@media screen and (max-width: 500px){
    
    input{
        display: none;
    }
    .top-section{
        text-align: left;
    }
    .top-section h1{
        text-align: left;
        color: white;
        line-height: 30px;
        font-size: 28px;
        padding-top: 100px;

        span{
            font-size: 23px;
        }
    }
    .top-section p{
        text-align: left;
        color: white;
        font-size: 11px;
        padding-top: 10px;
        padding-bottom: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .top-link{
        text-align: left;
        margin-left: 20px;
    }
    .top-section a{
        text-align: left;
        text-decoration: none;
        font-size: 12px;
        color: white;
        padding: 8px 20px;
        transition: .3s ease;
    }
    .featured-dress{
        margin-top: 60px;
        margin-left: 15px;
        font-weight: 400;
        font-size: 20px;
    }
    .overlay-section{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        margin-top: 30px;
        margin-right: 10px;
        margin-left: 10px;
        flex-wrap: wrap;
    }
    .shop-image{
        height: 180px;
        width: 150px;
        margin-bottom: 100px;
        margin-right: 5px;
    }
    .shop-image img{
        height: 100%;
        width: 100%;
    }
    .shop-image h3{
        font-size: 13px;
    }
    .collections{
        justify-content: center;
    }
    .collection-image{
        width: 160px;
        height: 220px;
        margin-left: 10px;
        margin-right: 10px;
        position: relative;
        margin-bottom: 30px;
    }
    .collection-image h3{
        font-size: 18px;
    }
    .collection-image p{
        font-size: 11px;
    }
    .featured-products{
        justify-content: space-around;
    }
    .featured-image{
        height: 350px;
        width: 200px;
        margin-bottom: 30px;
    }
    .featured-image img{
        width: 100%;
        height: 100%;
    }
    
    .featured-container h3{
        position: absolute;
        top: 40%;
        left: 25%;
        font-size: 20px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        color: white;
    }
    
    .featured-text{
        text-align: center;
    }
    .featured-text h2{
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 30px;
    }
    .featured-text a{
        text-decoration: none;
        color: white;
        padding: 8px;
        background-color: black;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        text-align: center;
        justify-content: center;
    }
    .newsletter{
        
        form{
            display: flex;
            justify-content: center;

            input{
                display: flex;
                width: 200px;
            }
            button{
                padding: 10px 15px;
            }
        }
    }
    .cart {
    
        font-family: Arial, sans-serif;
         margin: 0px;
        gap: 50px;
        position: absolute;
        width: 90%;
        top: 60px;
        right: 0px;
        padding-left: 0;
        margin-left: 0;
        background-color: white;
        padding-bottom: 50px;
                  
    }
    .cart h1{
        font-size: 23px;
        margin-bottom: 20px;
        margin-top: 5px;
        margin-left: 5px;
    }
    
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 10px;
      }
      .cart h3{
        font-size: 16px;
        margin-top: 50px;
        margin-left: 10px;
        margin-bottom: 30px;
      }
      .cart a{
        text-align: center;
        text-decoration: none;
        transition: .3s;
        font-size: 14px;
      }
      .cart a:hover{
        color: rgb(98, 129, 98);
      }
      
    table th, table td {
        font-size: 12px;
        border: 1px solid #adadad;
        padding: 10px 5px;
        text-align: center;
      }
      
    table th {
        background-color: #f8f9fa;
      }
      
      button.remove {
        background-color: #dc3545;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
      }
}