.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 500;
  transition: opacity .5s;
}
.overlay.open {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}
main.open {
  /* transform: translateX(250px);*/
}
main h1 {
  text-align: center;
  font-weight: 500;
}
main p {
  text-align: center;
}
.menu-trigger_area {
  width: 44px;
  height: 38px;
 /* background: rgba(140, 0, 2, 1.00);*/
	background: #7d1ec6;
  cursor: pointer;
  position: fixed;
  top: 26px;
  left: 26px;
  z-index: 14002;
	transition: all .2s;
}
.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 14003;
}
.menu-trigger_area.active {
  transform: translateX(224px);
  
}
.menu-trigger.active {
  top: 4px;
  left: 4px;
}
.menu-trigger span {
  background-color: #FFFFFF;
  /*box-shadow: 0 0 5px black;*/
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  transition: all .0s;
}
.menu-trigger.active span {}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}
nav {
  width: 250px;
  height: 100%;
  /*padding-top: 100px;*/
  /*background: #1A1A1A;*/
  /*background: rgba(26,26,26,0.8);*/
  background: rgba(36, 153, 2255, 0.8);
  background: rgba(43, 43, 43, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 14001;
  transform: translate(-250px);
  transition: all .2s;
}
nav a {
  color: #FFFFFF;
  text-decoration: none;
}
nav a[href=""] {
  color: #fff;
  cursor: default;
  pointer-events: none;
  opacity: 0.3;
}
nav.open {
  transform: translateZ(0);
}
nav img {
  width: 100%;
}
nav li {
  text-align: center;
  /*padding: 10px 0;*/
}