* {
  margin: 0;
  padding: 0;
  font-family: Assistant, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", 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 #b6b1b1;
}

.synx_home {
  height: 70px;
}

.logo_container {
  margin-left: 4%;
}

.action_bar {
  margin-right: 4%;
  display: flex;
  min-width: 200px;
  justify-content: space-evenly;
}

.nav_bar {
  display: flex;
  min-width: 500px;
  justify-content: space-evenly;
}

.nav_bar a {
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #282c3f;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 28px 0px;
  border-bottom: 5px solid #ffffff;
}

.nav_bar a:hover{
    border-bottom: 4px solid rgb(16, 154, 208);

}

.nav_bar a sup {
  color: rgb(16, 154, 208);
  font-size: 10px;
}

.search_bar {
  height: 40px;
  min-width: 200px;
  width: 30%;
  background-color: #f5f5f6;
  display: flex;
  align-items: center;
}

.icon {
  box-sizing: content-box;
  height: 20px;
  padding: 10px;

  background-color: #696e79;
  color: #282c3f;
  font-weight: 300;
  border-radius: 4px 0px 0px 4px;
}

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

.action_container{
    display: flex;
    flex-direction: column;
    align-items: center;

}

/* Main Section */
.banner_container{
    margin: 40px 0px;
}
.banner_image{
    width: 100%;
}

.category_heading{
    text-transform: uppercase;
    color: #3e4152;
    letter-spacing: 0.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_container{
    padding: 30px 0px 40px 0px;
    background: #fafbfc;
    display: flex;
    justify-content: space-evenly;
}

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

.footer_column h3{
    margin-bottom: 2px;
}
.footer_column a{
    color: #696b79;
    font-size: 15px;
    text-decoration: none;
}

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

}
