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

/* INHOUDSOPGAVE 
1. BASIS ELEMENTEN + GROTE OMSLAG
2. USER INTERFACE + PRELOADER
3. SLIDES ACHTERGROND (VIDEO/AUDIO/IMAGE)
4. SLIDES INHOUD
5. ANIMATIES
6. MOBIEL

*/


/*-------1. BASIS ELEMENTEN + GROTE OMSLAG ---------*/

body {
	background-color: #000;
}

h1 {
	font-size: 3em;
	font-family: arial, helvetica, Roboto;
	color: #fff;
	margin: 0;
	padding: 0;
	text-shadow: 2px 2px 10px #000;
}

h2 {
	color: #fff;
	padding: 1% 1% 1% 1%;
	max-width: 20%;
	position: relative;
	margin-bottom: -0,5%;
	font-size: 1.7em;
}

p {
	padding: 1% 1% 1% 0%;
	color: #fff;
	font-size: 1.3em;
	position: relative;
	max-width: 35%;
	font-family: Roboto;
	text-shadow: 2px 2px 2px #000;
}

a {
	
}

.fullpage-wrapper {
	width: 100%!important;
	transform: none!important;
	top:0;
}

.fp-section {
	width: 100%!important;
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 0;
	transition: all .5s ease-in-out;
}

.fp section h1, h2, p {
	visibility: hidden;
	opacity: 1;
	z-index: 2;
	position: fixed;
	top: 85%;
	left: 0;
}

.fp-section.active {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}

.fp-section.active h1, h2, p {
	visibility: visible;
	opacity: 1;
	z-index: 2;
}

/*-------2. USER INTERFACE + PRELOADER ---------*/

header {
	opacity: 1;
	position: fixed;
	top: 0;
	width: 100%;
	height: 2%;
	z-index: 10;
}

#logo {
	width:5%;
}
.footerhelp {
	position: fixed;
	bottom: 75%;
	left: 10%;
	z-index: 10;
	color: white;
	border-radius: 15% 15%;
	animation-name: footeranimation;
	animation-duration: 0.6s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 9;
	width: 88%;
	padding-right: 1%;
	padding-left: 1%;
}

#backlink1 {
	position: relative;
	top:1%;
	height: 15%;
	left: 5%;
	z-index: 10;
	color: white;
	width: 35%;
	padding: 0.5%;
	filter: grayscale(90%);
}

#backlink1:hover {
	filter: grayscale(0%);
}

#backlink2 {
	position: fixed;
	height: 12%;
	left: 5%;
	z-index: 10;
	color: white;
	width: 88%;
	padding: 0 1% 0 1%;
	background-color:red;
}

#backlinkimg {
	position: relative;
	/** height: 100%; **/
	max-width: 100%;
	filter: grayscale(100%);
}

#backlink1-txt {
	font-size: 2em;
	position: relative;
	vertical-align:top;
	bottom:0;
	background-color:red;
	width:100%;
	height:25%;
	filter:grayscale(0%)!important;
	padding:0;
}

#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 150;
	width: 100px;
	height: 100px;
	margin: -75px 0 0 -75px;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #cc0000;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

.credits-links {
	position: absolute;
	bottom: 25%;
	left:5%;
}

.link-txt {
	width:80%; 
	position: relative; 
	margin:auto; 
	text-align:center; 
	/* height: 2.5em; */
	font-size:1.3em; 
	font-family:roboto; 
	font-weight:500;
}


p.scrolltip {
	font-weight: bold;
	font-family: Roboto;
	font-size: 0.9em;
	left: 5%;
}

.banner-container {
	position: absolute; 
	bottom:0; 
	background-color:rgba(223, 0, 0, 0.7); 
	color: white; 
	width:100%; 
	margin-bottom:0.7%;
	pointer-events:none;
}

.imglink {
	 width:100%; 
	filter:grayscale(98%);
}

.imglink:hover {
	filter:grayscale(0%);
}

.linka {
	position: relative; 
	width:30%; 
	height:auto; 
	z-index:80;
	margin-bottom:1%;
}

.linkb {
	position: relative; 
	width:30%; 
	height:auto; 
	z-index:80;
}

/*-- Progress Bar --*/

#progressbar {
	position: absolute;
}

.anchor {
	position: relative; 
	border: solid 5px #fff; 
	width: 0px; 
	height: 0px; 
	background-color:#fff; 
	margin-top: 5px; 
	margin-left:auto; 
	margin-right:auto;
}

