@charset "UTF-8";

/* NIKS AANPASSEN IN DIT BESTAND */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{margin:0; padding:0; border:0; font-size:100%; font:inherit; vertical-align:baseline; background:transparent;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary
{display: block;}

audio, canvas, video {display: inline-block; *display:inline; *zoom:1;}

audio:not([controls]) {display:none; height:0;}

[hidden] {display:none;}

html {overflow-y:scroll; overflow-x:hidden; font-size:100%; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%;}    
    
body {line-height: 1;}

nav ul, nav ol {list-style: none; list-style-image:none;}    
ol, ul {list-style: none;}
    
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; font-size:75%}
abbr[title], dfn[title] {border-bottom:1px dotted; cursor:help;}    

sub, sup {font-size:75%; line-height:0; position:relative; vertical-align:baseline}
sub {bottom: -0.25em;}
sup {top: -0.5em;}

table {border-collapse: collapse; border-spacing: 0;}

a:link, a:visited, a:hover, a:active {text-decoration:none;}
a img, :link img, :visited img {border:none;}
a:focus {outline: thin dotted;}
a:active, a:hover {outline: 0;}

html, button, input, select, textarea {font-family: sans-serif;}
textarea {resize:none; vertical-align:top; font-size:100%; overflow:auto;}
textarea:focus {outline:none;}
input:focus {outline:none;}
button, input, select {vertical-align: baseline; *vertical-align: middle; font-size:100%; line-height:normal; margin:0;}
legend {white-space: normal; *margin-left:-7px;}
button, input[type="button"], input[type="reset"], input[type="submit"] {-webkit-appearance:button; cursor:pointer; *overflow: visible;}
button[disabled], input[disabled] {cursor: default;}
input[type="checkbox"], input[type="radio"] {box-sizing; border-box; *height: 13px; *width: 13px;}
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;}

img {-ms-interpolation-mode: bicubic;}
svg:not(:root) {overflow:hidden;}

strong, b {font-weight:bold}

tt {font-family: "Courier New", Courier, monospace}
code, kbd, pre, samp {font-family: monospace, serif; _font-family: 'courier new', monospace; font-size:16px;}
pre {white-space: pre; white-space:pre-wrap; word-wrap: break-word;}
hr {display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0;}
i {font-style:italic}
u {text-decoration:underline}
strike, del {text-decoration:line-through}
ins {text-decoration:none}
center {text-align:center}
dfn {font-style:italic}
mark {background: #ff0; color: #000;}

/* EXTERNE FONTS */

/* GEHOSTE FONTS */
@font-face {
    font-family: 'ChopinScript';
    src: url('/fonts/chopinscript-webfont.eot');
    src: url('/fonts/chopinscript-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/chopinscript-webfont.woff') format('woff'),
         url('/fonts/chopinscript-webfont.ttf') format('truetype'),
         url('/fonts/chopinscript-webfont.svg#ChopinScript') format('svg');
    font-weight: normal;
    font-style: normal;

}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
textarea:focus, input:focus, select:focus, button:focus, option:focus{
  outline: none;
}
input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
option {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}
html,
body {
  margin:0;
  padding:0;
  height:100%;
  font-family: 'Nanum Gothic', sans-serif;
}
/* KEYFRAMES */

.come-in {
  transform: translateY(150px);
  animation: come-in 1.5s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 1.5s; /* So they look staggered */
}

@keyframes come-in {
  to { transform: translateY(0); }
}

@media screen and (min-width: 800px) {

  .come-in-left {
    transform: translateX(-300px);
    animation: come-in-left 0.8s ease forwards;
  }
  .come-in-left:nth-child(odd) {
    animation-duration: 1.5s; /* So they look staggered */
  }
}

@keyframes come-in-left {
  to { transform: translateX(0); }
}
@media screen and (min-width: 800px) {
  .come-in-right {
    transform: translateX(300px);
    animation: come-in-right 0.8s ease forwards;
  }
  .come-in-right:nth-child(odd) {
    animation-duration: 1.5s; /* So they look staggered */
  }
}
@keyframes come-in-right {
  to { transform: translateX(0); }
}

@keyframes pulse {
	0% {
		color: #fff;
	}

	5% {
		color: #8bcf97
	}
	10% {
		color: #fff;
	}
	20% {
		color: #8bcf97
	}
	21% {
		color: #fff;
	}

	50% {
		color: #fff;
	}

	100% {
		color: #fff;
	}
}


@keyframes pulse2 {
	0% {
		color: #e0d8c36e;
	}

	5% {
		color: #001f35
	}
	10% {
		color: #e0d8c36e;
	}
	20% {
		color: #001f35
	}
	21% {
		color: #e0d8c36e;
	}

	50% {
		color: #e0d8c36e;
	}

	100% {
		color: #e0d8c36e;
	}
}

@keyframes pulse3 {
	0% {
		color: #e0d8c36e;
	}

	5% {
		color: #001f35
	}
	10% {
		color: #e0d8c36e;
	}
	20% {
		color: #001f35
	}
	21% {
		color: #e0d8c36e;
	}

	50% {
		color: #e0d8c36e;
	}

	100% {
		color: #e0d8c36e;
	}
}

/* EINDE KEYFRAMES */

/* Bevestiging */

.bevestiging_bg {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bevestiging {
  width: 100%;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.10);
  max-width: 700px;
  padding: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.bevestiging i {
  font-size: 3em;
  color: #001f35;
  margin-bottom: 20px;
}

.bevestiging h2 {
  text-transform: uppercase;
  color: #001f35;
  font-size: 15px;
  margin: 10px 0;
}

.bevestiging h1 {
  font-weight: 400;
  font-size: 1.8em;
  text-align: center;
  color: #001f35;
  margin-bottom: 10px;
}

.bevestiging p {
  line-height: 150%;
  color: #001f35;
  font-size: 17px;
  font-weight: 200;
}

.bevestiging a {
  cursor: pointer;
  display: inline-block;
  padding: 13px 30px;
  background-color: #001f35;
  font-weight: 200;
  color: white;
  margin-top: 20px;
  border: 1px solid #001f35;
  transition: all 1s ease;
}

.bevestiging a:hover {
  background-color: transparent;
  color: #001f35;
}

/* Einde Bevestiging*/

/* Cookie Melding */
.plenso_cookies {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: white;
  border-radius: 5px;
  max-width: 400px;
  -webkit-box-shadow: 0px 0 45px -0 rgba(0,29,147,0.15);
  -moz-box-shadow: 0px 0 45px -0 rgba(0,29,147,0.15);
  box-shadow: 0px 0 45px -0 rgba(0,29,147,0.15);
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 25px;
  transition: all .5s;
}

.plenso_cookies > img {
  width: 50px;
}

.plenso_cookies > div {
  color: #3e3e3e;
  padding: 25px 0px;
  line-height: 25px;
  text-align: justify;
  font-size: 16px;
}

.plenso_cookies > div a {
  color: #3e3e3e;
  text-decoration: underline;
}

.plenso_cookies > a {
  background-color: #001f35;
  color: white;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  padding: 18px 30px;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  transition: all .3s;
}

.plenso_cookies > a:hover {
  transform: scale(1.1);
}

/* Einde cookiemelding */

/* GDPR */ 

#content-container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  margin: auto;
}

#content-container h1 {
  width: 100%;
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  color: #001f35;
  margin-bottom: 60px;
  margin-top: 50px;
}


#content-container h2 {
  color:#001f35;
  font-size:2em;
  font-weight:bold;
  margin-bottom: 1em;
  margin-top: 1em;
  cursor: pointer;
  padding-left: 15px;
}

#content-container h3 {
  border-bottom: 2px solid #001f35;  
  color: #001f35;
  font-size: 1.3em;
  padding: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-top: 20px;
}

#content-container h3 span {
  position: absolute;
  z-index: 1;
  background: transparent url("/images/cross_w.png") no-repeat;
  display: inline-block;
  width: 15px;
}

#content-container h4 {
  margin-left: 2em;
  font-size: 1.1em;
  font-weight: bold;
}

#content-container p {
  padding: 20px;
  line-height: 170%;
  color: #7e7e7e;
  font-size: 1.2em;
}

#content-container ul {
  margin-left: 3em;
}

#content-container table {
  width: 100%;
}

#content-container a {
  color: #001f35;
  font-weight: 700;
}

#gdpr-wrapper {
  min-height:100%;
  position:relative;
}

#content-container thead {
  background-color: #4C4C4C;
  color: #fff;
}


#content-container thead th {
  border: 1px solid #353535;
  padding: 10px;
}

#content-container tbody td {
  border: 1px solid #353535;
  color: #7e7e7e;
  line-height: 150%;
  padding: 5px;
}

#content-container tbody td p {
  padding: 0px;
}

#content-container ul {
  padding-left: 20px;
  line-height: 170%;
  color: #7e7e7e;
  list-style-type: disc;
}


/* Einde GDPR */

/* Curtaindrop */

.curtain-click {
	cursor: pointer;
  color: #001f35;
  display: flex;
  justify-content: center;
  align-items: center;
  -ms-align-items: center;
  font-size: 20px;
}

.curtain-click i {
  font-size: 30px;
  margin-left: 10px;
}

.curtaindrop {
	width: 100%;
	z-index: 100;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	display: none;
	position: fixed;
}

