:root {
  --white: #ffffff;
  --light: #f7f8fa;
  --primary: #005b83;
  --secondary: #20232b;
  --tertiary: #606060;
  --quaternary: #b7b7b7;
  --quinary: #dae7ed;
}

/* -- Font weights ---------------------------*/
.text-400 {
  font-weight: 400;
}

.text-600 {
  font-weight: 600;
}

.text-700, strong {
  font-weight: 700;
}

.text-900 {
  font-weight: 900;
}

.display-5 {
  text-wrap: balance;
}

.text-shadow {
  text-shadow: 0 0 .5em rgba(0,0,0,.8);
}

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

body {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--tertiary);
}

.grecaptcha-badge,
.otgs-development-site-front-end {
  display: none;
}

html, body {
  font-size: 14px;
}

@media all and (min-width: 768px) {
  html, body {
    font-size: 15px;
  }
}
@media all and (min-width: 992px) {
  html, body {
    font-size: 16px;
  }
}

/* -- Container -----------------------------*/
@media all and (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
}
@media all and (min-width: 1700px) {
  .container {
    max-width: 1560px;
  }
}

/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none !important;
  box-shadow: none !important;
}

.link--gray {
  color: var(--tertiary);
}
.link--gray:hover {
  color: var(--primary);
}

/* -- Buttons -------------------------------*/
.btn {
  font-weight: 700;
  font-size: 1rem;
  border-radius: 2rem;
  transition: all 0.5s linear;
  padding: 1rem 1.25rem 1rem 1.35rem;
  text-transform: uppercase;
  color: var(--btn-color);
  background: var(--btn-background);
  border: none;
  box-shadow: none;
}
.btn:hover {
  color: var(--btn-color-hover);
  background: var(--btn-background-hover);
}

.btn-lg {
  font-size: 1.125rem;
  border-radius: 2rem;
  transition: all 0.5s linear;
  padding: 1rem 1.25rem 1rem 1.35rem;
}

.btn--qckl {
  font-size: .95rem;
  color: var(--white);
  background: rgba(0,0,0,.1);
}
.btn--qckl:hover {
  color: var(--white);
  background: rgba(0,0,0,.2);
}

.btn i {
  opacity: 0;
  width: 0;
  transition: all 0.25s linear;
}
.btn:hover i {
  opacity: 1;
  width: auto;
  margin-left: 0.25rem;
}

.btn--primary {
  --btn-color: var(--white);
  --btn-color-hover: var(--white);
  --btn-background: var(--primary);
  --btn-background-hover: var(--primary);
}

.btn--secondary {
  --btn-color: var(--white);
  --btn-color-hover: var(--white);
  --btn-background: var(--secondary);
  --btn-background-hover: var(--secondary);
}

.btn--white {
  --btn-color: var(--primary);
  --btn-color-hover: var(--primary);
  --btn-background: var(--white);
  --btn-background-hover: var(--white);
}

.btn-weergaves {
  display: inline-flex;
}

.btn--weergave {
  color: var(--tertiary);
  background: var(--light);
  text-transform: none;
  border: none;
}
.btn--weergave:hover {
  color: var(--tertiary);
  background: var(--quinary);
}

.btn--weergave.active {
  font-weight: 700;
  color: var(--white);
  background: var(--primary);
}

.btn-link,
.btn-link:hover {
  font-weight: 500;
  font-weight: normal;
  color: var(--white);
  text-decoration: none;
}

.btn-link i {
  position: relative;
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  border: 1px solid;
  margin-right: 0.5rem;
  transition: all 0.5s;
}

.btn-link:hover i {
  border: 1px solid;
}

.btn-link:hover i:after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 1px solid;
}

@media all and (min-width: 768px) {
  .btn--qckl {
    font-size: 1rem;
  }
}

/* -- Backgrounds ---------------------------*/
.bcg--white {
  background: var(--white);
} 

.bcg--light {
  background: var(--light);
}

.bcg--primary {
  background: var(--primary);
}

.bcg--secondary {
  background: var(--secondary);
}

.bcg--tertiary {
  background: var(--tertiary);
}

