#header {
	background: #E2E3C9;
	color: #252525;
	cursor: default;
	height: 3.25em;
	left: 0;
	line-height: 3.25em;
	position: fixed;
	text-align: right;
	display: flex;
	justify-content: space-between;
	align-items: center;
	top: 0;
	width: 100%;
	z-index: 10001;
}

#header>h1 {
	color: #ffffff;
	display: inline-block;
	height: inherit;
	left: 1.25em;
	line-height: inherit;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
}

#header>h1 a {
	font-size: 1.25em;
	color: #FFFFFF;
}

#header>h1 a:hover {
	color: #ffffff;
}

#header>h1 span {
	font-weight: 300;
	font-size: .8em;
}

#header>a {
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	display: inline-block;
	padding: 0 0.75em;
	color: inherit;
	text-decoration: none;
}

#header>a:hover {
	color: #ffffff;
}

#header>a[href="#menu"] {
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

#header>a[href="#menu"]:before {
	content: "";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

#header>a[href="#menu"]:before {
	margin: 0;
	font-size: 22px;
}

#header>a+a[href="#menu"]:last-child {
	border-left: solid 1px rgba(255, 255, 255, 0.15);
	padding-left: 1.25em;
	margin-left: 0.5em;
}

#header>a:last-child {
	padding-right: 1.25em;
}

@media screen and (max-width: 736px) {

	#header>a {
		padding: 0 0.5em;
	}

	#header>a+a[href="#menu"]:last-child {
		padding-left: 1em;
		margin-left: 0.25em;
	}

	#header>a:last-child {
		padding-right: 1em;
	}

}

@media screen and (max-width: 980px) {

	body {
		padding-top: 44px;
	}

	#header {
		height: 60px;
		line-height: 44px;
	}

	#header>h1 {
		left: 1em;
	}

	#header>h1 a {
		font-size: 1em;
		color: #FFFFFF;
	}

}

@media screen and (max-width: 480px) {

	#header {
		min-width: 320px;
	}

}

/* Menu */

#menu {
	-moz-transform: translateX(20em);
	-webkit-transform: translateX(20em);
	-ms-transform: translateX(20em);
	transform: translateX(20em);
	-moz-transition: -moz-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-transition: -webkit-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-ms-transition: -ms-transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	transition: transform 0.5s ease, box-shadow 0.5s ease, visibility 0.5s;
	-webkit-overflow-scrolling: touch;
	background: #D20306;
	box-shadow: none;
	color: #ffffff;
	height: 100%;
	max-width: 80%;
	overflow-y: auto;
	padding: 3em 2em;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 20em;
	z-index: 10002;
}

#menu>ul {
	margin: 0 0 1em 0;
}

#menu>ul.links {
	list-style: none;
	padding: 0;
}

#menu>ul.links>li {
	padding: 0;
}

#menu>ul.links>li>a:not(.button) {
	border: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.15);
	color: inherit;
	display: block;
	line-height: 3.5em;
	text-decoration: none;
}

#menu>ul.links>li>.button {
	display: block;
	margin: 0.5em 0 0 0;
}

#menu>ul.links>li:first-child>a:not(.button) {
	border-top: 0 !important;
}

#menu .close {
	text-decoration: none;
	-moz-transition: color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	-webkit-tap-highlight-color: transparent;
	border: 0;
	color: #FFF;
	cursor: pointer;
	display: block;
	height: 3.25em;
	line-height: 3.25em;
	padding-right: 1.25em;
	position: absolute;
	right: 0;
	text-align: right;
	top: 0;
	width: 7em;
}

#menu .close:before {
	content: "";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}

#menu .close:before {
	font-size: 1.25em;
}

#menu .close:hover {
	color: #ffffff;
}

@media screen and (max-width: 736px) {

	#menu .close {
		height: 4em;
		line-height: 4em;
	}

}

#menu.visible {
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	box-shadow: 0 0 1.5em 0 rgba(0, 0, 0, 0.2);
	visibility: visible;
}

@media screen and (max-width: 736px) {

	#menu {
		padding-bottom: 2.5em;
		padding-left: 1.75em;
		padding-right: 1.75em;
		padding-top: 2.5em;
	}

}

#hero {
	display: -ms-flexbox;
	-ms-flex-pack: center;
	-ms-flex-align: center;
	padding: 8em 0 6em 0;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	background-image: url(StarTatMain.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-top: 0;
	min-height: 100vh;
	height: 100vh !important;
	position: relative;
	text-align: center;
	overflow: hidden;
}

#hero .inner {
	-moz-transform: scale(1.0);
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	-moz-transition: opacity 1s ease, -moz-transform 1s ease;
	-webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
	-ms-transition: opacity 1s ease, -ms-transform 1s ease;
	transition: opacity 1s ease, transform 1s ease;
	opacity: 1;
	position: relative;
	z-index: 2;
}

#Hog {
	margin-left: auto;
	margin-right: auto;
	height: auto;
	max-height: 50vh;
	max-width: 75vw;
}

#hero:before {
	-moz-transition: opacity 3s ease;
	-webkit-transition: opacity 3s ease;
	-ms-transition: opacity 3s ease;
	transition: opacity 3s ease;
	-moz-transition-delay: 1.25s;
	-webkit-transition-delay: 1.25s;
	-ms-transition-delay: 1.25s;
	transition-delay: 1.25s;
	content: '';
	display: block;
	background-color: #E2E3C9;
	height: 100%;
	left: 0;
	opacity: 0.45;
	margin-top: -25px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}