.hamburger {
  display: block;
  width: 50px;
  height: 40px;
  position: fixed;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  top: 30px;
  right: 35px;
  z-index: 9999;
  -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: 50px;
  height: 2px;
  background-color: #fff;
  -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 {
  background-color: #fff;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(7px) rotate(25deg);
  -ms-transform: translateY(7px) rotate(25deg);
  -webkit-transform: translateY(7px) rotate(25deg);
  transform: translateY(7px) rotate(25deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-7px) rotate(-25deg);
  -ms-transform: translateY(-7px) rotate(-25deg);
  -webkit-transform: translateY(-7px) rotate(-25deg);
  transform: translateY(-7px) rotate(-25deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(148, 156, 114, 0.99);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
  will-change: transform;
}
.fat-nav__wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
}
.fat-nav li {
  list-style-type: none;
  font-size: .9rem;
  text-align: center;
  width: 100%;
}
.fat-nav li, .fat-nav li a {
  color: #fff;
}
.fat-nav .fat-nav__wrapper > ul > li > a {
  text-decoration: none;
  padding: 22px 15px;
  display: block;
  border-bottom: 1px solid #b7c090;
}
.fat-nav li a:hover {
	background: #b7c090;
}