.bcg--quaternary {
  background: var(--quaternary);
}
 
/* -- Colors --------------------------------*/
.text--white {
  color: var(--white);
}

.text--primary {
  color: var(--primary);
}

.text--secondary {
  color: var(--secondary);
}

.text--tertiary {
  color: var(--tertiary);
} 

.text--quaternary {
  color: var(--quaternary);
}

/* -- Forms ---------------------------------*/
input, select, textarea,
input:hover, select:hover, textarea:hover,
input:active, select:active, textarea:active,
input:focus, select:focus, textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

.form-control {
  border: 1px solid var(--white);
  line-height: 1.75;
  background: none;
  color: var(--white);
  border-radius: 1.5rem;
  height: auto;
  padding: 0.5rem 1.25rem;
}

.form-control::-moz-placeholder {
  color: var(--white);
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: var(--white);
  opacity: 1;
}

.form-control::placeholder {
  color: var(--white);
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: var(--white);
}

.form-control::-ms-input-placeholder {
  color: var(--white);
}

.form-control:focus {
  border: 1px solid var(--white);
  background: none;
  color: var(--white);
  box-shadow: none !important;
}

.form-group + .form-group {
  margin-top: 1.5rem;
}

.form-group label {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.bcg--mblue label, .bcg--dblue label {
  color: var(--primary);
}

.wpcf7 .wpcf7-form-control-wrap {
  display: block !important;
}

.wpcf7 .wpcf7-not-valid-tip {
  padding-top: 5px;
  color: #d70842;
  text-align: right;
  display: none;
}

.wpcf7 .wpcf7-not-valid,
.not-valid {
  border-left: 4px solid #d70842 !important;
}

.wpcf7 form .wpcf7-response-output {
  padding: 15px;
  text-align: center;
  margin: 15px 0 0 0;
}

.wpcf7 .invalid .wpcf7-response-output {
  background: var(--white);
  color: #ffb900;
  border: none;
  border-left: 4px solid #ffb900;
}

.wpcf7 .sent .wpcf7-response-output {
  background: var(--white);
  color: #46B450;
  border: none;
  border-left: 4px solid #46B450;
}

.wpcf7 .wpcf7-list-item {
  display: block;
  margin: 0;
}

.wpcf7-list-item-label {
  color: var(--white) !important;
  margin-left: 0.5rem;
}

.wpcf7-list-item label a {
  color: var(--white) !important;
  text-decoration: underline;
}

.wpcf7-list-item label a:hover {
  color: var(--white) !important;
  text-decoration: none;
}

/* -- Images --------------------------------*/
.img-rounded {
  border-radius: 1rem;
}

/* -- Carousel ------------------------------*/
.owl-carousel {
  padding-bottom: calc(50px + 1.75rem);
}

.owl-carousel img {
  width: auto !important;
  height: auto;
  max-width: 100%;
}

.owl-carousel .owl-nav {
  display: inline-flex;
  margin-top: 1.75rem;
  border: 1px solid var(--tertiary);
  border-radius: 2rem;
  gap: .25rem;
  padding: 0 .75rem;
}

.owl-carousel .owl-nav button {
  font-size: 1.25rem;
  color: var(--tertiary);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: none;
  transition: 0.5s;
  cursor: pointer;
}

.owl-carousel .owl-nav button:hover {
  background: none;
  color: var(--tertiary);
}

.owl-carousel .owl-nav button.disabled {
  opacity: 0.5;
}

.owl-carousel .owl-nav button.disabled:hover {
  color: var(--tertiary);
  background: none;
}

.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-animated-out {
  z-index: 1;
}

.owl-animated-in {
  z-index: 0;
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* -- CTA -----------------------------------*/
.cta-wrapper {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
  overflow: hidden;
}
.cta-wrapper ul {
  text-align: right;
  margin: 0;
}
.cta-wrapper ul li + li {
  margin-top: 0.5rem;
}

.cta-wrapper__btn {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--primary);
  border-radius: 0.5rem;
}
.cta-wrapper__btn i {
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: var(--primary);
}
.cta-wrapper__btn span {
  display: none;
  font-weight: 700;
  text-transform: uppercase;
  width: 0;
  color: var(--primary);
  transition: all 0.25s linear;
}
.cta-wrapper__btn:hover span {
  display: inline-block;
  width: auto;
  padding-right: 1.25rem;
}

.cta-wrapper__btn.btn--green {
  color: var(--white);
  background: var(--primary);
}

.cta-wrapper__btn.btn--orange {
  color: var(--white);
  background: var(--secondary);
}

.cta-wrapper__btn.btn--green i,
.cta-wrapper__btn.btn--orange i,
.cta-wrapper__btn.btn--green span,
.cta-wrapper__btn.btn--orange span {
  color: var(--white);
}

@media all and (min-width: 768px) {
  .cta-wrapper {
    top: 35%;
    right: 1rem;
  }
}

/* -- Navbar --------------------------*/
#navbar {
  background: var(--white);
  padding: 1rem 2rem;
}

