* {
  -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%;
  position: relative;
  font-family: arial;
  scroll-behavior: smooth;
}

.gotofooter {
  cursor: pointer;
}

.centerFlex {
  display: flex;
  justify-content: center;
}

.hoofdtitel {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  margin-top: 80px;
  margin-bottom: 60px;
  color: #222;
}

/* KEYFRAMES */

.come-in {
  transform: translateY(150px);
  animation: come-in 1.5s ease forwards;
}

.come-in:nth-child(odd) {
  animation-duration: 1.5s;
  /* So they look staggered */
}

@keyframes come-in {
  to {
    transform: translateY(0);
  }
}

@media screen and (min-width: 800px) {

  .come-in-left {
    transform: translateX(-300px);
    animation: come-in-left 0.8s ease forwards;
  }

  .come-in-left:nth-child(odd) {
    animation-duration: 1.5s;
    /* So they look staggered */
  }
}

@keyframes come-in-left {
  to {
    transform: translateX(0);
  }
}

@media screen and (min-width: 800px) {
  .come-in-right {
    transform: translateX(300px);
    animation: come-in-right 0.8s ease forwards;
  }

  .come-in-right:nth-child(odd) {
    animation-duration: 1.5s;
    /* So they look staggered */
  }
}

@keyframes come-in-right {
  to {
    transform: translateX(0);
  }
}

/* HOME */
.home_banner {
  width: 100%;
}

.home_banner .slick-arrow {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 45px;
  height: 45px;
  padding: 0;
  background-color: #e77817;
  border-radius: 200px;
  color: white;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 30px;
  border: none;
}

.searchBar {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 42px;
  cursor: pointer;
  z-index: 500;
  background-color: #222;
  color: #e77817;
  font-size: 1.2rem;
}

.home_banner .slick-next {
  right: 10px;
  left: initial;
}

.home_banner article {
  position: relative;
}

.buttonsHome {
  cursor: pointer;
}

.home_banner article img {
  width: 100%;
}

.home_banner article>div {
  position: absolute;
  left: 40px;
  bottom: 40px;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.151);
  padding: 20px;
}

.home_banner article>div div {
  max-width: 500px;
}

.home_banner article h2 {
  font-weight: 700;
  font-size: 2.7em;
  color: white;
  text-shadow: 0px 0px 11px #000000;
}

.home_banner article h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: white;
  text-shadow: 0px 0px 11px #000000;
}

.home_banner article a {
  border-radius: 4px;
  margin-top: 20px;
  color: #cda03a;
  font-size: 20px;
  padding: 12px 30px;
  background-color: #f9f1df;
  display: inline-block;
  transition: all 0.3s;
}

.home_banner article a:hover {
  background-color: #cda03a;
  color: #fff;
}

/*========== Page Header ==========*/

/* Inschrijvings Popup */

.inschrijven_popup {

  position: fixed;
  right: 10px;
  bottom: 10px;
  transition: all 1s;
  background-color: #ffffff;

  z-index: 101;
  right: -1000px;
  right: 0px;
  background-color: #222;
  color: #E77817;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid #E77817;
}

.inschrijven_popup>div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}


.inschrijven_popup>i {
  font-size: 2rem;
  position: absolute;
  right: 12px;
  top: 8px;
  cursor: pointer;
  color: #222;
}

.inschrijven_popup .privholder {
  max-width: 100%;
  margin: auto;
  padding-left: 5px;
}

.inschrijven_popup h2 {
  text-align: center;
  padding: 15px;
  line-height: 25px;
}



/* Einde Inschrijvings Popup */

/* sponsors */

.sponsor_page {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 0;
}

.sponsor_page article {
  width: 23%;
  margin: 1%;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  border: 2px solid #f2f6fa;
}

.sponsor_page article:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.sponsor_page article a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.sponsor_page article img {
  width: 100%;
}

.sponsorbutton {
  margin: 0 auto;
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid #F79330;
  background-color: #fff;
  color: #F79330;
  font-weight: 700;
  margin-bottom: 50px;
  border-radius: 200px;
  transition: all .3s;
}

.sponsorbutton2 {
  margin: 0 auto;
  display: inline-block;
  padding: 15px 40px;
  border: 2px solid #F79330;
  background-color: transparent;
  color: #F79330;
  font-weight: 700;
  MARGIN-top: 2%;
  border-radius: 200px;
  transition: all .3s;
}

.sponsorbutton2:hover {
  background-color: #F79330;
  color: white;
}

.sponsorbutton:hover {
  background-color: #F79330;
  color: white;
}

/* Einde Sponsors */


/* Bevestiging */

.bevestiging_bg {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bevestiging {
  width: 100%;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
  -moz-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
  box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
  max-width: 700px;
  padding: 50px;
  background-color: white;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
}

.bevestiging i {
  font-size: 2em;
  color: #e77817;
  margin-bottom: 1em;
}

.bevestiging h2 {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e77817;
  font-size: 15px;
  margin: 10px 0;
}

.bevestiging h1 {
  font-weight: 700;
  font-size: 2em;
  text-align: center;
  color: #e77817;
  margin-bottom: 10px;
}

.bevestiging p {
  line-height: 150%;
  color: #e77817;
  font-size: 17px;
  font-weight: 200;
}

.bevestiging a {
  cursor: pointer;
  display: inline-block;
  padding: 13px 30px;
  background-color: #e77817;
  border: 1px solid #e77817;
  font-weight: 200;
  color: white;
  margin-top: 20px;
  transition: all 0.8s ease;
  border-radius: 200px;
}

.bevestiging a:hover {
  background-color: transparent;
  color: #e77817;
}

/* Einde Bevestiging*/

/* Cookie Melding */
.plenso_cookies {
  position: fixed;
  left: 10px;
  bottom: 10px;
  background-color: white;
  border-radius: 5px;
  max-width: 400px;
  -webkit-box-shadow: 0px 0 45px -0 rgba(203, 74, 28, 0.15);
  -moz-box-shadow: 0px 0 45px -0 rgba(203, 74, 28, 0.15);
  box-shadow: 0px 0 45px -0 rgba(203, 74, 28, 0.15);
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 25px;
  transition: all .5s;
  z-index: 100;
}

.plenso_cookies>img {
  width: 50px;
}

.plenso_cookies>div {
  color: #3e3e3e;
  padding: 25px 0px;
  line-height: 25px;
  text-align: justify;
  font-size: 16px;
}

.plenso_cookies>div a {
  color: #3e3e3e;
  text-decoration: underline;
}

.plenso_cookies>a {
  background-color: #e77817;
  color: white;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  padding: 18px 30px;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  transition: all .3s;
}

.plenso_cookies>a:hover {
  transform: scale(1.1);
}

/* Einde cookiemelding */

/* GDPR */

#content-container {
  width: 100%;
  max-width: 95%;
  margin: 0 auto;
  margin: auto;
}

#content-container h1 {
  width: 100%;
  text-align: center;
  font-size: 3em;
  font-weight: 700;
  color: #e77817;
  margin-bottom: 20px;
  margin-top: 150px;
}


#content-container h2 {
  color: #e77817;
  font-size: 2.4em;
  font-weight: bold;
  margin-bottom: 1em;
  margin-top: 1em;
  cursor: pointer;
  padding-left: 15px;
}

#content-container h3 {
  background: #e77817;
  color: #fff;
  font-family: arial;
  font-size: 1.3em;
  padding: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-top: 20px;
}

#content-container h3 span {
  position: absolute;
  z-index: 1;
  background: transparent url("/images/cross_w.png") no-repeat;
  display: inline-block;
  width: 15px;
}

#content-container h4 {
  margin-left: 2em;
  font-size: 1.1em;
  font-weight: bold;
}

#content-container p {
  padding: 20px;
  line-height: 170%;
  color: #7e7e7e;
  font-size: 1.2em;
}

#content-container ul {
  margin-left: 3em;
}

#content-container table {
  width: 100%;
}

#content-container a {
  color: #e77817;
  font-weight: 700;
}

#gdpr-wrapper {
  min-height: 100%;
  position: relative;
}

#content-container thead {
  background-color: #4C4C4C;
  color: #fff;
}


