nav,
.navbar-toggle {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

nav {
    position: fixed;
    z-index: 1043;
    background-color: rgba(33, 45, 35, 0.9);
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: white;
}

.nav-hide { display: none; }

nav ul {
    position: absolute;
    top: 0px;
    display: inline-block;
    background: #fff;
    width: 350px;
    padding: 130px 30px 60px;
    transition: 4s ease-out;
    right: 40px;
  }

nav ul li { list-style: none; text-align: right;display: block;}
nav ul li.small-text-menu:first-child{
    margin-top: 30px
  }

nav ul li.small-text-menu a{
    font-size: 16px;
    font-weight: 500;
    line-height: 38px;
}


nav ul li a {
    color: #464444;
    font-size: 24px;
    font-weight: 500;
    line-height: 49px;
}
nav ul li a:hover{
      color: #EF462C;
}
.navbar-toggle {
    
        position: fixed;
        top: 40px;
        right: 40px;
        z-index: 1045;
        height: 90px;
        width: 90px;
        float: right;
        background-color: #fff;
        cursor: pointer;
        border: 1px solid #BEE3D9;
        padding: 30px 0 0 30px;
   /*
    position: fixed;
    top: 10px;
    right: 40px;
    z-index: 1045;
    height: 70px;
    width: 70px;
    float: right;
    background-color: #fff;
    cursor: pointer;
    border: 1px solid #BEE3D9;
    padding: 20px 0 0 20px;
     */  
  }
.navbar-toggle.navbar-on{
  border: 1px solid #fff;
}

.bar1{}
.bar1,
.bar3 {
    width: 30px;
    height: 2px;
    margin: 0;
    background-color: #EF462C;
    transition: all 0.5s ease-in-out;
}

.bar2{
    font-size: 10px;
    font-weight: bold;
    line-height: 26px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-transform: uppercase;
    width: 30px;
}

.navbar-on .bar1 {
  transform-origin: 10% 40%;
  transform: rotate(50deg);
  width: 40px;

}

.navbar-on .bar3 {
  transform-origin: 10% 40%;
  transform: rotate(-50deg);
  width: 40px;
  margin-top: -3px;
}

.navbar-on .bar2 { 
    background-color: transparent;
    visibility: hidden;
  }



@media only screen and (max-width: 1024px) {

.navbar-toggle {
    position: fixed;
    right: 15px;
    margin-right: 0px;
    top:0;
  }
  nav ul {
      right: 10px;
      margin-right: 0px;
  }
}


@media only screen and (max-width: 767px) {
    .navbar-toggle{
        z-index: 1000;
        border:1px solid #fff;
    }
    nav{
        z-index: 999;
    }
    nav ul {
        border: 0px solid #BEE3D9;
        overflow: scroll;
        z-index: 1044;
        height: 100%;
    }

}



