/*
	Todd Motto Labs
	URL: www.toddmotto.com
*/

/*------------------------------------*\
    Responsive Navigation
\*------------------------------------*/
body {
	background:#ffffff;
}
a,
a:hover {
	text-decoration:none;
}
ul,
ol {
	list-style:none;
}
.wrapper {
	max-width:1280px;
	width:95%;
	margin:0 auto;
	position:relative;
}
.main {
	width:100%;
	margin:25px 0;
	text-align: right;
}
.content {
	text-align:left;
	margin:25px 0;
}
.content-text {
	margin:0 0 15px;
}
/* Navigation styling */
.nav {
	position:relative;
	display:inline-block;
	font-size:17px;
	font-weight:900;
	z-index:99;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
	
	.nav {
	position:relative;
	display:inline-block;
	font-size:16px;
	font-weight:900;
	z-index:99;
}
		
		
		

}

@media only screen and (min-width: 320px) and (max-width: 768px) {
.nav-list {
	margin-top:-50px;

}

}


.nav-list {
	

}
.nav-item {
	float:left;
	*display:inline;
	zoom:1;
}
.nav-item a {
	display:block;
	padding:15px 20px;
	color: #000;
	
}

.nav li ul { 
     display:none;
     position:absolute;
	 text-align:left;
	 min-width:120px;
	 background-color:#FFF;
	 }

.nav li:hover > ul{ display:block}

.nav-item:first-child a {
	border-radius:5px 0 0 5px;
}
.nav-item:last-child a {
	border-radius:0 5px 5px 0;
}
.nav-item a:hover {
	background-image: url(../images/hover.png);
	background-repeat: no-repeat;
	background-size:100% 50%;
	
	
}
/* Mobile Navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	margin-top:-70px;
	top:10px;
	right:0;
	background:#044322 url(../images/nav.svg) no-repeat center center;
	height:40px;
	width:40px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}

/*------------------------------------*\
    Media Queries
\*------------------------------------*/

@media only screen and (min-width: 320px) and (max-width: 930px) {
	.nav-mobile {
		display:block;
	}
	.nav {
		width:100%;
		padding:40px 0 0;
	}
	.nav-list {
		display:none;
	}
	.nav-item {
		width:100%;
		float:none;
	}
	.nav-item a {
	background: #fff;
	padding: 10px;
	text-align:center;
	
	}
	.nav-item:first-child a {
		border-radius:5px 0 0;
	}
	.nav-item:last-child a {
		border-radius:0 0 5px 5px;
	}
	.nav-active {
		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;
		text-align:center;
	}
}


