.hamburger {
  /* display: none; */
  width: 80px;
  height: 40px;
  position: fixed;
  top: 60px;
  right: 60px;
  z-index: 101;
  /* padding: 10px; */
  -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;
  background: ;
  background-size: cover;
}
.hamburger__icon {
  position: relative;
  margin-top: 0px;
  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;
  border-radius: 3px;
  position: absolute;
  top: 15px;
  right: 0;
}
.hamburger__icon:before{
  width: 80px;
}
.hamburger__icon:after {
  width: 20px;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
  right: 0;
}
.hamburger__icon:before {
  top: -15px;
}
.hamburger__icon:after {
  top: 15px;
}
.hamburger.active {
	background: none;	
}
.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(10px) rotate(25deg);
  -ms-transform: translateY(10px) rotate(25deg);
  -webkit-transform: translateY(10px) rotate(25deg);
  transform: translateY(10px) rotate(25deg);
  width: 50px;
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-19px) rotate(-25deg);
  -ms-transform: translateY(-19px) rotate(-25deg);
  -webkit-transform: translateY(-19px) rotate(-25deg);
  transform: translateY(-19px) rotate(-25deg);
  width: 50px;
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 100;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(25,25,25,1);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.fat-nav__wrapper {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: fixed;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.fat-nav ul {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}
.fat-nav li {
  list-style-type: none;
  text-align: right;
  padding-top: 40px;
}
.fat-nav li:first-child {
  padding-top: 0;
}
.fat-nav li, .fat-nav li a {
  color: #000;
  font-size: 1.4rem;
}
.fat-nav li a {
  text-decoration: none;
  color:#fff;
}
.fat-nav__wrapper {
  padding: 60px 160px 60px 60px;
  color: #fff;
  box-sizing: border-box;
}
.nav_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
	.hamburger {
		display: block;	
	}
  .hamburger {
    top: 30px;
    right: 30px;
  }
  .fat-nav__wrapper {
    padding: 20px;
    color: #fff;
    box-sizing: border-box;
    margin-top:60px;
  }
  .nav_warap .wrap_logo {
    display: none;
  }
}