.anchor-active {
	position: relative;
	border: solid 9px #fff;
	width: 0px; 
	height: 0px; 
	background-color:#fff; 
	margin-top: 5px; 
	margin-left:auto; 
	margin-right:auto;
}

section {
  height:100vh;
  min-height:800px;
  background-color:#fafafa;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-flow:wrap;
  border-bottom:3px solid rgba(0,0,0,0.5);
}

/* The progress container (grey background) */
.progress-container {
  width: 60%;
  height: 8px;
  background: #ccc;
margin:auto;
}

/* The progress bar (scroll indicator) */
.progress-bar {
  height: 8px;
  background: #4caf50;
  width: 0%;
}



/*-------3. SLIDES ACHTERGROND---------*/

.myVideo,
.myVideos,
.myVideoX,
.myAudio {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	background-position: center center;
	background-size: contain;
	object-fit: cover;
	z-index: 2;
}

/*-------3b. SLIDES ACHTERGROND LINKS ---------*/
.videooverlay {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3; /* FF3.6-15 */
	background: linear-gradient(to right, rgba(0,0,0,0.42) 0%,rgba(0,0,0,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
}

.videooverlay2 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.73) 0%,rgba(0,0,0,0.73) 12%,rgba(0,0,0,0) 59%,rgba(0,0,0,0) 69%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
}

.videooverlay3 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.85) 29%,rgba(0,0,0,0.14) 69%,rgba(0,0,0,0) 77%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
}

/*-------3b. SLIDES ACHTERGROND RECHTS ---------*/

.videooverlayr {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(90,21,15,0) 20%, rgba(231,55,39,0) 100%);
	opacity: 1;
}

.videooverlay2r {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to left, rgba(0,0,0,1) 3%, rgba(90,21,15,0) 30%, rgba(231,55,39,0) 100%);
	opacity: 1;
}

.videooverlay3r {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to left, rgba(0,0,0,1) 5%, rgba(90,21,15,0) 40%, rgba(231,55,39,0) 100%);
	opacity: 1;
}

.mobaudio {
	
}


/*-------4. SLIDES INHOUD ---------*/

#slide1, #slide2, #slide3, #slide4, #slide5, #slide6, #slide7, #slide8, #slide9, #slide10, #slide11, #slide12, #slide13, #slide14, #slide15 {
	background-size: cover;
	background-attachment: fixed;
}

.bg-img {
	background-size: cover;
	background-attachment: fixed;
	opacity: 1;
	z-index: 1;
}

.slide h1 {
	width: 50%;
	top: 90%;
	left: 5%;
	transform: translateY(-10%);
	position: relative;
	font-size: 2.1em;
}

.slide p {
	width: 30%;
	left: 5%;
	padding: 0;
}

