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

/*------------------------------------*\
    Responsive Navigation
\*------------------------------------*/

a,
a:hover {
	text-decoration:none;
}
ul,
ol {
	list-style:none;
}


/* Navigation styling */
.nav {
	position:relative;
	display:inline-block;
	float: right;
}
.nav-list {
	
}
.nav-item {
	float:left;
	*display:inline;
	zoom:1;
}
.nav-item a {
	display:block;
    text-transform: uppercase;
}
.nav-item:first-child a {
}
.nav-item:last-child a {
}
.nav-item a:hover {

}
/* Mobile Navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:0;
	right:0;
	background:#141874 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 (max-width:767px) {
	.nav-mobile {
		display:block;
	}
	.nav {
		width:100%;
		padding:40px 0 0;
	}
	.nav-list {
		display:none;
	}
	.nav-item {
		width:100%;
		float:none;
   	    text-align: center;
 		background-color: #141874;
		opacity: 0.9;
	}
	.nav-item a {
	}
	.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;
	  background-color: #F7F7F7;
	}
	.nav-mobile-open {
		border-radius:5px 5px 0 0;
		-webkit-border-radius:5px 5px 0 0;
		-moz-border-radius:5px 5px 0 0;
	}
	.menu_social {
		float: left;
		width: 100%;
	}
	.menu {
		position: absolute;
		right: 0;
		top: 7px;
		width: 100%;
	}

}