html.offnav_active {
	overflow: hidden !important;
}
#offnav_wrapper {
	display: none;
}
#offnav_btn{
	-moz-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
#offnav_btn {
	font: 700 normal 24px/20px 'Font Awesome';
	width: 20px;
	height: 20px;
	position: fixed;
	top: 0;
	right: 0;
	background: none;
	z-index: 1001;
	cursor: pointer;
	text-align: center;
	padding: 15px;
	color: #404135;
}
#offnav_btn:hover {
	color: #c4cf3b;
}

#offnav_btn:before {
	display: inline-block;
	content: "\f0c9";
}	
.offnav_active #offnav_btn:before {
	content: "\f00d";
	color: #404135;
}

#offnav_container {
	height: auto;
	width: 100%;
	position: fixed;
	left: 0; 
	bottom: -1000px;
	z-index: 1001;
	
	-moz-transition: all.5s ease;
	-webkit-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
}
.offnav_active #offnav_container {
	bottom: 0;
}
#mobile-navigation {
	margin-top: 50px;
	z-index: 1000;
	position: relative;
	padding: 5%;
	height: 100%;
	overflow-y: scroll;
	background: #fff;
	display: block;
}
 

#mobile-navigation ul,
#mobile-navigation li {
	list-style: none;
	display: block;
}
#mobile-navigation a {
	font-family: 'Lato', sans-serif;
	color: #404135;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	display: block;
	line-height: 1.1em;
	text-decoration: none;
	position: relative;
	cursor: pointer;
	text-align: left;
	padding: .5em 0;
	 
	-webkit-hyphens: none;
    -moz-hyphens:    none;
    -ms-hyphens:     none;
    hyphens:         none;
}

#mobile-navigation a:hover,
#mobile-navigation .anchor-active { 
	color: #c4cf3b;
}
#mobile-navigation .current-menu-item.inactive > a  {
	color: var(--ci-color) !important;
}

#offnav_overlay {
	height: 100%;
	display: none;
    position: fixed;
    top: 0; 
	left: 0;
    width: 100%;
	z-index: 999;
	background: rgba(255, 255, 255, 0.5) !important;
	-webkit-backdrop-filter: blur(10px) !important;
	backdrop-filter: blur(15px) !important;
}

 

@media only screen and (max-width: 1000px)  {
	#offnav_wrapper {
		display: block;
	}
	#main-navigation{
		display: none;
	}
	#mobile-navigation {
		padding: 5%;
	}
	/*#offnav_btn {
		font-size: 16px;
		padding: 15px;
	}*/
}



