header{
	padding: 30px 60px 90px;
}


.sidebar{
  position: fixed;
  top:0;
  padding: 40px 0;
  left:0;
  transform: translateX(-400px);
  width: 400px;
  z-index: 999999;
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0);
}
.sidebar, .sidebar_cont{
  transition: all .5s ease;  
}
.sidebar_overlay{
  position: fixed;
  z-index: 999998;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
  cursor:pointer;
}
body.sidebar_open{
  overflow: hidden;
}

.sidebar_toggle{
  transition: all .5s ease;  
}
body.sidebar_open .sidebar_toggle{
  transform: translateX(350px);  
}
body.sidebar_open .sidebar{
  transform: translateX(0%);
  box-shadow: 10px 0 20px rgba(0, 0, 0, .2);  
}
body.sidebar_open .sidebar_cont{
  transform: translateX(350px);   
}
body.sidebar_open .sidebar_overlay{
  opacity: .7;
  visibility: visible;
}


  .menu-wrap::-webkit-scrollbar { width: 0; }
  .menu-wrap{
    position: fixed;
    background-color: #1E1C21;
    overflow-y: scroll;
    height: 100%;
    left:0;
  }


  .main-menu{
    padding-left: 60px;
  }
  .main-menu li{
    list-style-type: none;
    text-align: left;
    padding: 5px;
    font-size:30px;
    font-family: 'BravoRG';
    letter-spacing: 1px;
    color:white;
  }
  .main-menu li a{
    color:white;
    text-decoration: none;
  }
  .main-menu li img{
    width: 64px;
    padding-right: 20px;
  }
  .menu-div  li.sub.active a:focus{
    outline: none;
  }
  .menu-div  li.sub.active ul li a{
    border: none;
  }
  .menu-div  li.sub.active ul li a:hover{
    background: transparent;
  }

  .menu-div li.sub a{
    padding-right: 10px;
  }
  .menu-div  li a:hover{
    background-color: transparent;
  }


  .menu-div  li i{
    transition: all .4s ease;
    font-size: 20px;
  }
  .menu-div  li.sub.active i{
    transform: rotate(180deg);
  }
  .menu-div  li ul{
      padding-left: 20px;
      display: none;
  }
  .menu-div  li.active a{
    background: transparent;
  }
  .menu-div  li.active ul{
    z-index: 1;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 15px;
  }
  .menu-div  li ul li{
    width: 100%;
      padding: 5px;
  }





