/* HEADER */
.mmp-header{
  position:fixed;
  width:100%;
  padding:20px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
  color:white;
}

/* HAMBURGER */
.hamburger{
  width:45px;
  height:35px;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hamburger span{
  height:3px;
  width:100%;
  background:white;
  border-radius:10px;
  transition:0.4s;
}

/* ACTIVE X */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translateY(14px);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translateY(-14px);
}

/* MENU */
.menu{
  position:fixed;
  top:0;
  left:-100%;
  width:100%;
  height:100vh;
  background:radial-gradient(circle at top left,#1f2028,#000);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* glow */
.menuGlow{
  position:absolute;
  width:600px;
  height:600px;
  background:#E78625;
  filter:blur(200px);
  opacity:0.12;
  top:-120px;
  left:-120px;
}

/* MENU CENTER */
.menu-inner{
  text-align:center;
}

/* WORDPRESS UL RESET */
.menu-list{
  list-style:none;
}

/* LINKS */
.menu-link{
  display:block;
  font-size:52px;
  text-transform:uppercase;
  letter-spacing:5px;
  color:white;
  text-decoration:none;
  margin:25px 0;
  cursor:pointer;
  overflow:hidden;
}

/* SPLIT CHAR */
.char{
  display:inline-block;
  transform:translateY(120%);
  opacity:0;
}

/* hover */
.menu-link:hover .char{
  color:#E78625;
  text-shadow:0 0 25px #E78625;
}