@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;}

* {
  -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: 'Poppins', sans-serif;
}

main {
  min-height: 500px;
}



/* Navigatie */
.navigatie {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  padding: 0 20px;
  background-color: white;
  transition: all .3s;
}

.navigatie .logo {
  transition: all .3s;
  height: 100px;
  margin: 20px 0;
}

.navigatie>div {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}

.navigatie nav {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding-top: 35px;
}

.navigatie nav a {
  margin: 0 20px;
  font-weight: 700;
  color: #353535;
  transition: all .4s;
  font-family: 'Poppins', sans-serif;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
} 

.navigatie nav .active {
  border-bottom: 2px solid #13566B;
  color: #13566B;
}

.navigatie nav a:hover {
  border-bottom: 2px solid #13566B;
  color: #13566B;
}

.navigatie nav a:last-child {
  margin-right: 0;
}

.top_links {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.special_top_links {
  background-color: #151F29;
  height: 30px;
  border-radius: 0 0 10px 10px;
  display: flex;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .9em;
  color: #fff;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 0 20px;
}

.top_link {
  margin: 0 15px;
  font-size: .9em;
  color: #064d63;
  font-family: 'Poppins', sans-serif;
}

.fixedheader {
  transition: all .3s;
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  background-color: white !important;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
}

.fixedheader .top_links {
  display: none;
}

.fixedheader nav {
  padding-top: 0;
  padding: 10px 0;
}

.fixedheader .logo {
  height: 55px !important;
  margin: 5px 0;
}

.fixedheader .logo1 {
  display: none;
}

.fixedheader .logo2 {
  display: block;
}

.fixedheader nav a {
  color: #13566B !important;
}

.fixedheader>div {
  border-bottom: none !important;
}

.logo2 {
  display: none;
}

.res-nav {
  width: 400px;
  height: 100vh;
  position: fixed;
  right: -400px;
  top: 0;
  z-index: 1000;
  overflow: auto;
  transition: all .3s;
  background-color: #fff;
}

.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;
}

.top_res_nav {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  padding: 20px;
  background-color: #13566B;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.top_res_nav a {
  color: white;
}

.closebtn {
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.winkelmandres {
  font-size: 1.2em;
  color: #fff;
  margin-right: 20px;
}

.verlanglijstres {
  font-size: 1.2em;
  color: #fff;
}

.menu-block {
  overflow: hidden;
}

.menu-is-open {
  right: 0;
}

.res-nav nav {
  padding-top: 90px;
  display: flex;
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
  overflow: auto;
  padding-bottom: 100px;
  height: 100%;
  position: relative;
}

.navitem {
  width: 100%;
  padding: 25px;
}

.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(-450deg);
}

.rotateImg  {
  transform: rotate(0deg) !important;
} 

.navitem a {
  color: #13566B;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
}

.openNavItem {
  max-height: 350px !important;
  margin-top: 10px !important;
  padding-top: 10px !important;
}

.navitem ul {
  display: flex;
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
  margin-top: 0;
  padding-top: 0;
  list-style-type: disc;
  padding-left: 10px;
  color: white;
  overflow: hidden;
  transition: all .5s;
  max-height: 0;
}

.navitem ul li {
  display: inline-block;
  padding: 10px;
}

.navitem ul li i {
  margin-left: -7px;
  color: #c8c8c8;
  font-size: .7em;
  margin-right: 20px;
}

.navitem ul a {
  font-size: 1em;
  padding: 10px 0;
  color: #c8c8c8;
}

.menubtn {
  width: 30px;
  cursor: pointer;
  display: none;
  transition: all .3s;
}

.lateritem {
  display: none;
}

/* Einde Navigatie */

/* Footer */

footer {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 50px 10px;
  padding-bottom: 0;
  background-color: #151F29;
  flex-wrap: wrap;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-image: url(/images/footerbanner.png);
  background-size: contain;
}

footer section div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

footer section div h2 {
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 15px;
  color: white;
}

footer section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.footerlogo img {
  width: 50px;
}

footer section div a {
  width: 100%;
  font-size: .95em;
  color: #cbcbcb;
  line-height: 180%;
}

.siteby {
  margin-top: 50px;
  padding: 0 10px; 
  width: 100%;
}

.siteby > div{
  display: flex;
  justify-content: center;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  font-size: .8em;
  font-weight: 700;
  color: #ffffff;
  padding: 5px 0;
  font-weight: 400;
  width: 100%;
  line-height: 150%;
  margin: 0 auto;
}

