*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.myntra_logo{
    width: 60px;
    height: 40px;
   
}
.logo_container{
    margin-left:4%;
}
.action_bar{
    margin-right:4%;

}
.nav_bar{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
   
    min-width: 400px;
}

.nav_bar a{
    font-size: 15px;
    padding: 30px 0;
    letter-spacing: .3px;
    color:rgb(74, 22, 22);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}
.nav_bar a:hover{
    border-bottom: 3px solid #f54e77;
}
.nav_bar a sup{
    color: red;
    font-weight: bolder;
    font-size: 10px;
}
header{
    display:flex;
    justify-content: space-between;
    background-color: #ffffff;
    align-items: center;
    height: 80px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border-bottom: 1px solid #b6b1b1;
}

.search_bar{
    height:40px;
    width: 30%;
    min-width: 200px;
    display: flex;
    align-items: center;
    
}
.search_icon{
    box-sizing: content-box;
    height: 20px;
    padding: 10px;
    background-color: rgb(243, 242, 242);
    color: rgb(95, 90, 90);
    border-radius: 4px 0 0 4px;

}
.search_input{
    background-color: rgb(243, 242, 242);
    color:rgb(95, 90, 90);
    flex-grow: 1;
    height: 40px;
    border-radius: 0px;
     border-radius: 0 4px 4px 0 ;
    border: none;
}
.action_bar{
    display: flex;
    min-width: 200px;
    justify-content: space-evenly;

}
.action_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
/* banner css*/
.banner_image{
    width: 100%;
}
.banner_container{
    margin: 30px 0;
    padding: 20px;
    display: flex;
    

}
#add{
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.offer_video{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    
}
.offer_video video {
    width: 95%;
}


.category_heading{
    text-transform: uppercase;
    color:#3e4152;
    letter-spacing: .15em;
    font-size: 1.5em; 
    margin: 50px 0 10px 30px;
    font-weight: 700;

}
.category_items{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
   
}
.sale_item{
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    width: 200px;
  
    cursor: pointer;
}
.category_item{
    width: 200px;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    justify-content: space-evenly;
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.footer_container{
    padding:30px 0px 40px 0px;
    background-color: #eeeff1;
    display: flex;
    justify-content: space-evenly;


}
.footer_column h3{
    color:#4e5161;
    font-size:14px;
    margin-bottom: 25px;
}
.footer_column{
    display: flex;
    flex-direction: column;
}
.footer_column a{
    font-size: 15px;
    padding-bottom: 5px ;
    text-decoration: none;
    color: #5e5e5e;
}
.copyright{
    color: #5e5e5e;
    text-align: center;
    padding: 15px;
}