/* Basic Styles */
:root {
 --nav-bg: #333;
 --nav-link: #fff;
 --nav-hover: #575757;
 --submenu-bg: #fff;
}
/* Navbar container */
.menu {
	width: 100%;
	float: left;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 1rem;
	position: relative; /* For absolute positioning of submenus and mobile menu */
}
.nav-menu {
	display: flex;
	flex-grow: 1;
	align-items: center;
	justify-content: center;
	list-style: none;
	justify-content: space-between;
}
.nav-item {
	line-height: 50px;
}
.nav-item a {
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	color: #D5AF32;
	display: block;
	padding:0;
	text-transform: uppercase;
	position: relative;
}
/*Desktop navigation li border bottom line on hover effect*/
.nav-item > a::before{ 
	align-content: center;
	content:""; 
	width:0; 
	height:3px; 
	background:#667a6e; 
	position:absolute; 
	left: 0;
	bottom: 5px; 
	border-radius: 50px; 
	transition: all .5s ease;
}
.nav-item:hover >a::before{ width: 100%; }

.nav-item:hover > a{ color: green;}
.nav-item a:hover{ color: #667a6e; transition: all .5s ease;} /*nav text color & transition*/

/*End*/

.has-submenu {
	position: relative;
}
.submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: var(--submenu-bg);
	min-width: 150px;
	z-index: 100;
}
.submenu a {
	transition: all .3s ease;
	color: #FFF;
}
.submenu {
	background: #D5AF32;
}
.submenu a:hover {
	background: #667A6E;
	color: #FFF;
}
.sticky-header .nav-item a {
	color: #FFF;
}
.sticky-header .nav-menu .nav-logo img {
	filter: brightness(0) invert(1);
}
.sticky-header .nav-item a::before {
	background: #D5AF32;
}
.sticky-header .submenu {
	background: #D5AF32;
}
.sticky-header .submenu a {
	transition: all .3s ease;
}
.sticky-header .submenu a:hover {
	background: #667A6E;
	color: #FFF;
}
ul.submenu li {
	line-height: 40px;
	border-bottom: 1px solid #e8e8e8;
}
ul.submenu li:last-child {
	border-bottom: none;
}
.has-submenu:hover > .submenu {
	display: block;
}
/* Logo styling */
.nav-menu .nav-logo {
	font-weight: bold;
	margin: 0 4rem;
	transition: all .3s ease;
}
.nav-menu .nav-logo img {
	transition: all .3s ease;
}
/* Hamburger menu - hidden on desktop */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	position: absolute;
	right: 20px;
	z-index:100
}
.hamburger .bar {
	width: 30px;
	height: 3px;
	background-color: #667A6E;
	margin: 4px 0;
	transition: 0.4s;
	 
}
.sticky-header .hamburger .bar {
	background-color: #FFFF;
	transition: all .3s ease;
}
.sticky-header .hamburger:hover .bar {
	background-color: #D5AF32;
}
/* Hamburger animation when active */
.hamburger.active .bar {
	background-color: #FFF;
}
.hamburger.active .bar:nth-child(1) {
	transform: rotate(-45deg) translate(-8px, 6px);
}
.hamburger.active .bar:nth-child(2) {
	opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
	transform: rotate(45deg) translate(-9px, -7px);
}
 @media only screen and (max-width:767px) {
.navbar {
	height: 60px;
}
 .nav-menu{display:none;}
/*.nav-menu{display:none;}*/
  
.nav-menu .nav-logo {
	display: none;
}
.nav-item > a {
	transition: all .3s ease;
}
.nav-item:hover > a {
	padding-left: 40px;
}
.nav-item > a::before, .sticky-header > a::before {
	width: 6px;
	height: 0px;
	left: 0;
	top: 0;
	background-color: #D5AF32;
}
.nav-item:hover > a::before, .sticky-header > a::before {
	width: 6px;
	height: 100%;
}
.sticky-header .hamburger:hover .bar {
	background-color: #fff;
}
.sticky-header {
	background-color: #1F1F1F;
}
.sticky-header .submenu {
	background: none;
}
.navbar {
	justify-content: space-between;
}
.nav-logo {
	margin: 0;
}
/* Hide desktop menu by default */
.menu {
	height: 100vh;
	background: #667A6E;
	width: 100%;
	left: -120%;
	position: fixed;
	top: 0px;
	z-index: 100;
	transition: all 0.5s ease 0s;
}
.menu.active {
	margin-left: 0px;
	left: 0;
	transition: all 0.5s ease 0s;
}
.nav-menu {
	/*display: none;*/
	flex-direction: column;
	width: 100%;
	background-color: #667A6E;
	z-index: 999;
	display: block;
}
.nav-item a {
	color: #FFF;
}
.nav-item:hover > a {
	color: #D5AF32;
}
.nav-menu.active {
/* display: flex;*/
   
}
.nav-item {
	width: 100%;
}
.nav-item a {
	padding: 1rem 2rem;
	border-top: 1px solid #6e8276;
}
/* Submenu for mobile (tap) */
.has-submenu > a {
	position: relative;
}
.nav-menu .has-submenu > a::after {
	content: "+";
	font-size: 1.2rem;
	position: absolute;
	right: 1rem;
	top: 15px;
}
.has-submenu.open > a::after {
	content: '-';
}
.sticky-header .submenu, .submenu {
	display: none;
	background: #708277;
	padding-left: 1rem;
	position: static;
}
ul.submenu li {
	border-bottom: 1px solid #6e8276;
}
.submenu a {
	line-height: 24px;
	;
}
.sticky-header .submenu a:hover, .submenu a:hover {
	background: none;
	padding-left: 50px;
	color: #D5AF32;
}
.has-submenu:hover > .submenu {
	display: none;
}
/* Show hamburger menu */
.hamburger {
	display: flex;
}
}
