header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(255, 255, 255, 1.0);
	z-index: 3;
	will-change: transform;
	transition: background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
	transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s;
	transition: transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1), background 0.3s, -webkit-transform 0.5s cubic-bezier(0.694, 0.048, 0.335, 1);
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.container {
	padding:25px 0;
	min-height:110px;
}

.logo img {
    width:192px;
    height:55px;
}

header nav .logo {
	float: left;
}

header nav .logo:after {
	content: '';
	display: table;
	clear: both;
}

header nav ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

header nav ul li {
	float: none;
}



.menu-left a {
	display: inline-block;
	position: relative;
	transition: color .35s ease;
	text-decoration:none;
	padding:5px 0 2px;
	font-size:1.1rem;
	text-transform:uppercase;
	color:#313e48;
}

.menu-left a:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	transition: width 0s ease, background .35s ease;
}

.menu-left a:after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	height: 2px;
	width: 0;
	background: #ec7f1f;
	transition: width .35s ease;
}

.menu-left a:hover:before {
	width: 100%;
	background: #ec7f1f;
	transition: width .35s ease;
}

.menu-left a:hover:after {
	width: 100%;
	background: transparent;
	transition: all 0s ease;
}

.hide-nav {
	transform: translateY(-120% !important); -webkit-transform: translateY(-120%) !important;
}

ul.menu-left {
	display: block;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: 10;
}

ul.menu-left:before {
	content: '';
	display: table;
	clear: both;
}

ul.menu-left.collapse { max-height: 15em !important; }

.nav-toggle {
	display: block;
	border-radius: 5px;
	background-color: transparent;
	float: right;
	height: 48px;
	width: 48px;
	cursor: pointer;
	padding: 8px 8px;
	margin-top:10px;
}

.nav-toggle.open span:first-child { transform: rotate(45deg) translate(5.6px, 5.6px); }

.nav-toggle.open span:nth-child(2) {
	width: 0%;
	opacity: 0;
}

.nav-toggle.open span:last-child { transform: rotate(-45deg) translate(5.6px, -5.6px); }

.nav-toggle span {
	position: relative;
	display: block;
	height: 2px;
	width: 100%;
	margin-top: 6px;
	background-color: #000;
	transition: all .25s;
}


@media (min-width: 980px) {

	header nav ul li {
		display:inline;
	}
	
	ul.menu-left {
		display: block !important;
		float: right;
		max-height: none;
		margin-top:15px;
	}
	
	.nav-toggle { display: none; }
	
	header nav ul li:not(:last-child):after {
		content:" | ";
		padding: 0 15px;
		position:relative;
		top:0;
		color:#ccc;
	}
}


@media (max-width: 979px) {
	
	ul.menu-left {
		position: absolute;
		top: 110px;
		right: 0;
		background: #fff;
		width: 100%;
		text-align: right;
		padding:0  40px 0 0;
	}
	
	ul.menu-left li {
		padding-bottom:10px;
	}
	
}


@media (min-width: 576px) {

	header nav ul li a {
		display: block;
	}
	
}