.curtaindrop>video {
	position: absolute;
	left: 50%;
	top: 50%;
	min-height: 100%;
	min-width: 100%;
	z-index: 0;
	transform: translate(-50%, -50%);
}

.curtaindrop .overlay {
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.7;
  }

.curtaindrop>div {
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	position: relative;
	background-position: center;
	background-size: cover;
	background-color: rgba(58, 58, 58, 1);
}

.curtaindrop>div>div:last-child {
	position: absolute;
	left: 50%;
	width: 95%;
	max-width: 1000px;
	color: #fff;
	z-index: 200;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	text-align: center;
}

.curtaindrop .button {
	display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    cursor: pointer;
	font-weight: 600;
	letter-spacing: 1px;
    border-radius: 4px;
    font-size: 20px;
    color: #fff;
    background-color: #e0d8c36e;
	transition: all 0.8s ease;
	margin-top: 30px;
}

.curtaindrop .button:hover {
	transform: scale(1.1);
}

.curtaindrop p {
	font-size: 1.4em;
	line-height: 1.6em;
}

.curtaindrop img {
	max-width: 1000px;
	width: 96%;
}

.curtaindrop h2 {
	font-weight: 900;
	font-size: 3em;
	margin: 0;
	margin-bottom: 15px;
	text-align: center;
}

.curtaindrop>span {
	position: absolute;
	left: -123px;
	top: 0;
	display: block;
	width: 0;
	height: 0;
	border-right: 18px solid transparent;
	border-top: 34px solid #b0d49b;
	border-left: 18px solid transparent;
}

.curtaindrop>span>i {
	font-style: normal;
	position: absolute;
	right: 20px;
	cursor: pointer;
	color: #b0d49b;
	width: 300px;
	overflow: hidden;
	top: -34px;
	display: block;
	height: 34px;
	line-height: 34px;
	text-align: right;
}

.curtaindrop>span:before {
	position: absolute;
	top: -38px;
	cursor: pointer;
	left: -17px;
	height: 34px;
	line-height: 34px;
	color: #fff;
	font-weight: bold;
	font-size: 25px;
	width: 36px;
	display: block;
	text-align: center;
	content: '!';
}

.curtain-close {
	position: absolute;
	right: 40px;
	top: 30px;
	font-size: 60px;
	cursor: pointer;
	color: #fff;
	z-index: 100000000;
}

/* Einde Curtaindrop */


.gototop {
  z-index: 100;
  width: 40px;
  height: 40px;
  border-radius: 200px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  position: fixed;
  right: -100px;
  bottom: 40px;
  color: #373a3c93;
  font-size: 1em;  
  opacity: .8;
  cursor: pointer;
  transition: all .3s;
  border-radius: 200;
  border: none;
  background-color: #fff !important;
  transition: all 1s ease;
  box-shadow: #373A3C 0px 5px 15px;
}

.gototop:hover {
  transform: translateY(-10px);
}

/* Navigatie */

.nav-right-res {
  display: none;
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
}

.nav-right-res .vid {
  background-color: #001f35;
  color: white !important;
  padding: 14px 20px;
  border-radius: 200px;
  cursor: pointer;

}

.menubtn, .res-nav { 
	display: none;
}


.vidoverlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.884); 
}

.closevid {
  display: none;
  position: fixed;
  top: 60px;
  right: 60px;
  z-index: 105;
  width: 40px;
  cursor: pointer;
}

#vid, #vidref {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 70%;
  height: 670px;
}

.navigatie {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-end;
  align-items: flex-end;
  padding: 20px 0px;
  border-bottom: 2px solid #f6f6f6;
  padding-bottom: 30px;
}

.navigatie_right {
  display: flex;
  justify-content: flex-end;
  -ms-align-items: flex-end;
  align-items: flex-end;
  flex-direction: column;
  height: 100px;
}

.navigatie_right nav {
  margin-top: 30px;
}

.navigatie .logo
{
  width: 250px;
}

.scrolling.navigatie nav
{
  float: right;
  margin-top: 50px;
}

.navigatie_top {
  display: flex;
  justify-content: flex-end;
  -ms-align-items: flex-start;
  align-items: center;
}
.navigatie_top>div {
  padding: 13px 50px;
  font-size: .9em;
  position: relative;
  background-color: #f7f7f7;
}
.navigatie_top>div a {
  color: #4c4c4c;
  transition: all .3s;
  padding: 0 10px;
}

.lang {
  letter-spacing: 1px;
}

.navigatie_top>div a:hover {
  color: #001f35;
}

.activelang {
  font-weight: 700;
  color: #001f35;

}

.navigatie_top>div a:last-of-type {
  border-right: none;
  padding-right: 0px;
}
.navigatie_top>div a i {
  margin-right: 10px;
  font-size: 1.1em;
}

.navigatie_top>div a i.fa-bullhorn {
  animation: wiggle 3s;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  70% { transform: rotate(0deg); }
  75% { transform: rotate(25deg); }
  80% { transform: rotate(-25deg); }
  85% { transform: rotate(20deg); }
  95% { transform: rotate(-15deg); }
  100% { transform: rotate(0deg); }
}

.navigatie_top>div img {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
}


.navigatie_top>a {
  color: #3C3C3B;
  font-size: 1em;
  margin: 1px;
}

.navigatie_top>a:last-of-type {
  margin-right: 40px;
}

.navigatie nav>ul {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.navigatie ul li {
  margin: 0 20px;
}

.navigatie ul li.vid {
  background-color: #e62528;
  color: white !important;
  padding: 14px 20px;
  border-radius: 200px;
  cursor: pointer;
  position: relative;
  top:15px;
}

.navigatie ul li.vid a {
  color: white !important;
}

.navigatie ul li:last-of-type {
  margin-right: 0;
}

.navigatie ul a {
  color: #3C3C3B;
  font-size: 1.2em;
  font-weight: 200;
  padding: 5px 0;
}

.navigatie a.active, .navigatie ul a:hover {
  color: #001f35;
  font-weight: 600;
}

/* Einde navigatie */

/* Home banner */

.home_banner .slick-arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 200px;
  color: white;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border: none;
  background: transparent;
}

.home_banner .slick-arrow i {
  font-size: 35px;
  padding: 0 !important;
}

.home_banner .slick-next, .blokken_slider .slick-next {
  right: 10px;
  left: initial;
}

.home_banner article {
  position: relative;
}

.home_banner {
  width: 90%;
  margin: auto;
}

.home_banner article img {
  width: 100%;
}

.home_banner article>div  {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 140px);
  max-width: 1600px;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.home_banner article>div div {
  max-width: 800px;
}

.blokken_slider article h2 {
  font-weight: 700;
 font-size: 3.1em;
  color: #4c4c4c;
}

.home_banner article h2 {
  background-color: #4c4c4c52;
  font-weight: 700;
  font-size: 3.1em;
  color: #fff;
  padding: 10px 20px;
  width: fit-content;
}

.home_banner article h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2em;
  background-color: #4c4c4c52;
  color: #fff;
  margin-bottom: 15px;
  padding: 10px 20px;
  width: fit-content;
}

.blokken_slider article h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2em;
  color: #4c4c4c;
}

.home_banner article a, .blokken_slider article a, .blokken_content a {
 font-weight: 600;
  cursor: pointer;
  font-size: 18px;
  color: #001f35 !important;
  transition: all 0.8s ease;
  background-color: white;
  margin-top: 1em;
}

.home_banner article i, .blokken_slider article i, .blokken_content i {
  margin-left: 10px;
}

.home_banner article a:hover, .blokken_slider article a:hover, .blokken_content a:hover {
  transform: scale(1.1);
}

/* Powertekst */

.page_header {
  padding-top: 65px;
  padding-bottom: 40px;
  text-align: center;
}

.page_header_element {
  width: 40px;
  margin-bottom: 20px;
}

.page_header h1 {
  color: #001f35;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
  width: 90%;
}

.page_header>h2 {
  color: #4C4C4C;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 5px;
  width: 80%;
  margin: auto;
  margin-bottom: 10px;
}

.page_header .c, .weekaanbod .c, .doelgroep .c {
  line-height: 150%;
  font-weight: 200;
  font-size: 20px;
  color: #4C4C4C;
  width: 60%;
  margin: auto;
  text-align: center;
}

/* Home overzicht */ 

.home_overzicht {
  width: 100%;
  margin-top: 40px;
  z-index: 100;
}

.home_overzicht .container {
  width: 90% !important;
  margin: auto;
  text-align: center;
  padding: 0 100px;
  transform: translateY(-50px);
 
}

.home_overzicht a {
  width: 70% !important;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}


.home_overzicht a img {
  width: 100%;

}

.home_overzicht a .inhoud {
 
  background-color: rgba(223, 221, 221, 0.8);
  color:#4C4C4C;
  padding: 20px 15px;
  font-size: 1em;
  letter-spacing: 3px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  transition: all .3s;
}

/* Blokken */

.blokken {
  display: flex;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
  max-width: 90%;
  margin-top: 50px;
  margin-bottom: 50px;
}

