.menu-toggle {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  left: 25px;
  cursor: pointer;
  z-index: 99;
  display: none;
}
/*Custom starts*/
.menu-toggle article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    width: 100%;
    background: rgba(0,0,0,.6);
    text-align: center;
}
/*Custeom ends*/
.menu-toggle.on .one {
  -moz-transform: rotate(45deg) translate(7px, 7px);
  -ms-transform: rotate(45deg) translate(7px, 7px);
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
.menu-toggle.on .two {
  opacity: 0;
}
.menu-toggle.on .three {
  -moz-transform: rotate(-45deg) translate(8px, -10px);
  -ms-transform: rotate(-45deg) translate(8px, -10px);
  -webkit-transform: rotate(-45deg) translate(8px, -10px);
  transform: rotate(-45deg) translate(8px, -10px);
}

.one,
.two,
.three {
  width: 100%;
  height: 3px;
  background: #b9a256;
  margin: 8px auto;
  backface-visibility: hidden;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 9999;
}

nav ul {
  margin: 0;
  /* padding: 0; */
  list-style: none;
  margin: 4em auto;
  text-align: center;
  /*padding: 0px 100px;*/
}
nav ul.hidden {
  display: none;
}
nav ul a {
  transition-duration: 0.5s;
  text-decoration: none;
  color: white;
  font-size: 20px;
  line-height: 1.5;
  width: 100%;
  display: block;
}
nav ul a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: #b9a256;
  text-decoration: none;
}

.menu-section.on {
  z-index: 10;
  width: 102%;
  height: 100%;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  margin-left: -20px;
  padding: 0px 0px;
}