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

body {
}
a,
a:hover {
}
ul,
ol {
	list-style:none;
}
.wrapper {
}
.main {
}
.content {
}
.content-text {
	margin:0 0 15px;
}

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

.nav {
}
.nav-list {
	text-align:left;
}
.nav-item {
	float:left;
	*display:inline;
	zoom:1;
	position:relative;
    margin: 2% 0 0 0.3rem; 
}
.nav-item a {
    display:block;
	color:#FFF;
	padding:15px 15px;
	background:#04816a;
	border-bottom:1px solid #155f51;
    transition: background-color 1s ease, color 1s ease;

}
.nav-item > a:hover {
	background:#155f51;
    transition: background-color 1s ease, color 1s ease, margin-top 0.5s ease;
    -webkit-transition: margin-top 0.5s ease;
}
.nav-item:hover .nav-submenu {
	display:block;
}
/* Navigation submenu */
.nav-submenu {
	display:none;
	position:absolute;
	left:0;
	width:180px;
}
.nav-submenu-item a {
    transition: background-color 1s ease, color 1s ease, margin-top 0.5s ease;
    -webkit-transition: margin-top 0.5s ease;
    margin-top: 2%;
	background:#04816a;
	border-bottom:1px solid #155f51;
	display:block;
	padding:15px;
}
.nav-submenu-item a:hover {
    transition: background-color 1s ease, color 1s ease, margin-top 0.5s ease;
    -webkit-transition: margin-top 0.5s ease;
     margin-top: 1rem;
	background:#155f51;
}
/* Mobile navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:0;
	right:0;
	background: url(img/nav.svg) no-repeat center 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:1px solid #68b9aa;
	height:49px;
	width:50px;
	cursor:pointer;
}
.nav-click i {
	display:block;
	height:48px;
	width:48px;
	background: #155f51 url(img/drop.svg) no-repeat center center;
	background-size:20px;
}
.nav-click:hover {
	background-color:#6E1656;
}
.nav-rotate {
	-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: 800px) {
	.nav-mobile {
		display:block;
	}
	.nav {
		width:100%;
		padding:50px 0 0;
	}
	.nav-list {
		display:none;
	}
	.nav-item {
		width:100%;
		float:none;
	}
	.nav-item > a {
		padding:15px;
	}
	.nav-click {
		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;
	}
	.nav-item:hover .nav-submenu {
		display:none;
	}
	.nav-submenu {
		position:static;
		width:100%;
	}
}