.blokken article {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.blokken_img {
  width: 58%;
}

.blokken_img img {
  width: 100%;
}

.blokken_content {
  width: 42%;
  padding: 80px;
  text-align: center;
}

.blokken_content h2 {
  font-weight: 500;
  font-size: 1.8em;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 30px;
}

.blokken_content h2::after {
  content: "";
  position: absolute;
  border-top: 1px solid black;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 0px;
}

.blokken_tekst {
  line-height: 180%;
  font-size: 1.2em;
  font-weight: 200;
  color: #4c4c4c;
}

.blokken_content a {
  display: block;
  margin-top: 50px;
  color: #000;
  letter-spacing: 1px;
  transition: all 1s ease;
  font-size: 1.1em;
}

.blokken_content a:hover {
  transform: scale(1.1);
}

.blokken img.elem:nth-of-type(odd) {
  width: 30px;
  margin-left: 50%;
  transform: translateX(-50%) rotate(45deg);
  margin-top: 30px;
  margin-bottom: 30px;
}

.blokken img.elem:nth-of-type(even) {
  width: 30px;
  margin-left: 50%;
  transform: translateX(-50%) rotate(135deg);
  margin-top: 30px;
  margin-bottom: 30px;
}

.blokken img.elem:last-of-type {
  display: none;
}

/* Troeven */

.troeven {
  width: 100%;
  background-color: #e5eef8;
}

.troeven>div:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  -ms-align-items: flex-start;
  max-width: 90%;
  margin: auto;
  padding: 30px 0;
}

.troeven article {
  width: 50%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  -ms-align-items: flex-start;
}

.troeven article h2 {
  width: 100%;
  text-align: left;
  font-size: 1.6em;
  color: #001f35;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
}

.troeven article h2 img {
  margin-right: 10px;
  width: 30px;
}

.troeven article div.c{
  line-height: 200%;
  font-size: 1.3em;
  color: #5F5F5F;
  padding-left: 0px;
  margin-left: 40px;
}

/* Einde troeven */

/* Parallax */

.home_ak {
  width: 100%;
  height: 90vh;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


.dark_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color:  rgba(0, 0, 0, 0.705);
}

.home_ak .content {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.home_ak .content h2 {
  color: #fff;
  font-weight: 400;
  text-align: center;
  font-size: 100px;
  padding-bottom: 100px;
}


.home_ak .ak-links {
  position: absolute;
  bottom: 15px;
  display: flex;
  flex-direction: row;
  padding: 15px 10px;
  font-weight: 200;
  font-size: 22px;
  justify-content: space-between;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.home_ak .ak-links a {
  color: white;
  transition: all 1s ease;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 20px;
}


.home_ak .ak-links a::after {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 0px;
}

.home_ak .ak-links a:first-of-type {
  margin-right: 30px;
}

.home_ak .ak-links a:hover {
  transform: scale(1.1);
}
/* SFEERBEELDEN */

.in_beeld {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
}

.in_beeld article {
  width: 24%;
  margin: .5%;
  cursor: pointer;
  overflow: hidden;
}

.in_beeld article .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0,0,0,.6);
  display: flex;
  opacity: 0;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  color: white;
  font-size: 2em;
  transition: all .3s;
  z-index: 2;
}

.in_beeld article:hover .overlay {
  opacity: 1;
}

.in_beeld article:hover img {
  transform: scale(1.1);
}

.in_beeld article img {
  width: 100%;
  transition: all .5s;
}

/* EINDE SFEERBEELDEN */

/* Express service */

.express.mobile {
  display: none !important;
}
.express {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.express_ov1 {
  background-color: #001f35;
  padding: 40px;
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 80px;
}

.express_ov2 {
  background-color: #001f35;
  padding: 40px;
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 80px;
}

.express_ov1 ul, .express_ov2 ul {
  padding: 50px 0 0 0;
}

.express_ov1 ul li {
  display: flex;
  padding: 18px 0;
  justify-content: flex-start;
  align-items: center;
  -ms-align-items: center;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  cursor: pointer;
}

.express_ov2 ul li {
  display: flex;
  padding: 18px 0;
  justify-content: flex-end;
  align-items: center;
  -ms-align-items: center;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  cursor: pointer;

}

.express_ov1 ul li div:first-of-type{
  width: 70px;
  font-size: 30px;
}

.express_ov2 ul li div:first-of-type {
  width: 70px;
  font-size: 30px;
  margin-left: 70px;
}


.express_ov1 ul li>div:last-of-type, .express_ov2 ul li>div:last-of-type {
  color: white;
  font-size: 18px;
  min-width: 450px;
}



.express_ov1 ul .active>div:last-of-type,
.express_ov1 ul li:hover,
.express_ov2 ul .active>div:last-of-type,
.express_ov2 ul li:hover {
  font-weight: 400;
}

.express_ov1 ul li>img, .express_ov2 ul li>img{
  display: none;
}

.express_ov1 ul .activeItem>img,
.express_ov1 ul li:hover img,
.express_ov2 ul .activeItem>img,
.express_ov2 ul li:hover img {
  display: block;
}

.express_det1, .express_det2 {
  width: 50%;
}

.express_det1>div, .express_det2>div {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.express_det1>div h2, .express_det2>div h2 {
  font-size: 24px;
  color: #404040;
  font-weight: 400;
  margin-bottom: 40px;
}

.express_det1>div>div, .express_det2>div>div {
  font-weight: 300;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: -0.05em;
  color: #404040;
  margin-bottom: 50px;
}

.express_det1>div>a, .express_det2>div>a {
  font-weight: 300;
  font-size: 20px;
  color: #404040;
  border-bottom: 2px solid #E53323;
  padding-bottom: 10px;

}

/* Einde express service */

/* Wagenpark */

.products {
	width: 100%;
  max-width: 80%;
  margin: auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
  padding-bottom: 60px;
  }
  
.products article {
	width: 32%;
	border-radius: 4px;
	overflow: hidden;
	margin: .5%;
	margin-top: 0;
	margin-bottom: 1%;
	border: 2px solid #eeeeee;
	position: relative;
  }
  
.products article > a {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 2;
}
  
.products article img {
	width: 100%;
  transition: all 1s ease;
}
  
.products article h2 {
	font-size: 20px;
	color: #001f35;
	font-weight: 700;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-height: 50px;
	padding: 0 10px;
	border-top: 2px solid #eeeeee;
}
  
.products article > div {
	line-height: 150%;
	color: #5a5a5a;
	padding: 0 10px;
	font-size: 20px;
	margin: 15px 0 0 0;
}
  
.products article > div span {
	font-size: 13px;
}
  
.products article > button{
  color: #3C3C3B;
  font-size: 1.1em;
  font-weight: 200;
  padding: 5px 0;
  background-color: transparent;
	border: none;
  padding: 0 10px;
  margin-bottom: 5px;
  float: right;
  letter-spacing: 1px;
}

.products article > button i {
  margin-right: 10px;
}

.products article .c {
	min-height: 18em;
}

.products article .c ul {
	margin-left: 15px;
}

.products article .c ul li {
	font-size: 16px;
	padding-left: 5px;
}

.products article:hover img {
  transform: scale(1.1);
}

/* Types pagina */


.product_topper {
	width: 100%;
	background-color: #FAFAFA;
}
  
.product_topper > div {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	-ms-align-items: center;
	align-items: center;
	padding: 10px;
}
  
.product_topper a {
	font-weight: 200;
	font-size: 16px;
	color: #1C1B1B;
	display: inline-block;
	padding: 10px 0;
	cursor: pointer;
}
  
.product_header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	-ms-align-items: flex-start;
	align-items: flex-start;
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 10px;
}
  
.product_header_image {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;
}
  
.product_header_image > a i {
	transition: all .3s;
	padding-left: 5px;
}
  
.product_header_image > a:hover i {
	padding-left: 0 !important;
	padding-right: 5px;
}

.product_header_image>img {
	transition: all .2s;
	width: 100%;
}
  
.product_extrafotos {
	text-align: center;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	-ms-align-items: flex-start;
	margin-top: 10px;
  width: 100%;
}
  
.product_extrafotos div {
	width: 24%;
	cursor: zoom-in;
	margin-bottom: 1%;
}

.product_extrafotos div img {
  width: 100%;
}
  
.active_thumb {
	border-left: 2px solid #1C1B1B !important;
}
  
.mainimg {
 cursor: zoom-in;
}
  
.product_header_content {
	width: 50%;
	padding: 80px;
	display: flex;
	justify-content: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;
	flex-direction: column;
}
  
.product_header_content h1 {
	line-height: 120%;
	color:  #001f35;
	width: 100%;
	font-size: 2.2rem;
	padding-bottom: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	border-bottom: 1px solid #ddd;
}
  
.product_header_content h2 {
	color: #353535;
	font-weight: 400;
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 10px;
}

.product_intro {
	line-height: 200%;
	font-weight: 200;
	font-size: 1.1em;
	color: #1C1B1B;
	margin-top: 10px;
	width: 100%;
	margin-bottom: 10px;
}

.product_header_content .contactus {
	border-top: 1px solid #ddd;
	padding-top: 25px;
	width: 100%;
}

.product_header_content .contactus a {
	font-weight: 200;
  font-size: 1.1em;
  color: #4B4B4B;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -ms-align-items: center;
}

.product_header_content .contactus a:hover {
  color: #1C1B1B;
}


.product_header_content .contactus i {
	margin-right: 10px;
}

.product_intro ul {
  list-style-type: disc;
  margin-left: 50px !important;
  margin-bottom: 30px;
}

.product_intro ul li {
	padding-left: 10px;
}

/* Einde types pagina */

/* Einde wagenpark */

/* Vacature Overzicht */

.cv-fill {
  color: red;
  font-style: italic;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}
.vacature_overzicht {
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin: 0 auto;
  flex-wrap: wrap;
  margin-bottom: 60px;
  margin-top: 10px;
}

.vacature_overzicht>h2, .vacature_overzichth2 {
  width: 100%;
  font-weight: 700;
  font-size: 1.5em;
  padding: 25px;
  margin-top: 30px;
  text-align: center; 
}

.vacature_overzicht>a {
  display: block;
  padding: 10px 0;
  color: #001f35;
  font-weight: 700;
  margin: 0 auto;
  border-bottom: 2px solid #001f35;
  margin-bottom: 50px;
  transition: all .3s;
}


.vacature_overzicht>a:hover {
  background-color: transparent;
  color: #001f35;

}

.vacature_overzicht article {
  width: 46%;
  margin-bottom: 1%;
  margin-right: 1%;
  border: 2px solid #d8d8d8;
  display: flex;
  justify-content: space-between;
  position: relative;
}


.vacature_overzicht article:nth-child(even) {
  margin-right: 0%;
}

.spontaan_sol {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}

.spontaan_sol img {
  opacity: 0;
}

.spontaan_content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.spontaan_content h5 {
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0px 0px 5px rgba(0,0,0,0.44);
}

.spontaan_content button {
  border: none;
  background-color: #001f35;
  color: white;
  font-weight: 700;
  padding: 10px 25px;
}

.vacature_overzicht article>a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}

