html, body {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	background-color: #f9f9f9;
	overflow-x: hidden;
	overflow-y: hidden;
}

.content {
	flex: 1 0 auto;
}

footer {
	flex-shrink: 0;
	position: relative;
	margin: 0 0 40px 40px;
	z-index: 11;
}

footer p {
	opacity: 0.65;
	text-decoration: none;
	color: #fff;
	font-size: 15px;
	text-transform: capitalize;
	letter-spacing: 1px;
	font-family: 'futura-pt', sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	text-shadow: 0px 0px 10px black;
	display: inline;
	margin: 0 0 0 12px;
	padding: 0 0 20px 0;
	vertical-align: top;
}

ul {
	list-style-type: none;
}

.ed-slideshow,
.ed-slideshow:after {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0;
}

.ed-slideshow li span {
	width: 100%;
	height: 100%;
	position: absolute;
	top: -16px;
	left: 0px;
	color: transparent;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: none;
	opacity: 0;
	z-index: 0;
	animation: imageAnimation 36s linear infinite 0s;
}


div.ed-title-text  {
	z-index: 10;
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	text-align: left;
	opacity: 1;
	color: #fff;
}

div.ed-title-text h2 {
	font-family: 'futura-pt', sans-serif;
	font-size: 60px;
	font-weight: 400;
	padding: 0;
	margin: 40px 0 0 40px;
	line-height: 70px;
	text-transform: uppercase;
	text-shadow: 0px 0px 70px black;
	opacity: 1;
}

div.ed-title-text h2 a {
	text-decoration: none;
	color: #fff;
}

div.ed-title-text h3 {
	font-family: georgia, serif;
	font-size: 16px;
	font-weight: 200;
	padding: 0;
	margin: 40px 0 0 45px;
	line-height: 30px;
	text-transform: uppercase;
	letter-spacing: 8px;
	text-shadow: 0px 0px 10px black;
}

div.ed-title-text h3 a {
	text-decoration: none;
	color: #fff;
}

.ed-slideshow li:nth-child(1) span {
	background-image: url(images/1.jpg);
}

.ed-slideshow li:nth-child(2) span {
	background-image: url(images/2.jpg);
	animation-delay: 6s;
}

.ed-slideshow li:nth-child(3) span {
	background-image: url(images/3.jpg);
	animation-delay: 12s;
}

.ed-slideshow li:nth-child(4) span {
	background-image: url(images/4.jpg);
	animation-delay: 18s;
}

.ed-slideshow li:nth-child(5) span {
	background-image: url(images/5.jpg);
	animation-delay: 24s;
}

.ed-slideshow li:nth-child(6) span {
	background-image: url(images/6.jpg);
	animation-delay: 30s;
}


@keyframes imageAnimation {
	0% { opacity: 0; animation-timing-funciton: ease-in; }
	8% { opacity: 1; animation-timing-function: ease-out;}
	17% { opacity: 1 }
	25% { opacity: 0 }
	100% { opacity: 0 }
}

.no-cssanimations .ed-slideshow li span {
	opacity: 1;
}

#nav-icon-toggle {
	position: relative;
	float: right;
	z-index: 12;
	margin: 0 30px 0 0;
}



input[type="checkbox"]{
	position: relative;
	z-index: 10;
	display:none;
}

.nav-menu {
	opacity: 1;
	float: right;
	margin: 0px 20px 0 0;
}

.nav-menu a {
	position: relative;
	z-index: 11;
	text-decoration: none;
	clear: both;
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	color: #fff;
	font-size: 16px;
	text-transform: capitalize;
	line-height: 48px;
	letter-spacing: 1px;
	font-family: 'futura-pt', sans-serif;
	text-transform: uppercase;
	margin: 0 0 0 20px;
	padding: 10px;
	font-weight: 600;
	text-shadow: 0px 0px 10px black;
}

.nav-menu a:hover {
	color: #e0e0e0;
}







@media screen and (max-width: 960px) {

.nav-menu a:hover {
	color: gray;
}

.nav-menu {
	opacity: 0;
	position: absolute;
	padding: 50px 0 0 60px;
	z-index: 11;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #f9f9f9;
}

.nav-menu a {
	pointer-events: none;
	position: relative;
	z-index: 11;
	text-decoration: none;
	display: inline-block;
	float: right;
	clear: both;
	color: black;
	font-size: 18px;
	text-transform: capitalize;
	line-height: 48px;
	font-family: 'futura-pt', sans-serif;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	margin: 0 0 0 0;
	padding: 0 200px 0 0;
	text-shadow: none;
}

#nav-icon-toggle {
	padding: 7px 0 0 0;
}

#nav-menu-toggle:checked ~ .nav-menu {
	opacity: 0.95;
	transition: 0.5s ease-in-out;
}

#nav-menu-toggle:checked ~ .nav-menu a {
	pointer-events: auto;
}

#nav-icon-toggle span {
	display: block;
	margin: 7px;
	height: 8px;
	width: 50px;
	background: #fff;
	border-radius: 8px;
	cursor:pointer;
	-webkit-transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-o-transition: 0.25s ease-in-out;
	transition: 0.25s ease-in-out;
}

#nav-menu-toggle:checked ~ #nav-icon-toggle span:nth-child(1){
	background: #000;
	transform: rotate(135deg) translate(12px, -10px);
	-webkit-transform: rotate(135deg) translate(12px, -10px);
	-moz-transform: rotate(135deg) translate(12px, -10px);
	-o-transform: rotate(135deg) translate(12px, -10px);
}

#nav-menu-toggle:checked ~ #nav-icon-toggle span:nth-child(2){
	opacity: 0;
}

#nav-menu-toggle:checked ~ #nav-icon-toggle span:nth-child(3){
	background: #000;
	transform: rotate(-135deg) translate(11px, 9px);
	-webkit-transform: rotate(-135deg) translate(11px, 9px);
	-moz-transform: rotate(-135deg) translate(11px, 9px);
	-o-transform: rotate(-135deg) translate(11px, 9px);
}

}

/*
*/