
.hamburger {
  display: block;
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
  padding: 0;
  box-sizing: border-box;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  background: url("../images/bg_menu.png") no-repeat center center;
}
.hamburger__icon {
  position: relative;
  margin-top: 45px;
  margin-left: 25px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #fff;
  transition-property: background-color, transform;
  transition-duration: 0.4s;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -10px;
}
.hamburger__icon:after {
  top: 10px;
}
.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 {
  transform: translateY(10px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  transform: translateY(-10px) rotate(-45deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: #0e5f80;
  transform: scale(1.4);
  transition-property: transform;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;

}
.fat-nav__wrapper {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: fixed;
}
.fat-nav.active {
  transform: scale(1);
}
.fat-nav .hd_nav {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  text-align: left;
}

.gnav ul{
  width: 80%;
  display: block;
  margin: 0 auto 3em;
  padding: 0;

}
.gnav li{
  margin: 0;
  padding: 1em 0;
  font-size: 1.2em;
  color: #fff;
  font-weight: bold;
  border-top: 2px #fff solid;
}
.gnav li:first-child{
  border-top: 0;
}
.gnav li a{
  margin: 0;
  padding: 1em 0;
  color: #fff;
}

.gnav ul.acMenu{
  width: 100%;
  margin-bottom: 2em;
}
  
.gnav ul.acMenu li{
  margin: 0 0 0 5px!important;
  padding: 0!important;
  border: none;
  font-weight: normal;
}
.gnav ul.acMenu li:before{
  content: "-";
  margin-right: 10px;
}
  
  
.gnav .acMenu_title{
display:block;
cursor:pointer;
background: url("../images/menu_on.png") no-repeat right center;
padding-right:15px;
}
.gnav .acMenu{
display:none;
}
.gnav .acMenu_title.active{
background: url("../images/menu_off.png") no-repeat right center;
}
  
  
  
@media only screen and (min-width:1px) and (max-width:768px){

.hamburger {
  width: 70px;
  height: 70px;
}
.hamburger__icon {
  margin-top: 34px;
  margin-left: 20px;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  width: 30px;
}
.hamburger__icon:before {
  top: -7px;
}
.hamburger__icon:after {
  top: 7px;
}
.hamburger.active .hamburger__icon:before {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  transform: translateY(-7px) rotate(-45deg);
}
.fat-nav {
  top: 70px;
}

.gnav li{
  font-size: 1em;
}
.gnav li a{
  padding: 1.5em 0;
}

  
  
}


@media only screen and (min-width:1px) and (max-width:389px){
.gnav li{
  font-size: 0.8em;
}
.gnav li a{
  padding: 1em 0;
}


}
