*{
    margin: 0;
    padding: 0;
    font-family: Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}
header{
    display: flex;
    justify-content: space-between;
background-color: #ffffff;
    height: 80px;
    align-items: center;
    box-sizing: content-box;
 border-bottom: 1px solid #868084;
   
}
.myntra_home{
    height: 36px;
    width: 53px;
}
.logo_container{
    margin-left: 3%;
}
.action{
    margin-right: 4%;
}
.nav_bar{
    min-width: 600px;
    display: flex;
    justify-content: space-between;

}
.nav_bar a{
    font-size: 13px;
    letter-spacing: .2px;
    color: #2a2c3f;
font-weight: 700;
text-transform: uppercase;
    text-decoration: none;
padding: 28px 0;
  border-bottom: 4px solid #ffffff;
}

.nav_bar a:hover{
  border-bottom: 4px solid #f54e77;
}

.nav_bar a sup{
    color: #ff3f6c;
    font-size: 10px;
}





.search_bar{
height: 40px;
min-width: 200px;
width: 30%;
display: flex;
align-items: center;
}

.search_icon{
    box-sizing: content-box;
height: 20px;
padding: 10px;
color: #282c3f;
  background-color: #f5f5f6;
  font-weight:300;
  border-radius: 6px 0 0 6px;
}

.search_input{
    color: #696e79;
    background-color: #f5f5f6;
    height: 40px;
    border: 0;
    border-radius: 0 6px 6px 0;
}

.action_bar{
    display: flex;
    min-width: 200PX;
    justify-content: space-around;
}

.action_container{
    display: flex;
    flex-direction: column;
    
}
.action_name{
    font-size: 11px;
    font-weight: bolder;
}


/* Main section */
.banner_container{
    margin: 40px 0;
}

.banner_image{
    width: 100%;
}

.category_heading{
   text-transform: uppercase;
   color: #3e4152;
   letter-spacing: .15em;
   font-size: 1.8em;
   margin: 50px 0 10px 30px;
   max-height: 5em;
   font-weight: 700;
}


.category_items{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}


.sale_item{
height: 250px;
}


.footer_container{
    padding: 30px 0px  40px 0px;
    background: #FaFbFc;
    display: flex;
    justify-content: space-evenly;
}

.footer_column{
    display: flex;
    flex-direction: column;
}

.footer_column h3{
    color: #282c3f;
    font-size: 14px;
    margin-bottom: 25px;
}


.footer_column a{
    text-decoration: none;
    color: #696b79;
    font-size: 15px;
    padding-bottom: 5px;
}



.store-badges {
    display: flex;
    flex-direction: row;
    gap: 12px;        /* dono ke beech thoda gap */
    margin-top: 10px;
}

#googleplay_img {
    width: 140px;
}

#app_img {
    width: 120px;
}

.copyright{
    color: #94969f;
    text-align: end;
    padding: 15px;
}

.icon_container {
    display: flex;         /* make items align in a row */
    gap: 12px;             /* spacing between icons */
    margin-top: 6px;      /* some spacing from the heading */
}

.icon_container .icon {
    width: 30px;           /* icon size */
    height: 30px;
   }



