* {
    margin: 0;
    padding: 0;
    font-family: Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

header {
    display: flex;
    height: 80px;
    
    align-items: center;
    justify-content: space-between;
}

.myntra_home {
    height: 45px;
    
}

.logo_container {
    margin-left: 3%;
}

.navbar {
   
    min-width: 500px;
    display: flex;
    justify-content: space-evenly;
    height: 100%;
    align-items: center;
}

.navbar a {
    text-transform: uppercase;
    letter-spacing: .3px;
    font-weight: 650;
    color: #282c3f;
    font-size: 0.8rem;
}

.action_bar {
    margin-right: 3%;
}

.navbar a sup {
    color: #ff3f6c;
    font-size: 10px;
    font-weight: 700;
}

.navbar_search {
    height: 40px;
    min-width: 680px;
    display: flex;
    align-items: center;
    border: 0.1px solid #ccc;
    border-radius: 4px 4px 4px 4px;
    
    
}

.search_icon {
    border-radius: 4px 0 0 4px;
    color: #282c3f;
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f6;
    
}

.search_input {
    border-radius: 0 4px 4px 0;
    color: #696e79;
    background-color: #f5f5f6;
    flex-grow: 1;
    height: 100%;
    border: none;
}

.action_bar {
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.profile_container {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}


.wishlist {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.bag {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.profile_icon {
    font-size: 15px;
}

.profile_heart {
    font-size: 15px;
}

.profile_bag {
    font-size: 15px;
}

/* ********main section******* */


.banner-container {
    width: 100%;
}

.banner_img {
    background-size: cover;
    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_items {
    width: 250px;
}

.footer_container {
    padding: 30px 0 40px 0;
    background-color: #fafbfc;
    display: flex;
    justify-content: space-evenly;
}

.footer_column {
    display: flex;
    flex-direction: column;

}

.footer_column h3 {
    font-size: 12px;
    margin-bottom: 25px;
    color: #282c3f;
}

.footer_column a {
    color: #696b79;
    display: block;
    font-size: 15px;
    text-decoration: none;
    padding-bottom: 5px;
}

.copyright {
    display: flex;
    color: #94969f;
    padding: 15px;
    justify-content: space-evenly;
}

.my {
    display: flex;
    color: #94969f;
    padding: 15px;
    justify-content: end;
}

/* Completed */