* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

/* ALGEMEEN */
html,
body {
 margin:0;
 padding:0;
 height:100%;
 position: relative;
 font-family: 'Oxygen', sans-serif;
}

@font-face {
  font-family: 'big_johnregular';
  src: url('/fonts/big_john-webfont.woff2') format('woff2'),
  url('/fonts/big_john-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.transparent_button {
  border: 3px solid #8BCF97;
  color: #8BCF97;
  padding: 10px 35px;
  text-decoration: none;
  margin-top: 30px;
  transition: all .3s;
  font-family: 'big_johnregular', sans-serif;
}

.transparent_button:hover {
  background-color: #8BCF97;
  color: white;
  -webkit-box-shadow: 0px 0px 106px 0px rgba(139,207,151,0.56);
  -moz-box-shadow: 0px 0px 106px 0px rgba(139,207,151,0.56);
  box-shadow: 0px 0px 106px 0px rgba(139,207,151,0.56);
}

.white_button {
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 0px 0px rgba(170,170,170,1);
  -moz-box-shadow: 5px 5px 0px 0px rgba(170,170,170,1);
  box-shadow: 5px 5px 0px 0px rgba(170,170,170,1);
  color: #8BCF97;
  transition: all .3s;
  border: 3px solid #fff;
  padding: 10px 35px;
  text-decoration: none;
  margin-top: 30px;
  display: inline-block;
  font-family: 'big_johnregular', sans-serif;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0,0,0,.7);
}

.showoverlay {
  display: block;
}

.white_button:hover {
  background-color: #8BCF97;
  color: white;
}

.green_button {
  border: 3px solid #8BCF97;
  background-color: #8BCF97;
  color: #fff;
  padding: 10px 35px;
  text-decoration: none;
  margin-top: 30px;
  display: inline-block;
  transition: all .3s;
  font-family: 'big_johnregular', sans-serif;
  -webkit-box-shadow: 5px 5px 0px 0px rgba(230,230,230,1);
  -moz-box-shadow: 5px 5px 0px 0px rgba(230,230,230,1);
  box-shadow: 5px 5px 0px 0px rgba(230,230,230,1);
}

.green_button:hover {
  background-color: transparent;
  color: #8BCF97;
}

.over_ons_blokken {
  max-width: 1200px;
  width: 100%;
  padding: 10px 10px;
  margin: 0 auto;
  display: block;
}

.over_ons_blok {
  width: 100%;
  position: relative;
  margin: 60px 0;
  display: flex;
  justify-content: flex-start;
}

.over_ons_blok_img {
  width: 55%; 
}

.over_ons_blok_img div {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  z-index: 1;
}

.over_ons_blok_text {
  width: 55%;
  position: absolute;
  right: 0;
  top: 50%;
  padding: 25px;
  transform: translateY(-50%);
  z-index: 2;
}

.over_ons_blok_bg {
  z-index: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 40%;
  left: 19%;
  width: 81%;
  background-image: url(/images/patternbg.png);
}

.over_ons_blok_text div {
  background-color: #fff;
  padding: 25px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 2px 22px 0px rgba(194,194,194,0.52);
  -moz-box-shadow: 0px 2px 22px 0px rgba(194,194,194,0.52);
  box-shadow: 0px 2px 22px 0px rgba(194,194,194,0.52); 
}

.over_ons_blok_text h2 {
  color: #8BCF97;
  font-size: 1.5em;
  font-family: 'big_johnregular', sans-serif;
  margin-bottom: 20px;
}

.over_ons_blok_text p {
  color: #b0b0b0;
  line-height: 150%;
  margin-bottom: 20px;
}

.over_ons_blok:nth-child(even) {
  justify-content: flex-end;
}

.over_ons_blok:nth-child(even) .over_ons_blok_text {
  left: 0;
  right: inherit;
}

.over_ons_blok:nth-child(even) .over_ons_blok_bg {
  left: 0;
  right: 19%;
}

.come-in {
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 1s; /* 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: 1s; /* 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: 1s; /* So they look staggered */
  }
}
@keyframes come-in-right {
  to { transform: translateX(0); }
}

.headerbg {
  background-color: #757986;
  width: 100%;
  height: 100px;
}

