* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
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 {
 padding:0;
 height:100%;
 max-width: 2000px;
 margin: 0 auto;
 font-family: 'Montserrat', sans-serif;
}

.topper {
  background-color: #f2a04c;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 30px;
  line-height: 150%;
  font-size: 1.2em;
  margin-bottom: 20px;
  position: relative;
  padding-top: 50px;
  display: none;
}

.closer {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  cursor: pointer;
}

.bannertext {
  max-width: 880px;
  padding: 0 10px;
  text-align: center;
  margin: 0 auto;
  color: #f3f3f3;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.bannertext strong {
  font-weight: 700;
  font-size: 1.1em;
  color: white;
}

.bannertext h2 {
  font-size: 1.5em;
  color: white;
  font-weight: 700;
  text-align: center;

  letter-spacing: 1px;
  margin-bottom: 20px;
  width: 100%;

}

.innerfooter {
  margin: 0 auto;
  background-color: #d9e0e6;
  box-sizing: border-box;
  padding: 20px 0;
  padding-top: 30px;
}

.innerfooter ul {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  box-sizing: border-box;
}

.footer-item {
  padding: 20px;
  display: flex;
  color: #383838;
  font-size: 1.2em;
  justify-content: space-between;
  box-sizing: border-box;
}

.footer-item>div {
  position: relative;
  padding-left: 50px;
  margin: auto;
}

.footer-item>div>div:first-child {
  position: absolute;
  left: 0;
  width: 50px;
}

.footer-item > div > div:nth-child(2) {
  width: auto;
}

.footer-item i {
  display: block;
  font-size: 1.2em;
  margin-bottom: 15px;
}

.footer-item p {
  margin-bottom: 21px;
}

.footer-item a {
  color: #383838;
}

.tickertape {
  text-align: center;
  padding: 30px 0;
  width: 80%;
  margin: auto;
  padding-bottom: 60px;
}

.tickertape p {
  font-size:40px;
  font-weight: 600;
  color: #0485c1;
  line-height: 120%;
}

/* SLIDER */

.slider {
  width: 100%;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  display: block;
}

.slider article {
  position: relative;
}

.slider article img {
  width: 100%;
}

.slider_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(0,131,191,.8);
}

.slider_content {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider_content h2 {
  font-size: 2em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: white;
  text-align: center;
  line-height: 150%;
}

.slider_content div {
  text-align: center;
  color: white;
  font-size: 1.4em;
  line-height: 150%;
}

.slider_content .verlof {
  text-align: center;
  color: white;
  font-size: 2.2em;
  text-transform: uppercase;
  margin-top: 80px;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 140%;
}
/* EINDE SLIDER */


/* Contact */

.team {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.team article {
  width: 18%;
  margin: 1%;
  padding: 10px;
  background-color: white;
}

.team article img {
  width: 100%;
  margin-bottom: 10px;
}

.team article h2 {
  width: 100%;
  font-size: .9em;
  text-align: center;
  background-color: white;
  padding: 5px;
}

.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: flex-start;
  align-items: flex-start;
  padding: 60px 10px;
  width: 100%;
  margin: 0 auto;
  background-color: white;
  flex-wrap: wrap;
  transform: translateY(-20%);
  max-width: 1400px;
  border: 2px solid #eeeeee;
}


.contact_info h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0485C1;
}

.contact_info p {
  color: #4B4B4B;
  font-size: 1.2em;
  text-align: left;
  margin-top: 15px;
  font-weight: 200;
}

.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 {
  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;
  border: 2px solid #eeeeee;
}

.contact_gegevens {
  width: 28%;
  margin-left: 2%;
  background-color: white;
}

.contact_gegevens img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.contact_gegevens>div {
  padding: 25px;
}

.contact_gegevens div h2 {
  color: #C1A65C;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contact_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%;
}

.contact_gegevens div div p {
  width: inherit;
}

.contact_form_holder {
  width: 100%;
  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_holder>div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
  flex-wrap: wrap;
}

.contactslider {
  width: 100%;
}

.contactslider .slick-arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: rgba(0,0,0,.5);
  border-radius: 200px;
  color: white;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border: none;
}

.contactslider .slick-next {
  right: 10px;
  left: initial;
}