.vacature_overzicht article img {
  width: 50%;
}

.vacature_overzicht article>div {
  padding: 15px;
  display: flex;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  width: 50%;
  overflow: hidden;
}

.vacature_overzicht article h3 {
  color: #001f35; 
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.vacature_overzicht article h2 {
  color: #4D4D4D; 
  line-height: 140%;
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 25px;
  width: 100%;
}

.vacature_overzicht article h4 {
  font-size: 1em;
  color: #A3A3A3;
}

.vacature_overzicht article h4 i {
  margin-right: 5px;
}

.vacature_overzicht article div a {
  background-color: transparent;
  color: #001f35;
  font-weight: 700;
  padding: 10px 30px;
  margin-top: 20px;
  font-size: 1em;
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  transition: all 1s ease;
  border: 2px solid #001f35;

}

.vacature_overzicht article div a:hover, .vacature_overzicht article:hover div a {
  background-color: #001f35;
  color: white;
}

.ak_videocall_vacature {
  width: 100%;
  max-width: 1400px;
  margin: 30px auto;
  position: relative;
}

.ak_videocall_vacature img {
  width: 100%;
}

.ak_videocall_vacature div {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
}

.ak_videocall_vacature div h2 {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 140%;
  color: white;
  max-width: 300px;
  text-shadow: 0px 0px 6px rgba(0,0,0,0.22);
}

.ak_videocall_vacature div a {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 25px;
  font-size: 1.1em;
  font-weight: 700;
  color: #fff;
  background-color: #E93C1E;
}


/* Einde Vacature Overzicht */

/* Vacature Pagina */

.vacature_pagina {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding: 50px 10px;
  margin-top: 10px;
}

.vacature_pagina .vacimg {
  position: relative;
}

.vacature_pagina .vacimg img {
  width: 100%;
}



.vacature_pagina .vacimg p {
  position: relative;
  font-size: 1em;
  font-weight: 700;
  color: white;
  padding: 10px 25px;
  background-color: #001f35;
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: inline-block;
  border-radius: 200px;
}

.vacature_pagina .vacimg p i {
  font-size: 1.2em;
}

.vacature_pagina>div {
  width: 100%;
}

.vacature_pagina>div>h2 {
  width: 100%;
  color: #001f35;
  margin-top: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.vacature_pagina h1 {
  width: 100%;
  color: #000000;
  font-size: 2em;
  font-weight: 700;
  margin: 0 !important;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  text-align: left !important;
  text-transform: unset !important;

}

.vacature_pagina>div>h1 article {
  font-size: .6em;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.vacature_pagina>div>h1 article a {
  margin: 0 10px;
  color: #000;
}

.vacature_pagina>div div {
  line-height: 180%;
  color: #8A8A8A;
  font-size: 1.1em;
}

.vacature_pagina>div h3 {
  font-weight: 700;
  font-size: 1.2em;
  margin-top: 30px;
  margin-bottom: 5px;
}

.vacature_pagina>div h3:first-of-type {
  margin-top: 0;
}

.vacature_pagina>div div a {
  color: #8A8A8A;
  font-weight: 700;
}


.vacature_pagina>div div strong {
  font-size: 1em;
  color: #3C3C3B !important;
  font-weight: 700;
  padding-bottom: 15px;
}

.vacature_pagina aside {
  max-width: 450px;
  width: 100%;
  margin-left: 50px;
}

.vacature_pagina aside form {
  border: 2px solid #F2F2F2;
  padding: 35px 30px;  
}

.vacature_pagina .contactpersoon-vacature{
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.vacature_pagina .contactpersoon-vacature img{
  width: 25%;
  object-fit: contain;
  align-self: flex-start;
}
.vacature_pagina .contactpersoon-vacature .details{
  width: 70%;
}
.vacature_pagina .contactpersoon-vacature .details h2{
  font-weight: bold;
  color: #001f35;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}


.vacature_form .vacaturelabel {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
}

.vacature_form input[type=text], .vacature_form input[type=email], .vacature_form select, .vacature_form textarea {
  width: 100%;
  border: none;
  background-color: #F8F8F8;
  padding: 12px; 
  color: #353535 !important;
  font-weight: 200;
  margin-bottom: 20px;
}

.vacature_form textarea {
  height: 150px;
}

.vacature_form select {
  background-image: url(/images/select.png);
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  padding: 0;
  padding-left: 10px;
}


.vacature_form select option {
  color: #353535 !important;
}

.vacature_form input[type=submit] {
  width: 100%;
  background-color: #001f35;
  color: white;
  font-weight: 700;
  margin-top: 10px;
  font-size: 1.1em;
  border: none;
  padding: 15px;
}

.vacature_form>h2 {
  font-size: 1.5em;
  font-weight: 700;
  color: #001f35;
  margin-bottom: 15px;
}

.vacature_form .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.vacature_form .inputfile + label {
  font-size: .9em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #353535;
  background-color: #F8F8F8;
  width: 100%;
  padding: 15px;
  display: inline-block;
  margin-bottom: 20px;
}

.vacature_form .inputfile:focus + label,
.vacature_form .inputfile + label:hover {
  background-color: #e8e8e8;
}

.vacature_form .inputfile + label {
  cursor: pointer; /* "hand" cursor */
}

.vacature_form .inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.vacature_form .inputfile + label * {
  pointer-events: none;
}

.vacature_ak {
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.vacature_ak div {
  position: relative;
}

.vacature_ak a {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.vacature_ak div>div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.30) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.30) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.30) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#21000000',GradientType=0 );
}

.vacature_ak .mainimage {
  width: 100%;
}

.vacature_ak .triangle {
  position: absolute;
  left: 10px;
  width: 25px;
  bottom: 0;
  z-index: 2;
}

.vacature_ak  {
  width: 100%;
}

.vacature_ak h3 {
  font-size: 1.2em;
  padding-left: 20px;
  padding-top: 15px;
  font-weight: 700;
  color: #001f35;
}

.vacature_ak h2 {
  font-size: 1.4em;
  font-weight: 700;
  padding-left: 20px;
  color: #3C3C3B;
  margin-top: 5px;
}

.service_manager {
  width: 100%;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  margin-top: 30px;
  border: 2px solid #F2F2F2;
}

.service_manager img {
  width: 30%;
}

.service_manager > div {
  width: 70%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 15px 30px;
}

.service_manager h2 {
  width: 100%;
  text-align: left;
  font-size: 1.4em;
  font-weight: 700;
  color: #001f35;
  margin-bottom: 10px;
}

.service_manager > div div {
  font-size: 1.1em;
  font-weight: 200;
  color: #9e9e9e;
  line-height: 170%;
}

/* Einde Vacature Pagina */

/* FAQ */

.vragensplit {
  padding: 50px 10px;
}

.vragensplit>div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.vragen {
  width: 68%;
}

.vragen article {
  border-bottom: 2px solid #EFEFEF;
  background-color: white;
  padding: 25px;
  margin-bottom: 10px;
}

.vragen article h2 {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  font-size: 23px;
  color: #001f35;
  align-items: center;
  cursor: pointer;
}

.vragen article h2 i {
  transition: all .3s;
}

.arrowUp i {
  transform: rotate(180deg);
}

.vragen article div {
  margin-top: 20px;
  color: #353535;
  font-weight: 200;
  font-size: 1.09em;
  line-height: 180%;
  letter-spacing: .5px;
}

.vragen article div a {
  display: inline-block;
  border: 2px solid #001f35;
  padding: 10px 20px;
  background-color: transparent;
  cursor: pointer;
  font-weight: 700;
  border-radius: 4px;
  color: #001f35;
  transition: all .8s ease;
  margin-top: 10px;
  font-size: 1em;
}

.vragen article div a:hover {
  background-color: #001f35;
  color: #fff;
}

.vragen_form {
  padding: 25px;
  background-color: #e5eef8;
  width: 30%;
}

.vragen_form h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #001f35;
}

.vragen_form input[type=text], .vragen_form input[type=email], .vragen_form textarea {
	width: 100%;
	border: none;
	border-bottom: 2px solid #bccddfa9;
	padding: 8px 0px;
	color: #001f35;
	font-size: 18px;
	font-weight: 200;
	margin-bottom: 40px;
  padding-left: 5px;
  background-color: transparent;
}

.vragen_form input[type=text]::placeholder, .vragen_form input[type=email]::placeholder, .vragen_form textarea::placeholder {
  color: #001f35af !important;
  padding-left: 5px;
}


.vragen_form textarea {
  min-height: 100px;
}


.vragen_form input[type=submit] {
  padding: 5px 30px;
  background: transparent;
  border: 2px solid #001f35;
  font-weight: 200;
  color: #001f35;
  font-size: 1.2em;
  font-weight: 200;
  transition: all .3s;
  letter-spacing: 1px;
}

.vragen_form input[type=submit]:enabled:hover {
	background-color: #001f35;
	color: #fff;
}

/* Einde FAQ*/

/* CONTACT */

.contact_pagina {
	width: 100%;
	max-width: 1400px;
	display: flex;
	justify-content: space-between;
	-ms-align-items: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 100px 10px 0 10px;
  margin-top: 100px;
}

.contact_info {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #e5eef8;
	padding: 80px 80px;
	margin-top: 20px;
	width: 100%;

}

.contact_info p {
	font-size: 20px;
	font-weight: 200;
	color: #252525;
}

.contact_gegevens {
	width: 35%;
}

.contact_gegevens h1 {
	font-weight: 900;
	color: #001f35;
	margin-bottom: 20px;
	font-size: 2em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -ms-align-items: center;
}

.contact_gegevens h1 i {
  font-size: 30px;
  margin-right: 10px;
}

.contact_gegevens h2 {
	font-size: 18px;
	font-weight: 200;
	color: #353535;
	line-height: 150%;
}

.contact_gegevens p {
	padding-bottom: 10px;
}

.contact_split {
	margin-top: 60px;
	display: flex;
	justify-content: flex-start;
	-ms-align-items: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.contact_split h2 {
	font-weight: 700;
	color: #252525;
	font-size: 25px;
	margin-bottom: 25px;
	line-height: 130%;
}

.contact_split div {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	-ms-align-items: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

.contact_split div p {
	padding: 10px;
	padding-left: 50px;
	position: relative;
	color: #252525;
}

.contact_split div p a {
	color: #252525;
}

.contact_split div p i {
	position: absolute;
	left: 0;
	width: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50%;
	color: #001f35;
	transform: translateY(-50%);
}

.contact_split img {
	width: 100px;
	border-radius: 200px;
	margin-right: 20px;
}

.contact_formulier {
	width: 55%;
}

.contact_form {
	display: flex;
	justify-content: space-between;
	-ms-align-items: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

.contact_label {
	width: 100%;
	font-size: 1.2em;
	font-weight: 200;
	color: #353535;
	display: inline-block;
	margin-bottom: 5px;
}

.contact_form input[type=text], 
.contact_form input[type=email] {
	width: 100%;
	border: none;
	border-bottom: 2px solid #EEEEEE;
	padding: 8px 0px;
	color: #001f35;
	font-size: 18px;
	font-weight: 200;
	margin-bottom: 40px;
  padding-left: 5px;
}

#NaamInput input, .contact_form input[type=text]::placeholder,
.contact_form input[type=email]::placeholder, #NaamInput input::placeholder, .contact_form textarea::placeholder {
  color: #353535;
  padding-left: 5px;
}

.nieuwsbrief {
  margin-bottom: 120px;
}

.contact_form input[type=text]:focus, 
.contact_form input[type=email]:focus, #NaamInput input:focus {
	border-bottom: 2px solid #001f35;
	font-weight: 400;
}

.contact_form textarea {
  border: none;
	width: 100%;
	border-bottom: 2px solid #EEEEEE;
	border-radius: 0px;
	padding: 10px 0px;
	color: #001f35;
	margin-bottom: 20px;
	font-weight: 200;
	font-size: 18px;
	height: 100px;
  padding-left: 5px;
}

.contact_form textarea:focus {
	border-bottom: 2px solid #001f35;
	font-weight: 400;
}

.contact_form select {
  width: 100%;
  color: #353535;
  padding: 10px;
  border: none;
  border-bottom: 2px solid #f6f6f6;
  background-color: #efefef;
  height: 50px;
	color: #001f35;
	font-size: 18px;
	font-weight: 200;
  background-image: url(/images/select1.png);
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}

.contact_form input[type=submit] {
	padding: 5px 30px;
	background: transparent;
	border: 2px solid #001f35;
	font-weight: 200;
	color: #001f35;
	font-size: 1.2em;
	font-weight: 200;
	transition: all .3s;
  letter-spacing: 1px;
}


.contact_form input[type=submit]:hover {
	background-color: #001f35;
	color: #fff;
}

.contact_formulier #NaamInput {
	width: 49%;
}

.contact_formulier #PostInput {
  width: 24%;
}

.contact_formulier #EmailInput {
	width: 100%;
}

