/* GLOBAL STYLES */
@import url(fontawesome-all.min.css);

* {
	margin: 0px;
	padding: 0px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-family:Segoe UI, Tahoma, 'Geneva', Verdana, sans-serif;
    font-size: 1em;
    font-weight: 300;
    color: #333333;
    line-height: 28px;
    overflow-x: hidden;
    margin: auto !important;
    -ms-overflow-style: none;  /* IE and Edge */
    scroll-snap-type: y mandatory;
    background-color: #fff;
    min-width: 300px;
    min-height: 300px;
}


body::-webkit-scrollbar {
    display: none;
}

a, a:hover, a:active, a:focus{
    border: 0 none;
    outline: 0 none;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

button, button:hover, button:active, button:focus{
    border: 0 none;
    outline: 0 none;
    text-decoration: none;
    cursor: pointer;
}

h5{
	font-weight:400;
	letter-spacing:4px;
	font-size:2rem;
}

h4{
	font-weight:500;
	letter-spacing:3px;
	font-size:2rem;
}

.container{
	width: 90%;
}

.wrapper{
	width: 100%;
	display: flex;
	justify-content: center;
}

.clearfix{
	clear: both;
}

.pos-absolute{
    position: absolute;
}

.pos-relative{
    position: relative;
}

.dflex{
    display: flex;
}

.dblock{
    display: block;
}

.float-l{
    float: left;
}

.float-r{
    float: right;
}

.flex-row{
    flex-direction: row;
}

.flex-col{
	flex-direction: column;
}

.flex-col-rev{
	flex-direction: column-reverse;
}

.flex-1{
	flex-grow: 1;
}

.flex-2{
	flex-grow: 2;
}

.flex-c{
	justify-content: center;
}

.flex-h{
	align-items: center;
}

.full-h{
	min-height:100vh;
}

.m-auto{
    margin: auto;
}

.m-top5{
	margin-top:5rem;
}

.mleft-1{
	margin-left: 1rem;
}

.mbot-1{
	margin-bottom: 2rem;
}

.min-h{
    min-height: 50vh;
}

.full-w{
	width: 100%;
}

.shadow{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
}

.textcap{
    text-transform: uppercase;
}

.testborder{
    border:1px solid red;
}

.textbox{
    font-size: 1.2rem;
}

.textmarker {
    background: linear-gradient(180deg,rgba(255,255,255,0) 40%, rgb(199, 219, 219) 60%);
    padding-bottom: 3px;
}

.text-l{
    text-align: left;
}

.text-r{
    text-align: right;
}

.text-c{
    text-align: center;
}

.playButton{
    border-radius: 100px;
    border: 8px solid rgb(0, 150, 143, 0.8);
    height: 100px;
    position: absolute;
    width: 100px;
    margin: auto;
    top: 0;
    bottom: 15%;
    right: 0;
    left: 0;
    cursor: pointer;
    display: block;
    opacity: 0.95;
    transition: opacity 150ms;
}
  
.playButton:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 50px;
    border-color: transparent transparent transparent rgb(0, 150, 143, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: -10px;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 600px) {
	.playButton{
		width: 75px;
		height: 75px;
		border: 5px solid rgb(0, 150, 143, 0.8);
	}

	.playButton:before{
		border-width: 20px 0 20px 40px;
	}
}

/* INDIVIDUAL STYLES */

#preloader{
	background-color: rgb(136,139,141);
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	color: #fff;
}

#landing{
    background-image: url("../images/header-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 998;
    align-items: center;
    position: relative;
	overflow:hidden;
	height: 100vh;
}

#landing::after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    background-image: radial-gradient(black 33%, transparent 33%);
    background-size: 3px 3px;
}

#landing-content{
    width: 80%;
    height: 50%;
    margin: 0 auto;
    z-index: 998;
    background-image: url("../images/intro-logo.png");
    background-size:contain;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0;
}

@media screen and (max-width: 600px) {
    #landing-content{
        width:70%;
        background-image: url("../images/intro-logo-small.png");
    }
}

@media screen and (min-width:900px) {
    #landing-content{
        width: 50%;
    }    
}

#landing-footer{
    bottom: -20%;
    z-index: 998;
    left: 50%;
    transform: translate(-50%);
    color: #fff;
    display: none;
}

@media screen and (min-height:450px) {
    #landing-footer{
        display: block;
    }    
}

#navigation{
	width: 100%;
	height: 5rem;
	position: fixed;
	top: 0;
	z-index: 997;
	align-items: center;
	justify-content: space-between;
}

#navigation-logo{
	margin-left: 2rem;
	margin-top: 0.5rem;
}

#navigation-language{
	margin-left: auto;
	margin-right: 2rem;
}

#navigation-language a {
	color: #333333;
}

#navigation-language a:hover {
	color: rgb(0, 150, 143);
}

#navigation-icon{
	margin-right: 2rem;
}

#menu-icon:hover{
	cursor: pointer;
	color: rgb(0, 150, 143);
}

