.navToggle {
  z-index: 111;
  position: absolute;
  width: 100px;
  height: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 15px;
  cursor: pointer;
}
.navToggle .icon {
  -webkit-transition: all 0.4s ease-out;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50px;
  height: 2px;
  background-color: #333;
}
.navToggle .icon:before, .navToggle .icon:after {
  -webkit-transition: all 0.25s ease-out;
  position: absolute;
  width: 50px;
  height: 2px;
  background-color: #333;
  content: '';
}
.navToggle .icon:before {
  top: -20px;
  left: 0;
}
.navToggle .icon:after {
  top: 20px;
  left: 0;
}
.navToggle:hover .icon {
  background-color: #555;
}
.navToggle:hover .icon:before {
  top: -25px;
  background-color: #555;
}
.navToggle:hover .icon:after {
  top: 25px;
  background-color: #555;
}
.navToggle.open .icon {
  -webkit-transition: all 0.4s ease-out;
  background-color: transparent;
  -webkit-transform: rotate(180deg);
}
.navToggle.open .icon:before {
  top: 0;
  -webkit-transform: rotate(45deg);
}
.navToggle.open .icon:after {
  top: 0;
  -webkit-transform: rotate(-45deg);
}

#menu {
  z-index: 1;
  left: 0;
  right: 0;
  top: 100px;
  margin: 0 auto;
  position: absolute;
  width: 200px;
  height: 0px;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.5s;
}
#menu ul {
  list-style: none;
  padding: 0;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 100;
  text-transform: uppercase;
}
#menu li:first-child {
  margin-top: 0;
}
#menu li {
  margin: 10px 0;
  padding: 5px 0;
  cursor: pointer;
  letter-spacing: 0.5em;
  text-decoration: none;
  -webkit-transition: all 0.25s;
}
#menu li:hover {
  text-decoration: underline;
}
#menu.active {
  height: 320px;
  border-bottom: 1px solid black;
}