.banner_page {
  width: 100%;
  height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.content_more {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.content_more article {
  width: 31.33%;
  margin: 1%;
}

.titledienst {
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  color: #757986;
  font-size: 1.3em;
  font-family: 'big_johnregular', sans-serif;
}



/* NAVIGATION */
.main_header {
  max-width: 1400px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  position: absolute;
  z-index: 5;
  padding: 30px 10px;
}

.main_header nav a {
  font-family: 'big_johnregular', sans-serif;
  margin: 0 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: .85em;
  transition: all .3s;
}

.main_header .special {
  background-color: #8bcf97;
  padding: 10px;
  color: #fff;
  border: 3px solid #8BCF97;
}

.active_nav {
  color: #8BCF97 !important;
  border-bottom: 3px solid #8BCF97;
  padding-bottom: 10px;
}

.main_header nav a:hover {
  border-bottom: 3px solid #8BCF97;
  padding-bottom: 10px;
}

.main_header .special:hover {
  background-color: transparent;
  color: #8BCF97;
}

.logo {
  transition: all .3s;
  width: 150px;
}

.logo:hover {
  transform: scale(1.05);
}


/* EINDE NAVIGATIE */

/* MENU RESPONSIVE */

.menubtn {
  padding: 10px 15px;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  z-index: 11;
  overflow: visible; 
  position: absolute;
  right: 50px;
  top: 50px;
  transform: translate(50%, -50%);
  display: none;
}

.menubtn-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; 
}

.menubtn-inner {
  display: block;
  top: 50%;
  margin-top: -2px; 
}

.menubtn-inner, .menubtn-inner::before, .menubtn-inner::after {
  width: 40px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; 
}

.menubtn-inner::before, .menubtn-inner::after {
  content: "";
  display: block; 
}

.menubtn-inner::before {
  top: -12px; 
}

.menubtn-inner::after {
  bottom: -12px; 
}

.menubtn--spin-r .menubtn-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.menubtn--spin-r .menubtn-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; 
}

.menubtn--spin-r .menubtn-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.menubtn--spin-r.is-active .menubtn-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.menubtn--spin-r.is-active .menubtn-inner::before {
  top: 0;
  background-color: #fff;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; 
}

.menubtn--spin-r.is-active .menubtn-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  background-color: #fff;
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.menubtn .menubtn--spin-r .is-active {
  right: 50%;
}

.supportbtn {
  background-color: #8bcf97;
  padding: 10px;
  color: #fff;
  border: 3px solid #8BCF97;
  position: absolute;
  left: 20px;
  top: 50px;
  z-index: 5;
  transform: translateY(-50%);
  font-family: 'big_johnregular', sans-serif;
  display: none;
}

.res-nav {
  position: fixed;
  right: -500px;
  top: 0px;
  width: 100%;
  max-width: 500px;
  height: 50px;
  z-index: 10;
  height: 100vh;
  transition: all .3s;
  background-color: white;
  overflow: auto;
}