.navbar-toggler, 
.navbar-toggler:focus, 
.navbar-toggler:hover,
.navbar-toggler:active {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  background: var(--quinary);
  color: var(--secondary);
  outline: none;
  box-shadow: none;
}

.navbar-toggler i {
  font-size: 1.5rem;
}

.navbar-toggler i.fa-bars::before {
  content: "\f00d";
}

.navbar-toggler.collapsed i.fa-bars::before {
  content: "\f0c9";
}

.navbar-collapse {
  padding: 1.5rem 0 0.5rem 0;
}

.navbar__logo {
  width: 220px;
}

#topnav {
  margin: 0;
  align-items: center;
}

#mainnav {
  align-items: center;
}
#topnav li a,
#mainnav > li > a {
  font-weight: 700;
  font-size: 1.35rem;
  padding: 0;
  color: var(--secondary);
  border-bottom: 2px solid transparent;
  transition: all 0.5s;
  text-align: center;
}
#topnav >li > a:hover, #topnav > li > a:focus,
#topnav .active,
#topnav .active:hover,
#mainnav > li > a:hover, #mainnav > li > a:focus {
  color: var(--primary);
}
#mainnav .active > a {
  color: var(--primary);
}
#mainnav .active > a:hover {
  color: var(--primary);
}
#mainnav .dropdown-menu {
  background: var(--quinary);
  border-radius: 0;
  border: none;
  margin-bottom: 1rem;
  padding: 1.5rem 1rem;
  background-clip: padding-box;
}
#mainnav .dropdown-menu a {
  font-weight: 500;
  color: var(--secondary);
  background: none;
  padding: .25rem .5rem;
}
#mainnav .dropdown-menu a:hover, #mainnav .dropdown-menu a.active {
  color: var(--primary);
}

.dropdown-menu[data-bs-popper] {
  left: auto;
  right: 0;
  z-index: 99999;
}

@media all and (min-width: 1200px) {
  .navbar__logo {
    width: 270px;
  }
  
  #navbar {
    padding: 1rem 2rem;
  }

  #navbar .navbar-nav {
    justify-content: end;
  }

  .navbar-collapse {
    padding: 0;
  }
  
  #topnav {
    gap: 1rem;
  }
  
  #topnav li .nav-link {
    padding: 0;
    font-size: clamp(1rem, 0.9167rem + 0.1736vw, 1.125rem);
    font-weight: 600;
    color: var(--tertiary);
    border-bottom: 2px solid transparent;
    transition: color 0.5s;
  }

  #topnav li a:hover {
    color: var(--primary)
  }

  #topnav li.active a,
  #topnav li.active a:hover {
    font-weight: 600;
    color: var(--primary)
  }
  
  #mainnav {
    gap: 1.5rem;
  }

  #mainnav .nav-link {
    font-size: clamp(1.125rem, 0.975rem + 0.3125vw, 1.35rem);
  }
  
  #mainnav .dropdown-menu {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 0;
  }
}

@media all and (min-width: 1320px) {
  .navbar__logo {
    width: 300px;
  }
}

