@import url('https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:400,700');
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.1em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
*,
*::after,
*::before {
	box-sizing: border-box;
}

html {
	background: #fff;
}

body {
	font-family: 'Barlow Semi Condensed',-apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	min-height: 100vh;
	color: #57585c;
	color: var(--color-text);
	background-color: #fff;
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Color schemes */
.demo-1 {
	--color-text: #333;
	--color-bg: #000;
	--color-link: #aaa;
	--color-link-hover: #333;
	--color-info: #7239c0;
}

.demo-2 {
	--color-text: #333;
	--color-bg: #fff;
	--color-link: #d3482e;
	--color-link-hover: #333;
	--color-info: #333;
}

.demo-3 {
	--color-text: #333;
	--color-bg: #fff;
	--color-link: #3860d0;
	--color-link-hover: #333;
	--color-info: #333;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 100000;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	pointer-events: none;
	border-radius: 50%;
	opacity: 0.4;
	background: var(--color-link);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:focus {
	outline: none;
}

a:hover {
	color: var(--color-link-hover);
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.message {
	position: relative;
	z-index: 100;
	display: none;
	padding: 1em;
	text-align: center;
	color: var(--color-bg);
	background: var(--color-text);
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

.icon--keyboard {
	display: none;
}

main {
	position: relative;
	width: 100%;
}

.content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	min-height: 100vh;
}

.content--fixed {
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	display: grid;
	align-content: space-between;
	width: 100%;
	max-width: none;
	min-height: 0;
	height: 100vh;
	padding: 1.5rem;
	pointer-events: none;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto auto 4em;
	grid-template-areas: 'header header'
	'... ...'
	'github pagination';
}

.content--fixed a {
	pointer-events: auto;
}

/* Header */
.codrops-header {
	position: relative;
	z-index: 100;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	align-items: center;
	align-self: start;
	grid-area: header;
	justify-self: start;
	pointer-events: auto;
}

.codrops-header__title {
	font-size: 1em;
	font-weight: bold;
	margin: 0 2em 0 0;
	padding: 0.75em 0;
}

.info {
	margin: 0 0 0 1.25em;
	color: var(--color-info);
}

.github {
	display: block;
	align-self: end;
	grid-area: github;
	justify-self: start;
}

.demos {
	position: relative;
	display: block;
	text-align: center;
}

.demo {
	margin: 0 0.25em;
}

.demo:hover,
.demo:focus {
	opacity: 0.5;
}

.demo span {
	white-space: nowrap;
	pointer-events: none;
}

a.demo--current {
	pointer-events: none;
	color: var(--color-text);
}

/* Top Navigation Style */
.codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	margin: 0 1em 0 0;
	text-align: center;
	white-space: nowrap;
}

.codrops-icon {
	display: inline-block;
	margin: 0.15em;
	padding: 0.25em;
}

.slides {
	position: relative;
	width: 100%;
	height: 100vh;
	margin: auto;
	pointer-events: none;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide--current {
	opacity: 1;
}

.slide__img {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 50%;
}

.slide__img-size1,
.slide__img-size2,
.slide__img-size3 {
	max-width: 800px;
	max-height: 1200px;
	min-width: 280px;
	min-height: 280px;
}

.slide__img-size1 {
	width: 40vw;
}

.slide__img-size2 {
	width: 60vw;
	height: 60vh;
}

.slide__img-size3 {
	width: 40vw;
	height: 40vw;
	max-width: 800px;
	max-height: 800px;
}

.pagination {
	position: fixed;
	top: 2rem;
	right: 2rem;
	display: flex;
	pointer-events: auto;
	z-index: 10001;
}

.pagination__item {
	font-weight: bold;
	justify-content: center;
	align-items: center;
	display: flex;
	margin: 0 0 0 1.25rem;
	font-size: 1.25em;
	cursor: pointer;
	color: var(--color-link);
}

.pagination__item--current {
	color: var(--color-text);
}

.grid {
	padding: 20vh 0;
	max-width: 1000px;
	display: grid;
	grid-row-gap: 20vh;
	grid-template-columns: repeat(2, 1fr);
}

.grid__item {
	position: relative;
}

.grid__item-titlewrap {
	bottom: 10%;
	position: absolute;
}

.grid__item-title {
	font-size: 8vw;
	line-height: 1;
	margin: 0;
}

.grid__item-description {
	margin: 0;
	font-size: 1.5rem;
}

.grid__item:nth-child(odd) {
	align-self: start;
}

.grid__item:nth-child(odd) .grid__item-titlewrap {
	right: -5vw;
}

.grid__item:nth-child(even) {
	margin: 70vh 0 0 0;
}

.grid__item:nth-child(even) .grid__item-titlewrap {
	left: -5vw;
}

.scroll-img {
	width: 500px;
	max-width: 100%;
	height: 50vh;
	min-width: 250px;
	min-height: 250px;
	background-size: cover;
}

.start-btn {
	position: fixed;
	top: 165%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 200000;
	background: #111;
	color: #fff;
	border: none;
	padding: 1.2em 3em;
	letter-spacing: 2px;
	font-size: 1.2rem;
	font-family: inherit;
	cursor: pointer;
	box-shadow: 0 4px 24px rgba(0,0,0,0.15);
	transition: background 0.2s, color 0.2s, transform 0.1s, opacity 0.5s;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.start-btn--visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.start-btn:hover, .start-btn:focus {
	background: #222;
	color: #ffe600;
	outline: none;
	transform: translate(-50%, -50%) scale(1.04);
}

.main-title-group {
	position: fixed;
	top: 38%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 200001;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100vw;
	pointer-events: none;
}

.main-title {
	color: #fff;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s;
	font-family: 'Times New Roman', Times, serif;
}

.main-title--visible {
	opacity: 1;
	visibility: visible;
}

.main-subtitle {
	color: #fff;
	font-size: 1rem;
	font-family: 'Times New Roman', Times, serif;
	letter-spacing: 1px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s;
	pointer-events: none;
}

.main-subtitle--visible {
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 55em) {
	.slides {
		position: absolute;
		top: 0;
		margin-bottom: 20vh;
	}
	.slide {
		align-items: flex-start;
	}
	.pagination {
		justify-content: center;
	}
	.pagination__item {
		margin: 0 0.5em;
	}
	.content {
		flex-direction: column;
		height: auto;
		min-height: 0;
		padding-bottom: 10em;
	}
	.content--fixed {
		position: relative;
		z-index: 1000;
		display: block;
		padding: 0.85em;
	}
	.codrops-header {
		flex-direction: column;
		align-items: center;
	}
	.codrops-header__title {
		font-weight: bold;
		padding-bottom: 0.25em;
		text-align: center;
		margin: 0 0 1rem 0;
	}
	.info {
		margin: 0;
	}
	.github {
		display: block;
		margin: 1em auto 4em;
	}
	.codrops-links {
		margin: 0;
	}
	.grid {
		display: block;
		margin: 0;
		padding: 0;
	}
	.grid__item {
		margin: 0 0 8rem !important;
	}
	.scroll-img {
		margin: 0 auto;
	}
	.grid__item-titlewrap {
		padding: 1rem 0 0 0;
		position: relative;
		text-align: center;
		left: 0 !important;
		right: 0 !important;
		width: 100%;
		display: block;
	}
}

.menu {
	position: absolute;
	bottom: 0px;
	height: 90px;
	z-index: 200;
	width: 100%;
	text-align: center;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.5s;
}

.menu.menu--visible {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.menu ul {
	position: absolute;
	width: 100%;
	left: 0;
  right: 0;
  margin-left: -70px;
}

.menu ul li {
  display: inline-block;
  margin: 0 40px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
}

.menu ul li img {
  vertical-align: bottom;
}

.menu a {
	font-weight:100;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 1px;
}

.menu a:hover {
    color: #ffe600 !important;
}

@media screen and (max-width:800px) {
  .menu ul li {
    margin-left: 20px;
  }
  .menu ul {
    margin-left: -50px;
  }
  .menu  {
    bottom: 25px;
  }
  .menu a {
  	line-height: 30px;
  }
}

.endscreen {
  color: #ffffff;
  font-size: 30px;
  font-weight: 200;
  font-family: 'Times New Roman', Times, serif;
  left: 0;
  right: 0;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 16%;
  width: 500px;
  padding: 30px;
  display: none;
  margin: auto;
  z-index: 101;
  background: rgba(0, 0, 0, 0.8);
}

.endscreen-info {
  padding-top: 33px;
  font-size: 18px;
  line-height: 28px;
  font-style: italic;
  font-weight: 400;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 5px;
}

.endscreen a {
	color:#ffffff;
	opacity: 1;
  text-decoration: none;
}

@media screen and (max-width:800px) {
  .endscreen {
    top: 7%;
    width: 100%;
    padding: 0px;
  }
}

.endscreen a:hover {
	color: #f1f400;
	-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;
}

.endscreen-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background-size: cover;
  display: none;
}

.contact {
  font-size: 18px;
  margin-top: 5px;
  font-style: italic;
  font-family: 'Times New Roman', Times, serif;
}

@media screen and (max-width:800px) {
  .contact {
  	font-size: 14px;
  }
}

.replay-button {
	display: block;
	padding-top: 0px;
	margin: auto;
	width: 200px;
}

@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-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;
}

.slideshow {
	z-index: 100;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
}

.slideshow-slide-credit {
	position: absolute;
	z-index: 10;
	left: 0;
	right: 0;
	bottom: 99px;
	text-align: center;
	color: #999;
	font-size:9px;
	font-weight: 200;
	letter-spacing: 1px;
	text-transform: uppercase;
  padding-top: 15px;
}

@media screen and (max-width:800px) {
	.slideshow-slide-credit {
		bottom: 140px;
	}
}

.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;
max-height: calc(100% - 233px);
display: inline-block;
max-width: 80%;
margin-top: -2%;
}

.slideshow-controls {
	position: absolute;
	z-index: 2000000;
	right: 30px;
	bottom: 121px;
}

.slideshow-controls a {
  color: #ffffff;
  text-decoration: none;
}

.slideshow-controls a:hover {
	color: #f1f400;
  text-decoration: none;
}

@media screen and (max-width:800px) {
	.slideshow-controls {
		bottom: 125px;
		z-index: 2000000;
	}
}

.title-slideshow {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.5s;
	font-size: 30px;
	position: absolute;
	top: 21px;
	left: 0;
	right: 0;
	margin: auto;
	z-index:101;
	text-align: center;
}
.title-slideshow.title-slideshow--visible {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.title-slideshow img {
	max-width: 100%;
  }

  @media screen and (max-width:800px) {

	.title-slideshow img {
	  max-width: 80%;
	}
  
  
	  .title-slideshow {
	  top: 42px;
		  font-size: 30px;
	  }
  
	  .slideshow-slide img {
			  display: inline-block;
			  max-width: 100%;
			  max-height: calc(90% - 250px);
	  }
  }

#logo {
	width: 135px;
	height: 26px;
	position: absolute;
	top: 25px;
	left: 50px;
  margin: auto;
	z-index: 102;
}


