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

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


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

.wrapper {
	max-width: 1280px;
	margin: 0 auto;
    min-width: 100%; 
    width: 95%; 
    height: 70px;
    position: relative; 
}



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


a, a:hover {
	text-decoration: none; 
}
ul, ol {
	list-style: none;
}
.main { 
    min-width:100%; 
    text-align:center; 
}
.content {
	text-align:left;
}

.navbar {
	background-color: #000;
	position: fixed;
    top: 0;
	height: 70px;
	min-width: 100%;
	opacity: 1;
    z-index: 9999;
}

/*-------------------------*\
    NAVIGATION MENU BAR
\*-------------------------*/

.nav {
	position: relative;
	display: inline-block;
	font-size: 1em;
	background-color: #000;
}
.nav-list {
	text-align:left;
}
.nav-item { 
    line-height: 1em; 
    float: left;
	*display: inline;
	zoom:1; 
    position: relative; 
    cursor: pointer; 
}
.nav-item a {
	display: block;
	color: #8c734b;
    font-family: 'Lulo Clean One', sans-serif;
	font-weight: bold;
	font-style: normal;
	padding-top: 26px;
	padding-right: 26px;
	padding-left: 26px;
	padding-bottom: 26px;
	background-color: #000;
	cursor: pointer;
	text-transform: uppercase;
    letter-spacing: 0px;
}
.nav-item > a:hover, .nav-item > a.nav-active {
	color: #fff;
	background-image: none !important;
	background-repeat: repeat !important;
	background-attachment: scroll !important;
	background-position: 0 0 !important;
	background-color: #000;
}
.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: 0.7em;
	display: none;
	position: absolute;
	left: 0;
	width: 18vw;
	opacity: .93;
}
.nav-submenu-item a {
    font-family: 'Lulo Clean One', sans-serif;
	font-weight: bold;
	font-style: normal;
	background-color: #000;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0 0;
	display: block;
	padding-top: 10px;
	padding-right: 25px;
	padding-left: 25px;
	padding-bottom: 7px;
	cursor: pointer;
	color: #8c734b;
	opacity: .98;
    letter-spacing: -1px;
}
.nav-submenu-item a:hover {
	color: #fff;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0 0;
    opacity: 1;
}
.nav-submenu-item:last-child a {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}


/*-------------------------*\
    MOBILE NAVIGATION
\*-------------------------*/


/* SQUARE BLOCK WITH THE HAMBURGER MENU */
.nav-mobile { 
	display: none; /* Hide from browsers that don't support media queries */
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background: #000 url(../img/nav.svg) no-repeat 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: 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 {
	cursor: pointer;
	background-color: #000;
	height: 45px;
}
.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: 1200px) {

.navbar {
    background-color: #000;
	height: 50px;
	outline-style: none;
	outline-width: 0;
	opacity: 1;
    position: fixed;
    top: 0;
    
 }
.nav-mobile { 
    height: 50px; 
    display:block; 
    background-color: #000;
}
.nav { 
    width: 100%; 
    padding: 50px 0 0; 
    background-color: #000;
    min-width: 100%; 
    border-bottom: solid 2px #8c734b;
}
.nav-list {
    display: none;
	}
.nav-item {
    width: 100%;
    float: none;
	}
.nav-item > a {
	background: #000;
	padding: 18px 15px 15px;
	border-bottom: 1px solid #1C1C1C;
	cursor: pointer;
	opacity: 1.0;
	color: #8c734b;
}
.nav-item > a:hover {
	background-color: #8c734b;
	color: #8D1E20;
}
.nav-item:first-of-type > a {
	background: #000;
	padding: 14px 15px 14px;
	border-bottom: 1px solid #1C1C1C;
	cursor: pointer;
	opacity: 1.0;
	color: #8c734b;
    margin-top: 45px;
}
.nav-click { 
    height: 50px; 
    cursor: pointer; 
    display: block; 
}
.nav-mobile-open {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    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 {
	opacity: 1.0;
	color: #8c734b;
	background-color: #000;
    padding-top: 10px;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 5px;
}
.nav-submenu-item a:hover {
	color: #fff;
}
.nav-item > a:hover, .nav-item > a.nav-active {
	color: #fff;
	background-image: none !important;
	background-repeat: repeat !important;
	background-attachment: scroll !important;
	background-position: 0 0 !important;
	background-color: #000;
}
.nav-submenu-item:last-child a {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}


}