.wpml-ls-item .nav-link {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--tertiary);
  background: #ECEDEF;
  padding: .5rem .75rem .4rem .75rem !important;
  border-radius: .25rem;
}

.wpml-ls-item .dropdown-menu {
  background: #ECEDEF;
  padding: 1rem;
  border: none;
}

.wpml-ls-item .dropdown-menu.show {
    display: flex;
  flex-direction: column;
  gap: .35rem;
}

.wpml-ls-item .dropdown-menu .dropdown-item {
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin: 0 !important;
}


/* -- Masthead ------------------------*/
#masthead {
  position: relative;
  height: 320px;
  background: var(--secondary);
}

.masthead-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(1.75rem, 0.9167rem + 1.7361vw, 3rem);
  z-index: 10;
}


.bcg-text span {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: .5rem .5rem;
}

.masthead-inner__btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 2rem;
  transition: all 0.5s linear;
  padding: 1rem 1.4rem 0.8rem 1.6rem;
  background: none;
  color: var(--white);
  border: 1px solid var(--primary);
  box-shadow: none;
}
.masthead-inner__btn:hover {
  color: var(--white);
  background: var(--primary);
}
.masthead-inner__btn i {
  opacity: 0;
  width: 0;
  transition: all 0.25s linear;
}
.masthead-inner__btn:hover i {
  opacity: 1;
  width: auto;
  margin-left: 0.5rem;
}

.masthead-bcg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.has--overlay:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--secondary);
  opacity: 0.7;
  z-index: 1;
}
.masthead-bcg__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#masthead.frontpage {
  height: 60vh;
  min-height: 700px;
}
#masthead.frontpage .masthead-inner {
  height: 100%;
}

.has--video {
  overflow: hidden;
}

.has--video .masthead-bcg__video {
   width: 100vw;
   height: 56.25vw;
   min-height: 100vh;
   min-width: 177.77vh;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
}

/* -- Masthead cta --------------------*/
#masthead-cta {
  position: relative;
  transform: translateY(-50%);
  z-index: 10;
  margin-bottom: -12rem;
  overflow: hidden;
}

.cta-block {
  position: relative;
  padding: 3rem 3rem 3rem 0;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.cta-block--secondary {
  background: var(--secondary);
}

.cta-block--secondary:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 200%;
  background: var(--secondary);
}

.cta-block__image {
  position: relative;
  margin-top: -9rem;
  margin-bottom: 2.5rem;
}

.cta-block__title {
  font-weight: 700;
  font-size: 1.85rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-block__btn {
  position: relative;
  transform: translateY(50%);
}

.quick-links__title {
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
  color: var(--primary);
}

.quick-links-nav {
  margin-top: 1.5rem;
}

.quick-links-nav li {
  margin: 0 .5rem .5rem 0;
}

.cta-block__image {
  position: relative;
  width: 160%;
  height: auto;
  margin: 0 0 0 -45%;
}


@media all and (min-width: 768px) {
  .quick-links {
    margin-top: 0;
  }
}
@media all and (min-width: 992px) {
  .quick-links-nav__item {
    font-size: 1.125rem;
  }
}
@media all and (min-width: 1200px) {
}
/* -- Introductie ---------------------*/
#introductie {
  padding: 0 0 6rem 0;
  position: relative;
  overflow: hidden;
}

/* -- Waarom --------------------------*/
#waarom {
  padding: 4rem 0 0 0;
  position: relative;
  overflow: hidden;
}

#waarom:before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background-image: url("../images/angle-top.svg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

#waarom:after {
  content: "";
  position: absolute;
  height: 30%;
  width: 100%;
}

.gallery {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 15px 15px;
  grid-template-areas: "h-lg h-lg h-lg h-lg" "blq v-md v-md v-sm";
}

.gallery__image {
  position: relative;
  top: 0;
  left: 0;
  background-color: var(--secondary);
  pointer-events: none;
  height: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.gallery__image--h-lg {
  grid-area: h-lg;
  width: 100%;
  padding-top: 64.7798742138%;
}

.gallery__image--v-md {
  grid-area: v-md;
  width: 100%;
  padding-top: 129.6296296296%;
}

.gallery__image--v-sm {
  grid-area: v-sm;
  width: 100%;
  padding-top: 129.6296296296%;
}

.gallery__image img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  opacity: 0.8;
}

