/* Mobile only */
@media screen and (max-width: 991px) {
  .hamburger {
    position: absolute;
    /*top: 20px;*/
    right: 0;
    cursor: pointer;
    z-index: 1000;
    padding: 0 28px 5px 0;
    height: 40px;
  }
  .hamburger span {
    vertical-align: middle;
  }
  .hamburger .bars {
    display: block;
    position: relative;
    width: 26px;
    height: 4px;
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .hamburger .bars:before, .hamburger .bars:after {
    position: absolute;
    content: " ";
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .hamburger .bars:before {
    top: 10px;
  }
  .hamburger .bars:after {
    bottom: 10px;
  }
  .open .hamburger .bars {
    background-color: transparent;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .open .hamburger .bars::before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .open .hamburger .bars::after {
    bottom: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #nav {
    /*display: none;*/
  }
  .menu {
    width: 100% !important;
    height: 100%;
    padding: 75px 20px 0;
    position: fixed;
    left: -100%;
    top: 70px;
    opacity: 0;
    z-index: 999 !important;
    margin-top: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  #nav.open {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .open .menu {
    left: 0;
    opacity: 1;
  }
}

/*@media screen and (max-width: 767px) {
  .menu {
    width: 70% !important;
  }
}*/

/*@media screen and (max-width: 480px) {
  .menu {
    width: 85% !important;
  }*/
}