.siteby > div div {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.siteby a {
  color: #ffffff;
}

.siteby span {
  margin: 0 10px;
}

/* Einde Footer */

/* Home */

.filmpje {
  width: 100%;
  height: 95vh;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.headerbanner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.filmpje video {
  min-height: 100%;
  min-width: 100%;
}

.banner_head {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  transition: all .3s;
  cursor: pointer;
}

.banner_head p {
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.banner_head:hover {
  transform: translate(-50%,10px);
}

.banner_head div {
  width: 50px;
  height: 50px;
  border-radius: 200px;
  background-color: #89D0CC;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  color: #151F29;
  font-size: 1.2em;
}

.banner_head h2 {
  font-weight: 700;
  font-size: 1.5em;
  padding: 30px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.searchbar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 95%;
  max-width: 700px;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.searchbar h2 {
  text-align: center;
  font-size: 1.7em;
  line-height: 150%;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.searchbar>form {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.searchbar button {
  width: 60px;
  height: 60px;
  border: none;
  background-color: #151F29;
  color: white;
  display: flex;
  font-size: 1.3em;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.searchbar input {
  border: none;
  box-sizing: border-box;
  border-right: 0;
  background-color: #fff;
  font-weight: 700;
  color: #151F29;
  padding-left: 15px;
  height: 60px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.search_page {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  margin: 50px auto;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
}

.search_page input {
  width: 100%;
  font-size: 1.1em;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  height: 50px;
  padding: 0 20px;
  border: none;
}

.search_page button {
  height: 50px;
  width: 50px;
  background-color: #064d63;
  color: white;
  border: none;
  font-size: 1.1em;
  display: flex;
  border: none;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.video_background_overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(6,77,99,.82);
}

.calender_link {
  height: 60px;
  padding: 0 35px;
  color: #fff;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 1.3em;
  font-weight: 700;
  background-color: #151F29;
}

.page_header {
  width: 100%;
  padding: 50px 10px;
  background-color: white;
  line-height: 150%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.page_header h1 {
  font-size: 1.9em;
  font-weight: 700;
  color: #064d63;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.page_header h2 {
  color: #353535;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin-bottom: 5px;
  font-size: 1.2em;
}

.page_header div {
  max-width: 800px;
  color: #6a6a6a;
  margin-top: 20px;
  text-align: center;
}

.troeven_banner {
  padding: 20px 10px;
  width: 100%;
}
.troeven_banner>h2 {
  text-align: center;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin-bottom: 50px;
  letter-spacing: 1px;
  font-size: 1.8em;
}

.troeven_inner_banner article {
  padding: 20px;
}

.troeven_inner_banner article>div {
  width: 100%;
  min-height: 405px;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 30px;
  padding-bottom: 100px;
  background-color: #fff;
  -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);
}

.troeven_inner_banner article>div>i {
  font-size: 3em;
  color: #151F29;
  margin-bottom: 10px;
}

.troeven_inner_banner article h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  color: #151F29;
  text-align: center;
}

.troeven_inner_banner article div {
  text-align: center;
  line-height: 150%;
  color: #838383;
  font-size: 1em;
}

.troeven_inner_banner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.troeven_inner_banner a {
  background-color: #064d63;
  padding: 15px;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.troeven_inner_banner .slick-dots {
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}


.troeven_inner_banner .slick-dots li button {
  display: none;
}

.troeven_inner_banner .slick-dots li {
  border-radius: 200px;
  width: 15px;
  height: 15px;
  background-color: #cecece;
  margin: 0 5px;
}

.troeven_inner_banner .slick-dots .slick-active {
  background-color: #13566B;
}

.form_holder {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #89D0CC;
}

.form_split {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  max-width: 1000px;
  padding: 60px 10px;
  width: 100%;
}

.form_split > div {
  width: 55%;
}

.form_split > div h2 {
  font-size: 1.8em;
  font-weight: 700;
  color: #151F29;
}

.form_split > div h3 {
  line-height: 180%;
  color: #5c5c5c;
  font-weight: 700;
  font-size: 1.35em;
}

.form_split a {
  background-color: #151F29;
  padding: 15px 40px;
  font-weight: 700;
  color: #fff;
}


/* Einde Home */


/* Login */

.login {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100vh;
  position: relative;
}

.loginpart {
  width: 100%;
  max-width: 630px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  z-index: 1;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.loginpart img {
  width: 100%;
  max-width: 250px;
}

.loginpart form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  max-width: 500px;
  transform: translateX(-300px);
  transition: all 1s;
}

.loginfrm h1 {
  font-size: 1.9em;
  color: #13566B;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 700;
}

.loginpart form h2 {
  font-size: 1.1em;
  color: #94C11E;
  font-weight: 700;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
}

.loginpart form h3 {
  color: #8f8f8f;
  line-height: 150%;
  margin-bottom: 20px;
}

.spcc {
  color: #8f8f8f;
  line-height: 150%;
  margin-bottom: 20px;
}

.loginpart form input[type=text], .loginpart form input[type=password] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e4e4e4;
  background-color: white;
  font-family: 'Poppins', sans-serif;
  padding: 10px 0;
  font-weight: 700;
  margin-bottom: 15px;
}

.loginpart form input[type=submit] {
  background-color: #151F29;
  border: 2px solid #151F29;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 8px 40px;
  border-radius: 200px;
  color: white;
  font-size: 1em;
  transition: all .3s;
}

.loginpart form input[type=submit]:hover {
  background-color: #fff;
  color: #151F29;
}

.loginpart form div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

.loginpart form div a {
  font-size: .8em;
  font-weight: 700;
  color: #d1d1d1;
}

.logincontent {
  width: 100%;
  background-color: white;
  background-image: url(/images/login.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.forgot_pass {
  color: #7d7d7d;
  font-weight: 700;
  font-size: .9em;
  cursor: pointer;
}
/* Einde Login */

/* Registreren */

.register_form {
  max-width: 900px;
  margin: 50px auto;
  border-radius: 15px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
}

.register_form_uitleg {
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.register_form_uitleg h1 {
  font-size: 2em;
  font-weight: 700;
  font-family: 'Poppins', serif;
  color: #151F29;
  margin-bottom: 15px;
}

.register_form_devid {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}

.register_form_devid a {
  color: #9f9f9f;
  font-size: .85em;
}

.register_form_devid input[type=submit] {
  padding: 8px 40px;
  background-color: #151F29;
  color: white; 
  font-family: 'Poppins', serif;
  border: none;
  font-weight: 700;
  border-radius: 200px;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.register_form_uitleg p {
  text-align: center;
  max-width: 700px;
  color: #b5b5b5;
  line-height: 150%;
  margin-bottom: 25px;
}


.register_form input[type=text], .register_form input[type=email], .register_form input[type=password] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e4e4e4;
  background-color: white;
  font-family: 'Poppins', sans-serif;
  padding: 10px 0;
  margin-bottom: 15px;
}

.full_width_input {
  width: 100%;
}

.half_width_input {
  width: 49%;
}

.third_width_input {
  width: 32.33%;
}

.two_thirds_width_input {
  width: 65.66%;
}

/* Einde Registreren */


.blokken {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.blokken article {
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  margin: 25px 0;
}

.image_holder {
  position: relative;
  width: 50%;
}

.image_holder_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
}

.main_image {
  width: 100%;
}

.text_holder {
  margin-left: 30px;
  width: 50%;
}

.text_holder img {
  width: 100px;
  margin-bottom: 5px;
}

.blokken_titel {
  position: relative;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  min-height: 130px;
  margin-bottom: 10px;
}

.blokken_titel h3 {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 8em;
  color: #f3f5f5;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  z-index: 0;
  transform: translateY(-50%);
}

.blokken_titel h2 {
  color: #064d63;
  line-height: 150%;
  position: relative;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
  font-weight: 700;
  font-size: 1.7em;
}

.text_holder div {
  line-height: 150%;
  color: #959595;
}

.text_holder a {
  color: #151F29;
  display: inline-block;
  font-weight: 700;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Categorie Header */

.categorie_header {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.categorie_header_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(6,77,99,.80);
}

.categorie_header>img {
  width: 100%;
  filter: grayscale(100%);
}

.categorie_header_content {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  transform: translate(-50%,-50%);
  padding: 30px;
  width: 100%;
}

.categorie_header_content h1 {
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 3em;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 11px rgba(0,0,0,0.40);
}

.categorie_header_content h2 {
  font-size: 1.2em;
  text-align: center;
  color: #fff;
  margin-top: 20px;
  text-shadow: 0px 0px 11px rgba(0,0,0,0.40);
}

.subcategories {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  position: relative;
  align-items: center;
  margin-top: -100px;
  z-index: 2;
  background-color: white;
  padding: 25px;
  flex-wrap: wrap;
}

.subcategories article {
  width: 23%;
  margin: 1%;
  transition: all .8s;
}

.subcategories article:hover {
  transform: scale(1.05);
}

.subcategories article img {
  width: 100%;
}

.subcategories h2 {
  padding: 10px 0;
  padding-bottom: 0;
  color: white;
  font-size: 1em;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  color: #151F29;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

.subcategorie_controls {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  z-index: 1;
  position: relative;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: -30px;
  transition: all .8s;
}

.fadethis {
  transform: translateY(-20%);
  opacity: 0;
  transition: all .8s;
}

.subcategorie_list {
  display: flex;
  justify-content: flex-end;
  -ms-align-items: center;
  align-items: center;
  width: 20%;
}

.subcategorie_list div {
  margin-left: 10px;
  min-width: 40px;
  height: 40px;
  font-size: 1.2em;
  color: #151F29;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  cursor: pointer;
}

.subcategorie_list .active {
  background-color: #151F29;
  color: white;
}

.subcategorie_zoeken {
  width: 80%;
  position: relative;
}

.subcategorie_zoeken input {
  padding: 10px;
  padding-left: 50px;
  width: 100%;
  border: none;
  position: relative;
  font-family: 'Poppins', sans-serif;
  background-image: url(/images/search_bg.png);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
}

.spinnerbox {
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.spinnerbox img {
  width: 100px;
}

.hiddenarticles {
  opacity: 0;
  transition: all .3s;
  transform: translateY(70px);
}


/* Einde Categorie Header */

/* Items Overzicht */

.items_ov {
  display: flex;
  justify-content: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 10px;
  flex-wrap: wrap;
  padding-top: 30px;
  transition: all 1s;
}

.items_ov>h2 {
  font-size: 1.5em;
  margin-bottom: 5px;
  color: #151F29;
  width: 100%;
  font-weight: 700;
  border-top: 2px solid #f3f3f3;
  padding: 10px;
  padding-top: 20px;
}

.items_ov article {
  width: 23%;
  margin: 1%;
  margin-bottom: 2%;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  background-color: white;
  position: relative;
  overflow: hidden;
  transition: all .8s;
}

.items_ov article>div {
  padding: 20px;
  padding-bottom: 70px;
  background-color: white;
  position: relative;
  z-index: 1;
}

.items_ov article>img {
  width: 100%;
  position: relative;
  z-index: 0;
  transition: all .3s;
}

.items_ov article:hover {
  transform: scale(1.1);
}

.items_ov article h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1em;
  min-height: 30px;
  color: #151F29;
  margin-bottom: 15px;
  line-height: 150%;
}

.items_ov article>a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.listview {
  width: 48% !important;
}

.listview:hover {
  transform: scale(1.05) !important;
}

.listview>div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

.listview img {
  display: none;
}

.listview h2 {
  margin-bottom: 0 !important;
}

.listview>div {
  padding-bottom: 15px !important;
}

.listview .items_ov_text {
  display: none;
}

.listview .items_ov_link {
  position: relative;
  bottom: initial;
  right: initial;
  left: initial;
  margin-top: 0;
}

.listview .items_ov_link span {
  display: none;
}

.items_ov_text {
  line-height: 180%;
  color: #b1b1b1;
  font-size: .95em;
}

.items_ov_link {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #064d63;
  display: inline-block;
  margin-top: 15px;
  position: absolute;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  left: 20px;
  bottom: 20px;
  right: 20px;
}

.items_ov_link div {
  width: 40px;
  height: 40px;
  background-color: #064d63;
  color: #fff;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 200px;
}

.home_fotobanner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: block;
  font-weight: 700;
  padding: 50px 20px;
  font-family: 'Poppins', sans-serif;
}

.home_fotobanner .home_troeven_titel {
  width: 100%;
}

.fotobanner_titel {
  font-size: 4em;
  font-weight: 700;
  color: #E9E9E9;
  line-height: 130%;
}

.fotobanner_titel strong {
  font-weight: 700;
  color: #262626;
}

.fotobanner_titel ins {
  color: #969696;
  font-size: 700;
  text-decoration: underline;
}

/* Einde Items Overzicht */


/* Item Page */

.item_header {
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
}

#diemap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  border: 2px solid #b4b4b4;
  display: none;
}

.header_video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  border: 2px solid #b4b4b4; 
  display: none;
}

.header_video iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.item_header_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.4);
}

.item_header_content {
  position: absolute;
  left: 50px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.item_header_content a {
  color: white;
  font-weight: 700;
  padding: 5px 10px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  background-color: #89D0CC;
}

.item_header div h1 {
  font-size: 2.5em;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
}

.item_header img {
  width: 100%;
}

.item_controls {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #064d63;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.item_switch {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.item_switch div {
  color: white;
  font-weight: 700;
  font-size: .95em;
  padding: 0 30px;
  border-right: 2px solid #fff;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  cursor: pointer;
  align-items: center;
}

.item_switch div:first-child {
  padding-left: 10px;
}

.item_switch div:last-child {
  border: none;
}

.item_switch div i {
  margin-right: 5px;
  font-size: 1.35em;
}

.item_social {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.item_social a {
  color: white;
  padding: 0 15px;
  cursor: pointer;
  font-size: 1.2em;
}

.item_content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  padding-bottom: 30px;
}

.item_left {
  width: 68%;
}

.item_left h1 {
  color: #151F29;
  font-size: 2.5em;
  font-weight: 700;
}

.item_intro {
  line-height: 200%;
  font-size: 1.1em;
  color: #7D7D7D;
  margin-top: 30px;
}

.item_right {
  width: 28%;
  padding: 35px;
  background-color: white;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}

.item_right>h2 {
  color: #151F29;
  font-weight: 700;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.item_right article {
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.item_right article img {
  width: 100%;
}

.item_right article h3 {
  color: #064d63;
  font-weight: 700;
  margin-top: 20px;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.item_right article a {
  padding: 12px 40px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #064d63;
  color: white;
  font-weight: 700;
  border-radius: 200px;
  margin-top: 20px;
}

.item_right article a i {
  margin-left: 10px;
}

.item_praktisch {
  display: flex;
  justify-content: flex-start;

  width: 100%;
  background-color: white;
  padding: 30px;
  border: 1px solid #E0E0E0;
  margin-top: 30px;
  flex-wrap: wrap;
}

.item_praktisch>div {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  color: #151F29;
  margin-right: 40px;
  line-height: 180%;
  padding-left: 40px;
  border-left: 1px solid #f3f3f3;
}

.item_praktisch>div:first-child {
  border-left: 0;
  padding-left: 0;
}

.item_praktisch h2 {
  color: #13566B;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1em;
}

.item_praktisch a {
  color: #151F29;
  line-height: 180%;
}

.watch_opening {
  cursor: pointer;
}

.openinguren_show {
  width: 100%;
  display: none;
}

.openinguren_show>div {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  border-top: 2px solid #f5f5f5;
  padding-top: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.openinguren_show .dag {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  line-height: 200%;
}

.openinguren_show .dag>div:first-child {
  min-width: 150px;
  font-weight: 700;
} 

.openinguren_show .dag span {
  padding: 0 15px;
}

.item_event {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  padding: 20px 10px;
  padding-left: 85px;
  position: relative;
  color: #949494;
  font-size: .9em;
  line-height: 150%;
  min-height: 90px;
  margin-bottom: 15px;
  font-weight: 700;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e4e4e4;
}

.item_event .date {
  width: 70px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #13566B;
  color: white;
  font-weight: 700;
  font-size: 1.3em;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding: 20px;
}

.item_event .date span {
  font-size: 1.5em;
  padding-bottom: 2px;
  margin-bottom: 2px;
  border-bottom: 1px solid white;
}

.fullcalendar {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  width: 100%;
  font-weight: 700;
  color: #13566B;
  font-size: .9em;
  border-top: 1px solid #dddddd;
  padding-top: 20px;
  margin-top: 15px;
}

.fullcalendar i {
  font-size: 1.3em;
  margin-right: 10px;
}

/* Einde Item Page */

/* Contact */

#dasmap {
  width: 100%;
  height: 500px;
}

.radio_container {
  position: relative;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  margin-right: 15px;
}

.radio_container input {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.radio_container input:checked + .radio_checker {
  background-color: #94C11E;
  color: white;
}

.radio_container input:checked + .radio_checker i {
  display: block;
}

.radio_checker:hover {
  background-color: #94C11E;
  color: white;
}

.radio_checker {
  cursor: pointer;
  transition: all .3s;
  padding: 15px 30px;
  border-radius: 200px;
  font-size: .8em;
  font-weight: 700;
  background-color: #e4e4e4;
  z-index: 1;
  position: relative;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.form_changer {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}

.radio_checker i {
  display: none;
  margin-right: 10px;
}

.contact_info {
  display: flex;
  justify-content: space-around;
  -ms-align-items: center;
  align-items: center;
  padding: 60px 10px;
  width: 100%;
  margin: 0 auto;
  background-color: white;
  flex-wrap: wrap;
  transform: translateY(-50%);
  max-width: 1200px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
}

.contact_info h2 {
  font-size: 1.3em;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  color: #151F29;
  font-weight: 700;
}

.contact_info p {
  color: #4B4B4B;
  font-size: .9em;
  margin-top: 15px;
}

.contact_info a {
  padding-left: 30px;
  position: relative;
}

.contact_info a {
  color: #4B4B4B;
}

.contact_info a i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
} 

.contact_content {
  background-color: #F2F6FA;
  width: 100%;
  padding-bottom: 60px;
}

.contact {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  min-height: 100px;
  flex-wrap: wrap;
}

.gegevens {
  width: 28%;
  margin-left: 2%;
  background-color: white;
}

.gegevens img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.gegevens>div {
  padding: 25px;
}

.gegevens div h2 {
  color: #064d63;
  font-size: 1.3em;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}

.gegevens div div {
  font-size: .85em;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  color: #4B4B4B;
  line-height: 200%;
}

.gegevens div div p {
  width: inherit;
}

.contact_form_holder {
  width: 70%;
  padding: 35px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact_form, .complaint_form {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hideField {
  display: block;
}

.complaint_form {
  display: none;
}

#NaamInput {
  width: 48%;
}

#EmailInput {
  width: 100%;
}

.contact_form input[type=text], 
.contact_form input[type=email],
.complaint_form input[type=text],
.complaint_form input[type=email] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #DEE2EB;
  padding: 12px 10px;
  color: #A8A8A8;
  margin-bottom: 20px;
  font-family: 'Poppins', serif;
}
.contact_form textarea {
  width: 100%;
  border: none;
  background-color: #F4F4F4;
  border-radius: 0px;
  padding: 12px 20px;
  padding-left: 20px;
  color: #A8A8A8;
  margin-bottom: 20px;
  height: 300px;
  font-family: 'Poppins', serif;
}

.contact_form input[type=submit],
.complaint_form input[type=submit]  {
  border-radius: 200px;
  padding: 12px 40px;
  background-color: #064d63;
  border: 2px solid #064d63;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
  font-size: .9em;
  transition: all .3s;
  font-family: 'Poppins', serif;
}

.bericht {
  width: 100%;
  border: none;
  background-color: #F4F4F4;
  border-radius: 20px;
  margin-bottom: 35px;
  font-weight: 700;
  padding: 12px 20px;
  color: #A8A8A8;
  height: 100px;
  font-family: 'Poppins', serif;
}

.contact_form input[type=submit]:disabled, .complaint_form input[type=submit]:disabled{
  opacity: .4;
}

.contact_form input[type=submit]:disabled:hover, .complaint_form input[type=submit]:disabled:hover {
  background-color: transparent;
  color: #064d63;
}

.contact_form input[type=submit]:hover, .complaint_form input[type=submit]:hover {
  background-color: transparent;
  color: #064d63;
}

#VoornaamCnt, #NaamCnt {
  width: 49%;
  margin-bottom: 2%;
}

#EmailCnt {
  width: 100%;
  margin-bottom: 2%;
}

#StraatCnt, #GemeenteCnt {
  width: 69%;
  margin-bottom: 2%;
}

#BusCnt, #PostcodeCnt {
  width: 29%;
  margin-bottom: 2%;
}

/* Einde Contact */

/* Vragen */

.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 {
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.vragen article h2 {
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  font-size: 1.2em;
  color: #151F29;
  align-items: center;
  cursor: pointer;
}

.vragen article h2 i {
  transition: all .3s;
}

.arrowUp i {
  transform: rotate(180deg);
}

.vragen article div {
  margin-top: 20px;
  color: #a1a1a1;
  line-height: 180%;
  letter-spacing: .5px;
}

.vragen article div a {
  color: #5C9090;
  font-weight: 600;
}

.vragen_form {
  padding: 25px;
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  width: 30%;
}

.vragen_form img {
  margin-bottom: 20px;
  width: 100%;
}

.vragen_form h2 {
  font-weight: 600;
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #151F29;
}

.vragen_form input[type=text], .vragen_form input[type=email] {
  padding: 10px;
  font-family: 'Poppins', sans-serif;
  color: #353535;
  background-color: #fff;
  border: 2px solid #DEE2EB;
  letter-spacing: .5px;
  width: 100%;
  height: 50px;
  display: flex;
  border-radius: 5px;
  -ms-align-items: center;
  align-items: center;
  font-size: 1em;
}

.vragen_form input[type=submit] {
  border: none;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-weight: 700;
  background-color: #151F29;
  padding: 10px 35px;
  border-radius: 200px;
}

.vragen_form input[type=submit]:disabled {
  opacity: .5;
}

#Bericht {
  width: 100%;
  letter-spacing: .5px;
  font-family: 'Poppins', sans-serif;
  color: #353535;
  background-color: #fff;
  border: 2px solid #DEE2EB;
  font-size: 1em;
  padding: 10px;
  border-radius: 5px;
  margin-top: 20px;
  min-height: 150px;
  margin-bottom: 20px;
}

/* Einde Vragen */


/* Kalender */

.kalender_content {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  max-width: 1500px;
  margin: 0 auto;
}

.kalender_content>div {
  width: 100%;
}

.kalender_content .spinnerbox {
  width: 100%;
}

.kalender_content aside {
  min-width: 300px;
  padding: 40px;
  background-color: white;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.15);
  margin-right: 30px;
  margin-top: 40px;
  border-radius: 20px;
}

.kalender_content aside h2 {
  font-size: 1.5em;
  font-weight: 700;
  color: #13566B;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f2f2f2;
}

.kalender_ov {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 30px 10px;
}

.kalender_ov article {
  width: 31.33%;
  margin: 1%;
  border-radius: 20px;
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.20);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.20);
  box-shadow: 0px 0px 22px 0px rgba(82,82,82,0.20);
}

.kalender_ov article:hover img {
  transform: scale(1.3);
}

.kalender_ov article img {
  width: 100%;
  position: relative;
  transition: all 1s;
  z-index: 0;
}

.kalender_ov article h2 {
  font-weight: 700;
  line-height: 150%;
  font-size: 1.3em;
  padding: 15px 20px;
  padding-top: 0;
  background-color: white;
  position: relative;
  z-index: 1;
}
.kalender_ov article h4 {
  font-weight: 700;
  line-height: 150%;
  font-size: .9em;
  padding: 15px 20px;
  background-color: white;
  position: relative;
  color: #13566B;
  padding-bottom: 0px;
  z-index: 1;
}

.kalender_ov article h3 {
  position: absolute;
  z-index: 2;
  left: 15px;
  top: 15px;
  border-radius: 100px;
  color: white;
  font-weight: 700;
  font-size: .9em;
  padding: 8px 25px;
  background-color: #13566B;
}

.kalender_tekst {
  padding: 0 20px;
  color: #6f6f6f;
  line-height: 180%;
  margin-bottom: 10px;
}

.kalender_link {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  padding: 20px 0 !important;
  font-weight: 700;
  color: #13566B;
  border-top: 2px solid #f8f8f8;
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
}

.kalender_ov article a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 4;
}

.kalender_switch {
  width: 100%;
  max-width: 400px;
  font-size: .9em;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border: 2px solid #13566B;
  border-radius: 200px;
  background-color: #13566B;
  overflow: hidden;
}

.kalender_switch div {
  cursor: pointer;
  padding: 10px 20px;
  width: 50%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  color: #13566B;
  background-color: white;
  font-weight: 700;
}

.kalender_switch .active {
  color: white;
  background-color: #13566B;
}

.checkbox {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  height: 25px;
  position: relative;
  padding-left: 30px;
  margin-top: 10px;
  cursor: pointer;
  font-size: .9em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all .3s;
  color: #737373;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  transition: all .3s;
  width: 20px;
  background-color: #E4E4E4;
}

.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.checkbox input:checked ~ .checkmark {
  background-color: #000;
}

.checkmark i {
  content: "";
  position: absolute;
  display: none;
  font-size: 1.1em;
}

.checkbox input:checked ~ .checkmark i {
  display: block;
}

.checkbox .checkmark i {
  left: 2px;
  top: 2px;
  color: white;
}

.checkbox .whitecheckmark i {
  color: black;
}

.endprods {
  display: flex;
  width: 100%;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

.endprods p {
  white-space: nowrap;
  padding: 0 10px;
  color: #999999;
}

.endprods img {
  width: 30px;
  margin: 10px 30px;
}

.endprods div {
  width: 100%;
  height: 1px;
  background-color: #aeaeae;
}

.kalender_page {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.kalender_page .mainimg {
  width: 100%;
}

.kalender_top {
  position: relative;
  margin: 0 auto;
  border-radius: 50px;
  margin-top: -20px;
  background-color: #13566B;
  max-width: 1250px;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

.kalender_top a {
  font-weight: 700;
  color: white;
}

.kalender_top h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1em;
}

.kalender_tekstcontent {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 30px 10px;
}

.kalender_tekstcontent h1 {
  margin-top: 20px;
  font-size: 1.8em;
  font-weight: 700;
  color: #13566B;
}

.kalender_tekstcontent div {
  line-height: 180%;
  color: #848484;
  margin-top: 10px;
  font-size: 1.1em;
}

.banner_bottom {
  width: 100%;
  margin-top: 30px;
}

.kalender_ov > h2 {
  width: 100%;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #ededed;
  color: #13566B;
  font-size: 1.4em;
  font-weight: 700;
  margin-top: 30px;
}

/* Einde Kalender */



/* Media Queries */

@media all and (max-width: 1400px) {
  .subcategories {
    margin-top: 0;
  }

  .kalender_ov article {
    width: 48%;
  }
}

@media all and (max-width: 1350px) {
  .contact_content {
    padding: 10px;
  }
  .contact_info {
    width: 100%;
    max-width: 100%;
    transform: translateY(0);
    margin-bottom: 10px;
    box-shadow: none;
  }
}

@media all and (max-width: 1200px) {
  .vragen_form, .vragen {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media all and (max-width: 1150px) {
  .navigatie nav {
    display: none;
  }

  .navigatie {
    background-color: white !important;
  }

  .logo1 {
    display: none;
  }

  .logo2 {
    display: block;
  }

  .navigatie>div {
    border-bottom: none !important;
  }

  .top_link {
    color: #13566B !important;
  }

  .filmpje {
    margin-top: 140px;
    height: 500px;
  }

  .menubtn {
    display: block;
  }

  .blokken article {
    flex-direction: column;
  }

  .image_holder {
    order: 1;
  }

  .text_holder {
    order: 2;
  }

  .image_holder, .text_holder {
    width: 80%;
  }

  footer {
    background-image: none;
  }

  .footerlogo {
    display: none;
  }

  footer section {
    width: 80%;
  }

  .items_ov article {
    width: 31.33%;
  }
}

@media all and (max-width: 1100px) {
  .kalender_content {
    flex-wrap: wrap;
  }

  .kalender_content aside {
    width: 95%;
    margin: 0 auto;
    margin-top: 40px;
  }

  .kalender_tekstcontent h1 {
    font-size: 1.3em;
  }

  .kalender_tekstcontent div {
    font-size: 1em;
  }
}

@media all and (max-width: 1000px) {
  .subcategorie_controls {
    transform: translateY(0);
    margin-top: 20px;
    width: 95%;
  }

  .contact {
    flex-wrap: wrap;
  }

  .contact_form_holder {
    width: 100%;
    padding: 20px;
  }

  .gegevens {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
}

@media all and (max-width: 950px) {
  .blokken article {
    width: 95%;
  }

  .image_holder, .text_holder {
    width: 100%;
    margin-left: 0 !important;
  }

  .form_split {
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
  }

  .form_split > div {
    width: 100%;
  }

  .page_header h1, .form_split > div h2 {
    font-size: 1.5em;
  }

  .page_header h2, .form_split > div h3 {
    font-size: 1em;
  }

  .blokken_titel h2 {
    font-size: 1.4em;
  }
}


@media all and (max-width: 900px) {
  .subcategories {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .subcategories article img {
    display: none;
  }

  .subcategories article {
    width: 44%;
  }

  .fotobanner_titel {
    font-size: 2em;
  }

  .items_ov article {
    width: 48%;
  }

  .categorie_header {
    height: 200px;
    overflow: hidden;
  }

  .categorie_header>img {
    height: 100%;
    width: initial;
  }

  .categorie_header_content h1 {
    font-size: 1.5em;
  }

  .categorie_header_content h2 {
    font-size: 1em;
  }
}

@media all and (max-width: 800px) {
  .vragen article h2 {
    font-size: 1em;
  }

  .vragen article div {
    font-size: .9em;
  }
}


@media all and (max-width: 700px) {
  .kalender_tekst {
    display: none;
  }

  .kalender_ov article h2 {
    font-size: 1em;
  }

  .kalender_ov article h4 {
    font-size: .8em;
  }
}

@media all and (max-width: 650px) {

  footer section {
    flex-wrap: wrap;
    width: 100%;
  }

  footer div {
    width: 100%;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  footer div:last-child {
    margin-bottom: 0;
  }



  footer section div h2 {
    text-align: center;
    width: 100%;
  }

  .siteby > div {
    flex-direction: column;
  }

  .siteby > div div {
    margin-top: 10px;
  }

  .top_links {
    display: none;
  }

  .lateritem {
    display: block;
  }

  .navigatie .logo {
    margin: 5px;
  }

  .banner_head {
    display: none;
  }


  .filmpje {
    height: 50vh;
    margin-top: 80px;
  }

  .searchbar h2 {
    font-size: 1.4em;
  }


}

@media all and (max-width: 700px) {
  .subcategories article {
    width: 100%;
  }

  .kalender_top {
    font-size: .8em;
  }
}

@media all and (max-width: 600px) {
  .navigatie .logo {
    height: 70px;
  }

  .troeven_inner_banner article {
    padding: 15px 10px;
  }

  .res-nav {
    width: 100%;
    right: -600px;
  }

  .menu-is-open {
    right: 0;
  }

  .items_ov article {
    width: 98%;
  }

  .contact_info {
    flex-direction: column;
    padding: 20px;
  }

  #dasmap {
    height: 300px;
  }

  .contact_info div {
    width: 100%;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
    margin: 15px 0;
  }

  .contact_info h2 {
    margin-bottom: 5px;
  }
}

@media all and (max-width: 550px) {
  #NaamInput {
    width: 100%;
  }

  .contact_form input[type=submit] {
    width: 100%;
    padding: 10px;
    text-align: center;
    border-radius: 0;
  }
}

@media all and (max-width: 500px) {
  .searchbar h2 {
    font-size: 1.2em;
  }

  .searchbar input {
    height: 45px;
  }

  .searchbar button {
    width: 45px;
    height: 45px;
  }

  .kalender_ov article {
    width: 98%;
    margin-bottom: 20px;
  }
}



#content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: auto;
}

#content-container h2 {
  color: #13566B; 
  font-size: 1.7em; 
  font-weight:bold; 
  margin-bottom: 1em;
  margin-top: 1em;
  cursor: pointer;
}

#content-container h3 {
  background: #13566B;
  color: #fff;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  padding: 10px;
  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;
}

#content-container ul {
  margin-left: 3em;
}

#content-container table {
  width: 100%;
}

#content-container a {
  color: #13566B;
  font-weight: 700;
}

#gdpr-wrapper {
  min-height:100%;
  position:relative;
}

#content-container thead {
  background-color: #13566B;
  color: white;
  font-weight: 700;
}


#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;
}
