/*
Custom Style
=========================== */
nav {
	/* border-bottom: solid 1px #efefef; */
	min-height: 60px;
	/* background: #fff; */
}

nav .brand {
	display: block;
	position: relative;
	width: 150px;
	top: -20px;
	left: 0px;
}

nav .brand img {
	width: 100%;
}

nav .menu li a {
	position: relative;
	display: block;
	font-size: 16px;
	padding: 10px 25px;
	color: #fff;
	font-weight: 400;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.5s;
}

nav .menu li.active>a,
nav .menu li a:hover {
	color: #ffffff;
	background: #0095ffb0;
}

@media (max-width: 992px) {

	nav .full-container,
	nav .nav-container {
		padding-left: 0;
		padding-right: 0;
	}

	nav .nav-header {
		min-height: 100px;
	}

	nav .nav-header .brand {
		margin: 0 auto 5px;
		float: none;
	}

	nav .nav-header .toggle-bar {
		font-size: 18px;
		position: absolute;
		top: 25px;
		left: 15px;
		color: #fff;
	}

	nav.core-nav.nav-core-sticky.on-scroll .brand {
		width: 100px;
		top: 8px;
		left: -70px;
	}
	
	nav .menu li a {
		padding: 10px 10px;
		font-size: 20px;
		left: 0;
	}

	nav .menu li:last-child a {
		border-bottom: none;
	}
}

/* =========================== */
@media (min-width: 992px) {
	nav .brand {
		display: block;
		position: relative;
		width: 150px;
		top: -20px;
		left: -160px;
	}
	nav .nav-header .brand {
		float: left;
		left: 0px;
	}
	
	.core-nav.nav-core-sticky.on-scroll {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 999;
		height: 65px;
		background: #062550;
	}
	
	nav.core-nav.nav-core-sticky.on-scroll .brand {
		width: 100px;
		top: 8px;
		left: -70px;
	}

}