/* -- btn -- */
@-webkit-keyframes topBar_open {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
    width: 60px;
  }
  10% {
    -webkit-transform: translateY(-8px) rotate(0deg);
            transform: translateY(-8px) rotate(0deg);
    width: 60px;
  }
  50% {
    -webkit-transform: translateY(25px) rotate(45deg);
            transform: translateY(25px) rotate(45deg);
    width: 84px;
  }
  75% {
    -webkit-transform: translateY(12px) rotate(45deg);
            transform: translateY(12px) rotate(45deg);
    width: 84px;
  }
  100% {
    -webkit-transform: translateY(17px) rotate(45deg);
            transform: translateY(17px) rotate(45deg);
    width: 84px;
  }
}
@keyframes topBar_open {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
    width: 60px;
  }
  10% {
    -webkit-transform: translateY(-8px) rotate(0deg);
            transform: translateY(-8px) rotate(0deg);
    width: 60px;
  }
  50% {
    -webkit-transform: translateY(25px) rotate(45deg);
            transform: translateY(25px) rotate(45deg);
    width: 84px;
  }
  75% {
    -webkit-transform: translateY(12px) rotate(45deg);
            transform: translateY(12px) rotate(45deg);
    width: 84px;
  }
  100% {
    -webkit-transform: translateY(17px) rotate(45deg);
            transform: translateY(17px) rotate(45deg);
    width: 84px;
  }
}
@-webkit-keyframes bottomBar_open {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
    width: 60px;
  }
  10% {
    -webkit-transform: translateY(-8px) rotate(0deg);
            transform: translateY(-8px) rotate(0deg);
    width: 60px;
  }
  60% {
    -webkit-transform: translateY(0px) rotate(-45deg);
            transform: translateY(0px) rotate(-45deg);
    width: 84px;
  }
  75% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
    width: 84px;
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
    width: 84px;
  }
}
@keyframes bottomBar_open {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
    width: 60px;
  }
  10% {
    -webkit-transform: translateY(-8px) rotate(0deg);
            transform: translateY(-8px) rotate(0deg);
    width: 60px;
  }
  60% {
    -webkit-transform: translateY(0px) rotate(-45deg);
            transform: translateY(0px) rotate(-45deg);
    width: 84px;
  }
  75% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
    width: 84px;
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
    width: 84px;
  }
}
@-webkit-keyframes menuLabel_open {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-18px);
            transform: translateY(-18px);
  }
  45% {
    -webkit-transform: translateY(44px);
            transform: translateY(44px);
    opacity: 1;
  }
  48% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
}
@keyframes menuLabel_open {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-18px);
            transform: translateY(-18px);
  }
  45% {
    -webkit-transform: translateY(44px);
            transform: translateY(44px);
    opacity: 1;
  }
  48% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
}
@-webkit-keyframes topBar_close {
  0% {
    -webkit-transform: translateY(17px) rotate(45deg);
            transform: translateY(17px) rotate(45deg);
    width: 84px;
  }
  35% {
    -webkit-transform: translateY(-8px) rotate(-4deg);
            transform: translateY(-8px) rotate(-4deg);
    width: 60px;
  }
  53% {
    -webkit-transform: translateY(10px) rotate(3deg);
            transform: translateY(10px) rotate(3deg);
    width: 60px;
  }
  70% {
    -webkit-transform: translateY(-6px) rotate(0deg);
            transform: translateY(-6px) rotate(0deg);
    width: 60px;
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(0deg);
            transform: translateY(-2px) rotate(0deg);
    width: 60px;
  }
}
@keyframes topBar_close {
  0% {
    -webkit-transform: translateY(17px) rotate(45deg);
            transform: translateY(17px) rotate(45deg);
    width: 84px;
  }
  35% {
    -webkit-transform: translateY(-8px) rotate(-4deg);
            transform: translateY(-8px) rotate(-4deg);
    width: 60px;
  }
  53% {
    -webkit-transform: translateY(10px) rotate(3deg);
            transform: translateY(10px) rotate(3deg);
    width: 60px;
  }
  70% {
    -webkit-transform: translateY(-6px) rotate(0deg);
            transform: translateY(-6px) rotate(0deg);
    width: 60px;
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(0deg);
            transform: translateY(-2px) rotate(0deg);
    width: 60px;
  }
}
@-webkit-keyframes bottomBar_close {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
    width: 84px;
  }
  35% {
    -webkit-transform: translateY(-18px) rotate(6deg);
            transform: translateY(-18px) rotate(6deg);
    width: 60px;
  }
  53% {
    -webkit-transform: translateY(0px) rotate(-3deg);
            transform: translateY(0px) rotate(-3deg);
    width: 60px;
  }
  68% {
    -webkit-transform: translateY(-7px) rotate(0deg);
            transform: translateY(-7px) rotate(0deg);
    width: 60px;
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
    width: 60px;
  }
}
@keyframes bottomBar_close {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
    width: 84px;
  }
  35% {
    -webkit-transform: translateY(-18px) rotate(6deg);
            transform: translateY(-18px) rotate(6deg);
    width: 60px;
  }
  53% {
    -webkit-transform: translateY(0px) rotate(-3deg);
            transform: translateY(0px) rotate(-3deg);
    width: 60px;
  }
  68% {
    -webkit-transform: translateY(-7px) rotate(0deg);
            transform: translateY(-7px) rotate(0deg);
    width: 60px;
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
    width: 60px;
  }
}
@-webkit-keyframes menuLabel_close {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  5% {
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateY(-22px);
            transform: translateY(-22px);
    opacity: 1;
  }
  45% {
    -webkit-transform: translateY(-22px);
            transform: translateY(-22px);
    opacity: 1;
  }
  58% {
    -webkit-transform: translateY(8px) rotate(-10deg);
            transform: translateY(8px) rotate(-10deg);
    opacity: 1;
  }
  83% {
    -webkit-transform: translateY(-6px) rotate(0deg);
            transform: translateY(-6px) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes menuLabel_close {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  5% {
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    opacity: 1;
  }
  37% {
    -webkit-transform: translateY(-22px);
            transform: translateY(-22px);
    opacity: 1;
  }
  45% {
    -webkit-transform: translateY(-22px);
            transform: translateY(-22px);
    opacity: 1;
  }
  58% {
    -webkit-transform: translateY(8px) rotate(-10deg);
            transform: translateY(8px) rotate(-10deg);
    opacity: 1;
  }
  83% {
    -webkit-transform: translateY(-6px) rotate(0deg);
            transform: translateY(-6px) rotate(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}


#menu-btn {
  display: block;
  position: fixed;
  top: 220px;
  margin-left: 10px;
  text-align: center;
  width: 60px;
  left: 80px;
  height: 65px;
  z-index: 1;
}
#menu-btn:before, #menu-btn:after {
  content: "";
  width: 100%;
  height: 8px;
  background-color: #fff;
  display: block;
  position: absolute;
  border-radius: 20px;
}
#menu-btn:before {
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
#menu-btn:after {
  right: 0;
  top: 25px;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
#menu-btn .text {
  color: #fff;
  font-family: "Candal", sans-serif;
  display: block;
  position: absolute;
  bottom: 0;
  font-size: 17px;
  letter-spacing: 2.5px;
}
#menu-btn:hover {
  cursor: pointer;
}
#menu-btn.open:before {
  -webkit-animation: topBar_open 1s ease-in-out;
          animation: topBar_open 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  top:-15px;
}
#menu-btn.open:after {
  -webkit-animation: bottomBar_open 1s ease-in-out;
          animation: bottomBar_open 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;

  top:10px;
}
#menu-btn.open .text {
  -webkit-animation: menuLabel_open 1s ease-in;
          animation: menuLabel_open 1s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#menu-btn.close:before {
  -webkit-animation: topBar_close 1s ease-in-out;
          animation: topBar_close 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#menu-btn.close:after {
  -webkit-animation: bottomBar_close 1s ease-in-out;
          animation: bottomBar_close 1s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
#menu-btn.close .text {
  -webkit-animation: menuLabel_close 1s ease-in;
          animation: menuLabel_close 1s ease-in;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