.res-nav nav {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 30px;
  z-index: 12;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.res-nav nav a {
  padding: 15px;
  color: #8BCF97;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  font-family: 'big_johnregular', sans-serif;
}

.res-nav .active_nav {
  border: none;
  color: #757986 !important;
}

.topresnav {
  background-color: #757986;
  height: 100px;
  width: 100%;
  position: fixed;
}

.menu-block {
  overflow: hidden;
}

.menu-is-open {
  right: 0;
}


/* EINDE RESPONSIVE MENU */

.onze_klanten {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  padding: 25px;
  margin-bottom: 50px;
  position: relative;
}

.onze_klanten_bg1 {
  width: 90%;
  position: absolute;
  left: 0;
  top: 0;
  height: 90%;
  background-color: #8BCF97;
}

.onze_klanten_bg2 {
  width: 95%;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50%;
  background-image: url(/images/patternbg.png);
}

.onze_klanten_content {
  background-color: white;
  position: relative;
  z-index: 1;
  padding: 45px 25px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(117,117,117,0.21);
  -moz-box-shadow: 0px 0px 22px 0px rgba(117,117,117,0.21);
  box-shadow: 0px 0px 22px 0px rgba(117,117,117,0.21);
}

.onze_klanten_data {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.onze_klanten_data div {
  width: 25%;
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
}

.onze_klanten_content h2 {
  font-family: 'big_johnregular', sans-serif;
  text-align: center;
  color: #8BCF97;
  font-size: 1.8em;
  margin-bottom: 30px;
  margin-top: 10px;
}

.onze_klanten_data h3 {
  font-size: 3em;
  color: #757986;
  font-family: 'big_johnregular', sans-serif;
  border-bottom: 3px solid #e2e2e2;
  text-align: center;
  padding: 10px;
}

.onze_klanten_data h4 {
  font-size: 1.1em;
  text-align: center;
  padding-top: 15px;
}

.tickertape {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  display: block;
  position: relative;
}

.tickertape_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(53,53,53,.55);
}

.inner_tickertape {
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 60px 10px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.tickertape_content {
  max-width: 450px;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.tickertape_content h2 {
  font-family: 'big_johnregular', sans-serif;
  color: white;
  text-align: center;
  font-size: 1.4em;
  margin-bottom: 15px;
  line-height: 150%;
}

.tickertape_content h3 {
  text-align: center;
  color: white;
  line-height: 150%;
}

footer {
  background-color: #757986;
  max-width: 2000px;
}

.innerfooter {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 50px 10px;
}

.footer_item {
  width: 40%;
}

.footerspecial {
  width: 15%;
}

.footerspecial2 {
  width: 20%;
}

.footlogo {
  width: 150px;
}

.footer_item h2 {
  font-family: 'big_johnregular', sans-serif;
  color: white;
  font-size: .9em;
  letter-spacing: 2px;
  margin-top: 15px;
  padding-left: 3px;
}

.footer_links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}

.footer_links a {
  margin-right: 3%;
  width: 47%;
  margin-bottom: 3%;
  color: white;
  font-size: .9em;
  padding: 8px;
  background-color: #6f737f;
}

.footer_info {
  margin-top: 15px;
  color: #e5e6ec;
  line-height: 150%;
  font-size: .9em;
}

.footer_info a {
  color: #e5e6ec;
}

.footer_socials {
  display: flex;
  margin-top: 15px;
}

.footer_socials a {
  background-color: #fff;
  font-size: 1.3em;
  color: #757986;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  margin-right: 5px;
}

.madeby {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #979797;
  padding: 20px 10px;
  font-size: .7em;
  color: #e9e9e9;
}

.madeby a {
  color: #e9e9e9;
  padding: 0 10px;
}

.madeby img {
  margin-left: 10px;
  width: 8px;
}

.madeby div {
  width: 33.33%;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}

/* HOME PAGE */
.home_banner {
  max-width: 2000px;
  widows: 100%;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.home_banner_image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/images/bg.jpg);
  position: absolute;
  background-attachment: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
}

.home_banner_overlay {
  background-color: rgba(58,58,58,.67);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.home_banner_content {
  position: relative;
  z-index: 2;
  padding: 10px;
}

.home_banner_content article {
  display: flex;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  max-width: 950px;
}

.home_banner_content h2 {
  padding: 20px 40px 15px 40px;
  border: 4px solid #fff;
  text-align: center;
  font-size: 2em;
  line-height: 150%;
  color: #fff;
  letter-spacing: 4px;
  font-family: 'big_johnregular', sans-serif;
  margin-bottom: 20px;
}

.home_banner_content p {
  text-align: center;
  color: #fff;
  line-height: 200%;
  max-width: 750px;
}

.home_banner_scroll {
  position: absolute;
  left: 50%;
  cursor: pointer;
  transform: translateX(-50%);
  bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  z-index: 2;
}

.home_banner_scroll img {
  width: 35px;
  -webkit-animation: scrollBtn 1.5s infinite;
  -moz-animation:    scrollBtn 1.5s infinite;
  -o-animation:      scrollBtn 1.5s infinite;
  animation:         scrollBtn 1.5s infinite;
}

@-webkit-keyframes scrollBtn {
  0%   { margin-bottom: 10px; }
  50% { margin-bottom: 15px; }
  100% { margin-bottom: 10px; }
}

.home_banner_scroll span {
  font-family: 'big_johnregular', sans-serif;
  color: #fff;
  font-size: .8em;
}

.page_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 55px 10px;
}

.page_title h1 {
  color: #757986;
  text-align: center;
  font-size: 1.7em;
  margin-bottom: 20px;
  font-family: 'big_johnregular', sans-serif;
}

.page_title h2 {
  color: #A5A5A5;
  text-align: center;
  font-size: .8em;
  margin-bottom: 10px;
  font-family: 'big_johnregular', sans-serif;
}

.page_title p {
  color: #7D7D7D;
  text-align: center;
  max-width: 750px;
  line-height: 150%;
}

.home_diensten {
  display: block;
  max-width: 2000px;
  margin: 0 auto;
  padding: 55px 10px;
  background-image: url(/images/pattern1.png);
}

.home_diensten .slider {
  max-width: 1200px;
  margin: 0 auto;
}

.home_diensten .slider article {
  width: 33.33%;
  padding: 15px;
}

.home_diensten_slider_item {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  padding: 30px;
}

.home_diensten_slider_item img {
  width: 80px;
}

.home_diensten_slider_item h2 {
  font-family: 'big_johnregular', sans-serif;
  font-size: 1.5em;
  color: #666666;
  margin-top: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.home_diensten_slider_item p {
  text-align: center;
  line-height: 150%;
  color: #CECECE;
}


/* Timeline */

.timelineholder {
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.timelineholder::after {
  content: '';
  position: absolute;
  width: 10px;
  background-color: #FCD487;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.timelineoverlayholder {
  width: 10px;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  z-index: 9;
  overflow: hidden;
  top: 0;
  bottom: 0;
}

.timelineoverlay {
  background-color: #8BCF97;
  border-radius: 10px;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.timeline h2 {
  font-family: 'big_johnregular', sans-serif;
  color: #8BCF97;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.timeline p {
  line-height: 150%;
  color: #a3a3a3;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 10px;
  background-color: #757986;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 100px;
}

.timeline_container {
  padding: 30px 40px;
  position: relative;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  background-color: inherit;
  width: 100%;
}

.timeline_container::after {
  content: '';
  position: absolute;
  width: 35px;
  height: 35px;
  left: 50%;
  background-color: #8BCF97;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
}

.timeline_item_content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  width: 50%;
}

.timeline_other_content {
  width: 45%;
}

.timeline_other_content img {
  width: 90%;
  -webkit-box-shadow: 9px 10px 0px 0px rgba(139,207,151,1);
  -moz-box-shadow: 9px 10px 0px 0px rgba(139,207,151,1);
  box-shadow: 9px 10px 0px 0px rgba(139,207,151,1);
}

.conclusie {
  max-width: 600px;
  width: 96%;
  margin: 0 auto;
  margin-top: -5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #8BCF97;
  margin-bottom: 50px;
  padding: 25px;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  -webkit-box-shadow: 5px 6px 23px 0px rgba(82,82,82,0.2);
  -moz-box-shadow: 5px 6px 23px 0px rgba(82,82,82,0.2);
  box-shadow: 5px 6px 23px 0px rgba(82,82,82,0.2);
}

.conclusie h2 {
  font-family: 'big_johnregular', sans-serif;
  text-align: center;
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 30px;
  margin-top: 10px;
}

.conclusie p {
  text-align: center;
  color: #fff;
  line-height: 150%;
}

/* CONTACT */

.bgcontact {
  background-color: #fff;
  padding-bottom: 50px;
}

#dasmap {
  width: 100%;
  height: 100%;
}

.location {
  overflow: hidden;
  width: 100%;
  height: 70vh;
  position: relative;
}

.location_content {
  position: absolute;
  max-width: 600px;
  width: 50%;
  height: auto;
  top: 50%;
  right: 50%;
  transform: translate(100%, -50%);
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  z-index: 1;
}

.location_data {
  width: 100%;
  background-color: #fff;
  z-index: 1;
  padding: 25px;
  padding-top: 10px; 
  position: relative;
  -webkit-box-shadow: 0px 0px 23px 0px rgba(82,82,82,0.2);
  -moz-box-shadow: 0px 0px 23px 0px rgba(82,82,82,0.2);
  box-shadow: 0px 0px 23px 0px rgba(82,82,82,0.2);
}

.location_data h2 {
  font-family: 'big_johnregular', sans-serif;
  color: #8BCF97;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.location_data p {
  line-height: 150%;
  color: #757986;
}

.location_data p a {
  color: #757986;
}


.contact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.contact form {
  width: 100%;
  padding: 30px 50px 30px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: white;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0px 0px 23px 0px rgba(82,82,82,0.2);
  -moz-box-shadow: 0px 0px 23px 0px rgba(82,82,82,0.2);
  box-shadow: 0px 0px 23px 0px rgba(82,82,82,0.2);
}

.contact_field {
  display: flex;
  flex-direction: column;
  width: 49%;
}

.contact form input[type=text], .contact form input[type=email] {
  border: none;
  padding: 10px;
  background-color: #EEF2F5;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(244,244,244,1);
  -moz-box-shadow: 4px 4px 0px 0px rgba(244,244,244,1);
  box-shadow: 4px 4px 0px 0px rgba(244,244,244,1);
  transition: all .3s;
  color: #757986;
}

.contact form textarea {
  border: none;
  padding: 10px;
  height: 200px;
  background-color: #EEF2F5;
  -webkit-box-shadow: 4px 4px 0px 0px rgba(244,244,244,1);
  -moz-box-shadow: 4px 4px 0px 0px rgba(244,244,244,1);
  box-shadow: 4px 4px 0px 0px rgba(244,244,244,1);
  transition: all .3s;
  color: #757986;
}

.contact form textarea:hover, .contact form input[type=text]:hover, .contact form input[type=email]:hover {
  background-color: #d8e0e6;
}

.contact form label {
  font-family: 'big_johnregular', sans-serif;
  color: #757986;
  margin-bottom: 5px;
  margin-top: 30px;
  font-size: .9em;
}


/* BLOG PAGINA */
.blog_items {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 70px;
}

.blog_items article {
  width: 33.33%;
  padding: 10px;
}

.blog_items article>div {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 23px 0px rgba(156,156,156,0.35);
  -moz-box-shadow: 0px 0px 23px 0px rgba(156,156,156,0.35);
  box-shadow: 0px 0px 23px 0px rgba(156,156,156,0.35);
  transition: all .3s;
}

.blog_items article .blog_button i {
  transition: all .3s;
}

.blog_items article:hover .blog_button i{
  padding-left: 10px;
}


.blog_items article img {
  width: 100%;
}

.blog_items article h2 {
  margin-top: 10px;
  color: #8BCE97;
  padding: 10px;
  font-size: 1.5em;
  line-height: 130%;
  font-family: 'big_johnregular', sans-serif;
}

.blog_items article h3 {
  font-size: .75em;
  padding: 10px;
  padding-top: 5px;
  color: #b4b4b4;
  text-transform: uppercase;
}

.blog_items article p {
  line-height: 150%;
  color: #9d9d9d;
  padding: 10px;
  padding-top: 10px;
}

.blog_button {
  display: inline-block;
  margin-top: 0;
  color: #757986;
  width: 100%;
  padding: 10px;
  font-size: 1em;
}




/* PORTFOLIO */

.portfolio_blokken {
  max-width: 1200px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.portfolio_blokken article {
  width: 31.33%;
  margin: 1%;
  position: relative;
}

.portfolio_blokken article h2 {
  text-align: center;
  color: #fff;
  padding: 20px;
  position: relative;
  z-index: 1;
  font-size: 1.2em;
  background-color: #757986;
  font-family: 'big_johnregular', sans-serif;
}

.portfolio_blokken article:hover .portfolio_logo img {
  transform: scale(1.1);
}

.portfolio_blokken article>img {
  width: 100%;
}

.portfolio_overlay {
  opacity: .4;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.portfolio_logo {
  width: 80%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  transform: translate(-5px,-5px);

}

.portfolio_logo img {
  width: 100%;
  max-width: 150px;
  transition: all .3s;
  -webkit-box-shadow: 0px 0px 23px 0px rgba(128,128,128,0.47);
  -moz-box-shadow: 0px 0px 23px 0px rgba(128,128,128,0.47);
  box-shadow: 0px 0px 23px 0px rgba(128,128,128,0.47);
}

#content-container {
  width: 50%;
  margin: auto;
}

#content-container h2 {
  color: #8BCF97;
  font-size:2.4em; 
  font-weight:bold; 
  margin-bottom: 5px;
  margin-top: 1em;
  cursor: pointer;
}

#content-container h3 {
  background-color:#fff; 
  color: #000;
  font-size:1.5em; 
  margin: 1em;
  padding: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: 1px solid #000;
  box-shadow: inset 0 0 0 0 #8BCF97;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.8s;
  cursor: pointer;
}

#content-container h2:hover + div > h3, #content-container h3:hover {
  box-shadow: inset 1200px 0 0 0 #8BCF97;
  color: #fefefe;
}