#menu-wrapper{
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	z-index: 999;
	position: fixed;
	background-color: rgb(136,139,141, 0.7);
	visibility: hidden;
}

#menu{
	width: 20vw;
	height: 100%;
	background-color: rgb(0, 150, 143);
	padding: 5rem 3rem;
}

#menu-close{
	top: 1rem;
	right:1rem;
}

#menu h2{
	margin-bottom: 5rem;
}

#menu a:hover{
	color: #c1c1c1;
}

@media screen and (max-width: 600px){
	#menu{
		width: 100vw;
	}
}

@media screen and (max-height: 600px){
	#navigation-logo{
		visibility: hidden;
	}
	
}

#intro{
    z-index: 3;
	justify-content: center;
	align-items: center;
}

#intro-header{
	font-size: 2.5rem;
    line-height: 200%;
    color:  rgb(83,86,90);
	width:100%;
	height: 30vh;
	visibility:hidden;
	margin-top: 3rem;
	padding-top: 5rem;
}

#intro-cat{
	padding-top: 3rem;
	padding-bottom: 3rem;
}

#intro-cat span{
	font-weight: bold;
	font-size: 2.2rem;
}

#intro-content{
	height:40vh;
	width: 100%;
	margin-bottom: 3rem;
	background-image: url("../images/intro-image.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width: 600px){
	#intro{
		margin-bottom:0;
		margin-top:2rem;
		min-height: 50vh;
		margin-bottom: 2rem;
	}
	
	#intro-header{
		padding: 1rem;
		font-size:5vw;
		height: 12rem;
		margin-top: 8rem;
	}

	#intro-cat{
		padding-top:0;
		padding-bottom: 0;
	}

	#intro-cat h5{
		font-size: 1.5rem;
	}

	#intro-cat span{
		font-size: 1.5rem;
	}
}

@media screen and (max-height: 600px){
	#intro-header{
		padding: 1rem;
		height: auto;
		margin-top: 6rem;
	}

	#intro-content{
		height: 55vh;
	}
}

#services{
	color:rgb(136,139,141);
	z-index: 3;
	display: inline-block;
}

#services h5{
	margin-bottom: 10rem;
}

#services a {
	color: #333333;
	font-weight: 400;
	letter-spacing: 4px;
}

.service-row{
	width:100%;
	flex-direction:row;
	padding-left:10rem;
	padding-right:5rem;
	margin-bottom:15rem;
}

.service-col{
	width:50%;
	z-index:5;
}

.service-col img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	pointer-events: none;
}

.service-text{
	margin-top:5rem;
	margin-bottom:-5rem;
	z-index:4;
	background: linear-gradient(300deg, rgba(255,255,255,0), rgba(218,218,218,1));
	padding:2rem;
	padding-top:5rem;
	color:rgb(83,86,90);
	font-weight:400;
}

.service-text h2{
	font-size:2.2rem;
	font-weight:400;
	letter-spacing:4px;
	margin-bottom:2rem;
}

.service-text h3{
	margin-bottom:1rem;
}

.service-text-left{
	margin-right:-5rem;
	padding-right:10rem;
}

.service-text-right{
	margin-left:-5rem;
	padding-left:10rem;
}

@media screen and (max-width: 800px){	
	.service-row{
		padding-left:0;
		padding-right:0;
		margin-bottom:3rem;
		margin-top:2rem;
	}
	
	.service-row:nth-of-type(odd){
		flex-direction:column;
	}
	
	.service-row:nth-of-type(even){
		flex-direction:column-reverse;
	}
		
	.service-col{
		width:100%;
	}
		
	.service-text{
		padding:1rem;
		margin-bottom:0;
		margin-top:2rem;
		text-align:left;
	}
	
	.service-text-right{
		margin-left:0;
	}
	
	.service-text-left{
		margin-right:0;
	}

	#service h5{
		margin-bottom: 5rem;
	}
}

@media screen and (min-width: 600px) and (max-width: 1450px){
	.service-row{
		padding-left:5rem;
		padding-right:2.5rem;
	}
	
	.service-text{
		padding-top:2rem;
	}
	
	.service-text-right{
		margin-left:-2.5rem;
		padding-left:5rem;
	}
	
	.service-text-left{
		margin-right:-2.5rem;
		padding-right:5rem;
	}
	
	.service-text h2{
		margin-bottom:1rem;
		font-size:1.8rem;
	}
	
	.service-text h3{
		margin-bottom:0.5rem;
		font-size:1rem;
	}
}

#media{
	width: 100%;
	z-index: 4;
}

#video{
    width: 80%;
    height: auto;
	margin: 0 10% 5% 10%;
}

#contact{
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url("../images/background-website3.jpg");
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url("../images/background-website3.jpg");
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url("../images/background-website3.jpg");
	background-image: linear-gradient(top, rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url("../images/background-website3.jpg");
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width:80%;
	color:#fff;
	z-index: 4;
	margin-left: 10%;
	margin-right: 10%;
	border-radius: 1rem;
	margin-top: 5%;
	margin-bottom: 5%;
}