#dasmap {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	height: 600px;
	position: relative;
	z-index: 0;
	margin-top: -70px;
  margin-bottom: 80px;
}


/* EINDE CONTACT */

/* Footer */

.footer_element {
  width: 30px;
  margin-left: 50%;
  transform: translateX(-50%);
}

.slogan {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 600;
  color: #d1d3d4;
  padding: 70px 0;
  line-height: 120%;  
  width: 80%;
  margin: auto;
}

.slogan strong {
  color: #b4b6b8;
}


.disclaimer i, .navi_footer i {
	color: #4b4b4b;
	animation: pulse 4s infinite;
}

footer {
  width: 100%;
  background-color: #001f35;
  padding: 30px 50px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer .gegevens {
  width: 100%;
  max-width: 50%;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  -ms-align-items: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: .5px solid #4b4b4b33;
}

footer .gegevens>div {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

footer .gegevens h2 {
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

footer .gegevens a, footer .gegevens p {
  font-size: 1em;
  font-weight: 200;
  color: #fff;
  line-height: 160%;
}

.socials {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: row;
}

.socials i {
  color: #001f35;
}

.socials a {
  color: #fff;
  font-weight: 200;
  font-size: .9em;
  display: flex;
  justify-content: center;
  align-items: center;
  -ms-align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 200px;
  background-color: #fff;
  transition: all 1s ease;
}

.socials a:hover {
  transform: scale(1.1);
}

.socials a:first-of-type {
  margin-right: 15px;
}
.disclaimer {

  color: #fff;
  padding: 10px;
  padding-top: 0;
  font-weight: 200;
  font-size: .9em;
}

.disclaimer span {
  margin: 0 10px;
}

.disclaimer a {
  color: #fff;
}

.disclaimer a:last-of-type, .navi_footer a:last-of-type{
  display: inline-flex;
  flex-direction: row;
}

/* Einde footer */



/* Media Query's */

@media screen and (max-width: 1400px) {

  .page_header .c {
    width: 80%;
  }

  .products {
    max-width: 90%;
  }
  
  footer .gegevens {
    max-width: 70%;
  }

}

@media screen and (max-width: 1350px) {

  .page_header {
    padding-bottom: 0;
  }

  .express_ov1, .express_ov2 {
    width: 60%;
  }

  .express_det1, .express_det2 {
    width: 40%;
  }

  .vacature_overzicht {
    padding: 10px;
  }

  .vacature_overzicht article {
    flex-wrap: wrap;
  }

  .vacature_overzicht article img {
    width: 100%;
    order: 1;
  }

  .vacature_overzicht article>div {
    width: 100%;
    order: 2;
  }

}


@media screen and (max-width: 1200px) {

  #vid, #vidref {
    width: 840px;
    height: 510px;
  }

  .page_header {
    padding-top: 30px;
  }

  .page_header_element {
    width: 40px;
  }

  .troeven article h2 {
    font-size: 1.5em;
  }

  .troeven article div.c {
    font-size: 1.2em;
  }

  .troeven article h2 img {
    width: 25px;
  }

  .home_ak .content {
    left: 0;
    transform: unset;
    transform: translateY(-50%);
    padding-left: 40px;
    padding-right: 40px;
  }

  .products article {
    width: 48%;
    margin: 1%;
  }

  .vacature_overzicht article h2 {
    font-size: 1.1em;
  }

  .contact_pagina {
    padding: 25px 10px;
    margin-top: 20px;
  }

  .contact_gegevens {
    margin-bottom: 20px;
    padding: 30px 10px;
  }

  .contact_gegevens, .contact_formulier {
    width: 100%;
    padding: 0 10px;
  }

  .contact_gegevens h1, .contact_gegevens h2 {
    text-align: center;
    line-height: 120%;
  }

  .contact_gegevens h1 {
    justify-content: center;
  }
  .contact_gegevens > div {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    margin-top: 20px;
  }

  .contact_split {
    margin-top: 10px;
  }

  .contact_split div {
    padding: 20px;
  }

  #dasmap {
    margin-top: 15px;
    height: 400px;
  }

  .contact_gegevens > div a {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
  }
  .contact_split img {
    display: none;
  }

  .contact_split div {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
  }

  footer .gegevens {
    max-width: 80%;
  }
}


@media screen and (max-width: 1150px) {

  .navigatie .logo {
    width: 200px;
  }

  .page_header .c {
		width: 80%;
	}

  .page_header>h2 {
    font-size: 15px;
  }

  .blokken {
    max-width: 95%;
  }

  .blokken article {
    flex-direction: column;
  }

  .blokken_img {
    width: 100%;
    order: 1;
  }

  .blokken_content {
    width: 95%;
    order: 2;
  }

  .blokken img.elem {
    display: none;
  }

  .express {
    flex-wrap: wrap;
    margin-bottom: 0;
    margin-top: 20px;
  }

  .express_det1, .express_det2 {
    width: 100%;
  }

  .express_det1>div>div, .express_det2>div>div {
    margin-bottom: 0;
  }

  .express {
    display: none !important;
  }
  .express.mobile {
    display: flex !important;
    flex-wrap: wrap;
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 20px;
  }

  .express_ov1 {
    order: 1;
  }

  .express_det1 {
    order: 2;
  }
  
  .express_ov2 {
    order: 3;
  }

  .express_det2 {
    order: 4;
  }
  .express_det1, .express_det2 {
    width: 100%;
  }

  .express_det1>div>div, .express_det2>div>div {
    margin-bottom: 0;
  }

  .express_ov1, .express_ov2 {
    width: 100%;
    padding: 30px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .express_ov1 ul, .express_ov2 ul {
    padding-top: 20px;
  }

  .express_ov1 > h2, .express_ov2 > h2 {
    text-align: left;
  }

  .express_det1>div, .express_det2>div {
    max-width: 100%;
    padding: 30px;
  }

  .express_ov2 ul li div:first-of-type {
    margin-left: 0px;
  }

}

@media screen and (max-width: 1100px) {

  .home_banner article h2 {
    font-size: 2.5em;
  }

  .navigatie, .home_banner {
    width: 90%;
    max-width: 90%;
  }

  .vacature_pagina .contactpersoon-vacature{
    margin-top: 0;
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .vacature_pagina {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .vacature_pagina aside {
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: space-between;
  }

  .vacature_pagina aside form {
    width: 49.5%;
    padding: 20px;
  }

  .vacature_ak {
    margin-top: 0;
    border: 2px solid #F2F2F2;
    padding: 20px;
    width: 49.5%;
  }

  .vacature_overzicht article div a {
    width: 100%;
    position: relative;
    right: initial;
    bottom: initial;
    text-align: center;
  }

  .vacature_overzicht {
    -ms-align-items: initial;
    align-items: initial;
  }

  .vragen {
    width: 100%;
    margin-bottom: 50px;
  }

  .vacature_pagina {
    margin-top: 0px;
    padding-top: 0;

  }

	.slogan {
		font-size: 4.2rem;
		padding: 6rem 1rem;  
	}
}

@media screen and (max-width: 1050px) {

  .nav-right-res {
    display: flex;
  }

  #content-container {
    max-width: 95%;
  }

   /* Responsive navigation */

   .navigatie {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-end;
    align-items: flex-end;
    padding-bottom: 15px;
  }

  .navigatie nav {
    display: none;
    position: relative;
  }
  .navigatie .logo {
    width: 200px;
  }

  .navigatie_top>div {
    padding: 10px 15px;
  }

  .page_header {
    padding-bottom: 0;
  }

  .menubtn {
    display: inline-flex;
    width: 35px;
    cursor: pointer;
    margin-left: 20px;
    transition: all .3s;
  }

  .menuoverlay {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 5;
  background-color: rgba(0,0,0,.5);
  }

  .res-nav {
    display: block;
  width: 100%;
  max-width: 700px;
  height: 100%;
  position: fixed;
  right: -700px;
  top: 0;
  z-index: 1000;
  overflow: auto;
  transition: all .6s;
  background-color: #fff;
  padding-bottom: 100px;
  }

  .menuoverlay {
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  background-color: rgba(0,0,0,.4);
  }

  .overvisible {
  display: block;
  }

  .nav_top {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  right: 30px;
  }

  .logo_nav {
  width: 160px;
  }

  .closebtn {
  width: 40px;
  height: 40px;

  cursor: pointer;
  }

  .menu-block {
  overflow: hidden;
  }

  .menu-is-open {
  right: 0;
  }

  .res-nav nav {
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
  overflow: auto;
  padding-bottom: 50px;
  height: 100%;
  position: relative;
  }

  .navitem {
  width: 100%;
  padding: 20px 50px;
  }

  .navitem div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  cursor: pointer;
  }

  .navitem div img {
  width: 20px;
  transition: all .5s;
  transform: rotate(0deg);
  }

  .rotateImg  {
  transform: rotate(-180deg) !important;
  } 


  .navitem a {
  text-align: left;
  display: inline-block;
  color: #3C3C3B;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  }

  .navitem a,
  .navitem a:after,
  .navitem a:before {
  transition: all .5s;
  }

  .navitem a:hover {
  color: #001f35;
  }

  .navitem a:after {
  position: absolute;
  bottom: -5px;
  left: 2px;
  right: 2px;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #001f35;
  height: 2px;
  }
  .navitem a:hover:after {
  width: 100%;
  }

  .navitem i {
  font-size: 25px; 
  transition: all .3s;
  }

  .navitem .rotate {
  transform: rotate(90deg);
  }

  .activelink {
  color: #001f35 !important;
  }

  .navitem ul {
  display: none;
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding-top: 10px;
  }

  .navitem ul li {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  padding-left: 15px;
  border-left: 2px solid #eeeeee;
  }

  .navitem ul li i {
  margin-left: -7px;
  color: #c8c8c8;
  font-size: .7em;
  margin-right: 20px;

  }

  .navitem ul a {
  font-size: 1.2em;
  color: #949494;
  padding: 7px 0;
  padding-left: 0;
  }

  .navi_footer>div {
  color: black;
  }

  .navi_footer img {
  width: 100%;
  position: absolute;
  bottom: 0;
  }
  .navi_footer img.logo {
  position: absolute;
  top: 30px;
  width: 140px;
  right: 30px;
  }

  .navi_footer>div {
  position: absolute;
  bottom: 10px;
  font-size: .9em;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  }

  .navi_footer>div div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -ms-align-items: center;
  }

  .navi_footer>div p {
  width: 100%;
  text-align: center;
  padding: 5px;
  margin-bottom: 7px;
  color: black;
  font-weight: 500;
  font-size: 17px;
  font-style: italic;
  z-index: 100;
  }

  .navi_footer span {
  margin: 0 10px;
  }

  .navi_footer a {
  color: black;
  font-size: .9em;
  }

  /* Einde responsive navigation */

  .vragen_form {
    width: 100%;
  }
  .curtaindrop h2 {
    font-size: 2.5em;
}

}

@media screen and (max-width: 1000px) {

  .page_header .c {
    width: 90%;
    font-size: 18px;
  }

  .page_header h1 {
    font-size: 2em;
  }

  .home_banner{
    max-width: 90%;
  }

  .home_ak .content h2 {
    font-size: 80px;
  }

  .vacature_pagina>div>h1 {
    font-size: 1.5em;
  }

}

@media screen and (max-width: 950px){

  .navigatie, .home_banner {
    width: 95%;
    max-width: 95%;
  }

  .troeven>div:first-of-type {
    flex-direction: column;
  }

  .troeven article {
    width: 100%;
    padding: 40px;
  }

  .troeven article h2 {
    margin-bottom: 0;
  }

  .products_ov {
		width: 100%;
		margin-top: 20px;
	}

  .products article {
		width: 48%;
		margin: 1%;
	}

	.products article h2 {
	font-size: 15px;
	}

	.products article > button {
	font-size: 15px;
	}

	.product_header_content h1 {
	font-size: 23px;
	}

  .product_header_image {
		width: 100%;
		margin-bottom: 30px;
	  max-width: 90%;
	}
	
	.product_header_content {
		width: 100%;
		max-width: 90%;
    padding: 50px 20px;
	}
	
	.product_header {
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

  .product_page {
		flex-wrap: wrap;
		padding-top: 0;
	}

	.product_page aside>h2 span {
		display: inline-block;
	}

	.products article {
		width: 48%;
		margin: 1%;
	}

	.products article h2 {
	font-size: 15px;
	}

	.products article > button {
	font-size: 15px;
	}

	.product_header_content h1 {
  	font-size: 23px;
	}
   
  .slogan {
		font-size: 3.5rem;
		padding: 60px 20px; 
	}
 
  #content-container h1 {
    font-size: 1.7em;
    margin-bottom: 60px !important;
  }

  #content-container h2 {
    font-size:1.8em;
  }

  .in_beeld article {
    width: 32.33%;
  }

  footer .gegevens {
    max-width: 90%;
  }
 
}

@media screen and (max-width: 920px) {

  .disclaimer {
    padding-left: 0;
    margin-top: 10px;
  }

}

@media screen and (max-width: 900px) {

  .home_banner{
    max-width: 95%;
  }

  .express_ov1 > h2, .express_ov2 > h2 {
    font-size: 40px;
  }

  .product_header_content {
		padding: 20px;
	}
}

@media screen and (max-width: 850px) {

  #vid, #vidref {
    width: 630px;
    height: 382px;
  }

  .vacature_pagina .contactpersoon-vacature{
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .vacature_pagina .contactpersoon-vacature img{
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    margin-bottom: 2rem;
  }
  .vacature_pagina .contactpersoon-vacature .details{
    text-align: center;
    margin-bottom: 3rem;
  }
  .vacature_pagina aside {
    flex-wrap: wrap;
  }

  .vacature_pagina aside form {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 40px;
  }

  .vacature_ak {
    width: 100%;
    border: none;
    padding: 0;
  }

  .slogan {
		font-size: 3.1rem;
	}

}

@media screen and (max-width: 800px) {

	.slogan {
		font-size: 2.8rem;
		padding-top: 30px;
	}

  .curtaindrop p {
    font-size: 1.2em;
    line-height: 1.4em;
  }

  .curtaindrop h2 {
    font-weight: 600;
    font-size: 1.8em; 			
  }

  .curtain-close {
    font-size: 30px;
  }
  
  .curtaindrop .button {
    font-size: 17px;
    padding: 12px 30px;
  }

  .curtain-click {
    
    font-size: 16px;
  }

  .curtain-click i {
    font-size: 25px;
  }

  .home_ak .ak-links {
    font-size: 18px;
  }
  .home_ak .ak-links a::after {
    width: 30px;
  }

}

@media screen and (max-width: 750px) {

  .home_banner article h2 {
    font-size: 2em;
  }

  .page_header h1
	{
		font-size: 2em;
	}

	.page_header .c {
		font-size: 18px;
		width: 90%;
	}

  .blokken_content {
    padding: 50px 20px;
  }

  .product_header_content h1 {
		font-size: 23px;
	}

	.product_header_content h1 {
		font-size: 23px;
	}

  .vragen article h2 {
    font-size: 1em;
  }
  .vragen article div {
    font-size: .9em;
  }

}

@media screen and (max-width: 700px) {

  .page_header h1 {
    font-size: 1.8em;
  }

  .in_beeld article {
    width: 49%;
  }

  .express_ov1 ul li div:first-of-type, .express_ov2 ul li div:first-of-type {
    width: 70px;
    font-size: 25px;
  } 

  .home_ak .content h2 {
    font-size: 60px;
  }

  .vacature_overzicht article {
    width: 98%;
    margin: 1%;
  }
  .vacature_pagina>div div {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .vacature_pagina h1 {
    width: 100%;
    text-align: left;
  }

  .vacature_pagina article {
    margin-left: 0 !important;
    width: 100%;
    justify-content: flex-start !important;
  }

  footer .gegevens {
    max-width: 95%;
  }
}

@media screen and (max-width: 680px) {
  
  #vid, #vidref {
    width: 560px;
    height: 340px;
    max-width: 90vw;
  }
}

@media screen and (max-width: 650px){

  #dasmap {
    margin-bottom: 20px;
  }

  .blokken_content h2 {
    font-size: 1.5em;
    padding-bottom: 20px;
  }

  .blokken_tekst {
    font-size: 1.1em;
  }

  .blokken_content a {
    font-size: 1em;
  }

  .troeven article {
    padding: 30px;
  }

  .troeven article h2 {
    font-size: 1.3em;
  }

  .troeven article h2 img {
    margin-right: 10px;
    width: 20px;
  }

  .troeven article div.c {
    font-size: 1.1em;
    margin-left: 30px;
  }
 
  #content-container h1 {
    font-size: 1.5em;
  }

  #content-container h2 {
    font-size:1.5em;
  }

  .express_ov1 ul li, .express_ov2 ul li  {
    font-size: 18px;
  }

  .products article {
		width: 98%;
	}

  footer .gegevens {
    flex-direction: column;
    align-items: center;
    -ms-align-items: center;
  }

  .slogan {
		font-size: 2rem;
	}

  footer .gegevens>div {
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    margin-bottom: 30px;
  }

  .vacature_pagina h1 {
    font-size: 1.5em !important;
  }

  .contact_gegevens h1 {
    font-size: 1.7em;
  }

  .contact_gegevens h1 i {
    font-size: 25px;
  }
  .curtaindrop>div>div:last-child {
    width: 95%;
}
.curtaindrop h2 {
    font-size: 1.5em;
}
.curtaindrop .c {
    font-weight: 200;
}
.curtaindrop .button {
    font-size: 15px;
    padding: 10px 25px;
}
}

