/* NAV OVERLAY*/

	.navoverlayleft {
	  position: fixed;
	  top: 0;
	  left: -50%;
	  width: 50%;
	  height: 100%;
	  opacity: 0;
	  z-index: 888;
	  background-color: #95876d;
	  transition: .5s;
	  border-right: .75vw solid #fff;
	}
  
	.leftopen {
		opacity: 1;
		left: 0%;
	}

	.navoverlayright {
	  position: fixed;
	  top: 0;
	  right: -50%;
	  width: 50%;
	  height: 100%;
	  opacity: 0;
	  z-index: 888;
	  background-color: #95876d;
	  transition: .5s;
	  border-left: .75vw solid #fff;
	}
  
	.rightopen {
		opacity: 1;
		right: 0%;
	}

	.menucontainer {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: none;
	}

	.menuleft {
		position: relative;
	
	}

/* NAV MENU */

	.mainnavleft, .mainnavright {
		font-family: "knockout_welterweight", sans-serif;
		font-style: normal;
		text-align: center;
		font-size: 4vw;
		letter-spacing: .1px;
		line-height: .8;
		color: #fff;
		text-transform: uppercase;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		opacity: 0;
	}
	
	.mainmenuvisible {
		opacity: 1;
		transition: opacity .75s ease-in-out;
  		-moz-transition: opacity .75s ease-in-out;
  		-webkit-transition: opacity .75s ease-in-out;
		transition-delay: .25s;
	}
	
	.menucategoryl, .menucategoryr {
		font-family: "gibson-semibold", sans-serif;
		font-style: normal;
		text-align: center;
		font-size: .6vw;
		letter-spacing: 4px;
		line-height: 1vw;
		color: #fff;
		text-transform: uppercase;
		position: relative;
		margin-bottom: 50px; 
	}
	
	.mainnavleft li a, .mainnavright li a  {
		color: #fff;
	}
	
	.mainnavleft li a:before, .mainnavright li a:before,
	.mainnavleft li a:after, .mainnavright li a:after {
		content:"*";
		opacity: 0;
	}
	.mainnavleft li a:hover:before, .mainnavleft li a:hover:after,
	.mainnavright li a:hover:before, .mainnavright li a:hover:after {
		opacity: 1;
		-webkit-transition: 300ms;
		-moz-transition: 300ms;
		transition: 300ms;
	}
	
			
/* MENU MEDIA QUERIES */
	
	@media (orientation: portrait) {
		.navoverlayleft {
			top: -50%;
			left: 0%;
			width: 100%;
			height: 50%;
		}
		.navoverlayright {
			top: 100%;
			left: 0%;
			width: 100%;
			height: 50%;
		}
		.leftopen {
			opacity: 1;
			top: 0%;
		}
		.rightopen {
			opacity: 1;
			top: 50%;
		}
		.navoverlayleft {
		  border-right: none;
		  border-bottom: .75vw solid #fff;
		}
		.navoverlayright {
		  border-left: none;
		  border-top: .75vw solid #fff;
		}
		.mainnavleft, .mainnavright {
			font-size: 6.5vw;
		}
		.menucategoryl, .menucategoryr {
			font-size: 2vw; 
		}
	}
	@media (max-width: 1200px) {
		.mainnavleft, .mainnavright {
			line-height: 1.2;
		}
	}
	@media (orientation: landscape) and (max-width: 1200px) {
		.menucategoryl, .menucategoryr {
			font-size: 1.2vw;
		}
	}	
	@media (orientation: landscape) and (max-width: 900px) {
		.navoverlayleft {
		  border-right: 1.5vw solid #fff;
		}
		.navoverlayright {
		  border-left: 1.5vw solid #fff;
		}
	}
	@media (orientation: portrait) and (max-width: 900px) {
		.navoverlayleft {
		  border-right: none;
		  border-bottom: 2vw solid #fff;
		}
		.navoverlayright {
		  border-left: none;
		  border-top: 2vw solid #fff;
		}
	}		
	@media (orientation: landscape) and (max-width: 740px) {
		.mainnavleft, .mainnavright {
			line-height: 1.5;
		}
	}
    
