@import url(https://fonts.googleapis.com/css?family=Raleway:400,300,800|Lora:400italic|Playfair+Display:700);
@font-face {
	font-family: 'nexa_boldregular';
	font-weight: bold;
	font-style: normal;
	src: url('../fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.eot');
	src: url('../fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.woff2') format('woff2'), url('../fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.woff') format('woff'), url('../fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.ttf') format('truetype'), url('../fonts/nexa_boldfree_macroman/Nexa_Free_Bold-webfont.svg#nexa_boldregular') format('svg');
}

*, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { display: table; content: ''; }
.clearfix:after { clear: both; }


html, body, .container, .header {
	height: 100%;
}

body {
	background: #000;
	color: #fff;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.5;
	font-family: 'Lucida Sans Typewriter', 'Lucida Console', monaco, 'Bitstream Vera Sans Mono', monospace;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}


/*---------- Preloader ----------*/
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#000000; /* change if the mask should have another color then white */
	z-index:99999; /* makes sure it stays on top */
}

#status {
	width:200px;
	height:200px;
	position:absolute;
	left:50%; /* centers the loading animation horizontally one the screen */
	top:50%; /* centers the loading animation vertically one the screen */
	background-image:url(../img/status.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-100px 0 0 -100px; /* is width and height divided by two */
}


/*---------- Header ----------*/
.header {
	position: relative;
	margin: 0 auto;
	min-height: 560px;
	width: 100%;
}