@media screen and (max-width: 600px) {

  .navigatie .logo {
    width: 180px;
  }

  .page_header h1 {
		font-size: 1.5em;
	}

	.page_header .c {
		font-size: 18px;
		width: 90%;
	}

  .page_header_element {
    width: 23px;
  }

  .products article {
		width: 98%;
		margin: 1%;
	}

	.products article .c {
		min-height: unset;
		padding-bottom: 80px;
	}

  .product_extrafotos div {
		width: 49%;
		margin-bottom: 2%;
	}

  .vacature_pagina .contactpersoon-vacature img{
    width: 10rem;
  }

  .vacature_pagina .contactpersoon-vacature .details{
    width: 100%;
  }

  .disclaimer, .socials a {
    font-size: .8em;
  }

  .disclaimer span {
    margin: 0 1px;
  }

  .slogan {
		font-size: 1.7rem;
	}

}

@media screen and (max-width: 550px) {

  .home_banner article h2 {
    font-weight: 500;
    font-size: 1.7em;
  }

  .home_banner article h3 {
    font-weight: 200;
    font-size: 1em;
    margin-bottom: 0;
  }

  .blokken_content h2 {
    font-size: 1.5em;
  }
  .privcnt {
    flex-wrap: wrap;
    height: initial !important;
    line-height: 120%;
  }
  .contact_form input[type=submit] {
    font-size: 1em;
    padding: 4px 25px;
  }
}