#content-container thead th {
  border: 1px solid #353535;
  padding: 10px;
}

#content-container tbody td {
  border: 1px solid #353535;
  color: #7e7e7e;
  line-height: 150%;
  padding: 5px;
}

#content-container tbody td p {
  padding: 0px;
}

#content-container ul {
  padding-left: 20px;
  line-height: 170%;
  color: #7e7e7e;
  list-style-type: disc;
}

/* Einde GDPR */

/*========== Page Header ==========*/
.page_header2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 10px;
}

.page_header2 h1 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
}

.page_header2 h2 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #e77817;
}

.page_header2>div {
  font-size: 24px;
  font-weight: 200;
  color: #353535;
  text-align: center;
  line-height: 170%;
}

.page_header2>div a {
  color: #36A9E0;
  font-weight: 700;
  text-decoration: none;
}

.page_header2>a {
  font-size: 17px;
  border-radius: 50px;
  margin-top: 20px;
  display: inline-block;
  color: #ffffff;
  padding: 15px 30px;
  background-color: #000035;
}

/*======= Einde Page Header =======*/

/* Curtaindrop */

.curtain-click {
  cursor: pointer;
  color: #e77817;
}

.res-curtain-click {
  display: none;
}

.res-menu_buttons {
  display: none;
  align-items: baseline;
  width: 85px;
  justify-content: space-between;
}

.curtaindrop {
  width: 100%;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  /* display: none; */
  position: fixed;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, .4);
}

.curtaindrop>video {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 100%;
  min-width: 100%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.curtaindrop>div {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  background-position: center;
  background-size: cover;
  background-color: rgba(58, 58, 58, 1);
}

.curtaindrop>div>div:last-child {
  position: absolute;
  left: 50%;
  width: 95%;
  max-width: 1000px;
  color: #fff;
  z-index: 200;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  -moz-transform: translateY(-50%) translateX(-50%);
  -o-transform: translateY(-50%) translateX(-50%);
}

.curtaindrop .button {
  display: inline-block;
  background: #e77817;
  color: #fff;
  border: 2px solid #e77817;
  border-radius: 200px;
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 20px;
  padding: 10px 30px;
  transition: all .2s;
}

.curtaindrop .button:hover {
  background: transparent;
  color: #e77817;
}

.curtaindrop p {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.26);
  font-size: 1.6em;
  line-height: 1.6em;
}

.curtaindrop img {
  max-width: 1000px;
  width: 96%;
}

.curtaindrop h2 {
  font-weight: 900;
  font-size: 4em;
  margin: 1em 0;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.26);
}

.curtaindrop>span {
  position: absolute;
  left: -123px;
  top: 0;
  display: block;
  width: 0;
  height: 0;
  border-right: 18px solid transparent;
  border-top: 34px solid #92C020;
  border-left: 18px solid transparent;
}

.curtaindrop>span>i {
  font-style: normal;
  position: absolute;
  right: 20px;
  cursor: pointer;
  color: #92c020;
  width: 300px;
  overflow: hidden;
  top: -34px;
  display: block;
  height: 34px;
  line-height: 34px;
  text-align: right;
}

.curtaindrop>span:before {
  position: absolute;
  top: -38px;
  cursor: pointer;
  left: -17px;
  height: 34px;
  line-height: 34px;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  width: 36px;
  display: block;
  text-align: center;
  content: '!';
}

.curtain-close {
  position: absolute;
  right: 40px;
  top: 30px;
  font-size: 60px;
  cursor: pointer;
  color: #000;
  z-index: 5;
}


/* Einde Curtaindrop */

/* Navigatie */

.res-nav {
  width: 400px;
  height: 100vh;
  position: fixed;
  right: -400px;
  top: 0;
  z-index: 1000;
  overflow: auto;
  transition: all .3s;
  background-color: #fff;
}

.res-footer {
  position: absolute;
  bottom: 0;
  background-color: #222;
  width: 100%;
  padding: 5px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.res-footer a {
  color: #999;
  font-size: 12px;
}

.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: #000;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.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: 125px;
  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: #000;
  font-weight: 700;
  font-size: 1.3em;
  padding-bottom: 10px;
  transition: all .3s;
}

.navitem a:hover {
  border-bottom: 2px solid #e77817;
}

.navitem .active {
  color: #e77817 !important;
  border-bottom: 2px solid #e77817;
}

.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;
}

.menubtn:hover {
  transform: scale(1.05);
}

.navigatie {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222;
  z-index: 10;
  padding: 10px;
  transition: all .4s;
  border-bottom: 3px solid #db7d35;
}


.inner_topnav {
  width: 100%;
  background-color: #e77817;
  height: 31px;
  display: flex;
  justify-content: flex-end;
  padding: 9px 30px 0 30px;
  position: fixed;
  top: 0;
  z-index: 100;
}

.inner_topnav a {
  color: #FFF;
  text-decoration: none;
  margin-right: 15px;
  font-size: 12px;
  font-weight: 700;
}

.inner_topnav a i {
  margin-right: 5px;
}

.navigatie>div {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1600px;
  padding: 10px;
  border-bottom: none;
}

.navigatie nav a {
  font-weight: 700;
  padding: 5px 42px 5px 0;
  color: white;
  font-size: 14px;
  transition: all .3s;
}

.navigatie nav a:hover {
  color: #e77817;
}

.navigatie nav a:focus {
  border: none;
}

.navigatie nav a:last-of-type {
  padding-right: 0px;
}

.navigatie nav .active {
  color: #e77817;
}

.fixedheader {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  margin-top: 0px;
  padding: 0 10px;
}

.logo {
  width: 250px;
}

.special_header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-top: 230px;
  padding-bottom: 150px;
}

.special_header div {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 1000px;
  font-size: 1.4em;
}

.special_header h1 {
  color: white;
  position: relative;
  z-index: 1;
  font-size: 3em;
}

.special_header_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, .4);
}

/* Einde navigatie */

/* Tickertape */

.tickertape {
  width: 100%;
  height: 65vh;
  background-color: transparent;
  position: relative;
  font-style: italic;
  border: none !important;
  background-image: url('/images/tickertape.jpeg');
  background-position: 50%;
}

.tickertape_overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.tickertape>h1 {
  text-align: center;
  width: 100%;
  padding-top: 55px;
  font-family: arial;
  font-weight: 500;
}

.tickertape p {
  color: #FFF;
  font-weight: 700;
  font-size: 46px;
  font-style: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

/* Einde tickertape */

/* Home */

/* Header */

.home_slider {
  position: relative;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.toslide {
  z-index: 1;
}

.home_slider_overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, .4);
}

/* .home_slider article {
  height: 70vh;
} */

.home_slider_content {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  /* position: relative; */
  height: 100%;
}

.home_slider_content img {
  position: relative;
  z-index: 0;
  min-height: 700px;
  min-width: 100%;
  filter: grayscale(100%);
}

.home_slider_content_tekst {
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 55%;
  z-index: 2;
  max-width: 1600px;
  padding: 10px;
  width: 100%;
  transform: translate(-50%, -50%);
}

.home_slider_content_tekst>div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  max-width: 850px;
  width: 90%;
}

.home_slider_content h1 {
  font-weight: 700;
  line-height: 150%;
  font-size: 2.7em;
  color: white;
}

.home_slider_content h2 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1em;
  margin-bottom: 10px;
  color: white;
}

.home_slider_content p {
  color: #FFF;
  line-height: 1.2em;
  margin-top: 10px;
  font-size: 1.2em;
  font-weight: 300;
}

.home_slider_content h2 p {
  font-weight: 500;
  color: #FFF;
  font-size: 1em;
  line-height: 1em;
}

.home_slider_content p strong {
  color: #FFF;
}

.home_slider_content a:not(a.goto) {
  width: min-content;
  background-color: #e77817;
  color: white;
  padding: 5px 20px;
  border: 1px solid #e77817;
  display: flex;
  justify-content: center;
  align-items: center;
  -ms-align-items: center;
  border-radius: 200px;
  display: inline-block;
}

.home_slider_content a.goto {
  width: 100%;
  margin-top: 30px;
  font-weight: 700;
  color: white;
  padding-top: 30px;
  border-top: .5px solid #FFF;
}

