
body.open, body:after {overflow: hidden;}
.b-nav, body:after {
	position: absolute;
	left: 0;
}
.b-brand, .b-link {
	font-size: 18px;
	font-weight: 700;
	margin-left: 0;
	text-decoration: none;
	font-family: "Roboto-Regular", 'Arial', Sans-serif;
	text-transform: uppercase;
}
@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(0, -345px, 0);
		transform: translate3d(0, -345px, 0);
		visibility: visible;
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}
}
@keyframes slideInLeft{
	0% {
		-webkit-transform: translate3d(0, -345px, 0);
		transform: translate3d(0, -345px, 0);
		visibility: visible;
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		visibility: visible;
	}
}
* {box-sizing: border-box;}
body:after {
	background: #000;
	content: '';
	height: 100%;
	left: 0;
	opacity: 0;
	padding: 0;
	top: 0;
	visibility: hidden;
	-webkit-transition: all .6s ease;
	transition: all .6s ease;
	width: 100%;
}
body.open:after {
	z-index: 10;
	opacity: 0.65;
	height: 100000%;
	visibility: visible;
}
.b-nav {
	background: #463524 none repeat scroll 0 0;
	position: fixed;
	top: 86px;
	width:100%;
	z-index: 12;
	display:flex;
	overflow:hidden;
}
.b-nav:not(.open) {
	animation-duration: 0.4s;
	animation-fill-mode: both;
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}
.b-nav {
	animation-duration: .4s;
	animation-fill-mode: both;
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}
.b-nav ul {
	width:100%;
	padding: 20px 0;
	margin:
	auto;
	font-size:0;
	border-top:1px solid #F9E2BE;
	text-align: right;
}
.b-nav li {
	list-style-type: none;
	width:25%;
	display:inline-block;
	padding: 10px 10px 10px 0;
	text-align: left;
	-webkit-transform: translateX(345px);
	-ms-transform: translateX(345px);
	transform: translateX(345px);	
	white-space:nowrap;
}
.b-nav li:not(.open) {
	animation-duration: 0.4s;
	animation-fill-mode: both;
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}
.b-nav li:not(.open), .b-nav.open li {
	-webkit-animation-duration: 0.4s;
	-webkit-animation-fill-mode: both;
}
.b-nav li:first-child {
	margin-top: 0px
}
.b-nav.open {
	visibility: visible;
	animation-duration: 0.4s;
	animation-fill-mode: both;
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}
.b-nav:not(.open) {
	visibility: hidden;
	animation-duration: 0.4s;
	animation-fill-mode: backwards;
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}
.b-nav.open li {
	padding-left: 5%;	
	animation-duration: 0.2s;
	animation-fill-mode: both;
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}
.b-link {
	background: 0 0;	
	color: #fff;
	transition: all .4s ease;
	width: auto;
}
.b-link, .b-menu {
	-webkit-transition: all .4s ease;
}

/*.b-link--active,
.b-link:hover {
    border-left: #e00a12 solid 5px;
    padding-left: 30px
}*/

.b-menu {
	cursor: pointer;
	display: block;
	height: 32px;	
	position: relative;	
	transition: all 0.4s ease 0s;
	width: 32px;
	z-index: 12;	
	background:transparent;
	padding:6px;
}
.b-bun--bottom, .b-bun--mid, .b-bun--top {
	height: 2px;
	width: 20px;
}
.b-bun {
	background: #F9E2BE;
	transition: all .4s ease;
}
.b-brand, .b-bun {
	position: relative;
	-webkit-transition: all .4s ease;
}
.b-bun--top {top: -2px;}
.b-bun--mid {top: 5px;}
.b-bun--bottom {top: 12px;}
.b-brand{
	color: #F9E2BE;
	top: -21.43px;
	transition: all .4s ease;
	z-index: 13;
}
.b-container {
	position: absolute;
	left:0;top:12px;
}
.b-container:hover:not(.open) .bun-bottom, .b-container:hover:not(.open) .bun-mid, .b-container:hover:not(.open) .bun-top {
	background: #F9E2BE;
}
.b-container.open .b-bun--top {
	background: #F9E2BE;
	top: 6px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.b-container.open .b-bun--mid {opacity: 0;}
.b-container.open .b-bun--bottom {
	background: #F9E2BE;
	top: 2px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.b-container.open .b-brand {color: #F9E2BE;}