.layer {
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 5%;
	top: 30%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.layer-credits {
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 5%;
	top: 15%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}



.layer-right {
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 60%;
	top: 30%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.layer-right p {
	width: 30%;
	right: 5%;
	padding: 0;
}

.intro {
	
}

.intro not(.fp-section) {
	
}

.intro p {
	color: #fff;
	font-family: 'Roboto', sans-serif, Helvetica;
	text-shadow: 3px 3px 3px #000;
	width: 50%;
	margin: auto;
	font-size: 1.3em;
}

/*-------5. ANIMATIES ---------*/
@keyframes section0animation {
	from {opacity:0;}
	to {bottom: 1;}
}

@keyframes footeranimation {
	from {bottom: 50px;}
	to {bottom: 45px;}
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes TestZoom {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	
	100% {
		transform: scale(1);
	}
}


/*----------6. TIMELINE -------*/

.cd-horizontal-timeline .events-content {
  position: relative;
}
.cd-horizontal-timeline .events-content li {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  opacity: 0;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}
.cd-horizontal-timeline .events-content li.selected {
  /* visible event content */
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
}
.cd-horizontal-timeline .events-content li.enter-right, 
.cd-horizontal-timeline .events-content li.leave-right {
  animation-name: cd-enter-right;
}
.cd-horizontal-timeline .events-content li.enter-left, 
.cd-horizontal-timeline .events-content li.leave-left {
  animation-name: cd-enter-left;
}
.cd-horizontal-timeline .events-content li.leave-right, 
.cd-horizontal-timeline .events-content li.leave-left {
  animation-direction: reverse;
}
@keyframes cd-enter-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes cd-enter-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

/*-------7. MOBIEL ---------*/

/*-- Verticaal kleine telefoons (Samsung Galaxy S5 etc) --*/

@media only screen and (max-width:359px) {
	
	h1 {
		font-size:1.8em !important; 
		max-width:95% !important; 
		text-shadow: 2px 2px 2px #000;
	}
	
	p {
		font-size:1.3em !important;
		max-width:95% !important;
		text-shadow: 6px 3px 3px #000;
	}
	
	p.scrolltip {
		font-size: 1.0em !important;
		max-width: 95% !important;
	}
	
	#myVideo,
	#myVideos,
	#myVideoX,
	#myAudio {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	background-position: center center;
	background-size: contain;
	object-fit: cover;
	z-index: 2;
}
	.layer{
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 5%;
	top: 20%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	}
	
	.videooverlay {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.42) 0%,rgba(0,0,0,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay2 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.73) 0%,rgba(0,0,0,0.73) 12%,rgba(0,0,0,0) 59%,rgba(0,0,0,0) 69%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
}
	.videooverlay3 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.85) 29%,rgba(0,0,0,0.14) 69%,rgba(0,0,0,0) 77%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.layer-credits {
	
	}
	
	.linka {
	position: relative; 
	width:80%; 
	height:auto; 
	z-index:80;
	margin-bottom:1%;
}

	.linkb {
	position: relative; 
	width:80%; 
	height:auto; 
	z-index:80;
}
}

@media only screen and (min-width:360px) {
	
	h1 {
		font-size: 1.8em;
		max-width:95%;
		text-shadow: 6px 3px 3px #000;
	}
	
	p {
		font-size:1.3em;
		max-width:95%;
		text-shadow: 6px 3px 3px #000;
	}
	
	p.scrolltip {
		font-size: 1.2em;
		max-width: 95%;
	}
	
	#myVideo,
	#myVideos,
	#myVideoX,
	#myAudio {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	background-position: center center;
	background-size: contain;
	object-fit: cover;
	z-index: 2;
}
	.layer{
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 5%;
	top: 20%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	}
	
	.videooverlay {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.42) 0%,rgba(0,0,0,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay2 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.73) 0%,rgba(0,0,0,0.73) 12%,rgba(0,0,0,0) 59%,rgba(0,0,0,0) 69%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
}
	.videooverlay3 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.85) 29%,rgba(0,0,0,0.14) 69%,rgba(0,0,0,0) 77%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.layer-credits {
	
	}
	
	.linka {
	position: relative; 
	width:80%; 
	height:auto; 
	z-index:80;
	margin-bottom:1%;
}

	.linkb {
	position: relative; 
	width:80%; 
	height:auto; 
	z-index:80;
}
	
}

/*-- Verticaal tablets (iPad etc) --*/
	
@media only screen and (min-width:768px) {
	h1 {
		font-size: 3.8em;
		max-width:95%;
		text-shadow: 6px 3px 3px #000;
	}
	
	p {
		font-size:2.5em;
		max-width:90%;
		text-shadow: 6px 3px 3px #000;
	}
	
	p.scrolltip {
		font-size: 1.8em;
		max-width: 95%;
	}
	
	#myVideo,
	#myVideos,
	#myVideoX,
	#myAudio {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	background-position: center center;
	background-size: contain;
	object-fit: cover;
	z-index: 2;
}
	.layer{
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 5%;
	top: 20%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	}
	
	.videooverlay {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.42) 0%,rgba(0,0,0,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay2 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.73) 0%,rgba(0,0,0,0.73) 12%,rgba(0,0,0,0) 59%,rgba(0,0,0,0) 69%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay3 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.85) 29%,rgba(0,0,0,0.14) 69%,rgba(0,0,0,0) 77%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.layer-credits {
		top:10%;
	}
}

/*-- Horizontaal kleine telefoons (Samsung Galaxy S5 etc) --*/
	