#content-container h3.active {
  color: #fff;
  background-color: #8BCF97;
}

#content-container h3 span {
  display: inline-block;
  float: right;
  width: 0;
  height: 0;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid #8BCF97;
  margin-right: 10px;
  margin-top: 9px;
  -webkit-transition: all ease 0.8s;
  -moz-transition: all ease 0.8s;
  transition: all ease 0.4s;
}

#content-container h2:hover + div > h3 > span, #content-container h3:hover span {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid #fff;
  margin-right: 10px;
}

#content-container h3.active span {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid #fff;
  margin-right: 10px;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

#content-container h3.active:hover span {
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 8px solid #fff;
  margin-right: 10px;
}

#content-container h4 {
  margin-left: 2em;
  margin-right: 2em;
  font-size: 1.1em;
  font-weight: bold;
}

#content-container p {
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: 2em;
}

#content-container ul {
  margin-left: 3em;
  margin-right: 3em;
}

#content-container table {
  margin-left: 3em;
  margin-right: 3em;
}

#content-container th, #content-container td {
  border: 1px solid #000;
  padding: 5px;
}

#content-container th {
  font-weight: bold
}

#content-container a {
  color: #D3191C;
}

/* BLOKKEN */
.blokken_bg {
  background-color: #f2f2f2;
  padding: 70px 10px;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.blokken_content {
  max-width: 1400px;
  margin: 0 auto;
}

.blokken_row {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  justify-content: space-between;
}

.blokken_col {
  width: 50%;
  box-sizing: border-box;
  padding: 20px;
}

.blokken_col img {
  width: 100%;
}

.blokkenimg {
  padding: 0;
}

.blokken_row:nth-child(even) {
  text-align: left;
}

.blokken_row:nth-child(even) .blokkentext {
  order: 0;
}

.blokken_row:nth-child(even) .blokkenimg {
  order: 1;
}

.blokken_col h2 {
  font-size: 1.8em;
  font-family: 'Big John', sans-serif;
  color: #8BCF97;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 180%;
}

.blokken_col p {
  line-height: 170%;
  color: #828282;
  font-size: 1.1em;
}

.specialbutton {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  padding-left: 20px;
  position: relative;
}

.specialbutton div {
  position: absolute;
  left: 0;
  top: 0;
  opacity: .5;
  width: 40px;
  height: 40px;
  transition: all .5s;
  z-index: 0;
  background-color: #8bcf97;
}

.specialbutton span {
  z-index: 1;
  position: relative;
  letter-spacing: 2px;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  color: #757986;
  width: 100%;
  padding-top: 10px;
  font-size: 1em;
  font-family: 'Big John', sans-serif;
}

.specialbutton span i {
  margin: 0;
  padding: 0;
  margin-left: 5px;
  margin-bottom: 7px;
  transition: all .5s; 
}

.specialbutton:hover div {
  opacity: .9;
}

.specialbutton:hover span i {
  margin-left: 10px;
}

/* EINDE BLOKKEN */


/* CONTACT */

#dasmap {
  width: 100%;
  height: 70vh;
}

