.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 10px 10px;
  /* position: fixed; */
  /* top: 20px; */
  z-index: 998;
  -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;
}
.ft-hamburger-ps,
.hamburger-ps{
  width: 60px;
  height: 60px;
}
.ft-hamburger-ps{
  margin-left: auto;
}
.hamburger__icon {
  position: relative;
}
.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 16px;
  height: 3px;
  background-color: #070707;
  -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;
}
@media screen and (min-width:768px) { 
	.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after{right:0%;}
}
@media screen and (max-width:767px) { 
	.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after{right:0%;}
}

.hamburger.active .hamburger__icon{
	width: 16px !important;
}
.hamburger.active .hamburger__icon:before{
	width: 16px !important;
}
.hamburger.active .hamburger__icon:after {
	width: 16px !important;
}
.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -6px;
}
.hamburger__icon:after {
  top: 6px;
}
.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: var(--black01);
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(6px) rotate(45deg);
  -ms-transform: translateY(6px) rotate(45deg);
  -webkit-transform: translateY(6px) rotate(45deg);
  transform: translateY(6px) rotate(45deg);
  background-color: var(--black01);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-6px) rotate(-45deg);
  -ms-transform: translateY(-6px) rotate(-45deg);
  -webkit-transform: translateY(-6px) rotate(-45deg);
  transform: translateY(-6px) rotate(-45deg);
  background-color: var(--black01);
}
.fat-nav {
  top: 0;
  left: 0;
  z-index: 9960;
  position: fixed;
  display: none;  
  width: 100%;
  height: 100%;
  background: var(--blue01);
  opacity: .9;   
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -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: 80%;
  margin:0 auto;
  height: 100%;
  padding: 60px 0% 50px;
  max-width:1100px;
  -webkit-box-sizing: border-box;
         -moz-box-sizing: border-box;
           -o-box-sizing: border-box;
          -ms-box-sizing: border-box;
              box-sizing: border-box;
}
.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.ft-list>li a{
  color:var(--white01);
  font-weight: bold;
  font-size: 32px;
}