#dasmap {
  width: 50%;
  height: 587px;
}

.contact_form, .complaint_form {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 48%;
}

.contact_form_holder>div > div {
  width: 30%;
}

.contact_form_holder>div > div h2 {
  font-weight: 700;
  font-size: 1.3em;
  color: #42AC6F;
  margin-bottom: 10px;

}

.contact_form_holder>div > div img {
  width: 100%;
}

.hideField {
  display: block;
}

.complaint_form {
  display: none;
}

#NaamInput {
  width: 48%;
}

#EmailInput {
  width: 100%;
}

.contact_form input[type=text], 
.contact_form input[type=email],
.contact_form select,
.complaint_form input[type=text],
.complaint_form input[type=email] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #F4F4F4;
  padding: 10px;
  color: #353535;
  font-size: 1.2em;
  font-weight: 200;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
}

.contact_form select {
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  border: 2px solid #F4F4F4;
  cursor: pointer;
  background-image: url(/images/select.png);
}

.contact_form textarea {
  width: 100%;
  border: 2px solid #F4F4F4;
  border-radius: 0px;
  padding: 10px 10px;
  color: #A8A8A8;
  margin-bottom: 20px;
  font-weight: 200;
  font-size: 1.2em;
  font-family: Poppins, sans-serif;
  height: 300px;
}

.contact_form input[type=submit] {
  border-radius: 200px;
  padding: 10px 40px;
  background-color: transparent;
  border: 2px solid #0485C1;
  font-weight: 200;
  color: #0485C1;
  font-size: 1.2em;
  font-weight: 200;
  font-family: Poppins, sans-serif;
  transition: all .3s;
}


.contact_form input[type=submit]:disabled, .complaint_form input[type=submit]:disabled{
  background-color: #e8e8e8;
  border: 2px solid #e8e8e8;
  color: #909090;
}

.contact_form input[type=submit]:disabled:hover, .complaint_form input[type=submit]:disabled:hover {
  background-color: #e8e8e8;
  border: 2px solid #e8e8e8;
  color: #909090;
}

.contact_form input[type=submit]:hover, .complaint_form input[type=submit]:hover {
  background-color: #0485C1;
  color: #fff;
}

#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%;
}

.contact_aandachtskader {
  width: 1200px;
  border: 2px solid #42AC6F;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  margin-bottom: 5rem;
  position: relative;
}

.contact_aandachtskader h2 {
  color: #42AC6F;
  position: absolute;
  top: -1.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  background-color: white;
  padding: 1rem;
}

.contact_aandachtskader p {
  color: #ababab;
  text-align: center;
  font-size: 1.2em;
  line-height: 170%;
}

.openingsuren {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  border: #dadada 2px solid;
  margin-bottom: 30px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.openingsuren article {
  width: 33.33%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
}

.openingsuren article h2 {
  font-size: 25px;
  font-weight: 700;
  color: #0485C1;
  margin-bottom: 10px;
}

.openingsuren article h3 {
  font-size: 20px;
}

/* Einde Contact */


.diensten {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.diensten article {
  width: 48%;
  margin: 1%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  background-repeat: no-repeat;
  -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);
}

.diensten article:hover img {
  transform: scale(1.1);
}

.diensten article>a>div {
  position: relative;
} 

.diensten article img {
  width: 100%;
  z-index: 0;
  position: relative;
  transition: all 1s;
}

.dienstoverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0,0,0,.2);
  z-index: 1;
}

.diensten article h2 {
  text-align: left;
  width: 100%;
  font-weight: 700;
  color: #0083BF;
  font-size: 1em;
  text-transform: uppercase;
  z-index: 1;
  position: relative;
  letter-spacing: 2px;
  padding: 15px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  width: 100%;
  align-items: center;
}


.diensten article h2 span, .diensten article h2 a {
  background-color: #0083BF;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  color: white;
  align-items: center;
  font-size: .8em;
  padding: 10px;
  font-weight: 400;
}

.diensten article h2 span i, .diensten article h2 a i {
  margin-right: 5px;
  font-size: 1.2em;
}

.images {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 120px;
}

.images img {
  width: 23%;
  margin: 1%;
  cursor: zoom-in;
  -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);
  transition: all .5s;
}

.images img:hover {
  transform: scale(1.05);
}

