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

*,
*:after,
*:before {
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}


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

.wrapper {
	max-width:1280px;
	margin:0 auto;
}



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


a,
a:hover {
	text-decoration:none; 
}
ul,
ol {
	list-style:none;
}
.wrapper { min-width:100%; width:95%; margin:0 auto; position:relative; }
.main { min-width:100%; text-align:center; }
.content {
	text-align:left;
}

.navbar { background-color: #00274f; position: absolute; height: 50px; z-index: 5000; min-width: 100%; border-top: 1px solid #03366a; }

/*-------------------------*\
    Flaunt JS Navigation
\*-------------------------*/

.nav {
	position:relative;
	display:inline-block;
	font-size:0.9em;
	font-weight:400;
}
.nav-list {
	text-align:left;
}
.nav-item { line-height: 1em; float:left;
	*display:inline;
	zoom:1; position:relative; cursor: pointer; }

.nav-item a {
	font-family: "Ek Mukta", sans-serif;
	font-weight: 400;
	display: block;
	color: #fff;
	font-size: 0.9em;
	padding: 18px 10px 17px;
	background: #00274f;
	text-transform: uppercase;
	cursor: pointer;
}

.nav-item > a:hover, .nav-item > a.nav-active { color: #036; background: #fff; }

.nav-item > a:hover:active { background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; }

.nav-item:hover .nav-submenu {
	display: block;
}


/*-------------------------*\
    Navigation Submenu
\*-------------------------*/

.nav-submenu {
	font-size: 1em;
	font-weight: 400;
	display: none;
	position: absolute;
	left: 0;
	width: 150px;
	opacity: 1;
}
.nav-submenu-item a {
	color: #036;
	background-color: #fff;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0 0;
	text-transform: none;
	display: block;
	padding: 7px 7px 7px 10px;
	cursor: pointer;
	opacity: 1;
}
.nav-submenu-item a:hover { color: #000; background-color: #fefbe2; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; }


/*-------------------------*\
    Mobile Navigation
\*-------------------------*/


.nav-mobile { background-image: url(../img/nav.svg); background-repeat: no-repeat; background-attachment: scroll; background-position: center; display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer; position:absolute; top:0; right:0; 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:0 solid #ddeaee;
	height:45px;
	width:50px;
	cursor:pointer;
}
.nav-click i { display:block; height:45px; width:50px; background:url(../img/drop.svg) no-repeat center; cursor: pointer; background-size:20px; }
.nav-click:hover { background-color: #002f5f; cursor: pointer; }
.nav-rotate { cursor: pointer; -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: 1100px) {

.navbar { height: 49px; outline-style: none; outline-width: 0; }


	.nav-mobile { height: 47px; display:block; }
	.nav { width:100%; padding:48px 0 0; }
	.nav-list {
		display:none;
	}
	.nav-item {
		width:100%;
		float:none;
	}
	.nav-item > a { background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 0; padding:15px 10px; border-bottom:1px solid #036; cursor: pointer; opacity: 1.0; }

.nav-item > a:hover { color: #fff; background-color: #002f5f; }
	.nav-click { height: 44px; cursor: pointer; display:block; }
	.nav-mobile-open { background-color: #036; border-radius:5px 5px 0 0; -webkit-border-radius:5px 5px 0 0; -moz-border-radius:5px 5px 0 0; }
	.nav-item:hover .nav-submenu {
		display:none;
		opacity: 1.00;
	}
	.nav-submenu { position:static; width:100%; }

.nav-submenu-item a { font-size: 1em; opacity: 1.0; }

.nav-submenu-item a:hover {
	background:#fefbe2;
}

}