@media screen and (max-width: 500px) {

  #content-container h1 {
    font-size: 1.8em;
  }

  .home_ak .content h2 {
    font-size: 40px;
  }

  .home_ak .ak-links {
    font-size: 16px;
  }

  .product_intro {
		font-size: 1em;
	}

	.product_header_content .contactus a {
		font-size: 1em;
	}

	.product_intro ul {
		margin-left: 30px !important;
	}

  footer {
    padding: 20px;
  }

}

@media screen and (max-width: 450px) {

  .navigatie {
    align-items: flex-start;
  }

  .logo {
    margin-top: 10px;
  }

 .nav-right-res {
   width: 100%;
 }

  .express_ov1 ul li, .express_ov2 ul li {
    font-size: 14px;
  }

  .express_ov1 ul .active>div:last-of-type, .express_ov2 ul .active>div:last-of-type {
    font-size: 20px;
  }

  .express_ov1 ul li>div:last-of-type, .express_ov2 ul li>div:last-of-type {
    min-width: 250px;
  }

  .plenso_cookies {
    right: 10px;
  }

  .slogan {
		font-size: 1.5rem;;
	}
  .home_banner article h2 {
    font-size: 1.4em;
  }

  .home_ak .ak-links {
    flex-direction: column;
    padding: 0;
    padding-left: 15px;
 
    line-height: 160%;
  }

  .home_ak .ak-links a::after {
   left: 0px;
   transform: unset;
  }

}

@media screen and (max-width: 400px) {
  .contact_gegevens h2 {
    font-size: 15px;
  }
  .contact_split div {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
  }

  .contact_split div p {
    font-size: 15px;
    padding-left: 30px;
  }

  .contact_form input[type=text], .contact_form input[type=email], .contact_form textarea, #NaamInput input {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .privcnt {
    flex-wrap: wrap;
    height: initial !important;
    line-height: 120%;
  }

  .contact_form input[type=submit] {
    width: 100%;
    margin-top: 10px;
  }
}
@charset "UTF-8";

/* NIKS AANPASSEN IN DIT BESTAND */
.cb {clear:both}
.fl {float:left}
.fr {float:right}
.al {text-align:left}
.ar {text-align:right}
.aj {text-align:justify}
.ac {text-align:center}
.nm {margin:0px;}
.np {padding:0px;}
.nb {border:none;}
.nbl {border-left:none !important;}
.nbr {border-right:none !important;}
.nbb {border-bottom:none !important;}
.nbt {border-top:none !important;}
.nmr {margin-right:0px !important;}
.nml {margin-left:0px !important;}
.nmt {margin-top:0px !important;}
.nmb {margin-bottom:0px !important;}
.npr {padding-right:0px;}
.npl {padding-left:0px;}
.npt {padding-top:0px;}
.npb {padding-bottom:0px;}
.nbr {border-right: none;}
.nbl {border-left:none;}
.nbt {border-top:none;}
.nbb {border-bottom:none;}
.nbg {background:transparent;}
.dn {display:none;}
.dni {display:none !important;}
.db {display:block;}
.dib {display:inline-block;}
.cp {cursor: pointer;}
.cd {cursor: default;}
.pr {position: relative;}

.ui-datepicker-prev:after
{
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #222;
  margin-top: 8px;
  margin-left: 9px;
  content: '';
}

.ui-datepicker-next:after
{
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #222;
  margin-top: 8px;
  margin-left: 13px;
  content: '';
}

