/*.header {
  z-index: 30;
}*/
.header__inner {
  margin: 0;

}
.header li {
  list-style-type: none;
  margin-top: 30px;
}
.header .sideMenu a {
  color: white;
  text-decoration: none;
}
.sideMenu {
  background-color: rgba(0, 0, 0, 0.950);
  height: 100vh;
  overflow-y: auto;
  padding-top: 56px;
  position: fixed;
  right: -100%;
  transition: all 0.6s;
  top: 0;
  width: 100%;
  z-index: 199;
  text-align: center;
  color: white;
}

.hamburger {
  cursor: pointer;
  height: 56px;
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  z-index: 300;
}
.hamburger span {
  background-color: #111;
  height: 1px;
  left: 11px;
  position: absolute;
  transition: all 0.6s;
  width: 30px;
}
.hamburger__lineTop {
  top: 20px;
}
.hamburger__lineCenter {
  top: 29px;
}
.hamburger__lineBottom {
  top: 38px;
}

.nav-open .sideMenu {
  background-color: rgba(0, 0, 0, 0.950);
  right: 0;
  bottom: 0;
}
.nav-open .hamburger__lineTop {
  top: 26px;
  transform: rotate(45deg);
  background-color: white;
}
.nav-open .hamburger__lineCenter {
  left: 50%;
  width: 0;
  background-color: white;
}
.nav-open .hamburger__lineBottom {
  top: 26px;
  transform: rotate(-45deg);
  background-color: white;
}
section {
  margin: 0 auto 200px;
  width: 80%;
}