.hamburger {
  display: none;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 7px;
  left: 50%;
  margin-left: -25px;
  z-index: 10000;
  padding: 12px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.hamburger__icon {
  position: relative;
  margin-top: 7px;
  margin-bottom: 7px;
}
.hamburger__icon, 
.hamburger__icon:before, 
.hamburger__icon:after {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #262626;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.hamburger__icon:before, 
.hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -7px;
}
.hamburger__icon:after {
  top: 7px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, 
.hamburger.active .hamburger__icon:after,
#special .hamburger.active .hamburger__icon:before, 
#special .hamburger.active .hamburger__icon:after {
  background-color: #262626;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.fat-nav__wrapper {
  width: 100%;
  height: 100% !important;
  -webkit-transition: all .4s ease-out .2s;
  -moz-transition: all .4s ease-out .2s;
  -ms-transition: all .4s ease-out .2s;
  -o-transition: all .4s ease-out .2s;
  transition: all .4s ease-out .2s;
  padding-bottom: 30px;
}
.fat-nav.active .fat-nav__wrapper {
  padding-bottom: 0px;
}
.fat-nav-outer {
  height: -webkit-calc(100vh - 160px);
  height: -moz-calc(100vh - 160px);
  height: -ms-calc(100vh - 160px);
  height: -o-calc(100vh - 160px);
  height: calc(100vh - 160px);
  display: table;
  margin-top: 40px;
}
.fat-nav ul {
  margin: 0;
  padding: 0;
  display: table-cell;
  vertical-align: middle;
}
.fat-nav li {
  list-style-type: none;
  text-align: center;
  padding: 10px;
  font-size: 2em;
  opacity: 0;
}
.fat-nav.active li:nth-child(1) {
  opacity: 1;
  transition: all .4s ease-out;
}
.fat-nav.active li:nth-child(2) {
  opacity: 1;
  transition: all .4s ease-out .2s;
}
.fat-nav.active li:nth-child(3) {
  opacity: 1;
  transition: all .4s ease-out .35s;
}
.fat-nav.active li:nth-child(4) {
  opacity: 1;
  transition: all .4s ease-out .5s;
}
.fat-nav.active li:nth-child(5) {
  opacity: 1;
  transition: all .4s ease-out .65s;
}
.fat-nav.active li:nth-child(6) {
  opacity: 1;
  transition: all .4s ease-out .8s;
}
.fat-nav.active li:nth-child(7) {
  opacity: 1;
  transition: all .4s ease-out .95s;
}
.fat-nav.active li:nth-child(8) {
  opacity: 1;
  transition: all .4s ease-out 1.1s;
}
.fat-nav.active li:nth-child(9) {
  opacity: 1;
  transition: all .4s ease-out 1.25s;
}
.fat-nav.active li:nth-child(10) {
  opacity: 1;
  transition: all .4s ease-out 1.40s;
}
.fat-nav.active br {
  opacity: 0;
  transition: none;
}
.fat-nav li, 
.fat-nav li a {
  color: #b2b2b2;
}
.fat-nav li a {
  text-decoration: none;
}