.bg-img {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.bg-img img {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	min-width: 100%;
	min-height: 100%;
	
	opacity: 0.7;
}

.title {
	z-index: 1000;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 20%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.title h1 {
	font-family: 'nexa_boldregular', serif;
	
	padding: 0 0 0.1em;
	color: #fff;
	font-weight: 800;
	font-size: 2.25em;
	margin: 0 auto;
	
	opacity: 0.5;
	text-shadow: 1px 1px 1px #000;
}

.title p {
	color: #fff;
	padding: 0 0 0.2em;
	font-size: 0.7em;
	margin: 0 auto;
}

.title h1,
.title p.subline {
	line-height: 1;
}

.title p.subline {
	font-size: 1.25em;
}


/*---------- Trigger Button ----------*/
button.trigger {
	position: fixed;
	bottom: 40px;
	left: 50%;
	z-index: 5000;
	display: block;
	margin-left: -0.5em;
	padding: 0;
	width: 1em;
	height: 1em;
	border: none;
	background: transparent;
	color: transparent;
	font-size: 2em;
	cursor: pointer;
}

.container:not(.notrans) button.trigger {
	-webkit-transition: opacity 0.3s 0.5s;
	transition: opacity 0.3s 0.5s;
}

.container.modify:not(.notrans) button.trigger {
	opacity: 0;
	pointer-events: none;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

button.trigger::before {
	position: absolute;
	bottom: 100%;
	left: -140%;
	padding: 0;
	width: 380%;
	color: #fff;
	content: attr(data-info);
	font-family: 'Raleway', Arial, sans-serif;
	font-size: 0.3em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: #none;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.5em;
}

button.trigger:focus {
	outline: none;
}

button.trigger span {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

button.trigger span::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	content: "\e097";
	text-transform: none;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	font-family: 'icomoon';
	line-height: 1;
	speak: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/*---------- Moving Arrow ----------*/
.arrow {
    width: 7px;
    height: 4px;
    background: none;
    position: relative;
    -webkit-animation: myarrow 1s infinite; /* Chrome, Safari, Opera */
    -webkit-animation-direction: alternate; /* Chrome, Safari, Opera */
    animation: myarrow 1s infinite;
    animation-direction: alternate;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes myarrow {
    0%   {background: none; left: 0px; top: 0px;}
    100%  {background: none; left: 0px; top: 15px;}
}

@keyframes myarrow {
    0%   {background: none; left: 0px; top: 0px;}
    100%  {background: none; left: 0px; top: 15px;}
}


/*---------- Left and Right Big Arrows ----------*/
/*--------------------*/
/* Fillpath (http://www.nizuka.fr/)*/
/*--------------------*/
nav a {
	position: absolute;
	top: 50%;
	display: block;
	outline: none;
	text-align: left;
	z-index: 1000;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
	nav a {
		display: none;
	}
}

nav a.prev {
	left: 0;
    position: fixed;
    z-index: 999999;
}

nav a.next {
	right: 0;
    position: fixed;
    z-index: 999999;
}

nav a svg {
	display: block;
	margin: 0 auto;
	padding: 0;
}

.nav-fillpath a {
	width: 100px;
	height: 100px;
}

.nav-fillpath .icon-wrap {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.nav-fillpath a::before,
.nav-fillpath a::after,
.nav-fillpath .icon-wrap::before,
.nav-fillpath .icon-wrap::after {
	position: absolute;
	left: 50%;
	width: 3px;
	height: 25%;
	background: #ccc;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.nav-fillpath .icon-wrap::before,
.nav-fillpath .icon-wrap::after {
	z-index: 100;
	height: 0;
	background: #fff;
	-webkit-transition: height 0.3s, -webkit-transform 0.3s;
	transition: height 0.3s, transform 0.3s;
}

.nav-fillpath a::before,
.nav-fillpath .icon-wrap::before {
	top: 50%;
	-webkit-transform: translateX(-50%) rotate(-135deg);
	transform: translateX(-50%) rotate(-135deg);
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

.nav-fillpath a.next::before,
.nav-fillpath a.next .icon-wrap::before {
	-webkit-transform: translateX(-50%) rotate(135deg);
	transform: translateX(-50%) rotate(135deg);
	-webkit-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
}

.nav-fillpath a::after,
.nav-fillpath .icon-wrap::after {
	top: 50%;
	-webkit-transform: translateX(-50%) rotate(-45deg);
	transform: translateX(-50%) rotate(-45deg);
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
}

.nav-fillpath a.next::after,
.nav-fillpath a.next .icon-wrap::after {
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	-webkit-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
}

.nav-fillpath h3 {
	position: absolute;
	top: 50%;
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 0.5em;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	
	width: 100%;
}

.nav-fillpath a.prev h3 {
	left: 100%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

.nav-fillpath a.next h3 {
	right: 100%;
	text-align: right;
	-webkit-transform: translateY(-50%) translateX(50%);
	transform: translateY(-50%) translateX(50%);
}

.nav-fillpath a:hover .icon-wrap::before,
.nav-fillpath a:hover .icon-wrap::after {
	height: 50%;
}

.nav-fillpath a:hover::before,
.nav-fillpath a:hover .icon-wrap::before {
	-webkit-transform: translateX(-50%) rotate(-125deg);
	transform: translateX(-50%) rotate(-125deg);
}

.nav-fillpath a.next:hover::before,
.nav-fillpath a.next:hover .icon-wrap::before {
	-webkit-transform: translateX(-50%) rotate(125deg);
	transform: translateX(-50%) rotate(125deg);
}

.nav-fillpath a:hover::after,
.nav-fillpath a:hover .icon-wrap::after {
	-webkit-transform: translateX(-50%) rotate(-55deg);
	transform: translateX(-50%) rotate(-55deg);
}

.nav-fillpath a.next:hover::after,
.nav-fillpath a.next:hover .icon-wrap::after {
	-webkit-transform: translateX(-50%) rotate(55deg);
	transform: translateX(-50%) rotate(55deg);
}

.nav-fillpath a:hover h3 {
	opacity: 1;
	-webkit-transform: translateY(-50%) translateX(0);
	transform: translateY(-50%) translateX(0);
}


/* ------------------------------------ */
/* Faded gradient */
/* ------------------------------------ */
.intro-effect-fadeout:not(.notrans) .bg-img {
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
}

.intro-effect-fadeout:not(.notrans) .bg-img::after {
	-webkit-transition-property: opacity;
	transition-property: opacity;
}

.intro-effect-fadeout:not(.notrans) .header h1 {
	-webkit-transition-property: color;
	transition-property: color;
}

.intro-effect-fadeout:not(.notrans) .header p,
.intro-effect-fadeout:not(.notrans) .content > div {
	-webkit-transition-property: -webkit-transform, opacity;
	transition-property: transform, opacity;
}

.intro-effect-fadeout:not(.notrans) .bg-img,
.intro-effect-fadeout:not(.notrans) .bg-img::after,
.intro-effect-fadeout:not(.notrans) .header h1,
.intro-effect-fadeout:not(.notrans) .header p,
.intro-effect-fadeout:not(.notrans) .content > div {
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.intro-effect-fadeout .header {
	overflow: hidden;
}

.intro-effect-fadeout.modify .bg-img {
	-webkit-transform: translateY(-25%);
	transform: translateY(-25%);
}

.intro-effect-fadeout .bg-img::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 101%;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}

.intro-effect-fadeout.modify .bg-img::after {
	opacity: 1;
}

.intro-effect-fadeout .title {
	text-align: left;
	max-width: 960px;
}

.intro-effect-fadeout.modify .header h1,
.intro-effect-fadeout .header p {
	color: #fff;
}

.intro-effect-fadeout .header p {
	opacity: 0;
}

.intro-effect-fadeout .header p:nth-child(2) {
	-webkit-transform: translateX(150px);
	transform: translateX(150px);
}

.intro-effect-fadeout .header p:nth-child(3) {
	-webkit-transform: translateX(-150px);
	transform: translateX(-150px);
}

.intro-effect-fadeout.modify .header p:nth-child(2),
.intro-effect-fadeout.modify .header p:nth-child(3) {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.intro-effect-fadeout .content {
	z-index: 2000;
	position: relative;
}

.intro-effect-fadeout .content > div {
	opacity: 0;
	-webkit-transform: translateY(350px);
	transform: translateY(350px);
}

.intro-effect-fadeout.modify .content > div {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}


/*---------- Conent ----------*/
.content {
	margin: 0 auto;
	padding: 0;
	
	padding-bottom: 75px;
}

.content > div:not(.title) {
	margin: -300px auto 0;
	max-width: 960px;
	padding: 0px;
}

.content > div:not(.title) p {
	margin: 0 auto 1.5em auto;
}
@media screen and (max-width: 768px) {
	.content > div:not(.title) p {
		width: 95%;
		margin: 0 atuo;
		text-align: center;
	}
}

.content > div:not(.title) p img {
	width: 100%;
}

.content > div:not(.title) p:first-child {
	font-size: 1.35em;
}

.content > div:not(.title) p.credit {
	font-size: 0.55em;
	line-height: 1.45em;
	margin: 0px auto;
	padding: 0px 20px;
	color: #666;
	text-align: center;
	margin-top: 40px;
}
@media screen and (max-width: 27em) {
	.content > div:not(.title) p.credit {
		font-size: 1em;
	}
}

.content h5.cat {
	text-align: center;
	margin-bottom: 3em;
}

.scrollToTop{
	width: 41px; 
	height: 41px;
	padding: 0px; 
	text-align: center; 
	background: none;
	font-weight: bold;
	color: #444;
	text-decoration: none;
	position: fixed;
	bottom: 25px;
	right: 25px;
	display:none;
	z-index: 999999;
	opacity: 0.5;
}

/*---------- Media Queries ----------*/
@media screen and (max-width: 47em) {
	.title, .content {
		font-size: 70%;
	}
}

@media screen and (max-width: 27em) {
	.title, .content {
		font-size: 50%;
	}

	button.trigger::before {
		
	}
}


/*---------- HTML 5 ----------*/
video {
  width: 100%    !important;
  height: auto   !important;
}


/*---------- Superheroes ----------*/
.superheroes ul {
	list-style: none;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.superheroes ul li {
	float: left;
	width: 25%;
}
@media screen and (max-width: 45em) {
	.superheroes ul li {
		width: 100%;
	}
}

.superheroes ul li video {
	width: 100%;
	height: auto;
}


/*---------- VR ----------*/
.vr-gap {
	height: 200px;
}
@media screen and (max-width: 768px) {
	.vr-gap {
		height: 0px;
	}
}

.vr-content {
	display: block; 
	max-width: 960px; 
	margin: 0 auto; 
	text-align: center; 
	padding: 100px 0;
}
@media screen and (max-width: 768px) {
	.vr-content { 
		padding: 0;
		padding-bottom: 100px;
	}
}


/*---------- Close Btn ----------*/
.back {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999999999;
}

.box {
  margin: 0px;
  border-radius: 50%;
}

.box1 { width: 60px; }

svg {
  display: block;
}

.close-x {
  stroke: white;
  stroke-linecap: round;
  stroke-width: 1;
}


/*---------- Menu Bar ----------*/
.menu-bar ul {	
    text-align: center;
    margin: 0;
    margin-top: 60px;
    padding: 0;
}

.menu-bar ul span {
    font-size: 0.65em;
}

.menu-bar ul li {
    display: inline-block;
}

.menu-bar ul li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
	font-size: 0.75em;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}