/*
 * Navigataur: A pure CSS responsive navigation menu
 * Author: Mike King (@micjamking)
 */

/*
 	Notes:

 	- Media queries should be edited in both style sections if you require
	  a different breakpoint for your navigation.

	- Toggle class & menu anchor tags in list items have box-sizing: border-box
	  style property to allow padding inside the container without conflicting with layout.

*/


/*--------------------------------
 Functional Styles (Required)
---------------------------------*/

.header { position: relative; }
#toggle, .toggle { display: none; }
.menu > li { list-style: none; display: inline-block; }
.footMenu > li { list-style: none; display: inline-block; }

/* Nicolas Gallagher micro clearfix */
.clearfix:before, .clearfix:after { display: table; content: ""; }
.clearfix:after { clear: both; }

@media only screen and (max-width: 768px) {
	.menu { display: none; opacity: 0; width: 100%; position: absolute; right: 0; }
	.menu > li { display: block; width: 100%; margin: 0; }
	.menu > li > a { display: block; width: 100%; text-decoration: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
	.toggle { display: block; position: relative; cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; }
	#toggle:checked + div .menu { display: block; opacity: 1; position: relative;}
}

/*--------------------------------
 Presentation Styles (Editable)
---------------------------------*/

.header {
	min-height: 100px;
	height: 100%;
	padding: 0;
	background: transparent;
	position: relative;
}

.header > h1.legacy {
	float: left;
	padding: 30px 0 0;
	font-style: italic;
	font-family: Georgia;
	font-size: 28px;
	color: #DFDFDF;
	text-shadow: 1px #ffffff;
}

.header-logoBG {
	width: 100%;
	margin-top: 20px;
	border-radius: 10px;
	background-color: rgba(0,0,0,0.2);
}

.header-logo {
	overflow: hidden;
	padding-bottom: 11%;
	height: 0;
	background: url(/assets/title-white-stroke.png) no-repeat;
	background-size: contain;
	text-indent: 200%;
	white-space: nowrap;
}

.headingWrapper {
	width: 80%;
	margin: 9% auto 1%;
}

.heading_landing {
	overflow: hidden;
	padding-bottom: 15%;
	height: 0;
	background: url(/assets/name-wide-stroke.png) no-repeat;
	background-size: contain;
	text-indent: 200%;
	white-space: nowrap;
}

.nav {
	/* display: block; */
	/* float: right; */
	margin: auto;
}

.menu {
	margin-bottom: 0;
}

.menu > li, .menu > li > a {
	height: 100%;
}

.menu > li > a,
.footMenu > li > a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	line-height: 1;
	color: #000000;
	border-radius: 10px;
	text-shadow: 0 0 4px #eee8c1;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.25s linear;
	-moz-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

.menu > li > a:hover, .menu > li > a:focus,
.footMenu > li > a:hover, .footMenu > li > a:focus {
	background-color: rgba(0, 0, 0, 0.2);
	box-shadow: inset  0 0 5px rgb(238, 232, 193);
	color: #eee8c1;
	text-shadow: 0 0 6px #000000;
}

.navWrap .menu .current {
	display: none;
}

.toggle{
	z-index: 2;
}

@media only screen and (max-width: 768px) {
	.menu{
		background-color: rgb(238, 232, 193);
		border-top: 1px solid #51C1F1;
		z-index: 500;
	}

	.menu, .menu > li, .menu > li > a {
		height: auto;
	}

	.menu > li > a {
		padding: 15px 15px;
	}

	.menu > li > a:hover, .menu > li > a:focus {
		/* background: #F2F2F2; */
		color: #000000;
		box-shadow: inset 5px 0px rgb(238, 232, 193);
		padding: 15px 15px 15px 25px;
		text-shadow: 0 0 0;
	}

	.toggle:after {
		content: attr(data-open);
		display: block;
		margin: 0;
		padding: 10px 20px;
		background: #2E3F08;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		text-align: center;
		font-size: 12px;
		color: #FFFFFF;
		-webkit-transition: all 0.5s linear;
		-moz-transition: all 0.5s linear;
		-o-transition: all 0.5s linear;
		transition: all 0.5s linear;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.toggle:hover:after {
		background: #152F03;
	}

	#toggle:checked + div .toggle:after {
		content: attr(data-close);
	}
}

@media only screen and (max-width: 479px) {
	.header > h1 {
		text-align: center;
	}
	.header > h1, .nav, .toggle:after {
		float: none;
	}
	.toggle:after {
		text-align:
