*{
    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:white;
    height: 80px;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #b6b1b1;
}
.myntra_home{
    height: 46px;
}
.logo_container{
    margin-left: 4%;
    position: relative;
    animation-name: ghumakkad;
            animation-duration: 3s;
            animation-timing-function: ease-in-out;
            animation-delay: 0s;
            animation-iteration-count: infinite;
            animation-direction: alternate;
        }
        @keyframes ghumakkad {
            from{left: 10px;}
            to{left: 200px;}
            
        }


.nav_bar {
    display: flex;
    min-width: 500px;
    justify-content: space-between;
}

.nav_bar a{
    font-size: 14px;
    letter-spacing: .3px;
    color: #282c3f;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 30px 0;
}
.nav_bar a:hover {
    border-bottom: 5px solid blue;
}
.nav_bar a sup {
    color: red;
    font-size: 10px;
}

.search_bar{
    height: 40px;
    min-width: 400;
    display: flex;
    align-items: center;

}
.search_icon {
    box-sizing: content-box;
    height: 20px;
    padding: 5px;

    background-color: #f5f5f6;
    color: #282c3f;
    font-weight: 300;
    border-radius: 4px 0 0 4px;
 

}
 .search_input{
    color: #696e79;
    background-color: #f5f5f6;
    flex-grow: 1;
    height: 40px;
    border: 0;
    border-radius: 0 4px 4px 0;
 }

 /* Main section*/
 .banner_image{
    width: 100%;
    
 }

.category_heading{
    text-transform: uppercase;
    color: #3e4152;
    letter-spacing: .15em;
    font-size: 1.8em;
    margin: 50px 0 10px 30px;
    font-weight: 700;
}
.category_items{
    display: flex;
    flex-wrap: wrap;
    width: 257;
    margin: 5px;
    padding: 5px;
    justify-content: space-between;
}

.footer_container {
    padding: 30px 0px 40px 0px;
    background-color: #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{
    color: #696b79;
    display: block;
    font-size: 15px;
    text-decoration: none;
    padding-bottom: 5px;
}