/************nav_mobile***************/
.frame_menu {
    display: table;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}
.frame_menu:before {
    content: "";
    position: absolute;
    left: -100%;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee14d;
}
.frame_menu:after {
    content: "";
    position: absolute;
    right: -100%;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee14d;
}
  .nav_rep {
    position: relative;
     z-index: 9999;
}
  .menu-nav{
    width: 100%;
      height: 100%;
      top:-100%;
      z-index: 999;
      background-image: url(../img/bg_menu.jpg);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      background-position: right bottom;
      position: fixed;
      display: table;
      left: 0;
    -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      transition: all 0.3s ease;
    }
    .open_nav {
      top: 0 !important;

    }

    .menu_btn{
      border: 1px solid #fff;
      display: inline-block;
      padding: 13px 5px 9px;
      width: 40px;
    }
    .menu_btn span{
      background: none repeat scroll 0 0 #fff;
      display: block;
      height: 3px;
      margin: 0 0 3px;
      padding: 0;
      width: 100%;
    }
    .content_repmenu{
      margin: 0 auto;     
      transition: left 300ms ease 0s;
      position: relative;
      z-index: 99999;
    cursor: pointer;
    }

.nav-trigger {
     display: table !important;
    width: 40px !important;
    z-index: 99999;
    margin: 0 !important;
    position: relative;
    height: 40px !important;
    padding: 10px;
}
 .nav-trigger span {
    width: 40px;
    background: #fff;
    display: block;
    float: left;
    position: relative;
    height: 2px;
    left: 0px;
    clear: both;
    border-radius: 3px;
    transition: left 0.3s ease-out;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
}
 .nav-trigger .line-one {
      top: 0px;
       width: 30px;
      animation-name: down-line-reverse;
      animation-duration: 0.5s;
      animation-timing-function: ease-out-back;
      animation-fill-mode: both;
    }

 .nav-trigger .line-two {
      top: 6px;
      animation-name: add-line;
      width: 30px;
      animation-duration: 0.5s;
      animation-timing-function: ease-out-back;
      animation-fill-mode: both;
      animation-delay: 0.2s;
    }

 .nav-trigger .line-three {
      top: 11px;
       width: 30px;
      animation-name: up-line-reverse;
      animation-duration: 0.5s;
      animation-timing-function: ease-out-back;
      animation-fill-mode: both;
    }


 .nav-trigger.active-nav {  
    width: 30px;
    transition: all 0.3s ease-in;
}
   .nav-trigger.active-nav  span {
      left: -11px;
      box-shadow: none;
      transition: left 0.3s ease-in;
}
  .nav-trigger.active-nav .line-one {
        animation-name: drop-line;
        animation-duration: 0.5s;
        animation-timing-function: ease-out-back;
        animation-fill-mode: both;
        animation-delay: 0.2s;
      }

    .nav-trigger.active-nav .line-two {
        animation-name: remove-line;
        animation-duration: 0.2s;
        animation-timing-function: ease-out-back;
        animation-fill-mode: both;
        animation-delay: 0s;
      }

  .nav-trigger.active-nav .line-three {
        animation-name: up-line;
        animation-duration: 0.5s;
        animation-timing-function: ease-out-back;
        animation-fill-mode: both;
        animation-delay: 0.2s;
      }

@keyframes remove-line {
  0%   {
    opacity: 1;
    width: 30px;
  }

  100% {
    opacity: 0;
    width: 0;
  }
}

@keyframes drop-line {
  0%   {
    top: 0px;
  }

  30%   {
    top: 6px;
  }

  31%   {
    transform: rotate(0deg);
  }

  60%   {
    transform: rotate(0deg);
  }

  61%   {
    transform: rotate(0deg);
  }

  90% {
    top: 8px;
    transform: rotate(140deg);
  }

  100% {
    top: 8px;
    transform: rotate(135deg);
  }
}

@keyframes up-line {
  0%   {
    top: 11px;
  }

  30%   {
    top: 2px;
  }

  31%   {
    transform: rotate(0deg);
  }

  60%   {
    transform: rotate(0deg);
  }

  61%   {
    transform: rotate(0deg);
  }

  90% {
    top: 5px;
    transform: rotate(50deg);
  }

  100% {
    top: 5px;
    transform: rotate(45deg);
  }
}

@keyframes up-line-reverse {
  0%   {
    top: 5px;
    transform: rotate(45deg);
  }

  30%   {
  transform: rotate(45deg);
  top: 5px;
  }

  31%   {
  transform: rotate(45deg);
  top: 5px;
  }

  60%   {
    transform: rotate(0deg);
    top: 2px;
  }

  61%   {
  transform: rotate(0deg);
    top: 2px;
  }

  100% {
    top: 11px;
  transform: rotate(0deg);
  }
}

@keyframes down-line-reverse {
  0%   {
    top: 8px;
    transform: rotate(130deg);
  }

  30%   {
  transform: rotate(130deg);
  top: 8px;
  }

  31%   {
  transform: rotate(130deg);
  top: 2px;
  }

  60%   {
    transform: rotate(0deg);
    top: 2px;
  }

  61%   {
  transform: rotate(0deg);
    top: 2px;
  }

  100% {
    top: 0px;
  transform: rotate(0deg);
  }
}

@keyframes add-line {
  0%   {
    opacity: 0;
    width: 0px;
  }

  100% {
    opacity: 1;
    width: 30px;
  }
}


@media(max-width: 767px) {
.frame_menu:after {display:none !important;}
.frame_menu:before {display:none !important;}
.frame_menu {
    overflow-y: scroll;
    display: flex;
    overflow-y: scroll;
    align-items: center;
    height: 80vh !important;
    padding: 15vh 0 0;
}
}


@media screen and (max-device-width: 767px) and (orientation : landscape){
.frame_menu {
padding: 5vh 0 0;
    height: 60vh !important;
    display: block;
    overflow-y: scroll;
}
}