.home_slider_content a.goto i {
  transition: all .3s;
  margin-left: 10px;
}

.home_slider_content a.goto:hover i {
  margin-left: 20px;
}

.toslide .slick-arrow {
  position: absolute;
  right: 50px;
  top: 48%;
  font-size: 1.4em;
  color: white;
  background-color: transparent;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
}

.toslide .slick-next {
  top: 52%;
}

.slick-vertical .slick-slide {
  border: none !important;
}

/* Einde Header */

/* Page Header */

.page_header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 100px 10px;
}

.page_header p strong {
  color: #FFF;
}

.page_header h2 {
  font-weight: 300;
  font-size: 25px;
  line-height: 140%;
}

.page_header h1 {
  color: #e77817;
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  padding-bottom: 15px;
}

.page_header div:first-of-type {
  width: 35%;
}

.page_header div:last-of-type {
  width: 60%;
  font-size: 16px;
  line-height: 30px;
  color: #404040;
}

.page_header div:last-of-type ul {
  padding-left: 20px;
  list-style-type: disc;
}

.page_header div:last-of-type p {
  margin: 10px 0;
}

/* Einde Page Header */

/* Home AK */

.home_ak, .home_offerte {
  background-color: #eeeeee;
  padding: 3.1%;
  position: relative;
}

.offerteAanvraag {
  background-color: #e6e6e6;
}

.home_ak_container {
  width: 80%;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
}

.home_ak_container>div {
  width: 48%;
}

.home_ak h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5%;
}

.home_ak p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8em;
  color: #000;
  margin-bottom: 5%;
}

.home_ak a {
  color: #000;
  border: 1px solid #e77817;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  background-color: #FFF;
  padding: 16px 32px;
  text-decoration: none;
  display: block;
  width: fit-content;
}

.home_ak img {
  width: 100%;
}

/* Einde Home AK */

/* Home Offerte*/

.voordelenBlok {
  position: relative;
  padding: 51px 0;
  width: 80%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home_offerte_content {
  width: 56%;
  margin-top: auto;
  margin-bottom: auto;
}

.divAroundImgOfferte img {
  max-width: 281px;
}

.divAroundImgOfferte {
  display: flex;
  justify-content: center;
  width: 46%;
  align-items: flex-start;
}

.home_offerte_content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  padding-bottom: 5%;
}

.home_offerte_content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8em;
  color: #666;
  padding-bottom: 3%;
}

.home_offerte_content a {
  color: #FFF;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  background-color: #e77817;
  border: 2px solid #e77817;
  padding: 16px 32px;
  text-decoration: none;
  display: block;
  width: fit-content;
  transition: all 0.8s ease;
}

.home_offerte_content a:hover {
  background-color: transparent;
  color: #e77817;
}

.home_offerte_voordelen {

  width: 100%;
  padding: 0px 56px 0px 56px;
}

.home_offerte_voordelen h3 {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2%;
}

.home_offerte_voordelen ul {
  padding-left: 30px;
  list-style-position: inside;
  list-style: disc;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.home_offerte_voordelen li {
  color: #000;
  font-weight: 300;
  line-height: 1.8em;
  font-size: 16px;
  width: 50%;
  margin-bottom: 6px;
}

.home_offerte_voordelen li::marker {
  color: #e77817;
  font-size: 1.6rem;
}

.home_offerte2 {
  width: 80%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  padding: 5% 0;
}

.home_offerte2 div:first-child {
  width: 54%;
}

.voordelenBlok .corner {
  position: absolute;
  background: none;
  height: 29px;
  width: 29px;
}

#top-left {
  top: 0;
  left: 0;
  border-top: 5px solid #e77817;
  border-left: 5px solid #e77817;
}

#bottom-right {
  bottom: 0;
  right: 0;
  border-bottom: 5px solid #e77817;
  border-right: 5px solid #e77817;
}


/* Einde Home Offerte*/
.hoofdTitels, .hoofdTitels2, .hoofdTitels4 {
  display: flex;
  justify-content: center;
}

.hoofdTitels h2 {
  margin-top: 70px;
  font-size: 2em;
  font-weight: 800;
  padding-bottom: 9px;
  border-bottom: 5px solid #e77817;
  margin-bottom: 20px;
}

.hoofdTitels h1 {
  margin-top: 47px;
  font-size: 2em;
  font-weight: 800;
  padding-bottom: 9px;
  border-bottom: 5px solid #e77817;
  margin-bottom: 47px;
}

.hoofdTitels2 h2 {
  font-size: 2em;
  font-weight: 800;
  padding-bottom: 9px;
  border-bottom: 5px solid #e77817;
  margin-bottom: 3.4%;
}

/* Blokken */



.blokken {
  display: flex;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
  max-width: 1600px;
  padding: 0 10px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 50px;
  margin-top: 50px;
}

.blokken article {
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 70px;
  width: 100%;
}

.blokken article:last-of-type {
  padding-bottom: 0;
}

.blokken article>img {
  width: 48%;
  order: 1;
}

.blokken_content {
  width: 50%;
  padding: 30px;
  order: 2;
}

.blokken_titel {
  position: relative;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  margin-bottom: 13px;
}

.blokken_titel h2 {
  color: #373131;
  line-height: 150%;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 2em;
}

/* .blokken_tekst {
  line-height: 180%;
  font-weight: 200;
  max-width: 850px;
  color: rgb(110, 110, 110);
  font-size: 1.2em;
  margin-bottom: 20px;
} */

.blokken_tekst {
  line-height: 26px;
  font-weight: 200;
  max-width: 850px;
  color: #463e3e;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.blokken_tekst p>a {
  color: #DBB957;
}

/* 
.blokken_content>a {
  padding: 10px 0;
  display: inline-block;
  margin-top: 5px;
  color: #353535;
  font-weight: 700;
  font-size: 1.2em;
} */


.blokken_content>a {
  padding: 10px 0;
  display: inline-block;
  margin-top: 5px;
  color: #e77817;
  font-weight: 700;
  font-size: 1.2em;
}

.blokken_content>a i {
  margin-left: 5px;
  transition: all .5s;
}

.blokken_content>a:hover i {
  margin-left: 10px;
}

.blokken article:nth-child(odd) img {
  order: 3;
}


/* Einde Blokken */

/* Laatste nieuws */

.laatste_nieuws {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 61px 0;
}

.laatste_nieuws>h2 {
  font-size: 2em;
  font-weight: 800;
  padding-bottom: 9px;
  border-bottom: 5px solid #e77817;
  margin-bottom: 34px;
  padding-top: 4%;
}

.laatste_nieuws>div {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}

.laatste_nieuws>a {
  font-weight: 300;
  font-size: 20px;
  color: #404040;
  border-bottom: 2px solid #e77817;
  padding-bottom: 10px;
  margin-top: 30px;
}

.laatste_nieuws article {
  width: 23%;
  margin: 1%;
  border-radius: 4px;
  border: #f6f6f6 2px solid;
  overflow: hidden;
  position: relative;
}

.laatste_nieuws article>img {
  width: 100%;
}

.laatste_nieuws article h2 {
  font-size: 17px;
  min-height: 34px;
  color: #463e3e;
}

