*{
    margin: 0;
    padding: 0;
    font-family: Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

header{
    display: flex;
    background-color: #ffffff;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #b7b9bd;
}

.myntra-logo{
    height: 45px;
    width: 60px;
}

.logo-container{
    margin-left: 4%;
}

.action-bar{
    margin-right: 2%;
}

.nav-bar{
    display: flex;
    justify-content: space-evenly;
    min-width: 450px;
    width: 600px;
}

.nav-bar a{
    font-size: 14px;
    font-weight: 700;
    color: #282c3f;
    letter-spacing: .3px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 29px 0;
    align-items: center;
    box-sizing: content-box;
    border-bottom: 3px solid transparent;
}

.nav-bar a:hover{
    border-bottom: 3px solid #ff3f6c;
}

.nav-bar a sup{
    color: #ff3f6c;
    font-size: 10px;
    font-weight: 700;

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

.search-icon{   
    box-sizing: content-box;
    height: 20px;
    padding: 10px;
    background-color: #f5f5f6;
    color: #282c3f;
    font-weight: 200px;
    border-radius: 4px 0 0 4px;
}

.search-input{
    color: #696e79;
    flex-grow: 1;
    height: 40px;
    border: none;
    background-color: #f5f5f6;
    border-radius: 0 4px 4px 0;
}

/*  to remove the outline of search bar on click*/
.search-input:focus{
    outline: none;
}



.action-bar{
    display: flex;
    font-size: 12px;
    font-weight: 600;
    min-width: 200px;
    justify-content: space-evenly;
    padding-top:20px
}

.action-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: black;
}


/* Main Section */

.banner-container{
    margin: 40px 0;
}
.banner-img{
    width: 100%;

}

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


.category-items, .items-container{
    
    margin: 50px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.category-img{
    width: 250px;
    margin: 10px;
}

/* Footer */

.footer-container{
    padding: 20px 0 40px 0;
    background-color: #FAFBFC;
    display: flex;
    justify-content: space-around;

}

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

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

.footer-column h3{
    color: #282c3f;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.copyright{
    color: #94969f;
    text-align: center;
}

.footer-bottom{
    font-size: 15px;
    color: #94969f;
    display: flex;
    text-align: center;
    justify-content: space-around;
    padding: 15px;
}

.footer-bottom-left-content{
    font-weight: 400;
}

.footer-bottom-left-content a{
    text-decoration: none;
    font-weight: 700;
    color: #526cd0;
}