/* HOME */
.text {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 20px;
  padding-bottom: 20px;
}

.text h2, .text h1 {
  color: #383838;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.text div {
  font-size: 1.3em;
  line-height: 150%;
  color: #bbbbbb;
  text-align: center;
}

/* EINDE HOME */

.header {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  min-height: 100px;
}

.header > div {
  background-color: white;
  border-radius: 200px;
  width: 300px;
  height: 300px;
  padding: 30px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  margin-top: 0;
  transform: translate(-50%, -32%);
  position: absolute;
  top: 0;
  left: 50%;
}

.header article i {
  margin: 0 10px;
}

.header select {
  background-color: transparent;
  border: 0;
  color: #0083BF;
  padding-right: 40px;
  background-image: url(/images/arrowdown.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.header article a {
  color: #0083BF;
  font-size: 1.2em;
}

.header img {
  width: 100%;
  margin-top: 45px;
}

/* REALISATIES */

.realisaties {
  margin: 0 auto;
  display: block;
  max-width: 1400px;
  padding-bottom: 30px;
}

.realisaties article {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

.realisaties article:hover img {
  transform: scale(1.05);
}

.realisaties article div {
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.25);
  -moz-box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.25);
  box-shadow: 0px 0px 22px 0px rgba(0,0,0,0.25);
}

.realisaties article img {
  width: 100%;
  transition: all 1s;
}

.realisaties article h2 {
  padding: 10px;
  background-color: white;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 1.2em;
  color: #4E4E4E;
  min-height: 60px;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  letter-spacing: 1px;
}

/* EINDE REALISATIES */

/* BLOKKEN */
.blokken_content {
  width: 100%;
  padding: 20px 0;
  background-color: white;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.blokken_row {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 10px;
}

.blokken_img_left {
  width: 55%;
  position: relative;
}

.blokken_text_right {
  width: 42%;
  padding: 20px;
  position: relative;
  z-index: 3;
}

.imageholder {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 15px 0;
}

.blokken_img_left img {
  width: 100%;
  margin-left: 20px;
  -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);
}

.slider article {
  overflow: hidden;
  max-height: 80vh;
}

.blokken_img_left_bg {
  position: absolute;
  width: 80%;
  height: 100%;
  z-index: 1;
  top: -60px;
  right: -25%;
  background-image: url(/images/cirkel.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.blokken_text_right h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5em;
  color: #383838;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}

.blokken_text_right>a {
  color: #fff;
  background-color: #0083BF;
  padding: 13px 20px;
  border-radius: 200px;
  display: inline-block;
  font-size: .9em;
  letter-spacing: 1px;
  margin-top: 30px;
  transition: all .3s;
  font-weight: 700;
  padding-bottom: 10px;
}

.blokken_txt a {
  font-weight: 700;
  color: #353535;
}

.blokken_txt ul {
  padding-left: 20px;
  list-style-type: disc;
}

.blokken_text_right>a i {
  transition: all .5s;
}

.blokken_text_right>a:hover i {
  margin-left: 5px;
}

.blokken_txt {
  line-height: 170%;
  font-size: 1.1em;
  color: #919191;
}

.blokken_row:nth-child(2n) .blokken_img_left  {
  order: 2;
}

.blokken_row:nth-child(2n) .blokken_text_right  {
  order: 1;
}

.blokken_row:nth-child(2n) .blokken_img_left_bg2  {
  left: inherit;
  right: -30px;
}

.blokken_row:nth-child(2n) .imgholder {
  padding-right: 10px;
}

.blokken_row:nth-child(2n) .blokken_img_left_bg {
  left: -25%;
  right: inherit;
}

/* EINDE BLOKKEN */


/* BANNER */
.banner {
  display: flex;
  justify-content:center;
  width: 100%;
  background-color: #F2F6FA;

}

.banner>div {
  width: 50%;
  
}

.banner>div:first-child {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.banner>div:first-child div {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #F2F6FA;
  width: 170px;
  z-index: 1;
  transform: skewX(-20deg) translateX(50%);
}

.banner>div:last-child {
  padding: 70px 0;
  padding-left: 30px;
  position: relative;
  z-index: 2;
}

.banner>div:last-child h2 {
  color: #383838;
  letter-spacing: 2px;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 150%;
  text-transform: uppercase;
}

.banner>div:last-child div {
  max-width: 700px;
  line-height: 150%;
  color: #A3A3A3;
  font-size: 1.1em;
}

.banner>div:last-child a {
  background-color: #0083BF;
  color: #fff;
  border-radius: 200px;
  padding: 14px 35px;
  display: inline-block;
  font-size: .9em;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 30px;
  transition: all .3s;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(0,131,191,.31);
  -moz-box-shadow: 0px 0px 22px 0px rgba(0,131,191,.31);
  box-shadow: 0px 0px 22px 0px rgba(0,131,191,.31);
}

.banner>div:last-child a:hover {
  color: white;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(0,131,191,1);
  -moz-box-shadow: 0px 0px 22px 0px rgba(0,131,191,1);
  box-shadow: 0px 0px 22px 0px rgba(0,131,191,1);
}
/* EINDE BANNER */

/* INSTAGRAM */
.instagram {
 width: 100%;
 max-width: 1400px;
 margin: 0 auto;
 display: flex;
 justify-content: center;
 -ms-align-items: center;
 align-items: center;
 flex-direction: column; 
 padding: 70px 0 10px 0;
}

.instagram h2 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
}

.instagram h2 span {
  background-color: white;
  padding: 10px;
  position: relative;
  z-index: 1;
  color: #383838;
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.instagram h2 div {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px; 
  z-index: 0;
  background-color: #383838;
  transform: translateY(-50%);
}

.instagram_imgs {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
}

.instagram_imgs article {
  width: 23%;
  margin: 1%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.instagram_imgs article:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}


/* EINDE INSTAGRAM */


.bevestiging_bg {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/images/bevestiging.jpg);
}

.bevestiging {
  padding: 50px;
  -webkit-box-shadow: 0px 2px 22px 0px rgba(212,212,212,0.35);
  -moz-box-shadow: 0px 2px 22px 0px rgba(212,212,212,0.35);
  box-shadow: 0px 2px 22px 0px rgba(212,212,212,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  background-color: white;
  border-radius: 10px;
}

.bevestiging i {
  margin-bottom: 20px;
  font-size: 3em;
  color: #0485C1;
}

.bevestiging h2 {
  color: #a8a8a8;
  text-transform: uppercase;
  font-size: 1.1em;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.bevestiging h1 {
  color: #353535;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.7em;
  line-height: 150%;
  max-width: 600px;
  margin-bottom: 5px;
}

.bevestiging p {
  color: #a8a8a8;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  margin-top: 5px;
  margin-bottom: 25px;
}

.bevestiging div {
  font-size: 1.2em;
  font-weight: 200;
  max-width: 800px;
  line-height: 150%;
  margin-bottom: 20px;
}

.bevestiging a {
  color: #fff;
  transition: all .3s;
  padding: 10px 30px;
  font-weight: 700;
  background-color: #0485C1;
  cursor: pointer;
  border: 2px solid #0485C1;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}

.bevestiging a:hover {
  background-color: transparent;
  color: #0485C1;
}


.personen {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.personen img {
  width: 100%;
}


footer {
  background-color: #F2F6FA;
  width: 100%;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

footer a {
  background-color: #F4811F;
  width: 45px;
  height: 45px; 
  -webkit-box-shadow: 0px 0px 22px 0px rgba(244,130,31,.31);
  -moz-box-shadow: 0px 0px 22px 0px rgba(244,130,31,.31);
  box-shadow: 0px 0px 22px 0px rgba(244,130,31,.31);
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 1.2em;
  color: white;
  border-radius: 200px;
  margin: 0 10px;
  transition: all .3s;
}

footer a:hover {
  -webkit-box-shadow: 0px 0px 22px 0px rgba(244,130,31,.71);
  -moz-box-shadow: 0px 0px 22px 0px rgba(244,130,31,.71);
  box-shadow: 0px 0px 22px 0px rgba(244,130,31,.71);
}

.siteby {
  background-color: #E2E2E2;
  color: #A3A3A3;
  text-align: center;
}

.siteby a {
  color: #A3A3A3;
  padding: 10px;
  display: inline-block;
}

.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); }
}


#bannerBg{
  padding-bottom: 60px;
  background:url(preview_images/responsive/opportuneResponsive.jpg) center top no-repeat;
}
#containingDiv {
  max-width: 960px;
  width:100%;margin:0 auto; padding:0 0 0 0;
}
#bottomText {
  width:100%; font:18px 'Lato', sans-serif; color:#333333; border-top:1px solid #cccccc; padding:10px 0 0 0; margin-top:100px; text-align:center;
}

@media screen and (min-width:1200px){
  #bannerBg{
    background:url(preview_images/responsive/opportuneResponsive.jpg) center top no-repeat;
  }
  #containingDiv {
    width:960px;margin:0 auto; padding:0px 0 0 0;
  }
  #bottomText {
    width:100%; font:18px 'Lato', sans-serif; color:#333333; border-top:1px solid #cccccc; padding:10px 0 0 0; margin-top:100px; text-align:center;
  }
}

