header {
  border-top: 10px solid #00a651;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.header .wrapper {
  position: relative;
}
.logo {
  max-width: 160px;
  float: left;
  margin: 10px 0;
}
.logo-link {
  font-size: 0;
}
.menu-box {
  float: right;
}
.menu {
  font-size: 0;
}
.menu-item {
  display: table-cell;
  vertical-align: middle;
  height: 75px;
  padding-right: 20px;
  font-size: 0;
}
.menu-item:last-child {
  padding-right: 0;
}
.menu-item .link {
  line-height: 1.2;
  padding: 5px 30px;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid transparent;
}
.menu-item .link.active, .menu-item .link:hover {
  background-color: #e9b115;
  border-radius: 28px 0 28px 28px;
  color: #fff;
}

.target-burger {
  position: absolute;
  top: 17px;
  right: 20px;
  z-index: 15;
  margin: 0;
  width: 25px;
  height: 25px;
  transition: all .5s;
}
.target-burger.toggled .buns .bun {
  -webkit-transform: rotate(45deg) translateZ(0);
  transform: rotate(45deg) translateZ(0);
  top: 48%;
  background-color: #000;
}
.target-burger.toggled .buns .bun:nth-child(2) {
  display: none;
}
.target-burger .buns {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transition: -webkit-transform 1s cubic-bezier(.23,1,.32,1),color 1s cubic-bezier(.23,1,.32,1);
  transition: transform 1s cubic-bezier(.23,1,.32,1),color 1s cubic-bezier(.23,1,.32,1);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  color: #fff;
}
.target-burger .buns .bun {
  width: 100%;
  height: 2px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  -webkit-transition: -webkit-transform 1s cubic-bezier(.23,1,.32,1),background-color 1s cubic-bezier(.23,1,.32,1);
  transition: transform 1s cubic-bezier(.23,1,.32,1),background-color 1s cubic-bezier(.23,1,.32,1);
}
.target-burger .buns .bun:nth-child(2) {
  -webkit-transform: translateY(11px) translateZ(0);
  transform: translateY(11px) translateZ(0);
}
.target-burger .buns .bun:last-child {
  -webkit-transform: translateY(22px) translateZ(0);
  transform: translateY(22px) translateZ(0);
}
.target-burger.toggled .buns .bun:last-child{
  -webkit-transform: rotate(-45deg) translateZ(0);
  transform: rotate(-45deg) translateZ(0);
}
@media only screen and (max-width:920px) {
  .menu-item {
    padding-right: 0;
  }
  .menu-item .link {
    padding: 5px 12px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    border-top-width: 5px;
  }
  .logo {
    max-width: 120px;
    margin: 8px 0;
  }
  .menu.toggled {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 57px);
    background-color: #fff;
    z-index: 99;
  }
  .menu.toggled .menu-item {
    display: block;
    padding: 0 15px;
    height: auto;
  }
  .menu.toggled .menu-item:first-child {
    margin-top: 10px;
  }
  .menu.toggled .menu-item .link {
    text-align: left;
    padding: 20px;
    border-bottom: 1px solid #00a651;
    font-size: 16px;
  }
  .menu.toggled .menu-item:first-child .link {
    border-top: 1px solid #00a651;
  }
  .menu.toggled .menu-item .link {
    position: relative;
  }
  .menu.toggled .menu-item .link span {
    width: 16px;
    position: absolute;
    right: 15px;
    top: 22px;
  }
  .menu.toggled .menu-item .link span svg {
    -webkit-transform: rotate(90deg) translateZ(0);
    transform: rotate(90deg) translateZ(0);
  }
  .menu.toggled .menu-item .link.active, .menu.toggled .menu-item .link:hover {
    border: none;
    background-color: #00a651;
    color: #fff;
    border-radius: 0;
  }
}