@charset "UTF-8";
/* CSS Document */



*, *:before, *:after {
	box-sizing: border-box;
}

body {
	font-family: 'Open Sans', sans-serif;
	overflow: hidden;
	background-color: #000;
	margin: 0;
	padding: 0;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


a {
	text-decoration: none;
}


.title-slideshow {
  position: absolute;
  left: 0;
	right: 0;
  margin: auto;
  z-index: 33;
  color: #445415;
  font-size: 33px;
  font-weight: 300;
  text-align: center;
  display: none;
	margin-top: 50px;
	font-family: 'Times New Roman', serif;
}

.slideshow {
	z-index: 1;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}

.slideshow-slide-credit {
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	bottom: 100px;
	text-align: center;
	color: #695A4F;
	font-size:9px;
	letter-spacing: 1px;
	text-transform: uppercase;
  padding-top: 15px;
}

@media screen and (max-width:800px) {
	.slideshow-slide-credit {
		bottom: 130px;
	}

	.content {
		width: 90%;
		height: 90vh;
	}
}

.slideshow-slide {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	text-align: center;
	z-index: 10;
}

.slideshow-slide:before {
	content: "";
	display: inline-block;
	margin-right: -5px;
	height: 100%;
	vertical-align: middle;
	max-width: 100%;
}

.slideshow-slide img {
	vertical-align: middle;
	margin-top: -4%;
	max-height: calc(100% - 217px);
	display: inline-block;
	max-width: 71%;
}

.slideshow-controls {
	position: absolute;
	z-index: 2000000;
	right: 30px;
	bottom: 93px;
}

@media screen and (max-width:800px) {
	.slideshow-controls {
		bottom: 125px;
	}

	.slideshow-slide img {
	margin-top: -10%;
	}
}

.slideshow-controls a {
	color: #695A4F;
}

@media screen and (max-width:800px) {
	.title-slideshow {
		font-size: 30px;
    padding-top: 5px;
	}

	.slideshow-slide img {
			display: inline-block;
			max-width: 100%;
			max-height: calc(100% - 350px);
	}
}


#skip-wrapper {
	position: absolute;
	top: 5px;
	left: 50%;
	margin-left: -200px;
	width: 400px;
	z-index: 5;
	text-align: center;
}

.menu {
	position: absolute;
	bottom: 0px;
	height: 60px;
	z-index: 2000;
	width: 100%;
	text-align: center;
	background-color: #000;
}

.menu ul {
	position: absolute;
	width: 100%;
	margin: 40px 0 0 0;
	margin-left: -30px;
	bottom: 23px;
}

.menu ul li {
	display: inline-block;
	margin: auto 1px;
	font-size: 14px;
  margin-left: 70px;
}

.menu a {
	text-transform: uppercase;
	color: #695A4F;
	text-decoration: none;
	letter-spacing: 3px;
	-webkit-font-smoothing: antialiased;
}

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

	.menu {
		height: 80px;
	}

	.menu a {
		letter-spacing: 0px;
	}

	.menu ul li {
    margin-left: 20px;
	}
}

.menu a:hover {
	color: #454e3e;
}

/*.menu a:hover {
	opacity: 0.5;
    -moz-transition: all 0.2s ease-out;
 	 -webkit-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}*/

#logo {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 1002;
}


@font-face {
	font-family: 'icons';
	src:url('fonts/icons.eot?kdzlum');
	src:url('fonts/icons.eot?#iefixkdzlum') format('embedded-opentype'),
		url('fonts/icons.woff?kdzlum') format('woff'),
		url('fonts/icons.ttf?kdzlum') format('truetype'),
		url('fonts/icons.svg?kdzlum#icons') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-googleplus:before {
	content: "\ea8a";
}
.icon-facebook:before {
	content: "\ea8e";
}
.icon-twitter:before {
	content: "\ea93";
}

.icon-instagram:before {
	content: "\e90a";
}

.icon-pause:before {
	content: "\e901";
}

.icon-pause:hover {
	opacity: 0.5 !important;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.icon-play:before {
	content: "\e900";
}

.icon-play:hover {
	opacity: 0.5 !important;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.social-icons {
	position: absolute;
	right: 30px;
	top: 35px;
	z-index: 9999;
	padding: 0;
	margin: 0;
}

.icon-instagram {
	font-size: 19px;
}

.social-icons-link {
	color: #695A4F;
	-webkit-text-stroke: 0px;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	padding-top: 4px;
}

.social-icons-link:hover {
	opacity: 0.5;
  -moz-transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
	background: none;
}

.facebook-share-button {
	background-color: #999;
	background-image: linear-gradient(#333, #343434);
	font-size: 13px;
	text-shadow: 1px 1px #333;
	color: #fff;
	display: inline-block;
	padding: 5px 10px;
	font-family: Arial, Helvetica, Sans-serif;
	border-radius: 3px;
	margin-left: 10px;
	margin-right: 10px;
	vertical-align: middle;
}

.endscreen {
	color: #695A4F;
	font-size: 35px;
	font-weight: 200;
	left: 50%;
	margin-left: -270px;
	position: absolute;
	text-align: center;
	top: 18%;
	padding: 30px;
	width: 550px;
	display: none;
	z-index: 5;
}

.endscreen a {
	color:#635544;
	opacity: 1;
}

.endscreen a:hover {
	opacity: 0.5 !important;
	-moz-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	text-decoration: none;
}

.endscreen-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/end.jpg);
  background-size: cover;
  display: none;
}


.contact {
	font-size: 18px;
	margin-top: 180px;
  font-style: italic;
}

@media screen and (max-height:1200px) {
	.contact {
		margin-top: 20px;
	}
}

@media screen and (max-height:600px) {
	.contact {
		display: none;
	}
}


.replay-button {
	display: block;
	padding-top: 0px;
	margin: auto;
	width: 200px;
}

.credit {
	display: none;
	font-size: 11px;
	position: absolute;
	z-index: 100;
	color: #695A4F;
	right: 43%;
	bottom: 130px;
	text-align: right;
	font-weight: 300;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
	padding: 10px 5px;
}


@media screen and (max-width:1300px) {
	. ul li {
		font-size: 13px;
	}
}

@media screen and (max-width:800px) {
	.endscreen {
		font-size: 18px;
		line-height: 50px;
    margin-left: -270px;
		border: none;
		top: 30%;
	}


	.replay-button {
		display: none;
	}

	.contact {
		display: none;
	}

	.social-icons {
		display: none;
	}

	.credit {
		display: none;
	}

	#skip-wrapper {
		position: absolute;
		top: 10px;
		left: 50%;
		width: 400px;
		z-index: 9999;
		text-align: center;
	}

  @media screen and (max-width:1300px) {
  	#logo img{
 		 right: 10px;
  	}
  }

		.credit {
			opacity: 0;
		}
	}

.clear {
  clear: both;
}