@media screen and (max-width:767px){
  #bannerBg {
    background:url(preview_images/responsive/opportuneResponsive767.jpg) center top no-repeat;
  }
  #containingDiv {
    width:100%;margin:0 auto;padding:60px 0 0 0;
  }
  #bottomText {
    width:100%;font:14px 'Lato', sans-serif; color:#333333; border-top:1px solid #cccccc; padding:10px 0 0 0; margin-top:50px; text-align:center;
  }
}

.mycanvas {
  display: none !important;
}

.thistho {
  -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);
  border-radius: 500px !important;
}

#dd {
  position: relative;
}

#dd h2 {
  position: absolute;
  left: 50%;
  bottom: 10%;
  background-color: white;
  text-transform: uppercase;
  padding: 5px;
  transform: translateX(-50%);
  font-family: 'Mallanna', sans-serif;
  letter-spacing: 2px;
  color: black;
  font-size: 1.2em;
  text-align: center;
}
#dd h2 span {
  color: #5E5E5E;
  font-weight: 400;
  font-size: .9em;
  padding-top: 5px;
}

.insta-preview {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}

.instaholder h2 {
  text-align: center;
  width: 100%;
  font-weight: 700;
  font-size: 1.7em;
  color: #A8CE3A;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 25px;
}


.insta-preview a {
  width: 23%;
  margin: 1%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.insta-preview a:before{
  content: "";
  display: block;
  padding-top: 100%;
}

.instaholder {
  padding: 25px 0;
  background-color: #efefef;
  margin-top: 20px;
}

#content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin: auto;
  margin-top: 10em;
}