@media only screen and (min-width:640px) and (orientation:landscape) {
	h1 {
		font-size: 2.8em;
		max-width:95%;
		text-shadow: 6px 3px 3px #000;
	}
	
	p {
		font-size:2.1em;
		max-width:90%;
		text-shadow: 6px 3px 3px #000;
	}
	
	p.scrolltip {
		font-size: 1.4em;
		max-width: 95%;
	}
	
	#myVideo,
	#myVideos,
	#myVideoX,
	#myAudio {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	background-position: center center;
	background-size: contain;
	object-fit: cover;
	z-index: 2;
}
	.layer{
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 5%;
	top: 20%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	}
	
	.videooverlay {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.42) 0%,rgba(0,0,0,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay2 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.73) 0%,rgba(0,0,0,0.73) 12%,rgba(0,0,0,0) 59%,rgba(0,0,0,0) 69%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay3 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.85) 29%,rgba(0,0,0,0.14) 69%,rgba(0,0,0,0) 77%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
		.layer-credits {
		top:10%;
	}
	
	.layer-credits p {
		font-size: 1em;
}

/*-- Horizontaal grotere telefoons (iPad etc) --*/
	
@media only screen and (min-width:1024px) and (max-width:1025px) and (orientation:landscape) {
	h1 {
		font-size: 2.8em;
		max-width:95%;
		text-shadow: 6px 3px 3px #000;
	}
	
	p {
		font-size:2.0em;
		max-width:90%;
		text-shadow: 6px 3px 3px #000;
	}
	
	p.scrolltip {
		font-size: 1.4em;
		max-width: 95%;
	}
	
	#myVideo,
	#myVideos,
	#myVideoX,
	#myAudio {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	background-position: center center;
	background-size: contain;
	object-fit: cover;
	z-index: 2;
}
	.layer{
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 5%;
	top: 20%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	}
	
	.videooverlay {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.42) 0%,rgba(0,0,0,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay2 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.73) 0%,rgba(0,0,0,0.73) 12%,rgba(0,0,0,0) 59%,rgba(0,0,0,0) 69%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay3 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.85) 29%,rgba(0,0,0,0.14) 69%,rgba(0,0,0,0) 77%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.layer-credits {
		top:10%;
	}
	
	.layer-credits p {
		font-size: 1em;
}
}

/*-- Horizontaal groot scherm laptops etc --*/
	
@media only screen and (min-width:1025px) {
	h1 {
		font-size: 2.6em;
		max-width:95%;
		text-shadow: 4px 3px 3px #000;
	}
	
	p {
		font-size:1.6em;
		max-width:45%;
		text-shadow: 3px 3px 3px #000;
	}
	
	p.link-txt {
	max-width:90%; 
	position: relative; 
	margin:auto; 
	text-align:center; 
	/* height: 2.5em; */
	font-size:1.3em; 
	font-family:roboto; 
	font-weight:500;
}
	
	p.scrolltip {
		font-size: 1.1em;
		max-width: 95%;
	}
	
	#myVideo,
	#myVideos,
	#myVideoX,
	#myAudio {
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	background-position: center center;
	background-size: contain;
	object-fit: cover;
	z-index: 2;
}
	.layer{
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 5%;
	top: 26%;
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	}
	
	.videooverlay {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.42) 0%,rgba(0,0,0,0) 48%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay2 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.73) 0%,rgba(0,0,0,0.73) 12%,rgba(0,0,0,0) 59%,rgba(0,0,0,0) 69%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.videooverlay3 {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 3;
	background: linear-gradient(to right, rgba(0,0,0,0.85) 0%,rgba(0,0,0,0.85) 29%,rgba(0,0,0,0.14) 69%,rgba(0,0,0,0) 77%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	opacity: 1;
	}
	
	.layer-credits {
		top:10%;
	}
	
	.layer-credits p {
		font-size: 1.6em;
	}
}
	
	@media screen and (min-width:1921px) {
		
	.layer-credits {
		top:10%;
	}
	
	.layer-credits p {
		font-size: 2em;
}
	}

/*-- LOSSE VORMGEVING VOOR MOBIEL --*/

/*--- Muteknop --*/
/*--- Wel zichtbaar op groot scherm --*/
@media screen and (max-width:5000px) and (min-width:1250px) {
	img.muteknop {
		position:fixed;
		left:2%;
		bottom:1%;
	}
}

/*--- Niet zichtbaar op klein scherm --*/
@media screen and (max-width:1250px) and (min-width:0px) {
	img.muteknop {
		visibility:visible;
	}
}

/*--- Logo niet zichtbaar op klein scherm --*/
@media screen and (max-width:1250px) and (min-width:0px) {
	#logo {
		visibility:visible;
	}
}