.waarom__content {
  color: var(--white);
  padding: 2rem;
}

@media all and (min-width: 992px) {
  #waarom {
    padding: 0;
  }
}

/* -- Werkmethodes -------------------------*/
#werkmethodes {
  position: relative;
  padding: 6rem 0;
  background: var(--light);
  overflow: hidden;
}

.row-werkmethodes {
  margin-top: 6rem;
}

.owl-werkmethodes .owl-stage-outer {
  overflow: visible;
}

.owl-werkmethodes .owl-stage {
  display: flex;
  align-items: stretch;
}

.owl-werkmethodes .owl-stage .owl-item {
  display: flex;
  flex: 1 0 auto;
}

.owl-werkmethodes .owl-item .item {
  display: flex;
  flex-direction: column;
  flex: 1; 
}

.owl-werkmethodes .owl-nav {
  margin-top: 3rem;
  transform: translateX(-50%);
  left: 50%;
  position: relative;
}

.werkmethode {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 3.5rem 2rem;
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 -.25rem 1rem 0 rgba(0, 0, 0, 0.1);
  z-index: 1;
  text-align: center;
  height: 100%;
}

.werkmethode__icon-wrapper {
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
}

.werkmethode__icon {
  max-width: 88px;
}

.werkmethode-body {
  flex: 1;
}

.werkmethode__title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.werkmethode__text {
  color: var(--tertiary);
}


/* -- Nieuws --------------------------*/
#nieuws {
  padding: 4rem 0;
}

.nieuws-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--white);
  background-clip: border-box;
  border: none;
  border-radius: 1.5rem;
  margin-bottom: 30px;
  box-shadow: 0px -0.5rem 1.25rem 0px rgba(0, 0, 0, 0.16);
}

.nieuws-card .card-img-top {
  width: 100%;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.nieuws-card .card-body {
  flex: 1 1 auto;
  padding: 40px 30px;
}

.nieuws-card .card-body .card__meta {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary);
}

.nieuws-card .card-body .card__title {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* -- Vacatures -----------------------*/
#vacatures {
  padding: 5.5rem 0;
  background: var(--light);
}

.vacatures__title {
  font-weight: 700;
  color: var(--secondary);
}

.vacatures-table {
  border: none;
}
.vacatures-table th {
  font-size: 1.125rem;
  border: none;
}
.vacatures-table td {
  border: none;
}
.vacatures-table td span {
  display: block;
  border-radius: 2rem;
  background: var(--white);
  padding: 0.6rem 1rem 0.4rem 1.2rem;
}

.content-styles h2 {
  font-weight: 700;
  color: var(--secondary);
}
.content-styles h3, .content-styles h4, .content-styles h5, .content-styles h6 {
  font-weight: 700;
  color: var(--primary);
}
.content-styles address a {
  color: var(--tertiary);
}
.content-styles address a:hover {
  color: var(--primary);
}
.content-styles ul:not([class]) {
  padding: 0 0 0 1rem;
  margin: 0;
}
.content-styles ul li a {
  color: var(--primary);
}

.content-styles p,
.content-styles ul,
.content-styles ol {
  font-size: 1.125rem;
}

.content-styles p a:not([class]) {
  color: var(--primary);
}

.module-introductie {
  padding: clamp(4rem, 1.3333rem + 5.5556vw, 8rem) 0;
  background: var(--white);
}
.module-content {
  padding: 4rem 0;
  background: var(--white);
}
.module-blokken {
  padding: 4rem 0;
  background: var(--white);
}
.module-blokken .row + .row {
  margin-top: 4rem;
}

.module-contact {
  padding: 4rem 0;
  background: var(--white);
}

.module-formulier {
  padding: 4rem 0;
  background: var(--secondary);
}

.formulier__title {
  font-weight: 700;
  color: var(--white);
}