#content-container h2 {
  color:#353535; 
  font-size:1.8em; 
  font-weight:bold; 
  margin-bottom: 1em;
  margin-top: 1em;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

#content-container h3 {
  background: #0083BF;
  color: #fff;
  font-size: 1.1em;
  padding: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-top: 20px;
}

#content-container h3 span {
  position: absolute;
  z-index: 1;
  background: transparent url("/images/cross_w.png") no-repeat;
  display: inline-block;
  width: 15px;
}

#content-container h4 {
  margin-left: 2em;
  font-size: 1.1em;
  font-weight: bold;
}

#content-container p {
  padding: 20px;
  line-height: 170%;
  color: #7e7e7e;
  font-size: 1.1em;
}

#content-container ul {
  margin-left: 3em;
}

#content-container table {
  width: 100%;
}

#content-container a {
  color: #0083BF;
  font-weight: 700;
}

#gdpr-wrapper {
 min-height:100%;
 position:relative;
}

#content-container thead {
  background-color: #0083BF;
  color: white;
}


#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;
}

.disclaimer {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 15px;
  color: #515151;
  background-color: #cacaca;
}

.disclaimer a {
  padding: 0 5px;
  color: #515151;
}

@media screen and (max-width: 1300px) {
  .contact_form, .complaint_form {
    width: 100%;
  }

  #dasmap {
    width: 100%;
    margin-top: 20px;
  }
  
.slider_content .verlof {
  margin-top: 20px;
  font-size: 1.7em;
  font-weight: 500;
  line-height: 130%;

}
}

@media screen and (max-width: 1150px) {
  .header {
    position: relative;
  }

  .header > div {
    transform: translate(0,0);
    width: initial;
    height: initial;
    padding: 10px;
  }

  .header > div img {
    width: 180px;
    margin-top: 0;
  }

  .diensten {
    flex-wrap: wrap;
  }
}


