* {
  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;
  border-bottom: 1px solid #b5b5b5;
  height: 80px;
  justify-content: space-between;
  align-items: center;
}
.myntra_home {
  height: 36px;
}
.logo_container {
  margin-left: 4%;
}
.action_bar {
  margin-right: 4%;
}
.nav_bar {
  display: flex;
  min-width: 520px;
  justify-content: space-evenly;
}
.nav_bar a {
  font-size: 14px;
    letter-spacing: .3px;
    color: #282c3f;
    text-decoration: none;
    font-weight: 700;
    padding: 28px 0;
    border-bottom: 4px solid #ffffff;

}
.nav_bar a sup {
  color: #ff3f6c;
  font-size: 10px;
}
.search_bar {
  display: flex;
  height: 40px;
  min-width: 220px;
  width: 30%;
  align-items: center;

}
.search_icon {
  box-sizing: content-box;
  height: 20px;
  padding: 10px;
  background: #f5f5f6;
      color: #696e79;
      border-radius: 4px 0 0 4px;

}
.search_box {
  background: #f5f5f6;
  color: #696e79;
  flex-grow: 1;
  height: 40px;
  border: 0;
  border-radius: 0 4px 4px 0;
}
.action_bar {
  display: flex;
  min-width: 200px;
  justify-content: space-evenly; 
}

.action_container {
  display: flex;
  flex-direction: column;
  align-items: center;

}
.nav_bar a:hover {
  border-bottom: 4px solid #ff3f6c;
}

/* 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 0px 10px 30px;
  max-height: 5em;
  font-weight: 700;
}
.category_items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;

}
.sale_item {
  width: 250px;

}

/* footer section */

.footer_container {
  padding: 30px 0 40px 0;
  background: #FAFBFC;
  display: flex;
  justify-content: space-evenly;

}
.footer_columns {
  display: flex;
  flex-direction: column;
}
.footer_columns a {
  text-decoration: none;
  color: #696b79;
  display: block;
  font-size: 15px;
  padding-bottom: 5px;
}
.footer_columns h3 {
  color: #282c35;
  font-size: 14px;
  margin-bottom: 25px;
}
.copyright {
  color: #94969f;
  text-align: end;
  padding: 15px;
}