.youtubecontainer
{
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.youtubecontainer > iframe
{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.rightform
{
	visibility: hidden;
	display: none;
	position: absolute;
}

.center
{
  margin: 0 auto;
  width: 960px;
}

.c ul
{
	padding-left: 15px;
	list-style-type: disc;
	margin: 1em 0;
}

.c p
{
	margin: 1em 0;
}

.c ol
{
	padding-left: 15px;
	list-style-type: decimal;
	margin: 1em 0;
}

.c strong
{
	font-weight: bold;
}

.c em
{
	font-style: italic;
}

.c table
{
	margin: 1em 0;
}

.c td, .c th
{
	border: 1px solid #333;
	padding: 3px;
}

.c blockquote
{
	border-left: 5px solid #aaa;
	padding-left: 5px;
	font-style: italic;
	margin: 1em 0 1em 15px;
}

.four-row-grid>*
{
	width: 21.1%;
	margin-right: 5.2%;
	margin-top: 4%;
	float: left;
}

.four-row-grid>*:nth-child(4n)
{
	margin-right: 0;
}

.three-row-grid>*
{
	width: 30.5%;
	margin-right: 4.2%;
	float: left;
	margin-top: 4%;
}

.three-row-grid>*:nth-child(3n)
{
	margin-right: 0;
}

.three-row-grid>*:nth-child(3n+1)
{
	clear: left;
}


.five-col-grid>*
{
	width: 15.5%;
	margin-right: 5.625%;
	float: left;
	margin-top: 2%;
}

.five-col-grid img
{
	width: 100%;
}


.five-col-grid>*:nth-child(5n)
{
	margin-right: 0;
}

.six-col-grid>*
{
	width: 14.16%;
	margin-right: 3%;
	float: left;
	margin-top: 2%;
}

.six-col-grid img
{
	width: 100%;
}


.six-col-grid>*:nth-child(6n)
{
	margin-right: 0;
}

.seven-col-grid>*
{
	width: 11.71%;
	margin-right: 3%;
	float: left;
	margin-top: 2%;
}

.seven-col-grid>*:nth-child(7n)
{
	margin-right: 0;
}

.seven-col-grid img
{
	width: 100%;
}



.three-row-grid .cb, .four-row-grid .cb, .five-col-grid .cb, .six-col-grid .cb, .seven-col-grid .cb
{
	width: 100%;
	margin: 0;
	float: none !important;
}

.single-row-four > *
{
	width: 23%;
	margin-left: 2.5%;
	float: left;
}

.single-row-four > *:first-child
{
	margin-left: 0;
}

.single-row-four:after, .single-row-four > .cb
{
	content: '';
	clear: both;
	margin: 0;
	display: block;
	width: 100%;
}

.single-row-four > .cb
{
	display: none;
}

.single-row-three > *:first-child
{
    margin-left: 0px;
}

.single-row-three > *
{
    width: 31%;
    margin-left: 3.5%;
    float: left;
    margin-top: 2.5%;
}

.single-row-three:after
{
    display: block;
    content: '';
    clear: both;
}

.justify
{
	text-align: justify;
}

.justify:after
{
	display: inline-block;
	width: 100%;
	content: '';
}

.justify > *
{
	display: inline-block;
	vertical-align: top;
}

@media all and (max-width: 1240px) {
	.seven-col-grid>*
	{
		width: 14.16%;
		margin-right: 3%;
	}

	.seven-col-grid>*:nth-child(7n)
	{
		margin-right: 3%;
	}

	.seven-col-grid>*:nth-child(6n)
	{
		margin-right: 0;
	}
}

@media all and (max-width: 1130px) {
	.six-col-grid>*
	{
		width: 15.5%;
		margin-right: 5.625%;
	}

	.six-col-grid>*:nth-child(6n)
	{
		margin-right: 5.625%;
	}

	.six-col-grid>*:nth-child(5n)
	{
		margin-right: 0;
	}

	.seven-col-grid>*
	{
		width: 15.5%;
		margin-right: 5.625%;
	}

	.seven-col-grid>*:nth-child(6n), .seven-col-grid>*:nth-child(7n)
	{
		margin-right: 5.625%;
	}

	.seven-col-grid>*:nth-child(5n)
	{
		margin-right: 0;
	}

	.four-row-grid>*
	{
		width: 30.5%;
		margin-right: 4.2%;
	}

	.four-row-grid>*:nth-child(4n)
	{
		margin-right: 4.2%;
	}

	.four-row-grid>*:nth-child(3n)
	{
		margin-right: 0;
	}

	.three-row-grid>*
	{
		width: 47.5%;
		margin-right: 0;
	}

	.three-row-grid>*:nth-child(3n)
	{
		margin-right: 0;
	}

	.three-row-grid>*:nth-child(2n)
	{
		float: right;
	}



	.three-row-grid>*:nth-child(3n+1)
	{
		clear: none;
	}

	.three-row-grid>*:nth-child(2n+1)
	{
		clear: left;
	}

	.five-col-grid>*
	{
		width: 21.1%;
		margin-right: 5.2%;
		margin-top: 4%;
	}

	.five-col-grid>*:nth-child(5n)
	{
		margin-right: 5%;
	}

	.five-col-grid>*:nth-child(4n)
	{
		margin-right: 0;
	}

	.single-row-four > *
	{
		width: 48%;
		margin-left: 4%;
		float: left;
	}

	.single-row-four > *:nth-child(4)
	{
		margin-left: 0;
	}

	.single-row-four > .cb
	{
		display: block;
	}
}

@media all and (max-width: 930px) {
	.seven-col-grid>*
	{
		width: 23.125%;
		margin-right: 2.5%;
	}

	.seven-col-grid>*:nth-child(5n), .seven-col-grid>*:nth-child(6n), .seven-col-grid>*:nth-child(7n)
	{
		margin-right: 2.5%;
	}

	.seven-col-grid>*:nth-child(4n)
	{
		margin-right: 0;
	}
}

@media all and (max-width: 900px) {
	.six-col-grid>*
	{
		width: 22.5%;
		margin-right: 3.33%;
	}

	.six-col-grid>*:nth-child(4n)
	{
		margin-right: 0;
	}

	.six-col-grid>*:nth-child(5n), .six-col-grid>*:nth-child(6n)
	{
		margin-right: 3.33%;
	}

	.single-row-three > *
	{
	    float: none;
	    width: 100%;
	    max-width: 500px;
	    margin-left: auto !important;
	    margin-right: auto;
	}
}

@media all and (max-width: 790px) {

	.four-row-grid>*
	{
		width: 47.5%;
		margin-right: 0;
	}

	.four-row-grid>*:nth-child(4n)
	{
		margin-right: 0;
	}

	.four-row-grid>*:nth-child(2n)
	{
		float: right;
	}

	.five-col-grid>*
	{
		width: 30.2%;
		margin-right: 4.2%;
		margin-top: 4%;
	}

	.five-col-grid>*:nth-child(4n)
	{
		margin-right: 4.2%;
	}

	.five-col-grid>*:nth-child(3n)
	{
		margin-right: 0;
	}
}

@media all and (max-width: 750px) {
	.single-row-four > *
	{
		width: 100%;
		margin-left: 0%;
	}
}

@media all and (max-width: 720px) {
	.seven-col-grid>*
	{
		width: 31%;
		margin-right: 3%;
	}

	.seven-col-grid>*:nth-child(4n), .seven-col-grid>*:nth-child(5n), .seven-col-grid>*:nth-child(6n), .seven-col-grid>*:nth-child(7n)
	{
		margin-right: 3%;
	}

	.seven-col-grid>*:nth-child(3n)
	{
		margin-right: 0;
	}
}

@media all and (max-width: 680px) {
	.three-row-grid>*
	{
		width: 100%;
		margin-top: 35px;
	}

	.six-col-grid>*
	{
		width: 30%;
		margin-right: 5%;
	}

	.six-col-grid>*:nth-child(4n), .six-col-grid>*:nth-child(5n), .six-col-grid>*:nth-child(6n)
	{
		margin-right: 5%;
	}

	.six-col-grid>*:nth-child(3n)
	{
		margin-right: 0%;
	}
}

@media all and (max-width: 560px) {
	.five-col-grid>*
	{
		width: 47.5%;
		margin-right: 0 !important;
	}

	.five-col-grid>*:nth-child(4n)
	{
		margin-right: 0;
	}

	.five-col-grid>*:nth-child(2n)
	{
		float: right;
	}
}

@media all and (max-width: 525px) {
	.seven-col-grid>*
	{
		width: 48.5%;
		margin-right: 3%;
	}

	.seven-col-grid>*:nth-child(3n), .seven-col-grid>*:nth-child(4n), .seven-col-grid>*:nth-child(5n), .seven-col-grid>*:nth-child(6n), .seven-col-grid>*:nth-child(7n)
	{
		margin-right: 3%;
	}

	.seven-col-grid>*:nth-child(2n)
	{
		margin-right: 0;
	}
}

@media all and (max-width: 460px) {
	.six-col-grid>*
	{
		width: 47%;
		margin-right: 6% !important;
	}

	.six-col-grid>*:nth-child(2n)
	{
		margin-right: 0 !important;
	}
}

@media all and (max-width: 400px) {
	.four-row-grid>*
	{
		width: 100%;
		margin-top: 35px;
	}

	.three-row-grid>*
	{
		width: 100%;
		margin-top: 35px;
	}
}

@media all and (max-width: 380px) {
	.five-col-grid>*
	{
		width: 100%;
		margin-top: 35px;
	}
}

@media all and (max-width: 340px) {
	.seven-col-grid>*
	{
		width: 100%;
		margin-right: 0% !important;
	}
}