.contact_content {
  max-width: 1200px;
  background-color: #fefefe;
  margin: 0 auto;
  display: flex;
  margin-top: -150px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 2px 22px 0px rgba(217,217,217,0.5);
  -moz-box-shadow: 0px 2px 22px 0px rgba(217,217,217,0.5);
  box-shadow: 0px 2px 22px 0px rgba(217,217,217,0.5);
}

.contact_form {
  width: 60%;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact_form input , .contact_form textarea {
  padding: 10px;
  color: #353535;
  background-color: #F4F4F4;
  border: none;
  letter-spacing: 2px;
  width: 100%;
  height: 50px;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  font-size: 1.1em;
}

.contact_form textarea {
  height: 200px;
}

.contact_form input[type=submit] {
  background-color: #353535;
  padding: 10px 50px;
  color: white;
  width: auto;
  text-transform: uppercase;
}

.contact_form label {
  color: #353535;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-size: 1em;
  margin-top: 15px;
  margin-bottom: 5px;
  display: inline-block;
}

#NaamInput {
  width: 49%;
}

#EmailInput {
  width: 49%;
}

#Bericht {
  width: 100%;
  border: none;
  letter-spacing: 2px;
  font-family: 'Questrial', sans-serif;
  color: #353535;
  background-color: #F4F4F4;
  font-size: 1.2em;
  padding: 10px;
  margin-top: 20px;
  min-height: 250px;
  margin-bottom: 20px;
}