#contact-content{
	z-index: 10;
	width: 100%;
	height: 100%;
}

#contact h1{
	font-size: 4vw;
    line-height: 200%;
	padding-top: 5rem;
}

#contact h2{
	padding:2rem 0 0.5rem 0;
}

#contact-content div{
	margin-top: 2rem;
	padding: 1rem;
	justify-content: space-between;
}

#contact a:hover{
	text-decoration: underline;
}

@media screen and (max-width: 600px){
	#contact{
		width: 100%;
		margin:0;
		border-radius: 0;
	}

	.contact-box i{
		width: 100%;
	}

	.phone-icon{
		margin-left: 0;
	}

	#footer{
		font-size: 0.8rem;
	}
}

#services-intro-header {
	font-size: 2.5rem;
	line-height: 200%;
	color: rgb(83,86,90);
	width: 100%;
	height: 30vh;
	margin-top: 5rem;
	padding-top: 5rem;
	visibility:hidden;
}

#services-intro-title {
	color: rgb(136,139,141);
	margin-bottom: 8rem;
}

#services-intro-text{
	width:40%;
	margin-left:auto;
	margin-right:auto;
}

.services-category-ref {
	width: 90%;
	justify-content:space-evenly;
	margin-top:5rem;
	margin-left:5%;
}

.services-category-ref {
	width: 90%;
	justify-content: space-evenly;
	margin-top: 5rem;
	color: rgb(136,139,141);
}

.services-category-box {
	background: rgb(83,86,90);
	height: 40vh;
	width:30%
}

.services-category-box:hover {
	cursor: pointer;
}

.services-category-box img {
	object-fit:cover;
	width: 100%;
	height: 100%;
	pointer-events:none;
}


@media screen and (max-width: 800px) {
	#services-intro-header {
		font-size:2rem;
	}

	#services-intro-title {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}

	#services-intro-text {
		width: 90%;
		margin-bottom: 3rem;
	}

	.services-category:last-child{
		margin-bottom:3rem;
	}

	.services-category-ref{
		display:inline-block;
		height:auto;
	}

	.services-category-box{
		width:100%;
	}

	.services-category-box:not(:first-child) {
		margin-top:2rem;
	}
}

@media screen and (max-height: 450px) {
	#services-intro{
		margin-bottom:3rem;
	}

	#services-intro-header {
		padding-top:0;
	}

	#services-intro-title {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}

	#services-intro-text {
		width: 90%;
	}

}

/*@media screen and (max-height: 850px) {
	#services-intro {
		margin-bottom: 3rem;
	}
}*/

#about-intro-header {
	font-size: 2.5rem;
	line-height: 200%;
	color: rgb(83,86,90);
	width: 100%;
	height: 30vh;
	margin-top: 5rem;
	padding-top: 5rem;
	visibility: hidden;
}

#about-intro-title {
	color: rgb(136,139,141);
	margin-bottom: 5rem;
}

#about-intro-text {
	width: 40%;
	margin-left: auto;
	margin-right: auto;
}

#about-team {
	width: 90%;
	justify-content: space-evenly;
	margin-top: 5rem;
}

#about-team h5 {
	color: rgb(136,139,141);
}

#about-team h4 {
	font-size:1.4rem;
}

.about-team-box {
	height: 40vh;
	width: 30%
}

.about-team-box a{
	color:#333333;
}

@media screen and (max-width: 800px) {
	#about-intro-header {
		font-size: 2rem;
	}

	#about-intro-title {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}

	#about-intro-text {
		width: 90%;
		margin-bottom: 3rem;
	}

	#about-team:last-child {
		margin-bottom: 3rem;
	}

	#about-team {
		display: inline-block;
		height: auto;
	}

	.about-team-box {
		width: 100%;
	}

	.about-team-box:not(:first-child) {
		margin-top: 2rem;
	}
}

@media screen and (max-height: 450px) {
	#about-intro {
		margin-bottom: 3rem;
	}

	#about-intro-header {
		padding-top: 0;
	}

	#about-intro-title {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}

	#about-intro-text {
		width: 90%;
	}

	.about-team-box {
		height: 250px;
	}
}

@media screen and (max-height: 850px) {
	#about-intro {
		margin-bottom: 3rem;
	}
}


#gdpr-cookie-message {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 999;
	background-color: rgb(255,255,255, 0.5);
	padding:1rem;
}

#gdpr-cookie-message button {
	margin-right:1rem;
	background:none;
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
	width: 100%;
	height: 100%;
}

.close-button {
	position: absolute;
	top: 1rem;
	right: 2rem;
	color: rgba(218, 218, 218);
	z-index: 3;
}

	.close-button:hover {
		cursor: pointer;
		color: rgba(255, 255, 255);
	}

.overlay-image {
	position: absolute;
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
	/* Voeg andere stijlen hier toe */
	/* Hier voegen we een stijl toe om de afbeelding te centreren */
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay-image img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
	width: auto;
	pointer-events: none;
}









