/************nav_mobile***************/
.menu_nav_rep {

}
  .nav_rep {
    position: relative;
     z-index: 9999;
}
  .menu-nav{
    width: 100%;
    height: 87vh;
    top: 13vh;
    z-index: 999;
    background: rgba(202, 46, 84, 0.85);
    position: fixed;
    display: flex;
    left: -200%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    }

.menu_content {
    display: flex;
    height: 100%;
    align-items: center;
    align-content: center;
    margin: 0 auto;
}
    .open_nav {
      left: 0 !important;

    }
    .menu-nav li{
      padding: 6px 0;
      text-indent: 6px;
    }

    .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;
      padding: 0;
      z-index: 99999;
    }
.menu-nav ul {
    display: table;
    margin: 10% auto;
    list-style: none;
}
.nav-trigger {
     display: table !important;
    width: 40px !important;
    z-index: 99999;
    margin: 0 !important;
    position: relative;
    height: 40px !important;
    padding: 10px;
    cursor: pointer;
}
 .nav-trigger span {
    width: 40px;
    background: #96a2ac;
    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;
      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: 0;
      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: 80%;
  }

  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: 35px;
  }
}



@media (max-width:767px){
.menu_content {display: table; margin:20px 0;    width: 100%;}
.menu_content .container {
    width: 100%;
    padding: 0;
}
.menu-nav{display: table; position:absolute;}
}








