* {
  margin: 7px;
  padding: 0px;
  font-family: Assistant, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}
header {
  height: 80px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #b6b1b1;
}
.logo {
  height: 45px;
}
.logo_container {
  margin-left: 4%;
}
.action_bar {
  margin-right: 4%;
}
.nav_bar {
  min-width: 500px;
  display: flex;
  justify-content: space-evenly;
}
.nav_bar a:hover {
  border-bottom: 4px solid #f54e77;
}
nav a {
  font-size: 14px;
  text-decoration: none;
  color: #282c3f;
  font-weight: 700;
  text-transform: uppercase;
  padding: 28px 0;
  border-bottom: 5px solid #ffffff;
}
nav a sup {
  color: #ff3f67;
  font-size: 10px;
}
.search_bar {
  height: 40px;
  min-width: 200px;
  width: 30%;
  display: flex;
  align-items: center;
}
.search_input {
  color: #696e79;
  background-color: #f5f5f6;
  flex-grow: 1;
  height: 40px;
  border: 0;
  border-radius: 0 4px 4px 0;
}
.search_icon {
  height: 20px;
  padding: 10px;
  box-sizing: content-box;
  background-color: #f5f5f6;
  color: #282c3f;
  font-weight: 300;
  border-radius: 4px 0 0 4px;
}

.action_bar {
  display: flex;
  min-width: 200px;
  flex-direction: row;
  justify-content: space-evenly;
}
.action_container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.banner_container {
  margin: 40px 0;
}
.banner_image {
  width: 100%;
}
.category_heading {
  text-transform: uppercase;
  color: #3e4152;
  letter-spacing: 0.15em;
  font-size: 1.8em;
  margin: 50px 0 10px 30px;
  max-height: 5em;
  font-weight: 700;
  width: 100%;
}

.Category_items {
   padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}
.sale_items {
  width: 250px;
}
.footer_container {
  padding: 30px 0 40px 0;
  background: #fafbfc;
  display: flex;
  justify-content: space-evenly;
}
.footer_column {
  display: flex;
  flex-direction: column;
}
.footer_column a {
  color: #696b79;
  font-size: 15px;
  text-decoration: none;
  padding-bottom: 5px;
}
.footer_column h3 {
  color: #282c3f;
  font-size: 14px;
  margin-bottom: 25px;
}

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