.laatste_nieuws article>a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.laatste_nieuws article button {
  font-weight: 300;
  font-size: 20px;
  border: none;
  background-color: transparent;
  padding: 0;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.iconArrowRight {
  font-size: 0.8rem;
  font-weight: 400;
  padding-left: 10px;
  color: #000;
}

.laatste_nieuws article button img {
  margin-left: 20px;
}

.laatste_nieuws article>div {
  padding: 15px;
}

/* Einde laatste nieuws */

/* Einde Home*/

/* Outsourcing */

.outsourcings {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
  margin-top: 50px;
}

.outsourcings .outsourcing {
  width: 31.33%;
  position: relative;
  box-shadow: 0px 2px 40px 0px rgb(0 0 0 / 10%);
  padding: 33px 30px;
  margin-bottom: 30px;
}

.outsourcings .outsourcing h3 {
  color: #000;
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 30px;
  min-height: 20px;
}

.outsourcings .outsourcing .content {
  margin-bottom: 50px;
}

.outsourcings .outsourcing p {
  line-height: 150%;
  font-weight: 200;
  font-size: 18px;
  color: #4C4C4C;
}

.outsourcings .outsourcing strong {
  color: #666;
}

.hoofdtitel2 {
  font-size: 35px;
  text-align: center;
  font-weight: 700;
  margin-top: 80px;
  margin-bottom: 60px;
  color: #222;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hoofdtitel2 h2 {
  width: fit-content;
  padding-bottom: 9px;
  border-bottom: 5px solid #e77817;
}

.outsourcings .outsourcing a:not(a.full) {
  color: #e77817;
  font-size: 1em;
  font-weight: 700;
  padding: 10px 0;
  display: inline-flex;
  position: absolute;
  bottom: 20px;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  -ms-align-items: center;
  width: max-content;
  font-weight: 400;
}

.outsourcings .outsourcing a i {
  margin-left: 5px;
  transition: all .5s;
}

.outsourcings .outsourcing a:hover i {
  margin-left: 10px;
}

.outsourcing a.full {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
}

/* Detail */

.outsourcing_detail {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
}

.outsourcing_detail h2 {
  font-size: 26px;
  color: #333;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 40px;
}

.outsourcing_detail p {
  padding-bottom: 1em;
  color: #666;
  line-height: 1.7em;
}

.outsourcing_detail p strong {
  color: #666;
}

.outsourcing_detail a {
  color: #FFF;
  border: 2px solid #e77817;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  background-color: #e77817;
  padding: 16px 32px;
  display: block;
  width: fit-content;
  transition: all 0.8s ease;
}

.outsourcing_detail a:hover {
  background-color: transparent;
  color: #e77817;
}

.outsourcing_detail .outsourcing_text {
  width: 50%;
}

.outsourcing_img {
  width: 40%;
}

.outsourcing_img img {
  width: 100%;
}

/* einde detail */

/* einde Outsourcing */

/* Jobs */

/* Filters */

.filters {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 20px auto;
  padding: 10px;
}

/* Einde filters */

.vacatures {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 0 10px
}

.vacatures .vacature {
  padding: 20px;
  width: 31.33%;
  transition: all 1s;
  box-shadow: 0 5px 15px 0 rgb(0 0 0 / 13%);
  border-radius: 10px;
  margin: 1%;
  margin-bottom: 30px;
  position: relative;
  background-color: white;
}

.vacatures .vacature_info {
  margin-bottom: 50px;
}

.vacatures .vacature .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.vacatures .vacature:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.vacatures .vacature h3 {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  padding-bottom: 10px;
  line-height: 1em;
}

.vacatures .vacature i {
  margin-right: 6px;
}

.vacatures .vacature p {
  color: #4c4c4c;
  line-height: 1.7em;
}

.vacatures .vacature a {
  padding-top: 20px;
  color: #e77817;
  display: block;
}

.vacatures .vacature a.goto {
  position: absolute;
  bottom: 20px;
}

.vacatures .vacature a.full {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
}

/* Detail */

.vacature_row {
  display: flex;
  margin-top: 40px;
  margin-bottom: 50px;
}

.vacature_detail {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.vacature_detail h2 {
  margin-top: 80px;
  margin-bottom: 30px;
  font-size: 30px;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
}

.vacature_detail .heading p {
  color: #666;
  line-height: 1.7em;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 40px;
}

.vacature_detail .heading p strong {
  color: #666;
}

.vacature_detail .kwalificaties {
  padding: 30px;
  color: #222;
  line-height: 1.7em;
  /* border-bottom: 2px solid #eee; */
  width: 45%;
  order: 2;
  border-left: 2px solid #EEE;
}

.vacature_detail .kwalificaties strong {
  color: #e77817;
}

.vacature_detail .kwalificaties h2 {
  margin-top: 0;

}

.vacature_detail .kwalificaties ul {
  width: 100%;
}

.vacature_detail .kwalificaties li {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.vacature_detail .kwalificaties li:not(:last-of-type) {
  margin-bottom: 10px;
}

.vacature_detail .kwalificaties li span:first-of-type {
  width: calc(50% - 15px);
}

.vacature_detail .kwalificaties li span:nth-of-type(2) {
  width: 50%;
}

.vacature_detail .kwalificaties li span i {
  margin-right: 10px;
  background-color: #e77817;
  color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -ms-align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 200px;
  font-size: 14px;
}

.vacature_detail .inhoud {
  margin-top: 20px;
  padding-right: 30px;
  width: 90%;
}

.vacature_detail .inhoud p {
  padding-bottom: 1em;
  color: #666;
  line-height: 1.7em;
}

.vacature_detail .inhoud a {
  color: #e77817;
}

.vacature_detail .inhoud p strong {
  color: #666;
}

.vacature_detail .inhoud ul {
  list-style-type: disc;
  padding-bottom: 1em;
  padding-left: 20px;
}

.vacature_detail .inhoud ul li {
  color: #666;
  line-height: 1.7em;
}

/* Einde detail */
#colorAroundSollicitatie {
  background: #eeeeee;
  padding-bottom: 4%;
}

.hoofdTitels4 h2 {
  margin-top: 80px;
  font-size: 2em;
  font-weight: 800;
  padding-bottom: 9px;
  border-bottom: 5px solid #e77817;
  margin-bottom: 49px;
}

/* einde Jobs */

/* Blog*/

.blog-img img {
  width: 100%;
}

.blog-head {
  text-align: left;
  line-height: 180%;
  position: relative;
}

.blog-head .c {
  width: 100%;
  color: #505050;
}

.blog-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  margin-top: 30px;
}

.footermar-blog {
  padding-bottom: 50px;
}

.blog-item {
  position: relative;
}

.blog-item a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.blog-rows {
  margin-top: 1%;
}

.blog-row {
  display: flex !important;
  flex-wrap: wrap;
  margin-bottom: 1%;
}

.blog-row:last-child {
  margin-bottom: 0;
}

.blog-row .row-block {
  width: 49.5%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.row-block:not(:nth-child(2n)) {
  margin-right: 1%;
}

.blog-row.type-b .row-block {
  margin: 0;
  width: 100%;
}

.blog-row.reverse .row-block:first-child {
  order: 2;
  margin-left: 1%;
  margin-right: 0%;
}

.blog-row .extra .blog-item {
  width: 48.979591836734693877551020408163%;
}

.blog-row .extra .blog-item:not(:nth-child(2n)) {
  margin-right: 2.0408163265306122448979591836735%;
}

.blog-rows .blog-main .blog-item {
  width: 100%;
}

.blog-row .extra .blog-item:nth-child(n+3) {
  margin-top: 2.0408163265306122448979591836735%;
}

.blog-rows .blog-inhoud {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 15px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.58);
  color: #fff;
}

.blog-rows .blog-inhoud h2 {
  font-weight: 700;
  text-align: left;
  line-height: 125%;
}

.blog-rows .blog-main .blog-inhoud h2 {
  font-size: 1.4em;
}

.blog-rows .extra .blog-inhoud h2 {
  font-size: 1.2em;
}

.blog-row.type-c .row-block {
  margin-right: 0;
  width: 100%;
}

.type-c .combo-img {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
}

.type-c.reverse .combo-img .big {
  order: 2;
}

.type-c .combo-img>* {
  width: 50%;
}

.type-c .combo-img .big img {
  width: 100%;
}

.type-c .combo-img .small {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.type-c .combo-img .small img {
  width: 50%;
}

.button-hold {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.button-hold:last-child {
  margin-bottom: 0px;
}

.button-hold a {
  display: inline-block;
  border: 2px solid #e77817;
  padding: 15px 20px;
  background-color: transparent;
  cursor: pointer;
  font-weight: 700;
  color: white;
  background-color: #e77817;
  transition: all 0.8s ease;
}

.button-hold a:hover {
  background-color: transparent;
  color: #e77817;
}

/**
 * Blog detail
 **/
.blog-holder {
  display: flex;
  margin-top: 60px;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.blog-aside {
  padding: 30px;
  width: 400px;
  margin-right: 50px;
  -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);

}

.blog-main {
  width: calc(100% - 350px);
}

.blog-main .c {
  font-size: 1.1em;
  color: #a4a4a4;
  padding: 0;
  line-height: 180%;
}

.blog-item .c {
  font-size: 1.1em;
  color: #a4a4a4;
  padding: 0 15px;
  line-height: 180%;
}

.blog-recent .blog-item .c {
  padding: 0 !important;
}

.blog-main .blog-img {
  position: relative;
  width: 100%;
}

.blog-main .blog-img .h1 {
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 180%;
  color: #e77817;
  font-size: 2.1em;
}

.blog-aside h3 {
  font-weight: 700;
  color: #e77817;
  font-size: 1.5em;
  text-align: left;
  margin-bottom: 25px;
}

.blog-nav nav {
  border-top: 1px solid rgb(220, 220, 220);
  margin-bottom: 60px;
}

.blog-nav a {
  line-height: 40px;
  width: 100%;
  display: block;
  border-bottom: 1px solid rgb(220, 220, 220);
  color: rgb(100, 100, 100);
  padding-left: 8px;
}

.blog-nav a:hover, .blog-nav a.active {
  color: #e77817;
}

.blog-nav-btn {
  display: none;
  text-align: center;
  padding: 10px 0;
  font-size: 3.2em;
  color: #e77817;
  cursor: pointer;
}

.blog-recent h2 {
  font-size: 1.2em;
  margin-top: 10px;
  line-height: 150%;
  margin-bottom: 10px;
  color: #626572;
}

.blog-recent .c {
  margin-bottom: 10px;
  line-height: 180%;
  color: #999999;
}

.blog-recent .blog-item {
  margin-bottom: 35px;
}

.blog-recent .more {
  font-weight: bold;
  color: #e77817;
}

.blog-overzicht {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
}

.blog-overzicht .blog-item a {
  position: static;
}

.blog-overzicht .btn-hold {
  padding: 15px;
  text-align: left;
}

.blog-overzicht .btn-hold a {
  display: inline-block;
  padding: 15px 20px;
  background-color: transparent;
  font-weight: 700;
  border: 2px solid #e77817;
  color: #e77817;
  transition: all 0.5s ease;
}

.blog-overzicht .btn-hold a:hover {
  background-color: #e77817;
  color: #fff;
}

.blog-overzicht h2 {
  font-size: 1.3em;
  padding: 0 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #626572;
}

.blog-overzicht .blog-item {
  width: 48%;
  margin: 1%;
  -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 1s;
}

.blog-overzicht .blog-item:hover {
  transform: scale(1.03);
}

.blog-overzicht .blog-item:nth-child(n+6) {
  width: 32%;
  margin-bottom: 2%;
}

.blog-overzicht .blog-item:nth-child(n+6) .c, .blog-overzicht .blog-item:nth-child(n+6) .btn-hold {
  display: none;
}

.blog-overzicht .blog-item:nth-child(n+6):not(:nth-child(3n+5)) {
  margin-right: 2%;
}

.blog-content-row {
  margin-bottom: 30px;
}

.merk-content .blog-content-row {
  margin-bottom: 1.33%;
}

.blog-content-row h2 {
  font-size: 1.2em;
  line-height: 150%;
  color: #626572;
  margin-top: 40px;
  margin-bottom: 20px;
}

.blog-content-row h3 {
  font-size: 1em;
  line-height: 150%;
  color: #626572;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-content-row .c {
  width: 100%;
  margin: 0 auto;
}

.blog-content-row .multi-img-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
}

.blog-content-row .multi-img-holder.two>* {
  width: 49%;
}

.blog-content-row .multi-img-holder.three>* {
  width: 32.33%;
}

.blog-content-row .multi-img-holder.four>* {
  width: 24%;
}

.blog-content-row .multi-img-holder>a img {
  width: 100%;
}

.blog-content-row .filmpje {
  max-width: 1000px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.blog-content-row .tekst-and-image {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}

.blog-content-row .tekst-and-image>* {
  width: 50%;
}

.blog-content-row .tekst-and-image .c {
  padding: 0 20px;
}

.blog-content-row .tekst-and-image.reverse .img {
  order: 2;
}

.blog-content-row a {
  color: #e77817
}

.blog-content-row ul {
  list-style-type: disc;
}

.blog-content-row ul li {
  margin-left: 20px;
  line-height: 1.7em;
}

.title-hold {
  text-align: center;
  margin-bottom: 36px;
}

.title-hold h3 {
  margin-top: 30px;
  padding-top: 30px;
  color: #626572;
  border-top: 3px solid #ececec;
  font-size: 1.5em;
  font-weight: bold;
}

/* Einde Blog */

/* Solliciteren */

.sollicitatie_formulier {
  max-width: 1080px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
  background-color: #fff;
  padding: 50px;
}


.sollicitatie_form {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* .contact_label {
  width: 100%;
  font-size: 1.2em;
  font-weight: 200;
  color: #353535;
  display: inline-block;
  margin-bottom: 5px;
  } */

.labelcv {
  border: 2px solid #fff;
  background-color: #fff;
  color: #7f7f7f;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .9em;
  width: 100%;
  cursor: pointer;
}


.labelcv i {
  margin-right: 10px;
}

.inputcv {
  display: none;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile+label {
  font-size: .9em;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7f7f7f;
  background-color: #E8E8E8;
  width: 100%;
  padding: 15px;
  display: inline-block;
  margin-bottom: 20px;
}

.inputfile:focus+label,
.inputfile+label:hover {
  background-color: #dedede;
}

.inputfile+label {
  cursor: pointer;
  /* "hand" cursor */
}

.inputfile:focus+label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label * {
  pointer-events: none;
}

.sollicitatie_form input[type=text],
.sollicitatie_form input[type=email],
.sollicitatie_form input[type=number] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #EEEEEE;
  padding: 8px 0px;
  color: #000;
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 40px;
  font-family: arial;
}

.sollicitatie_formulier .diensten {
  width: 100%;
  margin-bottom: 15px;
  font-family: arial;
  color: #000;
  font-size: 18px;
  font-weight: 200;
}

.sollicitatie_formulier p label {
  font-family: arial;
  color: #000;
  font-size: 18px;
  font-weight: 200;
  margin-left: 10px;
}

.sollicitatie_form select {
  width: 48%;
  border: none;
  border-bottom: 2px solid #EEE;
  padding: 8px 0;
  color: #000;
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 40px;
  font-family: arial;
  background-color: #fff;
}

.sollicitatie_form input[type=text]:focus,
.sollicitatie_form input[type=email]:focus,
.sollicitatie_form input[type=number]:focus {
  border-bottom: 2px solid #e77817;
  font-weight: 400;
}

.sollicitatie_form textarea {
  border: none;
  width: 100%;
  border-bottom: 2px solid #EEEEEE;
  border-radius: 0px;
  padding: 10px 0px;
  color: #000;
  margin-bottom: 20px;
  font-weight: 200;
  font-size: 18px;
  font-family: arial;
  height: 100px;
}

.sollicitatie_form textarea:focus {
  border-bottom: 2px solid #e77817;
  font-weight: 400;
}

.sollicitatie_form input[type=submit] {
  border-radius: 200px;
  padding: 10px 40px;
  background: transparent;
  border: 2px solid #e77817;
  font-weight: 200;
  color: #e77817;
  font-size: 1.2em;
  font-weight: 200;
  font-family: arial;
  transition: all .3s;
}


.sollicitatie_form input[type=submit]:hover {
  background-color: #e77817;
  color: #fff;
}

.sollicitatie_form input[type=submit]:disabled {
  background: transparent;
  color: #000;
  opacity: 0.3;
  border: 2px solid #000;
}

.sollicitatie_formulier #NaamInput {
  width: 48%;
}

.sollicitatie_formulier #EmailInput {
  width: 100%;
}

/* Einde solliciteren */

/* Over ons */

.oplossingen {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.oplossing_ov {
  width: 50%;
  background-color: transparent;
  background-image: linear-gradient(50deg, #e77817 30%, #c73e3e 100%);
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  padding: 80px;
}

.oplossing_ov>h2 {
  font-weight: 300;
  color: white;
  font-size: 60px;
  line-height: 90px;
  width: 100%;
  text-align: right;
}

.oplossing_ov ul {
  padding: 50px 0 0 0;
}

.oplossing_ov ul li {
  display: flex;
  padding: 18px 0;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

.oplossing_ov ul .active>div:last-of-type,
.oplossing_ov ul li:hover {
  font-size: 25px !important;
  font-weight: 400;
}

.oplossing_ov ul li>img {
  display: none;
}

.oplossing_ov ul .activeOplossing>img,
.oplossing_ov ul li:hover img {
  display: block;
}


.oplossing_ov ul li>div:first-of-type {
  width: 70px;
  color: white;
  font-size: 30px;
}


.oplossing_ov ul li>div:last-of-type {
  color: white;
  font-size: 20px;
  min-width: 300px;
  line-height: 130%;
}


.oplossing_det {
  width: 50%;
}

.oplossing_det>div {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
}

.oplossing_det>div h2 {
  font-size: 30px;
  color: #404040;
  font-weight: 700;
  margin-bottom: 40px;
  color: #e77817;
}

.oplossing_det>div h3 {
  font-size: 5em;
  color: #DDD;
  font-weight: 700;
}

.oplossing_det>div>div {
  font-weight: 300;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: -0.05em;
  margin-bottom: 50px;
  color: #666;
}

.oplossing_det>div>a {
  font-weight: 300;
  font-size: 20px;
  color: #404040;
  border-bottom: 2px solid #E53323;
  padding-bottom: 10px;
}

.overons-team {
  width: 100%;
}

.overons {
  max-width: 1400px;
  margin: 3em auto;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  justify-content: space-evenly;
  position: relative;
  margin-bottom: 9em;
  line-height: 160%;
  margin-top: 1.5em;
}

.overons-lid {
  width: 40%;
  text-align: center;
  cursor: pointer;
}

.overons-lid img {
  width: 100%;
  /* -webkit-box-shadow: 10px 10px 14px 3px #65809e3b;
  -moz-box-shadow: 10px 10px 14px 3px #65809e3b;
  box-shadow: 10px 10px 14px 3px #65809e3b; */
}

.overons-info {
  margin-top: 1em;
  border-radius: 5px;
  padding: 10px;
}

.overons-info h2 {
  font-size: 1.4em;
  font-weight: 500;
  margin-bottom: 10px;
  color: #e77817;
  letter-spacing: 2px;
}

.overons .banner-arrow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  transition: all .3s;
  cursor: pointer;
}

.overons .banner-arrow a {
  width: 30px;
  height: 30px;
  border-radius: 200px;
  background-color: #e77817;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  color: #fff;
  font-size: .8em;
}

.overons .banner-arrow a i {
  font-size: 16px;
  transition: all 0.8s ease;
}

.arrowUp {
  transform: rotate(180deg);
}

.overons-info div {
  font-size: 1.1em;
  width: 100%;
  margin-top: 1em;
  line-height: 140%;
  color: #4C4C4C;
  line-height: 170%;
  font-weight: 200;
  text-align: left;
}

.overons-info div p {
  margin-bottom: 15px;
}

.overons-info div p strong {
  color: #e77817;
  font-weight: 600;
}

.overons-info div a {
  color: #e77817;
  font-weight: 600;
}

/* Einde over ons */

/* Contact Pagina */

.contact_image {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.contact_image img {
  width: 100%;
}

.contact_pagina {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 10px 0 10px;
  margin-top: 50px;
}

.contact_info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #e77817;
  padding: 80px 80px;
  margin-top: 20px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.contact_info p {
  font-size: 20px;
  font-weight: 200;
  color: #252525;
}

.contact_gegevens {
  width: 35%;
}

.contact_gegevens h1 {
  font-weight: 900;
  color: #e77817;
  margin-bottom: 20px;
  font-size: 2em;
}

.contact_gegevens h2 {
  font-size: 18px;
  font-weight: 200;
  color: #353535;
  line-height: 150%;
}

.contact_split {
  margin-top: 60px;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact_split h2 {
  font-weight: 700;
  color: #fff;
  font-size: 25px;
  margin-bottom: 25px;
  line-height: 130%;
}

.contact_split div {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.contact_split div p {
  padding: 10px;
  padding-left: 50px;
  position: relative;
  color: #fff;
}

.contact_split div p a {
  color: #fff;
}

.contact_split div p i {
  position: absolute;
  left: 0;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  color: #fff;
  transform: translateY(-50%);
}

.contact_split img {
  width: 100px;
  border-radius: 200px;
  margin-right: 20px;
}

.contact_formulier {
  width: 55%;
  margin-top: 80px;
}

.contact_form {
  display: flex;
  justify-content: space-between;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact_label {
  width: 100%;
  font-size: 1.2em;
  font-weight: 200;
  color: #353535;
  display: inline-block;
  margin-bottom: 5px;
}

.contact_form input[type=text],
.contact_form input[type=email] {
  width: 100%;
  border: none;
  border-bottom: 2px solid #EEEEEE;
  padding: 8px 0px;
  color: #e77817;
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 40px;
  font-family: arial;
}

.contact_form select {
  width: 100%;
  border: none;
  border-bottom: 2px solid #EEE;
  padding: 8px 0;
  color: #e77817;
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 40px;
  font-family: arial;
}

.contact_form input[type=text]:focus,
.contact_form input[type=email]:focus {
  border-bottom: 2px solid #e77817;
  font-weight: 400;
}

.contact_form textarea {
  border: none;
  width: 100%;
  border-bottom: 2px solid #EEEEEE;
  border-radius: 0px;
  padding: 10px 0px;
  color: #e77817;
  margin-bottom: 20px;
  font-weight: 200;
  font-size: 18px;
  font-family: arial;
  height: 100px;
}

.contact_form textarea:focus {
  border-bottom: 2px solid #e77817;
  font-weight: 400;
}

.contact_form input[type=submit] {
  border-radius: 4px;
  padding: 10px 40px;
  background: transparent;
  border: 2px solid #e77817;
  font-weight: 200;
  color: #e77817;
  font-size: 1.2em;
  font-weight: 200;
  font-family: arial;
  transition: all .3s;
}


.contact_form input[type=submit]:hover {
  background-color: #e77817;
  color: #fff;
}

.contact_form input[type=submit]:disabled {
  background: transparent;
  color: #000;
  opacity: 0.3;
}

.contact_formulier #NaamInput {
  width: 100%;
}

.contact_formulier #EmailInput {
  width: 100%;
}

#dasmap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  height: 600px;
  position: relative;
  z-index: 0;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* Einde Contact Pagina */

/* footer */

footer {
  background-color: #222;
}

footer .socials {
  padding: 2%;
  padding-top: 50px;
  width: 500px;
  margin: 0 auto;
}

footer .socials h3 {
  font-size: 22px;
  color: #FFF;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 2%;
  text-align: center;
}

footer .socials .iconen {
  display: flex;
  margin: 0 auto;
  width: 120px;
}

footer .socials .iconen a {
  border: 1px solid #e77817;
  border-radius: 50px;
  height: 32px;
  width: 32px;
  margin-right: 8px;
  color: #FFF;
  position: relative;
  font-size: 16px;
}

footer .socials .iconen i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inner_footer {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  width: 80%;
  margin: 0 auto;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 50px 0;
  flex-wrap: wrap;
}

.inner_footer>div {
  width: 21%;
}

.inner_footer .logo img {
  width: 100%;
}

.inner_footer h4 {
  color: #E77817;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 10px;
  line-height: 1em;
}

.inner_footer .menu ul {
  list-style-type: none;
}

.inner_footer .menu ul li {
  margin-bottom: .5em;
}

.inner_footer .menu ul li::before {
  content: "\2022";
  color: #e77817;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

.inner_footer .menu a {
  color: #999;
  font-weight: 300;
  font-size: 14px;
}

.inner_footer .gegevens p {
  color: #999;
  margin-bottom: 1em;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7em;
}

.inner_footer .contact {
  display: flex;
  flex-direction: column;
}

.inner_footer .contact a {
  color: #999;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7em;
}

.disclaimer {
  background-color: #222;
  padding: 25px 0;
}

.disclaimer .privacy {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  margin: 0 auto;
}

.disclaimer p, .disclaimer a, .disclaimer span {
  color: #666;
  font-size: 12px;
}

.disclaimer span {
  margin: 0 10px;
}

@keyframes pulse {
  0% {
    color: #393939;
  }

  5% {
    color: #e77817;
  }

  10% {
    color: #393939;
  }

  20% {
    color: #e77817;
  }

  21% {
    color: #393939;
  }

  50% {
    color: #393939;
  }

  100% {
    color: #393939;
  }
}

.withlove i {
  animation: pulse 4s infinite;
}

/* einde footer */


/* Responsive */

@media screen and (max-width: 1600px) {
  .home_banner {
    width: 90%;
  }
}

@media screen and (max-width: 1350px) {
  .home_slider_content {
    max-height: initial;
  }

  .home_slider_content img {
    height: 700px;
    min-height: initial;
    min-width: initial;
  }

  .home_slider {
    max-height: 70%;
  }

  .home_slider article {
    height: 70vh;
  }

  .page_header2 h1 {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 1300px) {
  .blog-overzicht .blog-item {
    width: 98%;
  }
}

@media screen and (max-width: 1250px) {
  .navigatie nav a {
    padding: 5px 25px 5px 0;
  }

  .home_slider_content_tekst {
    top: 70%;
  }

  .home_slider {
    max-height: 66%;
  }

  .home_slider article {
    height: 66vh;
  }
}

@media screen and (max-width: 1200px) {
  .blog-overzicht .blog-item:nth-child(n+6) h2 {
    font-size: 1.6em;
  }

  .blog-content-row .tekst-and-image>* {
    width: 100%;
  }

  .blog-content-row .tekst-and-image .img {
    margin: 15px auto;
    max-width: 500px;
  }

  .home_banner, .blokken, .in_beeld {
    width: 95%;
  }

  .contact_pagina {
    padding: 25px 10px;
  }

  .contact_gegevens {
    margin-bottom: 20px;
    padding: 30px 10px;
  }

  .contact_gegevens, .contact_formulier {
    width: 100%;
    padding: 0 10px;
  }

  .contact_gegevens h1, .contact_gegevens h2 {
    text-align: center;
  }

  .contact_gegevens>div {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    margin-top: 20px;
  }

  .contact_split div {
    padding: 20px;
  }

  #dasmap {
    margin-top: 15px;
    height: 400px;
  }

  .contact_gegevens>div a {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
  }

  .contact_split img {
    display: none;
  }

  .contact_split div {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
  }
}

@media screen and (max-width: 1150px) {
  .page_header h1 {
    font-size: 40px;
  }

  .navigatie nav a {
    padding: 5px 15px 5px 0;
  }

  .page_header2 .c {
    width: 80%;
  }

  .page_header2>h2 {
    font-size: 15px;
  }
}

@media screen and (max-width: 1100px) {
  .blokken_titel h2 {
    font-size: 1.7em;
  }

  .blokken_tekst {
    font-size: 1.2em;
  }

  .blokken_content {
    padding: 10px;
  }

  .page_header {
    flex-wrap: wrap;
    padding: 30px 10px;
  }

  .page_header h1 {
    padding-bottom: 5px;
  }

  .page_header h2,
  .page_header h1 {
    line-height: 120%;
  }

  .page_header div:first-of-type {
    width: 100%;
    margin-bottom: 20px;
  }

  .page_header div:last-of-type {
    width: 100%;
  }

  .home_offerte_voordelen {
    width: 100%;
    padding: 0px 0px 0px 45px;
  }

  .voordelenBlok {
    width: 100%;
  }
}

@media screen and (max-width: 1070px) {
  .menubtn {
    display: block;
  }

  .fixedheader {
    position: fixed !important;
  }

  .navigatie>div {
    border-bottom: none !important;
    padding: 0 !important
  }

  .navigatie nav {
    display: none;
  }

  .special_header {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .nav_home {
    top: 0;
  }


}

@media screen and (max-width: 1050px) {
  .contact-form, .location {
    width: 49%;
  }

  .location {
    margin-left: 2%;
    margin-right: 0;
  }

  .contacteer-ons {
    width: 60%;
    float: left;
  }

  .home_banner .slick-arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .page_header2 h1 {
    font-size: 2.2em;
  }

  .oplossingen {
    flex-wrap: wrap;
  }

  .oplossing_det {
    width: 100%;
  }

  .oplossing_ov {
    width: 100%;
    padding: 30px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .oplossing_ov ul {
    padding-top: 20px;
  }

  .oplossing_ov>h2 {
    text-align: left;
  }

  .oplossing_det>div {
    max-width: 100%;
    padding: 60px 30px 30px 30px;
  }

  .oplossing_det>div h3 {
    top: 0;
  }

  .sollicitatie_formulier #NaamInput, .sollicitatie_formulier select {
    width: 100%;
  }

  .vacature_detail .heading {
    padding-left: 30px;
  }

  .vacature_row {
    flex-direction: column;
  }

  .vacature_detail .kwalificaties {
    width: 100%;
    order: 1;
  }

  .vacature_detail .inhoud {
    width: 100%;
    padding-left: 30px;
    order: 2;
  }
}


@media screen and (max-width: 1000px) {
  .blog-holder {
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .home_offerte_voordelen h3 {
    margin-bottom: 4%;
  }

  .blog-aside {
    order: 2;
    width: 100%;
    margin-right: 0;
  }

  .home_offerte2 {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    padding: 5% 9px;
    width: 100%;
  }

  .blog-main {
    width: 100%;
    padding: 10px;
  }

  .row-block .extra {
    padding: 10px;
  }

  .blog-aside h3 {
    width: 100%;
  }

  .hoofdTitels2 h2 {
    margin-bottom: 5%;
  }

  .blog-recent {
    display: none;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }

  .blog-recent .blog-item {
    width: 45%;
  }

  .outsourcings .outsourcing {
    width: 48%;
  }
}

@media screen and (max-width: 980px) {
  .laatste_nieuws {
    padding-top: 0px;
  }

  .home_ak_container {
    max-width: 100%;
    width: 100%;
  }

  .home_offerte_voordelen {
    margin-bottom: 30px;
  }

  .home_offerte_content {
    padding: 20px;
  }

  .home_ak_container {
    flex-wrap: wrap;
  }

  .home_ak_container>div {
    width: 100%;
  }

  .home_ak a {
    margin-bottom: 5%;
  }

  .home_offerte {
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
  }

  .home_offerte_content {
    width: 100%;
    margin-bottom: 5%;
  }

  .home_offerte_voordelen {
    width: 100%;
  }

  .outsourcing_detail {
    flex-wrap: wrap;
  }

  .outsourcing_detail .outsourcing_text {
    width: 100%;
    padding: 50px;
  }

  .outsourcing_detail .outsourcing_img {
    width: 100%;
    padding: 80px;
    padding-top: 0;
  }

  .home_offerte {
    padding-top: 0;
  }
}

@media screen and (max-width: 950px) {
  .laatste_nieuws>div {
    flex-wrap: wrap;
  }

  .laatste_nieuws article {
    width: 48%;
  }

  #content-container h1 {
    font-size: 2.5em;
    margin-bottom: 60px !important;
  }

  #content-container h2 {
    font-size: 1.8em;
  }

  .curtaindrop p {
    font-size: 1.2em;
    line-height: 1.4em;
  }

  .curtaindrop h2 {
    font-weight: 600;
    font-size: 1.8em;
  }

  .curtain-close {
    font-size: 30px;
  }

  .curtaindrop .button {
    font-size: 17px;
    padding: 12px 30px;
  }

  .curtain-click {
    left: 0;
    top: 0;
    font-size: 16px;
    color: #000;
    justify-content: flex-start;
    padding-left: 15px;
  }

  .curtain-click i {
    font-size: 17px;
  }
}

@media screen and (max-width: 900px) {
  .home_slider_content img {
    height: 500px;
  }

  /* .home_slider_content_tekst {
    top: 45%;
    } */

  .home_slider_content h2 {
    font-size: .9em;
  }

  .home_slider_content h1 {
    font-size: 2.1em;
  }

  .toslide .slick-arrow {
    right: 15px;
    top: 50%;
  }

  .toslide .slick-next {
    top: 56%;
  }

  .sponsor_page article {
    width: 31.33%;
  }

  .home_slider {
    max-height: 56%;
  }

  .home_slider article {
    height: 56vh;
  }

  .oplossing_ov>h2 {
    font-size: 40px;
  }

  .overons {
    flex-direction: column;
    max-width: 100%;
  }

  .overons-lid {
    width: 90%;
    margin: auto;
  }

  .overons-lid:first-of-type {
    margin-bottom: 2em;
  }

  .overons-lid img {
    width: 70%;
  }
}

@media screen and (max-width: 850px) {
  .blokken article>img {
    width: 100%;
  }

  .blokken_content {
    width: 100%;
    padding: 0;
  }

  .page_header2 h1 {
    font-size: 2.1em;
  }

  .page_header2 .c {
    font-size: 20px;
  }

  .home_banner article>div div {
    display: none;
  }

  .blokken article {
    padding-bottom: 30px;
  }

  .blokken article:nth-child(odd) img {
    order: 1;
  }

  .vacatures .vacature {
    width: 48%;
  }

  .inner_footer>div {
    width: 100%;
  }

  .inner_footer h4 {
    text-align: center;
  }

  .inner_footer p {
    text-align: center;
  }

  .inner_footer a {
    text-align: center;
  }

  .inner_footer>.logo {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .divAroundImgOfferte img {
    max-width: 249px;
  }


}

@media screen and (max-width: 800px) {
  .blog-rows .blog-main .blog-inhoud h2 {
    font-size: 1.6em;
  }

  .blog-content-row .multi-img-holder.four>*, .blog-content-row .multi-img-holder.three>* {
    width: 49%;
  }

  .blog-content-row .multi-img-holder.four>*:nth-child(-n+2) {
    margin-bottom: 2%;
  }

  .blog-content-row .multi-img-holder.three>*:last-child {
    display: none;
  }

  .page_header2.home {
    padding-top: 60px;
  }
}

@media screen and (max-width: 750px) {
  .home_slider {
    max-height: 45vh;
  }

  .home_slider article {
    height: 45vh;
  }

  .home_slider_content h2 {
    font-size: .8em;
    width: 100%;
    text-align: center;
    display: none;
  }

  .home_slider_content p {
    display: none;
  }

  .home_slider_content h1 {
    font-size: 2.5em;
    width: 100%;
    text-align: center;
  }

  .outsourcings .outsourcing {
    width: 100%;
  }

  .home_slider_content_tekst {
    top: 65%;
  }
}

@media screen and (max-width: 700px) {
  .blog-row .row-block, .blog-row.type-b .row-block {
    width: 100%;
    margin-bottom: 4.0816326530612244897959183673469%;
  }

  .row-block:not(:nth-child(2n)) {
    margin-right: 0;
  }

  .blog-row.reverse .row-block:first-child {
    margin-left: 0;
  }

  .blog-row {
    margin-bottom: 0;
  }

  .page_header h1 {
    font-size: 25px;
  }

  .page_header h2 {
    font-size: 18px;
  }

  .outsourcing_detail .outsourcing_text {
    padding: 20px;
  }

  .outsourcing_detail .outsourcing_img {
    padding: 25px;
    padding-top: 0;
  }

  .overons-lid img {
    width: 90%;
  }

  .overons-info div {
    font-size: 1em;
    text-align: left;
  }

  .logo {
    width: 200px;
  }
}

@media screen and (max-width: 650px) {
  .laatste_nieuws>h2 {
    font-weight: 300;
    font-size: 40px;
    color: #404040;
    margin-bottom: 50px;
  }

  #content-container h1 {
    font-size: 2.1em;
  }

  .home_offerte_voordelen ul {
    flex-direction: column;
  }

  .home_banner, .blokken, .in_beeld {
    width: 96%;
  }

  .home_banner .slick-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .home_offerte_voordelen h3 {
    margin-bottom: 4%;
  }

  #content-container h2 {
    font-size: 1.5em;
  }

  .home_offerte2 {
    flex-direction: column;
  }

  .home_offerte2 div:first-child {
    width: 100%;
  }

  .divAroundImgOfferte {
    width: 100%;
    padding-bottom: 4%;
  }

  .ticertape {
    height: 40vh;
  }

  .tickertape p {
    font-size: 30px;
  }

  .hoofdtitel {
    font-size: 30px;
  }

  .page_header2 h1, .contact_gegevens h1 {
    font-size: 1.9em;
  }

  .page_header2 .c {
    font-size: 18px;
  }

  .page_header2 .line {
    margin: 20px auto;
  }
}

@media screen and (max-width: 600px) {
  .home_slider_content a {
    text-align: center;
    display: none;
  }

  .home_slider_content h1 {
    font-size: 1.5em;
  }

  .sponsor_page article {
    width: 48%;
  }

  .page_header2 h1, .contact_gegevens h1 {
    font-size: 1.7em;
  }

  .page_header2 .c {
    font-size: 18px;
    width: 95%;
  }

  .home_slider_content_tekst>div {
    width: 100%;
  }

  .blog-more-nav-btn {
    display: block;
  }

  .blog-more-nav {
    display: none;
  }

  .vacatures .vacature {
    width: 100%;
  }

  .laatste_nieuws {
    padding: 40px 0;
  }

  .laatste_nieuws article {
    width: 100%;
  }

  .laatste_nieuws article:nth-of-type(n+3) {
    display: none;
  }
}

@media screen and (max-width: 580px) {
  .outsourcings .outsourcing h3 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 530px) {
  .laatste_nieuws article button {
    font-size: 18px;
  }

  .oplossing_ov ul li {
    font-size: 14px;
  }

  .oplossing_ov ul .active>div:last-of-type {
    font-size: 20px;
  }

  .oplossing_ov ul li>div:last-of-type {
    min-width: 250px;
  }
}

@media screen and (max-width: 550px) {
  .curtain-click {
    justify-content: flex-start;
    padding-left: 15px;
  }
}

@media screen and (max-width: 530px) {
  .outsourcings .outsourcing h3 {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 500px) {
  .bevestiging {
    padding: 30px;
  }

  .bevestiging h1 {
    font-size: 1.5em;
  }

  #content-container h1 {
    font-size: 1.8em;
  }

  .menu-is-open {
    right: 0;
  }

  .home_slider_content img {
    height: 400px;
  }

  .inner_footer>.logo {
    width: 75%;
  }

  footer .socials {
    width: 100%;
  }

  .disclaimer .privacy {
    flex-direction: column;
  }

  .disclaimer .privacy span {
    display: none;
  }

  .disclaimer .privacy p, .disclaimer .privacy a {
    margin-bottom: 5px;
  }

  .inschrijven_popup {
    right: 10px !important;
    left: 10px;
    display: block;
  }

  .inschrijven_popup img {
    display: none;
  }

  .inschrijven_popup>i {
    font-size: 2rem;
    right: 10px;
    top: 10px;
    cursor: pointer;
  }
}

@media screen and (max-width: 450px) {
  .vacature_detail .kwalificaties {
    padding: 30px 10px;
  }

  .vacature_detail h2 {
    font-size: 25px;
  }

  .vacature_detail .inhoud {
    padding-left: 10px;
    padding-right: 10px;
  }

  .page_header2 {
    padding: 40px 20px;
  }

  .page_header2 h1, .contact_gegevens h1 {
    font-size: 1.5em;
  }

  .page_header2 h2 {
    font-size: 14px;
  }

  .page_header2 .c {
    font-size: 17px;
  }
}

@media screen and (max-width: 400px) {
  .blog-main .blog-img .h1 {
    font-size: 1.6em;
  }

  .res-nav {
    width: 100%;
  }

  .laatste_nieuws>h2 {
    font-size: 40px;
  }
}




/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.cf:after {
  clear: both;
}

/**
  * For IE 6/7 only
  * Include this rule to trigger hasLayout and contain floats.
  */
.cf {
  *zoom: 1;
}