.menu {
  position: relative;
  background-color: #fff;
  height: 96px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(51, 51, 51, 0.5);
  z-index: 100;
}
.menu img.logo {
  width: 115px;
  position: relative;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.menu .item {
  float: right;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 32px;
}
.menu .item a {
  font-family: 'nexa-bold';
  font-size: 18px;
  color: #515151;
  text-decoration: none;
  white-space: nowrap;
}
.menu .item a:hover {
  color: #ffd000;
}
.menu .item:nth-child(2) {
  margin-right: 128px;
}
.menu .item.selected a {
  color: #ffd000 !important;
}
.menu-icon:after {
  position: absolute;
  top: 0px;
  right: 48px;
  z-index: 200;
  background: #fff543;
  font-family: 'gibon-webicons';
  font-size: 48px;
  padding: 16px 12px;
  color: #515151;
  content: "\f103";
}
.icon-hamburger {
  display: none;
}
.menu-hamburger {
  display: none;
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px;
  background: #515151;
}
.menu-hamburger .item {
  line-height: 32px;
  font-family: "nexa-bold";
  font-size: 18px;
}
.menu-hamburger .item a {
  text-decoration: none;
  color: #fff543;
}
@media only screen and (max-width: 1100px) {
  .icon-hamburger {
    display: block;
    position: absolute;
    top: 35px;
    right: 112px;
    z-index: 200;
  }
  .menu .item {
    display: none;
  }
  .menu-icon:after {
    right: 16px;
  }
}
@media only screen and (max-width: 400px) {
  .menu .logo {
    left: 8px !important;
  }
}
@media only screen and (max-width: 320px) {
  .menu .logo {
    display: none;
  }
}