#Submit {
  position: relative;
}

.notchecked {
  position: absolute;
  right: 0;
  line-height: 150%;
  padding: 10px;
  top: -83px;
  background-color: #ECDEB8;
  color: #353535;
  font-family: 'Questrial', sans-serif;
  width: 400px;
  display: none;
}

.notchecked img {
  position: absolute;
  right: 10px;
  bottom: -15px;
  width: 30px;
}

.formuliercheck {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
}

.right_contact_content {
  width: 40%;
  background: #8BCF97;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right_contact_content h2 {
  text-transform: uppercase;
  font-size: 1.2em;
  color: #fff;
  line-height: 150%;
  letter-spacing: 2px;
  margin-bottom: 5px;
  margin-top: 30px;
  font-family: 'Big John', sans-serif;
}

.right_contact_content h2:first-child {
  margin-top: 0;
}

.right_contact_content p {
  padding: 15px 0;
  letter-spacing: 1px;
  color: white;
}

.right_contact_content a {
  padding: 15px 0;
  letter-spacing: 1px;
  color: white;
}

.openings {
  padding-left: 50px;
}

.openings p {
  margin-top: 10px;
  margin-bottom: 0;
}

.openings h2 {
  margin-bottom: 30px !important;
}

.openings p span {
  min-width: 130px;
  display: inline-block;
}