@media screen and (max-width: 1100px) {
  .blokken_txt {
    font-size: 1em;
  }

  .blokken_text_right h2 {
    font-size: 1.3em;
  }

  .text div {
    font-size: 1em;
  }

  .openingsuren article {
    width: 100%;
  }
}


@media screen and (max-width: 1000px) {
  .blokken_text_right {
    width: 100%;
  }

  .blokken_row:nth-child(2n) .blokken_img_left {
    order: 2;
  }

  .blokken_img_left {
    order: 2;
    width: 100%;
  }

  .imageholder, .blokken_img_left img {
    transform: initial;
  }

  .blokken_img_left_bg2, .blokken_img_left_bg {
    display: none;
  }

  .blokken_content {
    padding: 10px 0;
  }

  .blokken_row {
    padding: 30px 20px;
  }

  .blokken_img_left img {
    margin-left: 0;
  }

  .blokken_text_right {
    padding: 20px 0;
  }
}

@media screen and (max-width: 980px) {
  .innerfooter ul {
    flex-wrap: wrap;
  }
  .footer-item {
    width: 100%;
  }
}

@media screen and (max-width: 950px) {

  .tickertape {
    width: 90%;
  }
  
  .tickertape p {
    font-size:30px;
  }
  .slider_content {
    width: 90%;
  }

  .slider_content div {
    font-size: 1.1em;
  }

  .diensten article h2 {
    font-size: 1em;
  }

  .header div {
    position: relative;
    left: initial;
  }

  .header article:first-child {
    display: none;
  }

  .footer-item>div>div:first-child {
    display: none;
  }

  .footer-item>div {
    padding-left: 0;
    text-align: center;
  }
}


@media screen and (max-width: 900px) {
  .banner>div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
  }

  .banner {
    flex-wrap: wrap;
  }

  .banner>div:last-child div {
    text-align: center;
  }
}

@media screen and (max-width: 850px) {
  .contact_form_holder {
    padding: 0;
  }
}

@media screen and (max-width: 800px) {

  .slider_content .verlof {
    margin-top: 15px;
    font-size: 1.1em;

  
  }
  .slider_content {
    width: 80%;
  }

  .slider_content h2 {
    font-size: 1.8em;
  }

  .instagram_imgs article {
    width: 31.33%
  }

  #dd h2 {
    display: none;
  }

  .instagram_imgs article:last-child {
   display: none; 
 }
}
@media screen and (max-width: 750px) {
  .text h2, .text h1 {
    font-size: 1.2em;
  }

  .text div {
    font-size: 1em;
  }

}
@media screen and (max-width: 700px) {
  .diensten {
    flex-wrap: wrap;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
  }

  .diensten article {
    width: 95%;
  }

  .contact_info {
    padding: 30px 10px;
    flex-wrap: wrap;
  }

  .contact_info div {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact_info h2 {
    text-align: center;
  }

  .contact_info p {
    text-align: center;
  }

  .contact {
    border: none;
  }

  .contact_form, .complaint_form {
    margin-right: 0;
  }

  .contact_form_holder {
    padding: 20px;
  }

  .tickertape p {
    font-size:25px;
  }
}
@media screen and (max-width: 600px) {
  .slider_content div {
    display: none;
  }

  .slider_content h2 {
    font-size: 1.2em;
  }

  .contact_form select {
    font-size: 1em;
  }

}

@media screen and (max-width: 550px) {
  .topper {
    padding: 50px 0;
  }

  .bannertext {
    font-size: .9em;
  }

  .bannertext h2 {
    font-size: 1.2em;
  }

  .slider_content .verlof {
    margin-top: 15px;
    font-size: 1em;

  }
}

@media screen and (max-width: 500px) {
  .disclaimer {
    flex-direction: column;
    line-height: 150%;
  }

  .disclaimer span {
    display: none;
  }

  .instagram_imgs article {
    width: 48%
  }

  .instagram_imgs {
    flex-wrap: wrap;
  }

  .contact_form input[type=submit] {
    width: 100%;
  }

  .instagram_imgs article:last-child {
   display: block; 
 }



}

