/*------------------------------------*\

    Flaunt JS Navigation

\*------------------------------------*/



.nav {
	position: relative;
	display: inline-block;
	font-size: 16px;
	color: #ffffff;
	z-index: 99;
	vertical-align: top;
	text-transform: uppercase;
}
.nav-list {
	text-align: left;
	list-style: none;
	padding: 0;
	margin: 0;
}
.menu-item {
	float: left;
 *display:inline;
	zoom: 1;
	position: relative;
}
.menu-item a {
	display: block;
	color: #000;
	padding: 0px;
	-webkit-transition: background-color 500ms ease-out 0s;
	-moz-transition: background-color 500ms ease-out 0s;
	-o-transition: background-color 500ms ease-out 0s;
	transition: background-color 500ms ease-out 0s;
}
.menu-item a span {
	display: block;
	text-align: center;
	margin-bottom: 10px;
}
.menu-item > a:hover,
.menu-item > a:focus {
	text-decoration: none;
	color:#82c05d;
}
.menu-item:hover .sub-menu {
	display: block;
}
/* Navigation submenu */

.sub-menu {
	display: none;
	position: absolute;
	left: 0;
	width: 234px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.sub-menu li {
	position: relative;
	width: 100%;
}
.sub-menu a {
	background: #f1d663;
	border-bottom: 1px solid #b7bec3;
	display: block;
	padding: 12px 19px;
	height:auto;
	line-height:1.2em;
}
.sub-menu a:hover,
.sub-menu a:focus {
	text-decoration: none;
	background-color:#00394c;
	color:#fff;
}
.sub-menu ul {
	position: absolute;
	left: 100%;
	top: 0;
	list-style: none;
	border-left: 1px solid #b7bec3;
}
.menu-item .sub-menu ul {
	display: none !important;
}
.menu-item .sub-menu li:hover ul {
	display: block !important;
}
/* Mobile navigation */

.nav-mobile {
	display: none; /* Hide from browsers that don't support media queries */
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background: #3D3D3B url(../img/nav.svg) no-repeat center center;
	background-size: 18px;
	height: 50px;
	width: 50px;
}
/* Mobile navigation, clickable area for revealing <ul> */

.nav-click {
	position: absolute;
	top: 0;
	right: 0;
	display: none;
/*	border-left: 1px solid #000;
*/	height: 49px;
	width: 50px;
	cursor: pointer;
}
.nav-click i {
	display: block;
	height: 48px;
	width: 48px;
	background: url(../img/drop.svg) no-repeat center center;
	background-size: 20px;
	background-color:#3d3d3b;
}
/*.nav-click:hover {
	background-color: #000;
}*/
.nav-rotate {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}



/*------------------------------------*\

    Media Queries

\*------------------------------------*/



@media only screen and (min-width: 320px) and (max-width: 767px) {
.nav-mobile {
	display: block;
}
.nav {
	width: 100%;
	padding: 50px 0 0;
	background: #2d5c16;
}
.nav-list {
	display: none;
}
.menu-item {
	width: 100%;
	float: none;
}
.menu-item > a {
	padding: 15px;
}
.nav-click {
	display: block;
}
.nav-mobile-open {
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
}
.menu-item:hover .sub-menu {
	display: none;
}
.sub-menu {
	position: static;
	width: 100%;
}
}
.sub-menu li a
{
	font-size: 14px !important;
}