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;
}
.navbar-toggle p {
	font-size: 1.2em;
}

nav {
position: fixed;
z-index: 9999999;
background-color: #111;
width: 100%;
height: 100%;
text-align: center;
display: table;
color: white;
height: 100vh;
}
.nav-logo {
position: absolute;
margin-left: 38px;
margin-top: 14px;
}
.nav-logo img {
width: 54px;
height: auto;
}

.nav-hide { display: none; }

nav ul {
  display: table-cell;
  vertical-align: middle;
  padding-left: 0 !important;
}

nav ul li {
    list-style: none;
    padding-bottom: 10px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-weight: 600;
font-size: 1.3rem;
text-transform: uppercase;
letter-spacing: 1.8px;
line-height: 1.5;
}
.navbar-toggle {
  position: fixed;
  top: 20px;
  right: 0px;
  width: 129px;
  height: 45px;
  cursor: pointer;
  z-index: 999999;
  margin-right: 40px;
  text-align: right;
  opacity: 0;
}

.bar1,
.bar2,
.bar3 {
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}

.navbar-on .bar1,
.navbar-on .bar2,
.navbar-on .bar3 { background-color: black; }

.navbar-on .bar1 {
  transform-origin: 10% 40%;
  transform: rotate(45deg);
}

.navbar-on .bar3 {
    transform-origin: -13% 40%;
    transform: rotate(-45deg);
}

.navbar-on .bar2 { background-color: transparent; }

@media screen and (max-width:768px) {
   
	nav ul li a {
    font-size: 0.9rem;
    line-height: 1.4;
}
	
 .navbar-toggle {
    margin-right: 20px;
} 
	
.nav-logo {
margin-left: 18px;
margin-top: 14px;
}
    
    
    }
