.header {
  position: fixed;
  width: 100%;
  z-index: 11;
}

/* .header:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  z-index: 11;
} */

.header__content {
  position: relative;
}

.header__logo {
  z-index: 11;
}

.header__img {
  z-index: 11;
}

.icon-menu {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 35px;
  height: 30px;
  cursor: pointer;
  border-radius: 4px;
  /* background: rgba(0, 0, 0, 0.33); */
  padding: 4px;
  z-index: 11;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.icon-menu span {
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  height: 3px;
  border-radius: 8px;
  overflow: hidden;
  background: #000000;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

._seo .icon-menu span {
  background: #ffffff;
}

.icon-menu span:first-child {
  top: 4px;
}

.icon-menu span:last-child {
  top: auto;
  bottom: 5px;
}

.icon-menu._active span {
  background: #000000;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.icon-menu._active span:first-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: calc(50% - 2px);
}

.icon-menu._active span:last-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: calc(50% - 1px);
}

.menu__body {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  background: #fdece0;
  padding: 150px 10px 50px 10px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}

.menu__body._active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.menu__body:before {
  position: fixed;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fdece0;
  z-index: 2;
}

.menu__item {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-right: none !important;
}

.menu__item:not(:last-child) {
  margin: 0 0 30px 0 !important;
}

.menu__list {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.menu__icons {
  display: none;
}

._ie .menu__item {
  margin: 0 0 30px 0;
}

._ie .menu__item:last-child {
  margin: 0;
}

@media (min-width: 768px) {
  .menu__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
