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

/*------------------------------------*\
    Responsive Navigation
\*------------------------------------*/
body {
}
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:50px 0;
	text-align:center;
}
.content {
	text-align:left;
	margin:25px 0;
}
.content-text {
	margin:0 0 15px;
}
/* Navigation styling */
.nav {
	position:relative;
	display:inline-block;
	width: 100%;
	margin-top: 1%;
}
.nav-list {
	
}
.nav-item {
	float:left;
	*display:inline;
	zoom:1;
}
.nav-item a {
	display:block;
	padding:15px 20px;
	color:#FFF;
}
.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:#2C3E50;
}
/* Mobile Navigation */
.nav-mobile {
	display: none; /* Hide from browsers that don't support media queries */
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	background: #000000 url(../images/nav.svg) no-repeat center center;
	background-size: 50%;
	height: 60px;
	width: 60px;
}

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

@media only screen and (max-width: 1000px) {
	.nav-mobile {
		display:block;
	}
	.nav {
	width: 100%;
	padding-top: 65px;
	}
	.nav-list {
		display:none;
	}
	.nav-item {
		width:100%;
		float:none;
	}
	.nav-item a {
		background:#34495E;
		padding:10px;
	}
	.nav-item:first-child a {
		border-radius:0px;
	}
	.nav-item:last-child a {
		border-radius:0px;
	}
	.nav-active {
		display:block;
	}
	
	.nav-bar{
	padding-right: 3%;
	padding-top: 3%;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #FFFFFF;
	width: 100%;
	}
	.nav-bar ul li {
		display: block;	
		float: left;
		clear: both;
		text-align: right;
		width: 100%;
		margin-bottom: 5px;
		
	}
	
	.logo{
		margin-top: 80px;	
	}
	
}
