@charset "UTF-8";
/* ------------------------------------------
  RESET
--------------------------------------------- */


a:active, a:hover {
	outline: 0;
}
 @-webkit-viewport {
width: device-width;
}
@-moz-viewport {
width: device-width;
}
@-ms-viewport {
width: device-width;
}
@-o-viewport {
width: device-width;
}
@viewport {
width: device-width;
}
/* ------------------------------------------
  BASE DEMO STYLES
--------------------------------------------- */


/* ------------------------------------------
  NAVIGATION STYLES
  (+ responsive-nav.css file is loaded in the <head>)
--------------------------------------------- */

.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}
.nav-collapse, .nav-collapse * {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.nav-collapse, .nav-collapse ul {
	list-style: none;
	width: 100%;
	float: left;
	height: auto;
	background: #594f3e;
	padding-left:0.3%;
}
.nav-collapse li {
	float: left;
	width: 12.3%;
	margin-left: 1px;
	display: block;
	position: relative;
}
.nav-collapse a {
	color: #fff;
	text-decoration: none;
	padding: 0.9em 0.6em;
	text-align: center;
	display: block;
	text-transform: uppercase;
	font-size: 13px;
}
.nav-collapse a:hover, .nav-collapse .active {
	border-bottom: 5px solid #fbe400;
}
.nav-collapse ul ul {
	display: none;
}
.nav-collapse ul li:hover > ul {
	display: block;
}
.nav-collapse ul ul {
	background: #594f3e;
	position: absolute;
	top: 100%;
	z-index: 10000000;
}
.nav-collapse ul ul li {
	float: none;
	position: relative;
	padding:none;
	width: 100%;
}
.nav-collapse ul ul li a {
	padding: 10px 10px;
	color: #fff;
	text-align:center;
}

.nav-collapse ul ul li a ,.nav-collapse ul ul li a:hover, .nav-collapse ul ul li .active {
	border-bottom: 1px solid #fbe400;
	
}
.nav-collapse ul ul li a:hover{border-top:5px solid #fbe400;}
.nav-collapse ul ul li a:hover, .nav-collapse ul ul li .active {
	background:#000;
}

@media screen and (max-width: 768px) {
.nav-collapse li {
	width: 100%;
}
.nav-collapse a {
	color: #fff;
	text-decoration: none;
	width: 100%;
	border-bottom: 1px solid #fbe400;
	padding: 0.9em 1em;
	float: left;
	font-size:14px !important;
}
.nav-collapse a:hover, .nav-collapse .active {
	border-bottom: 1px solid #fbe400;
}
}

@media screen and (max-width: 768px) {
.nav-collapse a {
	margin: 0;
	padding: 1em 2em;
	float: left;
	text-align: left;
}
}
.nav-collapse ul ul a {
	background: #594f3e;
	padding-left: 2em;
}

@media screen and (max-width: 768px) {
.nav-collapse ul ul a {
	float: left !important;
	background: #fbe400;
	color: #594f3e !important;
	position: relative;
	border-bottom: 1px solid #594f3e;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
}
/* ------------------------------------------
  NAV TOGGLE STYLES
--------------------------------------------- */

.nav-toggle {
	position: fixed;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none;
	text-indent: -999px;
	position: relative;
	overflow: hidden;
	width: 100%;
	background: #594f3e;
	height: 55px;
	float: right;
}
.nav-toggle:before {
	color: #fbe400; /* Edit this to change the icon color */
	font-family: "Times New Roman", serif;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	font-size: 28px;
	text-transform: none;
	position: absolute;
	content: "Menu";
	background: #594f3e;
	padding: 0 0.2em 0 0.2em;
	text-indent: 0;
	text-align: center;
	line-height: 55px;
	speak: none;
	width: 100%;
	top: 0;
	left: 0;
}
.nav-toggle.active::before {
	font-size: 24px;
	content: "x";
}