header {
  background: white;
  color: #444444;
  padding: 15px 60px;
  display: flex;
  align-items: center;
  box-shadow: 0px 0px 10px 1px #ac161b;
}
header #logo img {
  height: 65px;
}
header .header-right {
  margin-left: auto;
  display: flex;
  font-size: 50px;
  color: inherit;
}
header .header-right a,
header .header-right .cart-badge {
  margin-left: 40px;
  transition: all 0.3s;
  color: inherit;
}
header .header-right a:hover,
header .header-right .cart-badge:hover {
  text-decoration: none;
  transform: scale(1.5) !important;
}
header .header-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 40px;
  font-size: 17px;
  font-weight: 500;
}
header .header-menu a {
  color: #333333;
  text-decoration: none;
}
header .header-menu article {
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  cursor: pointer;
  /*&:hover nav {
                display: block;
            }*/
}
header .header-menu article nav {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid rgba(172, 22, 27, 0.3);
  width: 250px;
  z-index: 5;
}
header .header-menu article nav a {
  display: block;
  font-weight: 400;
  padding: 10px 20px;
}
header .header-menu article nav a:hover {
  background: rgba(172, 22, 27, 0.8);
  color: white;
}
header .header-menu .social a {
  margin-left: 10px;
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  #hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  header #logo img {
    height: 40px;
    order: 1;
  }
  header .header-right {
    order: 2;
    font-size: 30px;
  }
  header .header-search {
    order: 3;
  }
  header .header-menu {
    order: 4;
    display: block;
    margin-right: 10px;
    margin-left: 20px;
  }
  header .header-menu article {
    display: block;
    text-align: left;
    margin: 10px;
  }
  header .header-menu article nav {
    display: block;
    position: static;
    border: none;
  }
  .mh {
    display: none !important;
  }
}
#skiptocontent {
  width: 0px;
  height: 0px;
  overflow: hidden;
  position: absolute;
  left: 0px;
  top: 0px;
}
#skiptocontent:focus {
  position: static;
  width: initial;
  height: initial;
  overflow: initial;
  color: red;
}
