/* ================================================== HEADER ================================================== */
header	{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 10px 0;
	background: #fff;	/*rgba(255, 255, 255, 0.80);*/
	z-index: 1000;
	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);
/*	border-bottom:1px solid black;	*/
}
.header-logo	{
	float: left;
}
.header-logo:after	{
	content: '';
	display: table;
	clear: both;
}
header nav ul	{
	list-style: none;
	padding-left: 0;
	margin: 0;
	margin-top: 65px;
}
header nav ul li	{
	float: none;
	margin-left: 0;
}
header nav ul li a	{
	font-family: Roboto;
	font-weight: medium;
	font-size: 15px;
	color: #f6852b;
	display: block;
}
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: 1000;
}
ul.menu-left:before	{
	content: '';
	display: table;
	clear: both;
}
ul.menu-left.collapse	{
	max-height: 240px !important;
}
.nav-toggle	{
	display: block;
	border-radius: 5px;
	background-color: transparent;
	float: right;
	height: 38px;
	width: 38px;
	cursor: pointer;
	padding: 8px 8px;
}
.nav-toggle.open span:first-child	{
	transform: rotate(45deg) translate(4.4px, 4.4px);
}
.nav-toggle.open span:nth-child(2)	{
	width: 0%;
	opacity: 0;
}
.nav-toggle.open span:last-child	{
	transform: rotate(-45deg) translate(4.4px, -4.4px);
}
.nav-toggle span	{
	position: relative;
	display: block;
	height: 2px;
	width: 100%;
	margin-top: 4px;
	background-color: #000;
	transition: all .25s;
}
a	{
	text-decoration: none;
	color: rgba(34, 34, 34, 0.8);
}
a:hover, a:focus	{
	color: #0e9687;
}
.menu-left a	{
	display: inline-block;
	position: relative;
	padding-bottom: 0px;
	transition: color .35s ease;
}
.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: #f6852b;
	transition: width .35s ease;
}
.menu-left a:hover:before	{
	width: 100%;
	background: #0e9687;
	transition: width .35s ease;
}
.menu-left a:hover:after	{
	width: 100%;
	background: transparent;
	transition: all 0s ease;
}
@media (min-width: 768px)	{
	header nav ul li	{
		float: left;
		margin-left: 16px;
	}
}
@media (min-width: 576px)	{
	header nav ul li a	{
		display: block;
		padding: 6.8px 0;
	}
}
@media (max-width: 768px)	{
	ul	{
		clear: both;
	}
	ul li	{
		padding: 8px 0;
	}
}
@media (min-width: 768px)	{
	ul.menu-left	{
		display: block !important;
		float: right;
		max-height: none;
	}
}
@media (min-width: 768px)	{
	.nav-toggle	{
		display: none;
	}
}
/* ================================================== CONTAINER ================================================== */
.container	{
	padding: 0px 65px 0px 65px;
/*	border:1px solid black;		*/
}
@media screen and (min-width: 360px) and (max-width: 640px) {
	header	{
		position: fixed;
		width: 100%;
	}
	.header-logo img	{
		width: 80%;
		height: auto !important;
	}
	.container	{
		max-width: 100%;
		padding: 0px 15px 0 15px;
	}
	.container:after	{
		content: " ";
		display: block;
		clear: both;
	}
}