/* EINDE CONTACT */


/* BLOG DETAIL */

.detailtop {
 width: 100%;
 height: 56.25%;
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
}

.contentblog {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-top: -150px;
  margin-bottom: 50px;
  background-color: #fff;
  padding: 50px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(102,102,102,0.23);
  -moz-box-shadow: 0px 0px 20px 0px rgba(102,102,102,0.23);
  box-shadow: 0px 0px 20px 0px rgba(102,102,102,0.23);
}

.contentblog h1 {
  font-family: 'Big John', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.6em;
  color: #8BCF97;
}

.contenttekst {
  line-height: 150%;
  color: #8e8e8e;
}

.contentblog h2 {
  font-family: 'Big John', sans-serif;
  font-size: 1em;
  color: #707070;
  margin: 30px 0 10px 0;
}

.contentblog img {
  width: 100%;
  margin: 10px 0;
}

.foreword {
  line-height: 150%;
  margin-top: 15px;
  color: #515151;
}

/* EINDE BLOG DETAIL */






#PLCookie {
  width: 100%;
  min-height: 50px;
  position: fixed;
  padding: 0 15px;
  z-index: 1000;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #4f4f4f;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(102,102,102,0.23);
  -moz-box-shadow: 0px 0px 20px 0px rgba(102,102,102,0.23);
  box-shadow: 0px 0px 20px 0px rgba(102,102,102,0.23);
}

#PLCookie article {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 6px;
}

#PLCookie article div {
  float: right;
}

#PLCookie article span {
  display: block;
  padding-top: 6px;
  margin-right: 200px;
}

#PLCookie article div a {
  padding: 10px 15px;
  margin-left: 20px;
  background-color: #fff;
  color: #4f4f4f;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s;
}
#PLCookie article div a:hover {
 background-color: #dbdbdb;
}

@media all and (max-width: 550px) {
  #PLCookie article div {
    float: none;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
  }

  #PLCookie article span {
    display: block;
    padding-top: 6px;
    text-align: center;
    margin-right: 0;
    padding-bottom: 55px;
  }
}