.module-maps {
  position: relative;
  min-height: 700px;
}

  .acf-map {
    min-height: 700px;
    border: none;
  }

.map-directions {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  height: auto;
  text-align: center;
  z-index: 3;
}

.module-faq {
  padding: 4rem 0;
}

.accordion-button {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary);
  padding: 1rem 0;
}

.accordion-body {
  padding: 0 0 1rem 0;
}

.accordion-button:not(.collapsed) {  
  color: var(--secondary);
  background-color: var(--white);
  box-shadow: none;
}

.accordion-button:not(.collapsed) i::before {
  content: "\f106";
}

.accordion-button::after {
  display: none;
}

.accordion-button:focus {
  box-shadow: none;
  background: var(--white);
}

/* -- Thema introductie ---------------*/
#thema-introductie {
  padding: 5rem 0;
  background: var(--white);
}

/* -- Thema introductie ---------------*/
#thema-infographic {
  padding: 5rem 0 7rem 0;
  background: var(--light);
}

/* -- Thema introductie ---------------*/
#thema-themas {
  padding: 5rem 0;
  background: var(--white);
}

/* -- Thema visual -------------------*/
#thema-visual {
  padding: 5rem 0;
  background: var(--light);
}

/* -- Thema content -------------------*/
#thema-content {
  padding: 5rem 0;
  background: var(--light);
}

.thema-item {
  margin: 3rem 0;
}
.thema-item__title {
  position: relative;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1;
}
.thema-item__image {
  position: relative;
  z-index: 5;
  border-radius: 1rem;
}

/* -- Thema return --------------------*/
#thema-return {
  padding: 2.5rem 0;
  background: var(--white);
}

/* -- project filters --------------*/
#project-filters {
  background: var(--light);
  padding: 3rem 0 1.5rem 0;
}

.facetwp-facet {
  margin-bottom: 0 !important;
}

.facetwp-type-radio {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.facetwp-type-radio .facetwp-radio {
  position: relative;
  border-radius: 2rem;
  background: var(--white);
  padding: .75rem 1.25rem;
  margin: 0 0.5rem 1rem 0.5rem;
}
.facetwp-type-radio .facetwp-radio.checked {
  color: var(--white) !important;
  background: var(--secondary);
}
.facetwp-type-radio .facetwp-radio.checked .facetwp-title {
  color: var(--white);
}
.facetwp-type-radio .facetwp-radio.checked .facetwp-counter {
  display: inline-block;
  min-width: 30px;
  padding: .25rem 0.5rem;
  border-radius: 3rem;
  position: absolute;
  top: -0.25rem;
  right: 0;
  transform: translateY(-50%);
  background: var(--primary);
}
.facetwp-type-radio .facetwp-radio .far {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 0.5rem;
}
.facetwp-type-radio .facetwp-radio .facetwp-title {
  font-weight: 500;
  font-size: 1.025rem;
  margin-left: 0.5rem;
}
.facetwp-type-radio .facetwp-radio .facetwp-counter {
  display: none;
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
}

/* -- Projecten ---------------------*/
#projecten {
  padding: 4rem 0 0 0;
  background: var(--white);
}

.project-card {
  border: none;
  margin-bottom: 1.5rem;
}
.project-card-figure {
  position: relative;
  margin: 0;
}
.project-card-figure figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .75;
  transition: all 0.5s;
}
.project-card .card-body {
  text-align: center;
}
.project-card .card-body span {
  color: var(--tertiary);
}
.project-card__title {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 0 0.25rem 0;
}
.project-card:hover figcaption {
  opacity: 1;
}

.facetwp-map-filtering {
  display: none;
}

#single {
  padding: 5rem 0;
}

.vacature-blok .list-unstyled {
  padding: 0;
  margin: 0 0 1rem 0;
}
.vacature-blok + .vacature-blok {
  margin-top: 2rem;
}

.widget-box {
  padding: 3rem 2rem;
  border-radius: 1rem;
}
.widget-box__title {
  font-weight: 700;
}
.widget-box a {
  margin-top: 1rem;
}
.widget-box--secondary {
  background: var(--primary);
  color: var(--white);
}

/* -- Call to action ------------------*/
#call-to-action {
  background: var(--light);
  padding: 4rem 0;
}

#call-to-action img {
  border-radius: 1rem;
}

/* -- Klantverhalen -------------------*/
#klantverhalen {
  position: relative;
  padding: 2rem 0 0 0;
  background: var(--white);
}
#klantverhalen .container {
  position: relative;
  z-index: 2;
}

#klantverhalen:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
  background: var(--light);
  z-index: 0;
}

#klantverhalen:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 52%;
  width: 100%;
  background-image: url("../images/waves-white.svg");
  background-size: contain;
  background-repeat: repeat-x;
  background-position: bottom center;
  z-index: 1;
}

#klantverhalen .owl-stage-outer {
  padding: 2rem 1rem 0 1rem;
}

#klantverhalen .owl-nav {
  margin-top: 0.5;
  margin-left: 25%;
  transform: translateX(-50%);
}

.klantverhaal {
  display: flex;
  flex-direction: column;
  margin: 0 2rem 0 0;
}

.klantverhaal__image {
  position: relative;
  z-index: 2;
}

.klantverhaal__image img {
  max-width: 85%;
  border-radius: 1rem;
  margin: 0 auto 1rem auto;
}

.klantverhaal__content {
  flex: 1;
  background: var(--white);
  z-index: 1;
  margin-top: -4rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-shadow: 0px -.5rem 1rem 0px rgba(0, 0, 0, 0.10);
}

.klantverhaal__content_inner {
  padding: 5rem 2rem 2rem 2rem;
}

.klantverhaal__content_inner h5 {
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.klantverhaal__content_inner blockquote p {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
}

.klantverhaal__content_inner blockquote footer {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

@media all and (min-width: 768px) {
  #klantverhalen .owl-stage-outer {
    padding: 6rem 1rem 0 1rem;
  }

  .klantverhaal {
    flex-direction: row;
  }

  .klantverhaal__image {
    width: 50%;
  }

  .klantverhaal__content {
    width: 50%;
    margin-top: -4rem;
    margin-left: -16.666%;
  }

  .klantverhaal__content_inner {
    padding: 5rem 3rem 3rem 24.999%;
  }
}
@media all and (min-width: 992px) {
  .klantverhaal__content_inner blockquote p {
    font-size: 1.5rem;
  }
}

/* -- Footer --------------------------*/
#footer {
  position: relative;
  overflow: hidden;
}

#footer-message {
  padding: clamp(2.75rem, 2.0833rem + 1.3889vw, 3.75rem) 0;
  background: var(--primary);
  text-align: center;
}

  .footer-message__text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
  }

#footer-upper {
  padding: clamp(4rem, 2.6667rem + 2.7778vw, 6rem) 0;
  background: var(--secondary);
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-block {
  padding: 2rem 0;
}

.footer-block--dark {
  padding: 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}

.footer-title {
  color: var(--white);
}

.footer-nav li {
  line-height: 1.7;
}

.footer-nav li a {
  display: flex;
  align-items: center;
  color: var(--quaternary);
  transition: all 0.5s;
}
.footer-nav li a span {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--white);
  margin-right: 0.5rem;
  transition: all 0.5s;
}

.footer-nav li a:hover span {
  width: 30px;
  background: var(--primary);
}

.list-certificaten {
  list-style: none;
  display: flex;
  justify-content: space-around;
  margin: 2rem 0 0 0;
  padding: 0;
}

#footer-upper address {
  margin: 0;
}

#footer-upper address,
#footer-upper address a,
#footer-upper span,
#footer-upper span a {
  color: var(--quaternary);
  transition: all 0.5s;
}

.footer-nav li a:hover,
#footer-upper address a:hover,
#footer-upper span a:hover {
  color: var(--white);
  
}

#footer-base {
  background: var(--secondary);
  padding-bottom: 2rem;
}

#footer-base span,
#footer-base span a {
  font-size: .92rem;
  color: var(--quaternary);
}

#footer-base span a:hover {
  color: var(--white);
}
