﻿:root {
  --black: #474747;
  --white: hsla(0, 0%, 100%, 100%);
  --menu-color: #E67205;
  --thema-color: #E67205;
  --thema-light: #fdf1e6;
  --thema-icon: none;
  --opgroeien: #D50E41;
  --opgroeien-light: #F6CCD9;
  --rit: #327567;
  --rit-light: #E4F4F2;
  --behandelen: #4F2D7F;
  --behandelen-light: #DCD5E5;
  --wonen: #397298;
  --wonen-light: #CCEBF1;
  --thema-color: $rit;
  --welzijn: hsl(172, 42%, 59%);
  --meedoen: #327567;
  --meedoen-light: #E4F4F2;
  --ondersteunen: #397298;
  --ondersteunen-light: #CCEBF1;
  --jeugd: #D50E41;
  --jeugd-light: #F6CCD9;
}

html.welzijn {
  --thema-color: #E67205;
}

body {
  --thema-color: #E67205;
  --thema-light: #fdf1e6;
  --thema-icon: none;
}
body.rit {
  --thema-color: var(--rit);
  --thema-light: var(--rit-light);
  --thema-icon: url(/images/rit.svg);
}
body.behandelen {
  --thema-color: var(--behandelen);
  --thema-light: var(--behandelen-light);
  --thema-icon: url(/images/behandelen.svg);
}
body.opgroeien {
  --thema-color: var(--opgroeien);
  --thema-light: var(--opgroeien-light);
  --thema-icon: url(/images/opgroeien.svg);
}
body.wonen {
  --thema-color: var(--wonen);
  --thema-light: var(--wonen-light);
  --thema-icon: url(/images/wonen.svg);
}
body.meedoen {
  --thema-color: var(--meedoen);
  --thema-light: var(--meedoen-light);
  --thema-icon: url();
}

.m-bottom {
  margin-bottom: 4rem;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans regular"), url("/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans italic"), url("/fonts/OpenSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans light"), url("/fonts/OpenSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans light italic"), url("/fonts/OpenSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans semi-bold"), url("/fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans semi-bold italic"), url("/fonts/OpenSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans bold"), url("/fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans bold italic"), url("/fonts/OpenSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans extra-bold"), url("/fonts/OpenSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/MaterialIcons-Regular.eot");
  src: local("Material Icons"), local("MaterialIcons-Regular"), url("/fonts/MaterialIcons-Regular.woff2") format("woff2"), url("/fonts/MaterialIcons-Regular.woff") format("woff"), url("/fonts/MaterialIcons-Regular.ttf") format("truetype");
  font-display: swap;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 1.2rem;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}

/*******
  root
 ******/
* {
  /* font: inherit;*/
}

*,
::before,
::after {
  box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/***********
  margins
  paddings
 **********/
body,
button,
h1, h2, h3, h4, h5, h6,
input,
nav,
select,
textarea {
  margin: 0;
  padding: 0;
}

/*********
  hovers
 ********/
a:hover,
button:hover,
input[type=submit]:hover {
  cursor: pointer;
}

/**************
  decorations
 *************/
a,
button,
input,
select,
textarea {
  background: none;
  color: inherit;
  border: none;
  text-transform: none;
  text-decoration: none;
  /*    font-size: 1rem;
  */
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

img,
svg {
  vertical-align: middle;
}

html {
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
  scroll-behavior: smooth;
}
html body {
  margin: 0;
}
html body.no-scroll {
  position: fixed;
  overflow-y: scroll;
  width: 100%;
}

.page-body {
  max-width: 84rem;
  margin: auto;
  position: relative;
  height: 100%;
  display: block;
  width: 100%;
  overflow: clip;
}
@media (max-width: 991px) {
  .page-body {
    overflow: hidden;
  }
}
.page-body:after {
  --background: url(/images/backdrop-new.svg);
  content: "";
  position: absolute;
  z-index: -1;
  top: 1000px;
  width: 100%;
  height: 100%;
  background: var(--background);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page-body:after {
    background-size: contain;
  }
}
@media (max-width: 767px) {
  .page-body:after {
    --background: url(/images/Backdrop-mobile.svg);
    top: 30rem;
    width: 104%;
  }
}

:is(.welzijn) .page-body:after {
  --background: url(/images/backdrop-welzijn.svg);
}
@media (max-width: 767px) {
  :is(.welzijn) .page-body:after {
    --background: url(/images/Backdrop-mobile-welzijn.svg);
  }
}

@media (min-width: 1200px) {
  .container, .container-lg {
    max-width: 58.5rem;
  }
}

textarea:focus, input:focus, .form-control:focus {
  outline: 1px solid #E67205;
}

*::selection {
  color: white;
  background: #E67205;
}

.t-welzijn, .activ {
  margin-bottom: 4rem;
}

/*:root {
    scrollbar-width: none;
}

*/
input[type=search]::-webkit-search-cancel-button {
  display: none;
}

html {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  word-break: break-word;
  color: #474747;
  word-break: break-word;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  html {
    font-size: 18px;
  }
}
@media print {
  html {
    font-size: 16px !important;
  }
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
}
h1.home {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 2rem;
}
h2.small {
  font-size: 2rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 366px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 366px) {
  h3 {
    font-size: 18px;
  }
}

h4 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.center {
  text-align: center;
}

.aanbod-body--list__item, .aanbod-body--title {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.aanbod-body--list__item:hover, .aanbod-body--title:hover {
  color: #E67205;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}

.aanbod {
  margin: 1rem 0 4rem;
}
.aanbod-body {
  margin-bottom: 1.25rem;
}
.aanbod-body--list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.aanbod-body--list__item svg {
  position: relative;
  bottom: 2px;
  margin: 0 0.5rem 0 0;
  width: 8px;
}

.content {
  margin-bottom: 4rem;
  position: relative;
  z-index: 100;
}
.content h1 {
  font-size: 3rem;
}
.content p > a {
  color: #E67205;
  text-decoration: underline;
  font-weight: 700;
}
.content h2 {
  margin-bottom: 1.25rem;
}
.content ul, .content ol {
  margin: 0.5rem 0 1rem;
}
.content ul li, .content ol li {
  padding-left: 0.5rem;
}
.content ul li > a, .content ol li > a {
  color: #E67205;
  text-decoration: underline;
}
.content ul li::marker, .content ol li::marker {
  color: #E67205;
  font-size: 0.75rem;
}
.content--column {
  margin: 2rem 0;
}
.content--column img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}
@media (min-width: 1200px) {
  .content--column img {
    min-width: 500px;
  }
}
@media (max-width: 991px) {
  .content--column__text {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .content--column__text-last {
    padding: 0 0 0 5rem;
  }
}
@media (max-width: 991px) {
  .content--column__2colimg {
    margin: 2rem 0;
  }
}
.content--paragraaf {
  margin: 2rem 0;
}
.content--paragraaf img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .content--paragraaf__text {
    margin-bottom: 1rem;
  }
}
.content--paragraaf__text > p {
  margin: 0 0 1rem;
}
@media (max-width: 991px) {
  .content--paragraaf__2colimg {
    margin: 2rem 0;
  }
}

.cta {
  display: flex;
  gap: 1rem;
  margin: 0 0 4rem;
}

.cta-content {
  /*  margin: 2rem 0 $m-bottom;*/
  padding: 2rem 20px 3rem;
  position: relative;
}

@media (max-width: 767px) {
  .cta-content {
    padding: 0 20px 2rem 0;
    margin: 6rem 0 0;
  }
}
.cta-content:before {
  background: #fafafa;
  top: 0;
  left: -65%;
  width: 150%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 15px;
}

@media (max-width: 767px) {
  .cta-content:before {
    left: -50%;
  }
}
.cta-content--img {
  border-radius: 50% 0 50% 50%;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .cta-content--img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cta-content--img {
    width: 150px;
    height: 150px;
    display: flex;
    margin: auto;
    margin: -3rem auto 1rem;
  }
}
.cta-content--btn {
  display: flex;
  gap: 1rem;
}

.cta-melding {
  width: 100%;
  background: #fafafa;
  display: flex;
  border-radius: 15px;
  position: relative;
  gap: 1.25rem;
  overflow: hidden;
  margin-bottom: 4rem;
}

.cta-melding--img {
  width: 20%;
  object-fit: cover;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-melding--img {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .cta-melding--img {
    width: 40%;
  }
}
.cta-melding--body {
  width: 80%;
  display: grid;
  /*        justify-items: center;*/
  align-items: center;
  padding: 0.5rem 0.5rem 0.5rem 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .cta-melding--body {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .cta-melding--body {
    width: 60%;
    padding: 1rem 0.5rem 1rem 0;
  }
}
.cta-melding--body__title {
  margin: 0;
  font-weight: 700;
}

.cta-melding--body__text {
  margin: 0;
}

.cta-melding--body__link {
  margin-top: 0.25rem;
  display: inline-block;
  color: #621357;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}

.cta-melding--body__link:hover {
  color: #EF7910;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}

.c-floaty {
  width: auto;
  display: inline-block;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10000;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .c-floaty {
    display: none;
  }
}
.c-floaty__display {
  display: none;
}
.c-floaty__click {
  bottom: 0.5rem;
  right: 46px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.c-floaty--avatar {
  border-radius: 0 0 50% 50%;
  width: 165px;
  position: absolute;
  bottom: 0.5rem;
  right: -25px;
  display: block;
  transform: scale(0.45);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.c-floaty--avatar__click {
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.c-floaty--avatar__click:after {
  border: 0.35rem solid #E67205 !important;
}
.c-floaty--avatar img {
  width: calc(165px - 0.35rem - 0.35rem);
  position: absolute;
  bottom: 0.175rem;
  left: 0.175rem;
  right: auto;
  border-radius: 0 0 calc((165px - 0.35rem - 0.35rem) / 2) calc((165px - 0.35rem - 0.35rem) / 2);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-floaty--avatar img {
    width: 155px;
    width: 135px;
    bottom: 0.175rem;
  }
}
@media (max-width: 767px) {
  .c-floaty--avatar img {
    width: 100px;
  }
}
.c-floaty--avatar:after {
  width: 8rem;
  height: 8rem;
  background: #AFA9A7;
  border-radius: 50%;
  border: 0.35rem solid white;
  position: absolute;
  bottom: -2px;
  z-index: -1;
  content: "";
  display: inline-block;
}
@media (max-width: 767px) {
  .c-floaty--avatar:after {
    width: 100px;
    height: 100px;
  }
}
.c-floaty--bg {
  position: absolute;
  bottom: -10px;
  right: 0;
  z-index: -1;
  width: 116px;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.c-floaty--bg__click {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.c-floaty--body {
  width: 154px;
  height: auto;
  padding: 0.5rem;
  background: #F7F6F6;
  position: absolute;
  bottom: 3.6rem;
  right: 5rem;
  display: grid;
  justify-items: center;
  align-items: center;
  border-radius: 0.2rem;
  box-shadow: 0 32px 20px -20px rgba(122, 61, 4, 0.2);
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.c-floaty--body__click {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.c-floaty--body__quote {
  text-align: center;
  font-size: 15px;
  font-style: italic;
}
.c-floaty--body:before {
  background: url(/images/bubble.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -14px;
  bottom: -1px;
  content: "";
  width: 27px;
  height: 26px;
}
.c-floaty--bigbody {
  margin: 2.5rem 9rem 5rem 0 !important;
  padding: 1.5rem 4rem !important;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  display: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .c-floaty--bigbody {
    padding: 1.5rem 2rem !important;
  }
}
.c-floaty--bigbody__click {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  display: block;
}
.c-floaty--bigbody__sluiten {
  display: flex;
  margin: 1rem auto 0;
  width: max-content;
  text-decoration: underline;
  cursor: pointer;
}

.f-contact {
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .f-contact h2.small {
    display: none;
  }
}
.f-contact--body {
  background: #F7F6F6;
  height: max-content;
  margin: 2.5rem 0 5rem;
  padding: 1.5rem 0 2rem;
  position: relative;
  box-shadow: 0 32px 20px -20px rgba(122, 61, 4, 0.2);
}
@media (max-width: 767px) {
  .f-contact--body {
    padding: 1rem 0;
  }
}
.f-contact--body:before {
  background: url(/images/bubble.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -2rem;
  bottom: 4rem;
  content: "";
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .f-contact--body:before {
    display: none;
  }
}
.f-contact--body__quote {
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .f-contact--body__quote {
    max-width: 65%;
    margin-left: 1rem;
    text-align: right;
    line-height: 1.5;
  }
}
@media (max-width: 575px) {
  .f-contact--body__quote {
    max-width: 55%;
  }
}
@media (max-width: 363px) {
  .f-contact--body__quote {
    max-width: 100%;
    text-align: center;
  }
}
.f-contact--body__buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media (max-width: 363px) {
  .f-contact--body__buttons {
    gap: 0.5rem;
  }
}
.f-contact--avatar {
  border-radius: 0 0 50% 50%;
  width: 8.6rem;
  position: absolute;
  bottom: 0;
  display: block;
  z-index: 0;
}
@media (max-width: 767px) {
  .f-contact--avatar.desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .f-contact--avatar.mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .f-contact--avatar.mobile {
    width: 5rem;
    right: 1.5rem;
    top: 7rem;
    bottom: auto;
    z-index: 1;
  }
}
@media (max-width: 363px) {
  .f-contact--avatar.mobile {
    display: none;
  }
}
.f-contact--avatar img {
  position: absolute;
  bottom: 0.3rem;
  right: 0.3rem;
  width: 7.9rem;
  border-radius: 0 0 3.95rem 3.95rem;
}
@media (max-width: 767px) {
  .f-contact--avatar img {
    width: 4.3rem;
    border-radius: 0 0 2.15rem 2.15rem;
  }
}
.f-contact--avatar:after {
  width: 8.6rem;
  height: 8.6rem;
  background: #AFA9A7;
  border-radius: 50%;
  border: 0.35rem solid #E67205;
  position: absolute;
  bottom: -2px;
  z-index: -1;
  content: "";
  display: inline-block;
}
@media (max-width: 767px) {
  .f-contact--avatar:after {
    width: 5rem;
    height: 5rem;
  }
}
@media (max-width: 767px) {
  .f-contact {
    width: 100%;
  }
}

.footer {
  background: #EBE9E9;
  padding: 3rem 0 4.5rem;
  max-width: 84rem;
  margin: 4rem auto 0;
  position: relative;
}
@media (min-width: 576px) and (max-width: 767px) {
  .footer {
    padding-top: 5rem;
  }
}
@media (max-width: 575px) {
  .footer {
    padding: 3rem 0 12.5rem;
  }
}
.footer:before {
  background: url(/images/PO-SamenSterk.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 176px;
  height: 94px;
  position: absolute;
  top: -0.5rem;
  left: 45%;
  transform: translate(0, -50%);
  content: "";
  z-index: 10;
}
@media (max-width: 767px) {
  .footer:before {
    left: 30%;
    width: 150px;
    height: 80px;
  }
}
.footer-body {
  margin-top: 2rem;
}
.footer-body > .content-cta--btn {
  display: grid;
  place-content: center;
}
.footer-social {
  margin: 2rem 0 2rem;
}
@media (max-width: 767px) {
  .footer-social {
    margin: 2rem 1rem;
  }
}
.footer-social a {
  white-space: nowrap;
}
.footer-social svg {
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
}
.footer-social--title {
  margin-right: 1rem;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, color 0.2s ease-in-out;
  font-weight: 300;
}
.footer-social--title:hover {
  color: #E67205;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.footer-social--number {
  font-weight: 700;
  color: white;
  background: #110E72;
  border-radius: 50%;
  padding: 15px 21px;
  position: relative;
  left: 2rem;
  top: 5px;
  width: 80px;
  height: 80px;
  font-size: 1.5rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer-social--number {
    font-size: 2rem;
  }
}
.footer-social--number__decimal {
  font-size: 0.75rem;
  position: relative;
  bottom: 10px;
}
@media (max-width: 767px) {
  .footer-social--number__decimal {
    font-size: 1rem;
  }
}
.footer-disclaimer {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 3rem;
  background: rgb(249, 248.4, 248.4);
  font-weight: 300;
}
@media (max-width: 767px) {
  .footer-disclaimer {
    padding: 0.5rem;
    height: max-content;
  }
}
@media (max-width: 575px) {
  .footer-disclaimer {
    height: 12.5rem;
  }
}
.footer-disclaimer--links {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .footer-disclaimer--links {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    gap: 0.5rem 1.25rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.footer-disclaimer--links__item {
  position: relative;
  word-break: normal;
}
.footer-disclaimer--links__item:before {
  content: "-";
  position: absolute;
  left: -14px;
  top: -3px;
}
.footer-disclaimer--links__item:first-child:before {
  display: none;
}
.footer-btn {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.footer-mikado {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-mikado span {
  text-align: center;
}
.footer-mikado svg {
  flex: none;
  height: 3rem;
  margin: 0;
  width: auto;
}

.header {
  width: 100%;
  padding: 4rem 0;
  position: relative;
}
.header--home {
  height: auto;
}
@media (max-width: 767px) {
  .header {
    padding: 2rem 0;
  }
}
.header--jv {
  padding: 16rem 0 0;
  margin-bottom: 4rem;
  height: max-content;
}
@media (max-width: 1679px) {
  .header--jv {
    height: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .header--jv {
    padding: 10rem 0 0;
  }
}
@media (max-width: 575px) {
  .header--jv {
    padding: 6rem 0 0;
  }
}
.header-img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -100;
  width: 100%;
  max-width: 980px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .header-img {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .header-img {
    height: 176px;
    width: 70%;
  }
}
.header-img--gradient {
  width: 100%;
  height: 967px;
  position: absolute;
  top: 0;
  /*   @include respond-below(md) {
      height: 400px;
  }*/
}
.header-img--gradient:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgb(255, 255, 255) 88%);
  z-index: 1;
}
.header-img--home {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: auto;
  max-width: 1680px;
  max-height: 967px;
}
@media (max-width: 575px) {
  .header-img--home {
    height: 250px;
  }
}
@media (max-width: 363px) {
  .header-img--home {
    height: 220px;
  }
}
.header-body {
  z-index: 10;
  position: relative;
  min-height: 12.5rem;
}
.header-body a {
  z-index: 1;
  position: relative;
}
.header-body--intro {
  margin-bottom: 2rem;
}
.header-body--intro a {
  color: var(--menu-color);
}
.header-body > .btn-download {
  margin-bottom: 2rem;
}
.header-body > .btn-main, .header-body > .btn-verwijzer, .header-body > .btn-partner, .header-body > .btn-news, .header-body > .btn-small, .header-body > .btn-diensten, .header-body > .btn-footer, .header-body > .btn-second {
  margin: 0 0 2rem;
}
.header-body--sterk {
  width: 11.25rem;
  margin-bottom: 3rem;
  display: block;
  position: relative;
  bottom: 1rem;
}
@media (min-width: 576px) and (max-width: 767px) {
  .header-body--sterk {
    width: 7.5rem;
    bottom: 0;
    margin-bottom: 4rem;
  }
}
@media (max-width: 575px) {
  .header-body--sterk {
    width: 7rem;
    bottom: 0;
    margin-bottom: 4rem;
  }
}
.header-body--sterk.jaarvr {
  margin-bottom: 5rem;
}
@media (min-width: 576px) and (max-width: 767px) {
  .header-body--sterk.jaarvr {
    width: 7.5rem;
    bottom: 0;
    margin-bottom: 8rem;
  }
}
@media (max-width: 575px) {
  .header-body--sterk.jaarvr {
    width: 5rem;
    bottom: -1rem;
    margin-bottom: 8rem;
  }
}
.header-body h1:before {
  background: var(--thema-icon);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 10rem;
  height: 10rem;
  opacity: 0.1;
  position: absolute;
  top: 6rem;
  left: -5rem;
}
@media (min-width: 576px) and (max-width: 767px) {
  .header-body h1:before {
    top: 4rem;
  }
}
@media (max-width: 575px) {
  .header-body h1:before {
    top: 3rem;
    left: -1rem;
  }
}
.header-body--logo {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .header-body--logo {
    width: 140px;
    margin-bottom: 2rem;
  }
}
.header-body--logo__home {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .header-body--logo__home {
    margin-bottom: 1rem;
  }
}
.header-gradient {
  width: 100%;
  height: 300px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  display: block;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .header-gradient {
    bottom: auto;
    height: 60px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .header-gradient {
    top: 290px;
  }
}
@media (max-width: 575px) {
  .header-gradient {
    top: 116px;
  }
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .header-gradient--home {
    bottom: 3rem;
    height: 200px;
  }
}

.leden-dienst {
  display: flex;
  justify-content: center;
  height: 200px;
  margin-bottom: 1.5rem;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  border: 1px solid #EBE9E9;
}
.leden-dienst-container {
  margin-bottom: 4rem;
}
.leden-dienst:hover {
  transform: scale(1.02);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  box-shadow: 0 32px 20px -20px rgba(122, 61, 4, 0.2);
}
.leden-dienst--icn {
  width: 200px;
  height: 100%;
  display: grid;
  place-items: center;
  background: white;
}
@media (max-width: 767px) {
  .leden-dienst--icn {
    width: 50%;
  }
}
.leden-dienst--icn__img {
  width: 3.3rem;
  height: 3.3rem;
  background: #E67205;
}
.leden-dienst--body {
  width: 66.66%;
  height: 100%;
  background: #F7F6F6;
  padding: 1rem;
}
.leden-dienst--body__title {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 4rem;
  margin: 0;
}
.leden-dienst--body__intro {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 6rem;
  margin: 0;
}

.leden-thema--item {
  border-bottom: 0.4rem solid white;
  cursor: pointer;
}
.leden-thema--item[aria-expanded=true] {
  border-bottom: 0.4rem solid #F7F6F6;
  outline: none;
  margin-bottom: 0;
}
.leden-thema--item__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.2rem 0.2rem 0 0;
}
.leden-thema--item__body {
  display: grid;
  place-content: center;
  height: 100px;
  width: 100%;
  background: #F7F6F6;
}
.leden-thema--item__title {
  color: #E67205;
  font-size: 1.6rem;
}
.leden-thema--collapse {
  background: #F7F6F6;
  padding: 1rem 1.5rem;
  box-shadow: 0 32px 20px -20px rgba(122, 61, 4, 0.2);
}
.leden-thema--collapse__title {
  margin-bottom: 0.5rem;
}
.leden-thema--collapse__intro {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.leden-thema--collapse__link {
  font-size: 1.1rem;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.leden-thema--collapse__link:hover {
  color: #E67205;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.leden-thema--collapse ul {
  padding: 0;
  margin: 1rem 0 0;
  list-style-type: none;
}
.leden-thema--collapse ul li {
  padding-left: 0;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.leden-thema--collapse ul li a {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.leden-thema--collapse ul li a:hover {
  color: #E67205;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .leden-thema--collapse h4 {
    margin-top: 2rem;
  }
}
.leden-thema--collapse svg {
  margin-right: 0.5rem;
}

.thema-body ul li:before, .thema-body--link:before {
  -webkit-mask-image: url(/images/chevron.svg);
  -o-mask-image: url(/images/chevron.svg);
  -moz-mask-image: url(/images/chevron.svg);
  mask-image: url(/images/chevron.svg);
  -webkit-mask-repeat: no-repeat;
  -o-mask-repeat: no-repeat;
  -moz-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -o-mask-position: center;
  -moz-mask-positiont: center;
  mask-position: center;
  background-color: var(--thema-color);
  content: "";
  position: relative;
  display: block;
  width: 0.9rem;
  height: 1rem;
  float: left;
  top: 0.5rem;
  margin-right: 0.5rem;
}

.thema-body ul li a, .thema-body--link {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.thema-body ul li a:hover, .thema-body--link:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  color: var(--thema-color);
  text-decoration: underline;
}

.thema {
  margin: 0 0 3rem;
}
.thema-heading {
  border: 1px solid var(--thema-light);
  height: 5.6rem;
  padding: 1rem 1.5rem 1rem 0.75rem;
  margin-top: 1.5rem;
  position: relative;
  margin-bottom: 0.25rem;
  cursor: pointer;
}
.thema-heading[aria-expanded=true] {
  background-color: var(--thema-light);
  height: 6rem;
  border-bottom: 0.2rem solid var(--thema-light);
  outline: none;
  margin-bottom: 0;
}
.thema-heading--icn {
  background-color: var(--thema-color);
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  float: left;
  margin-right: 1rem;
}
.thema-heading--title {
  color: var(--thema-color);
}
@media (max-width: 1199px) {
  .thema-heading--title {
    font-size: 1rem;
  }
}
.thema-body {
  background-color: var(--thema-light);
  padding: 1rem 1rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 45px 30px -30px rgba(65, 132, 122, 0.2);
}
.thema-body--title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .thema-body--title {
    margin-bottom: 0.5rem;
  }
}
.thema-body--text {
  margin: 0.5rem 0;
}
.thema-body--link {
  font-size: 1.1rem;
  font-weight: 600;
}
.thema-body--subtitle {
  margin-top: 0.5rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .thema-body--subtitle {
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .thema-body--subtitle {
    margin-top: 1rem;
  }
}
.thema-body ul {
  margin: 0.5rem 0;
  padding: 0;
  list-style-type: none;
}
.thema-body ul li {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2;
}
.thema-body ul li:before {
  top: 0.7rem;
}
.werkgebied {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  height: 600px;
}
@media (max-width: 767px) {
  .werkgebied {
    width: 120%;
    left: -10%;
    height: 400px;
  }
}
.werkgebied-container {
  width: 100%;
  height: 600px;
  position: relative;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .werkgebied-container {
    margin: 2rem 0 12rem;
    height: 400px;
  }
}
.werkgebied-selectors {
  width: 100%;
  height: 140px;
  position: absolute;
  bottom: -4rem;
}
@media (max-width: 767px) {
  .werkgebied-selectors {
    bottom: -5rem;
  }
}
.werkgebied-selectors--body {
  width: 95%;
  height: 140px;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
@media (max-width: 767px) {
  .werkgebied-selectors--body {
    flex-direction: column;
    height: 276px;
    padding: 1rem;
    width: 100%;
  }
}
.werkgebied-selectors--body__title {
  font-weight: 700;
  color: var(--thema-color);
  height: 84px;
  border-radius: 50px;
  border: 1px solid #EBE9E9;
  background-color: rgba(175, 169, 167, 0.05);
  display: flex !important;
  /* justify-content: space-evenly;*/
  align-items: center;
  position: relative;
  padding: 0 2rem 0 3rem;
  width: 43%;
}
@media (max-width: 767px) {
  .werkgebied-selectors--body__title {
    width: 100%;
  }
}
.werkgebied-selectors--body__title:before {
  background: var(--thema-icon);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  /* top: 0;*/
  left: 1rem;
}
.werkgebied-selectors--body i {
  font-size: 1.5rem;
  font-weight: 700;
}
.werkgebied-selectors--body__item {
  width: 43%;
}
@media (max-width: 767px) {
  .werkgebied-selectors--body__item {
    width: 100%;
  }
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option {
  font-weight: 600;
  display: flex;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 0.9rem;
  height: 1.45rem;
  background: url(/images/werkgebied-thema.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 1.3rem;
  left: 9px;
  top: 4px;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(2) {
  color: #D50E41;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(2):before {
  width: 1.3rem;
  height: 1.5rem;
  background: url(/images/opgroeien.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 1rem;
  left: 6px;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(2) .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(2):hover, .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(2).focus, .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(2).selected.focus {
  color: #D50E41 !important;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(3) {
  color: #327567;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(3):before {
  width: 1.3rem;
  height: 1.5rem;
  background: url(/images/rit.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 1rem;
  left: 6px;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(3):hover, .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(3).focus, .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(3).selected.focus {
  color: #327567 !important;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(4) {
  color: #4F2D7F;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(4):before {
  width: 1.3rem;
  height: 1.5rem;
  background: url(/images/behandelen.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 1rem;
  left: 6px;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(4):hover, .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(4).focus, .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(4).selected.focus {
  color: #4F2D7F !important;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(5) {
  color: #397298;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(5):before {
  width: 1.3rem;
  height: 1.5rem;
  background: url(/images/wonen.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 1rem;
  left: 6px;
}
.werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(5):hover, .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(5).focus, .werkgebied-selectors--body__item.thema-item > .nice-select .option:nth-child(5).selected.focus {
  color: #397298 !important;
}
.werkgebied-selectors--body__item > .nice-select {
  height: 84px;
  border-radius: 50px;
  border: 1px solid #EBE9E9;
  background-color: rgba(175, 169, 167, 0.05);
  display: flex !important;
  /* justify-content: space-evenly;*/
  align-items: center;
}
.werkgebied-selectors--body__item > .nice-select:hover {
  border: 1px solid var(--thema-color);
}
.werkgebied-selectors--body__item > .nice-select:before {
  width: 3rem;
  height: 3rem;
  background: var(--thema-light);
  position: absolute;
  right: 12px;
  top: 12px;
  border-radius: 50%;
  content: "";
  display: block;
}
@media (max-width: 767px) {
  .werkgebied-selectors--body__item > .nice-select:before {
    top: 20px;
  }
}
.werkgebied-selectors--body__item > .nice-select:after {
  font-family: "Material Icons";
  content: "\e5ce";
  color: var(--thema-color);
  display: block;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 0;
  width: auto;
  height: auto;
  background: none;
  font-size: 3rem;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .werkgebied-selectors--body__item > .nice-select:after {
    top: 8px;
  }
}
.werkgebied-selectors--body__item > .nice-select.open:after {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  font-size: 3rem;
  width: auto;
  height: auto;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.werkgebied-selectors--body__item > .nice-select .current {
  white-space: normal;
}
.werkgebied-selectors--body__item > .nice-select .option {
  white-space: normal;
  float: left;
  width: 90%;
}
.werkgebied-selectors--body__item > .nice-select .option:hover, .werkgebied-selectors--body__item > .nice-select .option.focus, .werkgebied-selectors--body__item > .nice-select .option.selected.focus {
  color: var(--thema-color);
}
.werkgebied-selectors--body__item > .nice-select .option.selected {
  color: var(--thema-color);
}
.werkgebied-selectors--body__item > .nice-select .option.disabled {
  color: var(--thema-color);
}

.word-lid--list h3, .word-lid--subtitle, .word-lid--title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.word-lid {
  width: 100%;
  height: max-content;
  background: white;
  border: 1px solid #EBE9E9;
  border-radius: 15px;
  box-shadow: 0 10px 40px -10px rgba(139, 68, 2, 0.2);
  padding: 0 0 2rem;
}
.word-lid--subtitle {
  color: #E67205;
}
.word-lid--list {
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(71, 71, 71, 0.1);
  width: 100%;
  text-align: center;
  padding: 2rem 15%;
}
.word-lid--list h3 {
  margin-bottom: 0.5rem;
}
.word-lid--list > .content-cta--btn {
  display: block;
  margin: 0;
}
.word-lid ul {
  margin: 1rem auto;
  min-width: 300px;
  width: max-content;
}
@media (max-width: 1199px) {
  .word-lid ul {
    min-width: auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .word-lid ul {
    padding: 1rem 0.5rem;
  }
}
.word-lid ul li {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 1rem;
  margin: 1rem 0 0;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .word-lid ul li {
    font-size: 1rem;
    gap: 0.75rem;
  }
}
.word-lid ul li:before {
  background: url(/images/voordeel-check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  width: 1.75rem;
  height: 1.65rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .word-lid ul li:before {
    background-position: left center;
    background-size: contain;
  }
}

.menu-bar {
  --background-search: url(/images/search.svg);
  --close: url(/images/close.svg);
  height: 4.5rem;
  border-radius: 2.5rem;
  background-color: white;
  box-shadow: 0 10px 40px -10px rgba(139, 68, 2, 0.2);
  width: max-content;
  /*margin: 4rem auto 0;*/
  padding: 0.5rem 1.5rem;
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 10000;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  transition: all 0s ease-in-out, all 0s ease-in-out;
}
@media (min-width: 992px) and (max-width: 1279px) {
  .menu-bar {
    gap: 1em;
  }
}
@media (max-width: 991px) {
  .menu-bar {
    gap: 0.5rem;
  }
}
@media (max-width: 767px) {
  .menu-bar {
    display: none;
  }
}
.menu-bar--leden {
  background-color: var(--menu-color);
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .menu-bar--leden {
    gap: 1rem;
  }
}
.menu-bar--leden__home {
  background: white;
  color: #474747;
  position: relative;
}
.menu-bar--leden__home:before {
  width: 186%;
  height: 92px;
  position: absolute;
  background: white;
  content: "";
  z-index: -1;
  top: -28px;
  left: -64%;
  border-radius: 2.5rem 0 0 2.5rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .menu-bar--leden__home:before {
    height: 84px;
    top: -27px;
    left: -3rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-bar--leden__home:before {
    height: 81px;
    top: -29px;
    left: -3rem;
    width: 200%;
  }
}
.menu-bar--leden__home:hover {
  color: #474747 !important;
}
.menu-bar--leden__home > svg {
  position: relative;
  bottom: 3px;
  right: 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-bar--leden__home {
    font-size: 0.75rem !important;
  }
}
.menu-bar--mobile {
  position: fixed;
  bottom: 2rem;
  top: auto;
  right: 2rem;
}
@media (min-width: 768px) {
  .menu-bar--mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .menu-bar--mobile {
    display: flex;
  }
}
.menu-bar--mobile.sticky {
  top: auto !important;
}
@media (max-width: 991px) {
  .menu-bar--jv {
    gap: 1rem;
  }
}
.menu-bar.sticky {
  position: fixed;
  top: 0.25rem;
  z-index: 10000;
  box-shadow: 0 0.5rem 2rem -0.5rem rgba(139, 68, 2, 0.3);
}
.menu-bar.sidenav {
  position: fixed;
  top: 0.25rem;
  z-index: 10000;
  box-shadow: 0 0.5rem 2rem -0.5rem rgba(139, 68, 2, 0.3);
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
  transition: all 0s ease-in-out, all 0s ease-in-out;
}
.menu-bar--jv__home {
  background: var(--menu-color);
  color: white;
  position: relative;
}
.menu-bar--jv__home:before {
  width: 155%;
  height: 90px;
  position: absolute;
  background: var(--menu-color);
  content: "";
  z-index: -1;
  top: -28px;
  left: -45%;
  border-radius: 2.5rem 0 0 2.5rem;
}
@media (max-width: 1199px) {
  .menu-bar--jv__home:before {
    height: 80px;
    top: -25px;
  }
}
.menu-bar--jv__home:hover {
  color: white !important;
}
.menu-bar--link {
  font-weight: 700;
  font-size: 1.1rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.menu-bar--link:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  color: var(--menu-color);
}
@media (max-width: 1199px) {
  .menu-bar--link {
    font-size: 1rem;
  }
}
.menu-bar--link.ledenservice {
  position: relative;
}
.menu-bar--link.ledenservice:after {
  content: "";
  width: 2px;
  background: #F7F6F6;
  position: absolute;
  right: -1rem;
  height: 88px;
  bottom: -27px;
}
@media (max-width: 1199px) {
  .menu-bar--link.ledenservice:after {
    display: none;
  }
}
.menu-bar--link__ledenservice {
  color: white !important;
}
.menu-bar--link__ledenservice:hover {
  color: white;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-bar--link__ledenservice {
    font-size: 0.75rem;
  }
}
.menu-bar--open {
  font-weight: 700;
  color: var(--menu-color);
  font-size: 1.1rem;
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}
.menu-bar--open__icn {
  font-size: 3.25rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-bar--open__icn {
    font-size: 2rem;
  }
}
.menu-bar--open__ledenservice {
  color: white;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-bar--open__ledenservice {
    font-size: 0.75rem;
  }
}
.menu-bar--search {
  background: var(--background-search);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  width: 2.25rem;
  height: 2.15rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .menu-bar--search {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.menu-bar--search__ledenservice {
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-bar--search__ledenservice {
    width: 25px;
  }
}
.menu-bar--searchform {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.menu-bar--searchform__open {
  z-index: 1000;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.menu-bar--searchform__glass {
  background: var(--background-search);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  width: 1.85rem;
  height: 1.8rem;
  position: absolute;
  top: 27px;
  left: 24px;
}
.menu-bar--searchform__close {
  background: var(--close);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 27px;
  right: 2rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .menu-bar--searchform__close {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.menu-bar--searchform__input {
  background: #F7F6F6;
  border: 1px solid #EBE9E9;
  width: 100%;
  height: 100%;
  padding: 0.5rem 4rem;
  border-radius: 2.5rem;
  font-size: 1rem;
}
.menu-bar--searchform__input::placeholder {
  font-style: italic;
}
.menu-bar--jv__icn {
  position: relative;
  top: 4px;
}
.menu-bar--dropdown {
  box-shadow: rgba(139, 68, 2, 0.2) 0 40px 80px -33px;
  min-width: max-content;
  padding: 0 0.5rem;
  border: none;
  transform: translate3d(-2rem, 2.5rem, 0px) !important;
  inset: 12px auto auto 0px !important;
  min-width: 10rem;
  width: max-content;
  max-height: 360px;
  overflow: auto;
}
.menu-bar--dropdown__item {
  margin: 0.4rem 0;
  padding: 0.1rem 0.75rem;
  background: White;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.menu-bar--dropdown__item:hover {
  background: rgb(252.5, 240.9, 230);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}

.menu-sidenav {
  --open-color: var(--white);
  --menu-open: url(/images/menu-1920.svg);
  -webkit-transition: all 0 ease-in-out;
  -moz-transition: all 0 ease-in-out;
  -ms-transition: all 0 ease-in-out;
  -o-transition: all 0 ease-in-out;
  transition: all 0 ease-in-out;
  transition: all 0 ease-in-out, all 0 ease-in-out;
  width: 100%;
  height: 100vh;
  display: none;
  position: absolute;
  top: 0;
  right: -100vw;
  z-index: 1000;
  background-color: white !important;
}
.menu-sidenav:before {
  background: var(--menu-open);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
}
@media (max-width: 767px) {
  .menu-sidenav:before {
    width: 500%;
  }
}
@media (min-width: 1200px) {
  .menu-sidenav:after {
    width: 100%;
    height: 100%;
    background: var(--menu-color);
    position: absolute;
    top: 0;
    right: -100%;
    content: "";
  }
}
.menu-sidenav--open {
  display: inline-block;
  right: -1px;
  -webkit-transition: all 0 ease-in-out;
  -moz-transition: all 0 ease-in-out;
  -ms-transition: all 0 ease-in-out;
  -o-transition: all 0 ease-in-out;
  transition: all 0 ease-in-out;
  transition: all 0 ease-in-out, all 0 ease-in-out;
}
.menu-sidenav--open__body {
  z-index: 100;
  position: relative;
  top: 8rem;
  width: 105%;
  padding: 0;
}
@media (max-width: 1440px) {
  .menu-sidenav--open__body {
    width: 100%;
    top: 7rem;
  }
}
@media (max-width: 1279px) {
  .menu-sidenav--open__body {
    top: 6rem;
  }
}
@media only screen and (min-height: 1081px) {
  .menu-sidenav--open__body {
    width: 125%;
  }
}
@media only screen and (min-height: 1440px) {
  .menu-sidenav--open__body {
    top: 13rem;
  }
}
@media only screen and (min-height: 1920px) {
  .menu-sidenav--open__body {
    top: 15rem;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .menu-sidenav--open__body {
    top: 7rem;
  }
}
@media (max-width: 767px) {
  .menu-sidenav--open__body {
    display: none;
  }
}
.menu-sidenav--open__mobile {
  z-index: 10000;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: max-content;
}
@media (min-width: 768px) {
  .menu-sidenav--open__mobile {
    display: none;
  }
}
.menu-sidenav--open__mobile--title {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--open-color);
  line-height: 1.4;
  height: 45px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.25rem;
  gap: 1rem;
  margin-bottom: 0;
}
.menu-sidenav--open__mobile--title.zoeken {
  gap: 0.5rem;
}
.menu-sidenav--open__mobile--title svg {
  position: relative;
  top: 4px;
}
.menu-sidenav--open__mobile--list {
  display: grid;
}
.menu-sidenav--open__mobile--list__item {
  text-align: center;
  color: var(--open-color);
  font-size: 1.4rem;
}
.menu-sidenav--open__left {
  display: grid;
  max-width: 450px;
  position: relative;
}
.menu-sidenav--open__left--title {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.8;
  /*height: 85px;*/
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.25rem;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1440px) {
  .menu-sidenav--open__left--title {
    font-size: 1.6rem;
  }
}
.menu-sidenav--open__left--title svg {
  position: relative;
  top: 4px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-sidenav--open__left--title svg {
    width: 11px;
  }
}
.menu-sidenav--open__left--title:after {
  height: 100%;
  width: 800px;
  background: tranparent;
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  border-radius: 100px 0 0 100px;
}
.menu-sidenav--open__left--title[aria-expanded=true] {
  color: var(--open-color);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.menu-sidenav--open__left--title[aria-expanded=true] .menu-sidenav--open__left--title__svg {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  stroke: var(--open-color);
}
.menu-sidenav--open__left--title[aria-expanded=true]:after {
  background: var(--menu-color);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.menu-sidenav--open__right {
  color: var(--open-color);
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-sidenav--open__right {
    padding-left: 5rem;
  }
}
.menu-sidenav--open__right--title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  margin: 15px 0 1rem;
  color: var(--open-color);
}
@media (min-width: 768px) and (max-width: 1440px) {
  .menu-sidenav--open__right--title {
    font-size: 1.6rem;
    /*      margin: 25px 0 1rem;*/
  }
}
.menu-sidenav--open__right--list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-sidenav--open__right--list__item {
  font-size: 1.6rem;
  display: flex;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-sidenav--open__right--list__item {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .menu-sidenav--open__right--list__item svg {
    width: 11px;
  }
}
.menu-sidenav--zoeken__dropdown {
  width: 100%;
  background: transparent;
  border: none;
}
.menu-sidenav--zoeken__dropdown form {
  width: 95%;
  height: 50px;
  margin: auto;
  background: white;
  border-radius: 2rem;
}
.menu-sidenav--zoeken__dropdown form input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem 3.5rem 1.5rem 1.5rem;
}
.menu-sidenav--zoeken__dropdown form button {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.partner {
  display: grid;
  justify-items: center;
  align-items: center;
  width: max-content;
}
.partner img {
  margin-bottom: 1rem;
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.search-results {
  position: relative;
  margin-top: 1.5rem;
}
.search-results--block {
  /*min-height: 150px;*/
  position: relative;
  /*background: $gray;*/
  padding: 0;
  margin-bottom: 2rem;
  display: flex;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .search-results--block {
    margin-bottom: 0.75rem;
    padding: 20px;
    max-height: 100%;
  }
}
.search-results--block:hover {
  color: #E67205;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.search-results--block:hover .search-results--block__text--intro {
  color: #E67205;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.search-results--block:hover .search-results--block__text--title {
  color: #E67205;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.search-results--block__img {
  height: 150px;
  float: left;
  margin-right: 0.75rem;
  position: relative;
  object-fit: cover;
}
.search-results--block__text--title {
  color: #474747;
  line-height: 1.4;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.search-results--block__text--intro {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 6rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.search-results--block .news-landing--block__date {
  font-size: 0.5rem;
}
.search-results--block__tag {
  font-size: 0.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  background: #E67205;
  color: white;
  min-width: 4.4rem;
  padding: 0.1rem 0.15rem;
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
}

.zoeken-resultaten {
  position: relative;
  margin: -0.5rem 0 1rem;
}
.zoeken-resultaten button {
  border: none;
  background: #F7F6F6;
  position: absolute;
  right: 0.25rem;
  top: 0.3rem;
}
@media (max-width: 991px) {
  .zoeken-resultaten button i {
    display: block;
  }
}
.zoeken-resultaten i {
  color: #E67205;
  right: 1rem;
  position: relative;
  top: 3px;
  font-size: 1.5rem;
}
.zoeken-resultaten a:after {
  height: 0;
}
.zoeken-resultaten input {
  background: #F7F6F6;
  border: 1px solid #EBE9E9;
  width: 100%;
  height: 100%;
  padding: 0.5rem 1rem;
  border-radius: 2.5rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.zoeken-resultaten input::placeholder {
  font-style: italic;
}

.subdiensten {
  position: relative;
  height: 11.75rem;
  margin: 2rem 0;
}
@media (max-width: 767px) {
  .subdiensten {
    height: auto;
  }
}
.subdiensten-img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
  height: 11.75rem;
}
@media (max-width: 767px) {
  .subdiensten-img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .subdiensten-body {
    padding: 1rem 0;
    min-height: 7.5rem;
  }
}
.subdiensten-body--title {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 4rem;
}
.subdiensten-body--intro {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 6rem;
  margin: 0.5rem 0;
}
.subdiensten-scroll {
  position: relative;
  top: -250px;
  visibility: hidden;
}

.verloop {
  margin-bottom: 4rem;
}
.verloop .s-intro {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.verloop-item {
  margin-bottom: 2rem;
  overflow: hidden;
  text-align: left;
}
@media (max-width: 767px) {
  .verloop-item {
    text-align: center;
  }
}
.verloop-item--icon {
  background-color: #F7F6F6;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  margin: 0 0 20px;
  display: grid;
  justify-items: center;
  align-items: center;
}
@media (max-width: 767px) {
  .verloop-item--icon {
    margin: 0 auto 20px;
  }
}
.verloop-item--icon__icn {
  background: #E67205;
  width: 70px;
  height: 70px;
}
.verloop-item--title {
  margin-bottom: 0.5rem;
}
.verloop-item--text {
  margin: 0;
}
.verloop-item--step {
  color: #E67205;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.backdrop {
  position: absolute;
  z-index: -10;
  top: 1440px;
  width: 100%;
}
.backdrop--home {
  top: 1330px;
}
@media (max-width: 767px) {
  .backdrop--home {
    display: none;
  }
}
.backdrop--mobile {
  top: 30rem;
  width: 104%;
}
@media (min-width: 768px) {
  .backdrop--mobile {
    display: none;
  }
}

.breadcrumbs {
  margin: 0 0 0.5rem;
  display: flex;
  gap: 0.25rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.breadcrumbs-item {
  font-size: 0.75rem;
  color: #474747;
  opacity: 0.5;
  text-decoration: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.breadcrumbs-item:hover {
  opacity: 1;
  color: #E67205;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.breadcrumbs-icn {
  font-size: 1rem;
  opacity: 0.5;
  position: relative;
  top: 0.05rem;
}

.btn-main, .btn-verwijzer, .btn-partner, .btn-news, .btn-small, .btn-diensten, .btn-footer, .btn-second {
  background: #E67205;
  border-radius: 2rem;
  font-weight: 700;
  color: white;
  padding: 0.75em 1.5em;
  font-size: 1.1rem;
  display: inline-block;
  text-align: center;
  height: max-content;
}
@media (max-width: 991px) {
  .btn-main, .btn-verwijzer, .btn-partner, .btn-news, .btn-small, .btn-diensten, .btn-footer, .btn-second {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .btn-main, .btn-verwijzer, .btn-partner, .btn-news, .btn-small, .btn-diensten, .btn-footer, .btn-second {
    font-size: 16px;
  }
}
.btn-main:hover, .btn-verwijzer:hover, .btn-partner:hover, .btn-news:hover, .btn-small:hover, .btn-diensten:hover, .btn-footer:hover, .btn-second:hover {
  color: white !important;
}
.btn-second {
  background: white;
  color: #474747;
}
.btn-second:hover {
  color: #474747 !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .btn-second {
    font-size: 0.75rem;
  }
}
.btn-footer {
  padding: 0.75rem 2.5rem;
}
@media (max-width: 767px) {
  .btn-footer {
    padding: 1rem;
  }
}
@media (max-width: 363px) {
  .btn-footer {
    padding: 0.5rem 0.75rem;
  }
}
.btn-footer__icn {
  margin-right: 0.5rem;
}
@media (max-width: 575px) {
  .btn-footer__icn {
    margin-right: 0.25rem;
  }
}
.btn-cta {
  border: 1px solid #E67205;
  background-color: white;
  border-radius: 2rem;
  font-weight: 700;
  color: #E67205;
  padding: 0.75em 1em 0.75em;
  font-size: 1.1rem;
  position: relative;
  box-shadow: 0 10px 40px -10px rgba(139, 68, 2, 0.2);
  margin: 1rem 0;
  display: inline-block;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.btn-cta:hover {
  transform: scale(1.02);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  box-shadow: 0 10px 40px -10px rgba(139, 68, 2, 0.4);
}
.btn-download {
  border: 1px solid #E67205;
  border-radius: 2rem;
  font-weight: 700;
  color: #E67205;
  padding: 0.75em 1em 0.75em 2.75em;
  font-size: 1.1rem;
  position: relative;
  box-shadow: 0 10px 40px -10px rgba(139, 68, 2, 0.2);
  margin: 1rem 0;
  display: inline-block;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.btn-download:hover {
  transform: scale(1.02);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  box-shadow: 0 10px 40px -10px rgba(139, 68, 2, 0.4);
}
.btn-download:before {
  -webkit-mask-image: url(/images/play.svg);
  -o-mask-image: url(/images/play.svg);
  -moz-mask-image: url(/images/play.svg);
  mask-image: url(/images/play.svg);
  -webkit-mask-repeat: no-repeat;
  -o-mask-repeat: no-repeat;
  -moz-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -o-mask-position: center;
  -moz-mask-positiont: center;
  mask-position: center;
  background-color: #E67205;
  content: "";
  position: absolute;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  left: 0.35rem;
  top: 0.6rem;
  margin-right: 0.5rem;
}
.btn-diensten {
  position: absolute;
  bottom: 0;
}
@media (max-width: 767px) {
  .btn-diensten {
    position: inherit;
    display: inline-block;
    margin: 1rem 0;
  }
}
.btn-small {
  padding: 0.5em 0.75rem;
  font-size: 0.9rem;
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
}
.btn-news {
  margin: 0 auto 4rem;
  display: table;
}
@media (max-width: 767px) {
  .btn-news {
    margin: 1rem auto 4rem;
  }
}
.btn-cookie {
  background: white;
  color: #E67205;
  padding: 0.5rem;
  border-radius: 0.2rem;
  font-weight: 700;
}
@media (max-width: 575px) {
  .btn-cookie {
    width: 48%;
    text-align: center;
  }
}
.btn-noodmelding {
  background: white;
  color: #E67205;
  padding: 0.5rem 0.75rem;
  border-radius: 0.2rem;
  font-weight: 700;
  float: right;
  margin-top: 0.5rem;
}
.btn-verwijzer {
  font-size: 0.75rem;
}

.btn-download:not([id=omvwerken]) {
  margin-right: 1rem;
}

.card {
  width: 100%;
  min-height: 24.5rem;
  display: block;
  position: relative;
  margin: 0 0 4rem;
  background: #F7F6F6;
  border-radius: 0 0 0.2rem 0.2rem;
  transform: scale(1);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
@media (max-width: 991px) {
  .card {
    margin: 1rem 0;
    min-height: auto;
    padding-bottom: 1rem;
  }
}
.card:hover {
  transform: scale(1.02);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  box-shadow: 0 32px 20px -20px rgba(122, 61, 4, 0.2);
}
.card-img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  border-radius: 0.2rem 0.2rem 0 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .card-img {
    height: 16rem;
  }
}
.card-body {
  padding: 0.5rem 1rem;
  width: 100%;
}
.card-body > a {
  text-decoration: none;
}
.card-body--title {
  margin: 0 0 0.5rem;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 4rem;
  color: #474747;
}
.card-body--intro {
  margin: 0;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 6rem;
}
.card-body--date {
  font-size: 0.75rem;
  color: #606060;
  margin: 0.5rem 0;
}
.card-body--themas {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
@media (max-width: 575px) {
  .card-body--themas {
    margin: 0.5rem 0;
  }
}

@media (min-width: 992px) {
  .col-card-12 {
    max-width: 50%;
  }
}

.carousel {
  position: relative;
  width: 100%;
  margin: 2rem auto;
}
@media (max-width: 767px) {
  .carousel {
    margin-bottom: 4rem;
  }
}
.carousel-item.active {
  display: flex;
}
.carousel-item img {
  width: 100%;
  height: 706px;
  object-fit: cover;
}
@media (min-width: 992px) and (max-width: 1279px) {
  .carousel-item img {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .carousel-item img {
    height: 450px;
  }
}
.carousel-item .clone {
  margin-left: -38%;
  clip-path: url(../../css/#carouselWave);
}
@media (min-width: 1441px) and (max-width: 1679px) {
  .carousel-item .clone {
    margin-left: -45%;
  }
}
@media (min-width: 1280px) and (max-width: 1440px) {
  .carousel-item .clone {
    margin-left: -50%;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .carousel-item .clone {
    margin-left: -55%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .carousel-item .clone {
    margin-left: -55%;
  }
}
.carousel-control {
  opacity: 0.75;
}
@media (max-width: 767px) {
  .carousel-control {
    position: absolute;
    bottom: -2rem;
    height: max-content;
    top: auto;
    opacity: 1;
    width: 25%;
  }
}
@media (max-width: 767px) {
  .carousel-control-prev {
    left: 1rem;
  }
}
@media (max-width: 767px) {
  .carousel-control-next {
    right: 1rem;
  }
}
.carousel-control:hover {
  opacity: 1;
}
.carousel-control--chevron {
  width: 4rem;
  height: 4rem;
  background: white;
  border-radius: 50%;
  fill: #E67205;
}
@media (max-width: 767px) {
  .carousel-control--chevron {
    width: 5rem;
    height: 5rem;
  }
}
.carousel-control--chevron.prev {
  padding: 8px 8px 8px 0;
}
.carousel-control--chevron.next {
  padding: 8px 0 8px 8px;
}
.carousel .carousel-inner .carousel-item.active,
.carousel .carousel-inner .carousel-item-next,
.carousel .carousel-inner .carousel-item-prev {
  display: flex;
}

@media (max-width: 767px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}
/**/
/**/
/* medium and up screens */
/*@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {*/
/*  transform: translateX(75%);*/
/*}

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {*/
/* transform: translateX(-75%);*/
/*}

    .clone {*/
/*    margin-left: -40%;
        clip-path: url(../../css/#carouselWave);*/
/*}


    .carousel-item {
        &.active {
            & img {*/
/* clip-path: none;*/
/* @include transition(clip-path 0s ease-in-out);*/
/*}
        }

        img {*/
/*     width: 1680px;
            height: 706px;
            object-fit: cover;*/
/*clip-path: url(../../css/#carouselWave);*/
/*  @include transition(clip-path 0s ease-in-out);*/
/*}
    }


    .clone img, .carousel-item-next img {*/
/*      border-top-left-radius: 50%;*/
/*}*/
/* .clone .carousel-card {
        background: transparent;
    }*/
/*}*/
.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

.content-cta {
  margin: 2rem 0;
  padding: 2rem 0 3rem;
  position: relative;
}
.content-cta--intro {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .content-cta--intro {
    font-size: 1.2rem;
  }
}
.content-cta--btn {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.modal-open {
  overflow: auto;
}

.cookie {
  background: #E67205;
  bottom: 2rem;
  box-shadow: 0 0.35rem 0.6rem rgba(0, 0, 0, 0.2);
  color: white;
  position: fixed;
  left: 1rem;
  width: 23rem;
  z-index: 100000;
  animation: 0.3s ease-out 0s 1 slideInFromBottom;
  display: block;
  border-radius: 0.2rem;
  padding: 1rem 1rem 0.5rem;
}
@media (max-width: 575px) {
  .cookie {
    width: 100%;
    bottom: 0;
    left: 0;
  }
}
.cookie-close {
  margin: 1rem 0 1rem;
  display: block;
  -webkit-appearance: none;
}
.cookie-close i {
  position: relative;
  bottom: 1rem;
  float: right;
  font-size: 1.3rem;
  color: white;
}
.cookie--text {
  font-style: normal;
  line-height: 1.4;
  display: block;
  width: 100%;
}
.cookie--text p {
  margin: 0 !important;
}
.cookie--text a {
  color: white;
  font-weight: 700;
}
@media (max-width: 575px) {
  .cookie--text {
    margin-left: 6px;
  }
}
.cookie-buttons {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
}

.download {
  margin: 1rem 0;
}
.download a {
  display: block;
  position: relative;
  padding-left: 1.5rem;
  width: 100%;
  margin: 0.5rem 0;
  line-height: 1.8;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.download a span {
  font-size: 0.75rem;
  opacity: 0.8;
  font-style: italic;
}
.download a:before {
  background: url(/images/rating-booklet.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1rem;
  height: 1.65rem;
  position: absolute;
  left: 0;
  top: 0.1rem;
  content: "";
}
.download a:hover {
  color: #E67205;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, color 0.2s ease-in-out;
}

:is(.welzijn) .faq-question, :is(.welzijn) .faq-icn {
  --thema-color: #6bc2b7;
}

.faq-answer, .faq-question {
  padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  border-radius: 0.2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .faq-answer > .col-1, .faq-question > .col-1 {
    width: 5%;
  }
}

.faq {
  margin-bottom: 4rem;
}
.faq > h2 {
  margin-bottom: 1rem;
}
.faq-question {
  min-height: 4rem;
  border: 0.05rem solid var(--thema-color);
  cursor: pointer;
}
.faq-answer {
  background: #fafafa;
}
.faq-answer--body > h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.faq-answer--body > p, .faq-answer--body ul, .faq-answer--body ol {
  margin-top: 0;
}
.faq-answer--body > ul, .faq-answer--body ol {
  padding: 0 0.75rem;
}
.faq-icn {
  font-weight: 800;
  color: var(--thema-color);
  float: left;
  font-size: 1.25rem;
  height: 100%;
  position: relative;
  bottom: 0.15rem;
}
.faq-icn--close {
  transform: rotate(45deg);
  display: inline-block;
}

.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper select, .umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper textarea, .umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper input[type=text] {
  width: 100%;
  border: 1px solid #AFA9A7;
  padding: 0.5rem 1rem;
  max-width: 100% !important;
  margin: 0.5rem 0;
  border-radius: 0.2rem;
  background: #fafafa;
  font-size: 1rem;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper select:focus, .umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper textarea:focus, .umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper input[type=text]:focus {
  background: white;
}

.umbraco-forms-form {
  padding: 0;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset {
  margin: 0;
  padding: 0;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .row {
  margin: 0;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container {
  padding: 0 1rem 0 0;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field {
  margin: 1rem 0;
  display: grid;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.longanswer .umbraco-forms-label, .umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.shortanswer .umbraco-forms-label {
  margin: 1rem 0 0.5rem;
  /*   display: none;*/
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-label {
  margin: 1rem 0 0.5rem;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-tooltip {
  font-size: 0.9rem;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper .field-validation-error {
  display: block;
  font-size: 1rem;
  margin: 0.5rem 0;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper input[type=checkbox] {
  position: relative;
  bottom: 0.1rem;
  left: 0.1rem;
  margin-right: 0.6rem;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper textarea {
  height: 6.3rem;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field .umbraco-forms-field-wrapper .checkboxlist label {
  float: none;
  clear: unset;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.fileupload {
  margin: 1.25rem 0;
}
@media (min-width: 768px) {
  .umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.date input {
    max-width: 50%;
  }
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.checkbox {
  position: relative;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.checkbox input {
  position: absolute !important;
  left: 0;
  top: 1.5rem;
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.checkbox label {
  margin-left: 1.5rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.dropdown select {
    max-width: 50%;
  }
}
.umbraco-forms-form form .umbraco-forms-page .umbraco-forms-fieldset .umbraco-forms-container .umbraco-forms-field.racaptcha2 {
  margin: 1.25rem 0;
}
.umbraco-forms-form form .field-validation-error {
  color: #E67205 !important;
}

.umbraco-forms-form input.text, .umbraco-forms-form input.title, .umbraco-forms-form textarea, .umbraco-forms-form select {
  margin: 0.5em 0;
  border: 1px solid #bbb;
}

.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 2rem !important;
  max-width: 100%;
  padding: 25px;
  border: 1px dashed #B1AAA6;
  border-radius: 3px;
  transition: 0.2s;
  background: white;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.file-drop-area:hover {
  background: rgb(239.4, 238, 237.2);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.file-drop-area.is-active {
  background: rgb(239.4, 238, 237.2);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.file-drop-area svg {
  margin: 0 0.6rem 0 0.6rem;
  position: relative;
  bottom: 0.2rem;
}

/*.file-msg {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/
.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.file-input:focus {
  outline: none;
}

.row-fluid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.gm-style .gm-style-iw-c {
  font-weight: bold !important;
  max-width: 500px !important;
}
.gm-style .gm-style-iw-c #content {
  padding: 0 3rem 0 0 !important;
}
.gm-style .gm-style-iw-c #content p {
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
  margin: 0.25em 0 0.5em;
  font-weight: 400;
}
.gm-style .gm-style-iw-c #content p > a {
  color: #E67205;
  text-decoration: underline !important;
  font-weight: 700 !important;
}

.gm-ui-hover-effect {
  right: 8px !important;
  opacity: 1 !important;
}
.gm-ui-hover-effect > span {
  width: 1.25rem !important;
  height: 1.25rem !important;
  margin: 10px !important;
  background: #E67205;
}

.login-overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(252.5, 240.9, 230);
  margin: 0;
  overflow: hidden;
  position: fixed;
  inset: 0;
}
.login-body {
  width: 450px;
  height: max-content;
  position: relative;
  margin: 160px auto;
  display: block;
  padding: 1.5rem 1.5rem 3rem;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 1px, rgba(0, 0, 0, 0.04) 0px 2px 2px, rgba(0, 0, 0, 0.04) 0px 4px 4px, rgba(0, 0, 0, 0.04) 0px 8px 8px, rgba(0, 0, 0, 0.04) 0px 16px 16px;
  background: white;
  border-radius: 0.2rem;
}
@media only screen and (max-width: 1300px) {
  .login-body {
    margin: 80px auto;
  }
}
@media (max-width: 767px) {
  .login-body {
    width: 75%;
    margin: 40px auto;
  }
}
.login-body--title {
  text-align: center;
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.login-body--logo {
  width: 75%;
  margin: 0 auto 1rem;
  display: block;
}
.login-body--form {
  margin: 1rem 0 0;
}
.login-body--form input {
  width: 100%;
  border: 1px solid #AFA9A7;
  padding: 0.5rem 1rem;
  max-width: 100% !important;
  margin: 0.5rem 0;
  border-radius: 0.2rem;
  background: #fafafa;
}
.login-body--form input:focus {
  background: white;
}
.login-body--form .remember {
  margin-top: 1rem;
}
.login-body--form .remember input {
  margin: 0 0.5rem 0 0;
  padding: 0;
  width: auto;
  float: left;
  position: relative;
  top: 10px;
}

.noodmelding {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000000;
  background: #E67205;
  box-shadow: 0 0.35rem 0.6rem rgba(0, 0, 0, 0.2);
  animation: 0.3s ease-out 0s 1 slideInFromTop;
  color: white;
  padding: 1rem 2rem;
  max-width: 600px;
  width: 100%;
  border-radius: 0.2rem;
}
.noodmelding--extern {
  z-index: 10000000;
}
@media (max-width: 767px) {
  .noodmelding {
    padding: 1rem;
  }
}
.noodmelding p {
  margin: 0;
}

.pagination {
  display: table;
  margin: 2rem auto;
}
.pagination--first {
  margin: 0;
}
.pagination--number {
  margin: 0 1rem !important;
}
.pagination li {
  float: left;
  margin-left: 15px;
  list-style-type: none;
}
.pagination a {
  color: #474747;
}
.pagination a span {
  font-size: 1.2rem;
  position: relative;
  top: 0.15rem;
}
.pagination a {
  margin: 0.5rem 0;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -ms-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, color 0.2s ease-in-out;
  cursor: pointer;
}
.pagination a:hover {
  color: #E67205;
}
.pagination a.current {
  font-weight: 700;
  color: #E67205;
}
.pagination a.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pijltje {
  background: url(/images/pijltje.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-size: contain;
  display: block;
  margin: 3rem auto 4rem;
  width: 1.6rem;
  height: 1.6rem;
  /*
      &:not(.mobiel) {
          @include respond-below(md) {
              display: none;
          }
      }*/
}
@media (max-width: 767px) {
  .pijltje {
    margin: 1rem auto;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pijltje {
    margin: 0.75rem auto;
  }
}

.quote {
  margin-bottom: 4rem;
}
.quote-avatar {
  border-radius: 50%;
  float: left;
  width: 8.5rem;
  height: 8.5rem;
}
@media (max-width: 991px) {
  .quote-avatar {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 992px) {
  .quote-body {
    padding-left: 1.5rem;
  }
}
.quote-body > p {
  font-weight: 300;
  font-size: 2rem;
  font-style: italic;
  margin: 0;
}
.quote-body > p > a {
  font-weight: 300;
  color: #474747;
  text-decoration: none;
  font-size: 2rem;
  font-style: italic;
  margin: 0;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  cursor: pointer;
  padding: 0;
  line-height: 2;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.styled-checkbox + label.paged {
  margin-left: 2rem;
}
.styled-checkbox + label.paged:before {
  left: 0;
}
.styled-checkbox + label:hover {
  color: #E67205;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
}
.styled-checkbox + label:hover:before {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  background: url(/images/checkbox-hover.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.styled-checkbox + label:before {
  content: "";
  background: url(/images/checkbox.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  left: 0;
  margin-top: 0.45rem;
}
.styled-checkbox:disabled + label {
  color: #F7F6F6;
  opacity: 0.6;
}
.styled-checkbox:disabled + label:before {
  opacity: 0.8;
}
.styled-checkbox:checked + label:before {
  background: url(/images/checked.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.checkboxlist label {
  /*margin-left: .25rem;*/
}
@media (max-width: 767px) {
  .checkboxlist label {
    margin-left: -29px !important;
    left: 30px;
    position: relative;
  }
  .checkboxlist label:before {
    left: -1.85rem;
  }
}

.dataconsent .styled-checkbox label {
  margin-left: 0.45rem;
}
@media (max-width: 767px) {
  .dataconsent .styled-checkbox label {
    margin-left: -29px !important;
    left: 30px;
    position: relative;
  }
}
.dataconsent .styled-checkbox + label:before {
  left: 0rem;
}

.checkbox label {
  margin-left: 2.5rem !important;
}
.checkbox label:before {
  left: -50px;
  top: -52px;
}

.styled-radio {
  font-weight: normal;
  position: relative;
  padding-left: 1.5rem;
  margin-left: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (max-width: 767px) {
  .styled-radio {
    display: block;
  }
}
.styled-radio label {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, all 0.3s ease-in-out;
  line-height: 2;
}
.styled-radio label:hover {
  color: #E67205;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, all 0.3s ease-in-out;
}
.styled-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.styled-radio input:checked ~ .styled-radio--btn {
  background-color: #E67205;
  border: 6px solid white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, all 0.3s ease-in-out;
}
.styled-radio input:checked ~ .styled-radio--btn:after {
  display: block;
}
.styled-radio--btn {
  position: absolute;
  top: 0.15rem;
  left: -0.8rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: white;
  box-shadow: 0px 0px 0px 1px #AFA9A7;
  /* border: .5px solid $gray-dark;*/
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, all 0.3s ease-in-out;
}
.styled-radio--btn > .dataconsent {
  top: 100px;
}
.styled-radio:hover input ~ .styled-radio--btn {
  background-color: #E67205;
  border: 6px solid white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out, all 0.3s ease-in-out;
}

.svg-header {
  position: absolute;
  z-index: -10;
  width: 101%;
  left: -9rem;
  top: -1rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .svg-header {
    left: -2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .svg-header {
    left: -4rem;
  }
}
@media (max-width: 575px) {
  .svg-header--desktop {
    display: none;
  }
}
.svg-header--mobile {
  top: -7rem;
  left: auto;
  right: 1rem;
}
@media (min-width: 576px) {
  .svg-header--mobile {
    display: none;
  }
}
@media (max-width: 363px) {
  .svg-header--mobile {
    right: 2rem;
  }
}
.svg-header--home {
  left: -2px;
  top: 0rem;
  z-index: 1;
}
@media (max-width: 575px) {
  .svg-header--home {
    display: none;
  }
}
.svg-homemobile {
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}
@media (min-width: 576px) {
  .svg-homemobile {
    display: none;
  }
}
.svg-path {
  fill: white;
}

.video {
  margin: 1.5rem 0 6rem;
  position: relative;
}
.video--title {
  text-align: center;
}
@media (min-width: 768px) {
  .video--title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .video--title {
    text-align: left;
  }
}
.video-scroll {
  height: 4rem;
  margin-top: -8rem;
}
.video-container {
  margin: 2rem 0;
  /* padding: 4rem 0;*/
}
.video video {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .video video {
    width: 112%;
    position: relative;
    left: -6%;
  }
}
.video--play {
  width: 6.9rem;
  height: 6.9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline;
}
.video--play:before {
  background: url(/images/play-button.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 32px 20px -20px rgba(122, 61, 4, 0.2);
  border-radius: 50%;
  content: "";
  width: 6.7rem;
  height: 6.7rem;
  display: block;
}
@media (max-width: 767px) {
  .video--play:before {
    width: 3.25rem;
    height: 3.25rem;
  }
}
@media (max-width: 767px) {
  .video--play {
    width: 4.15rem;
    height: 4.15rem;
  }
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin: 2rem 0 4rem;
}
.video-wrapper iframe, .video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-cookie {
  width: 100%;
  height: 416px;
  position: relative;
  margin: 2rem 0 4rem;
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .video-cookie {
    height: auto;
    min-height: 320px;
  }
}
.video-cookie--thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: soft-light;
  border-radius: 0.2rem;
}
.video-cookie:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #E67205;
  border-radius: 0.2rem;
}
.video-cookie--icn {
  width: 5rem;
  height: 5rem;
  background: rgba(255, 255, 255, 0.8);
  margin: auto;
  display: grid;
  justify-items: center;
  align-items: center;
  border-radius: 50%;
}
.video-cookie--icn__svg {
  fill: #E67205;
  height: 3rem;
}
.video-cookie--body {
  position: absolute;
  top: 15%;
  width: 100%;
  height: max-content;
  padding: 0 1.5rem 1.5rem;
  text-align: center;
  color: white;
  font-weight: 700;
}
.video-cookie--body__title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}
.video-cookie--body__btn {
  margin: auto;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  /*
  a {
      color: white;
      font-size: rem(25);
      font-weight: $bold;
      text-decoration: none;
      @include transition(text-decoration .2s ease-in-out);

      &:hover {
          color: white;
          @include transition(text-decoration .2s ease-in-out);
          text-decoration: underline;
      }
  }*/
}

:is(.content--paragraaf) .video--play {
  width: 3rem;
  height: 3rem;
}
:is(.content--paragraaf) .video--play:before {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 767px) {
  :is(.content--paragraaf) video {
    width: 100%;
    position: relative;
    left: auto;
  }
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fafafa;
  border-radius: 4px;
  border: 1px solid #AFA9A7;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-weight: normal;
  outline: none;
  padding: 0.5rem 1rem;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  margin: 0.5rem 0;
  min-height: 54px;
}
.nice-select:hover {
  border: 1px solid #E67205;
  /*  color: $second-color;*/
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #AFA9A7;
  background: white;
  color: #474747;
  display: block;
}
.nice-select:after {
  background: url(/images/select.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 2.4rem;
  width: 1.9rem;
  margin-top: -0.2rem;
  pointer-events: none;
  position: absolute;
  right: 6px;
  top: 6px;
  transform: scale(0.8);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: rgb(251.8, 251.4, 251.4);
  color: #F7F6F6;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: rgb(251.3191489362, 165.9234042553, 85.6808510638);
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 0.8rem;
  height: 1.8rem;
  line-height: 1.8rem-2;
}
.nice-select.small:after {
  height: 0.2rem;
  width: 0.2rem;
}
.nice-select.small .option {
  line-height: 1.8rem-2;
  min-height: 1.8rem-2;
}
.nice-select .list {
  background-color: #fafafa;
  -webkit-box-shadow: 0 8px 9px -7px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 8px 9px -7px rgba(0, 0, 0, 0.5);
  box-shadow: 0 8px 9px -7px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0.5rem 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-2.1rem/2);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
  border-radius: 4px !important;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  list-style: none;
  outline: none;
  text-align: left;
  transition: all 0.2s;
  margin: 0.3rem 0.5rem 0.3rem;
  /*        font-size: rem(20);*/
  line-height: 2;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  color: #E67205;
}
.nice-select .option.selected {
  color: #E67205;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #E67205;
  cursor: default;
  display: none;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

.activ {
  display: grid;
  gap: 1.5rem;
  z-index: 6;
  position: relative;
  margin-top: 3rem;
}
.activ__item {
  display: flex;
  max-width: 52.5rem;
  border-radius: 1rem;
  padding: 1rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  transform: scale(1);
  box-shadow: 0 32px 20px -20px rgba(122, 61, 4, 0);
  background-color: hsla(0, 0%, 100%, 0);
}
.activ__item:hover {
  box-shadow: 0 32px 20px -20px rgba(122, 61, 4, 0.1);
  background-color: hsla(0, 0%, 100%, 0.6);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  transform: scale(1.02);
}
@media (min-width: 576px) {
  .activ__item {
    gap: 1rem;
  }
}
.activ__date {
  width: 5rem;
  height: 5rem;
  background: #E67205;
  color: var(--white);
  flex: none;
  display: grid;
  place-content: center;
  align-content: space-evenly;
  border-radius: 1rem;
  font-weight: 700;
  line-height: 0.2;
}
@media (max-width: 575px) {
  .activ__date {
    transform: scale(0.8);
  }
}
.activ__date-day {
  font-size: 2.5rem;
  text-align: center;
}
.activ__date-month {
  font-size: 1.5rem;
  text-align: center;
}
.activ__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
}
.activ__body {
  width: 100%;
}
.activ__body > h3, .activ__body > p {
  margin: 0;
}
.activ__body > p {
  max-width: 36rem;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 4rem;
}
@media (max-width: 575px) {
  .activ__body > p {
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    display: block;
    /* autoprefixer: off */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 6rem;
  }
}
.activ__body > a {
  float: right;
  font-weight: 700;
}
.activ__time {
  color: #E67205;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

:is(.welzijn) .menu-bar {
  --menu-color: hsl(172, 42%, 59%);
  --background-search: url(/images/search-welzijn.svg);
  --close: url(/images/close-welzijn.svg);
}
:is(.welzijn) .menu-bar .btn-main, :is(.welzijn) .menu-bar .btn-second, :is(.welzijn) .menu-bar .btn-footer, :is(.welzijn) .menu-bar .btn-diensten, :is(.welzijn) .menu-bar .btn-small, :is(.welzijn) .menu-bar .btn-news, :is(.welzijn) .menu-bar .btn-partner, :is(.welzijn) .menu-bar .btn-verwijzer {
  background-color: var(--menu-color);
  color: var(--black);
}
:is(.welzijn) .menu-bar span {
  color: var(--black);
}

:is(.welzijn) .menu-sidenav {
  --menu-open: url(/images/menu-1920-welzijn.svg);
  --menu-color: hsl(172, 42%, 59%);
  --open-color: var(--black);
}

.paging {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto 2rem;
  width: max-content;
  background-color: var(--white);
  border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow: 0px 20px 30px -20px rgba(0, 0, 0, 0.25);
  max-width: 100%;
  margin-bottom: 3rem;
}
.paging > a {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.paging > a:not(.disabled) {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  text-decoration-color: transparent;
}
.paging > a:not(.disabled):hover {
  color: var(--thema-color);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--thema-color);
  text-underline-offset: 4px;
}
.paging__pagenumbers {
  display: inline-flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .paging__pagenumbers {
    margin: 0;
  }
}
.paging__pagenumbers > a {
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  font-weight: 600;
  text-decoration-color: transparent;
}
.paging__pagenumbers > a.active {
  color: var(--thema-color);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--thema-color);
  text-underline-offset: 4px;
}
.paging__pagenumbers > a:hover {
  color: var(--thema-color);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--thema-color);
  text-underline-offset: 4px;
}
.paging__pagenumbers > a.current {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out, all 0.2s ease-in-out;
  text-decoration: underline;
  color: var(--thema-color);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--thema-color);
  text-underline-offset: 4px;
}
.paging .disabled {
  color: #F7F6F6;
  cursor: not-allowed;
}

.t-welzijn {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-evenly;
}
@media (min-width: 768px) {
  .t-welzijn {
    margin-top: 7rem;
  }
}
.t-welzijn__item {
  --t-color: var(--meedoen);
  --t-bg: var(--meedoen-light);
  background-color: var(--t-bg);
  color: var(--t-color);
  width: calc(33.33% - 1rem);
  position: relative;
}
@media (max-width: 767px) {
  .t-welzijn__item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
  }
}
.t-welzijn__item--ondersteunen {
  --t-color: var(--ondersteunen);
  --t-bg: var(--ondersteunen-light);
}
.t-welzijn__item--jeugd {
  --t-color: var(--jeugd);
  --t-bg: var(--jeugd-light);
}
.t-welzijn img {
  border-radius: 50%;
  position: relative;
  bottom: 3.75rem;
  display: block;
  margin: 0 auto -3.75rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .t-welzijn img {
    width: 7.5rem;
  }
}
@media (max-width: 767px) {
  .t-welzijn img {
    width: 7rem;
    height: 7rem;
    bottom: auto;
    margin: 0;
    flex: none;
  }
}
.t-welzijn__body {
  padding: 1rem 0.5rem 1rem;
}
@media (max-width: 767px) {
  .t-welzijn__body {
    padding: 0;
    width: 100%;
  }
}
.t-welzijn__body > h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .t-welzijn__body > h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .t-welzijn__body > h2 {
    text-align: left;
    font-size: 22px;
  }
}
.t-welzijn__body > a {
  font-weight: 700;
  float: right;
}
@media (min-width: 768px) {
  .t-welzijn__body > a {
    right: 1rem;
    position: absolute;
    bottom: 1rem;
  }
}
.t-welzijn__vragen {
  display: grid;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .t-welzijn__vragen {
    margin: 1.5rem 0 1rem;
    padding-bottom: 2rem;
  }
}
.t-welzijn__vragen > a {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .t-welzijn__vragen > a {
    font-size: 0.9rem;
  }
}

.tag {
  --thema-bg: var(--thema-light);
  --thema-color: var(--thema-color);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 0.25rem;
  background-color: var(--thema-bg);
  color: var(--thema-color);
  height: 1.1rem;
  padding: 0 0.5rem;
  display: grid;
  place-content: center;
  width: max-content;
}
.tag--meedoen {
  --thema-bg: var(--meedoen-light);
  --thema-color: var(--meedoen);
}
.tag--ondersteunen {
  --thema-bg: var(--ondersteunen-light);
  --thema-color: var(--ondersteunen);
}
.tag--jeugd {
  --thema-bg: var(--jeugd-light);
  --thema-color: var(--jeugd);
}
.t-vragen {
  --vragen: var(--meedoen);
  display: grid;
  gap: 1.5rem;
  max-width: 55rem;
  margin: 3rem auto 6rem;
  position: relative;
  z-index: 10;
}
.t-vragen--ondersteunen {
  --vragen: var(--ondersteunen);
}
.t-vragen--jeugd {
  --vragen: var(--jeugd);
}
.t-vragen__item {
  display: flex;
  height: max-content;
  gap: 1rem;
  border: 1px solid var(--vragen);
  background-color: var(--white);
  height: 12.5rem;
}
@media (max-width: 575px) {
  .t-vragen__item {
    flex-direction: column;
    height: max-content;
  }
}
.t-vragen__item > img {
  width: 23rem;
  object-fit: cover;
  flex: none;
}
@media (min-width: 576px) and (max-width: 991px) {
  .t-vragen__item > img {
    width: 220px;
  }
}
@media (max-width: 575px) {
  .t-vragen__item > img {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.t-vragen__body {
  width: 100%;
  position: relative;
  padding: 1rem 1rem 0 0;
}
@media (max-width: 575px) {
  .t-vragen__body {
    padding: 0 1rem;
  }
}
.t-vragen__body > h3 {
  color: var(--vragen);
}
.t-vragen__body > p {
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: block;
  /* autoprefixer: off */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 6rem;
}
@media (min-width: 576px) and (max-width: 767px) {
  .t-vragen__body > p {
    margin: 0;
  }
}
.t-vragen__body > a {
  color: var(--vragen);
  font-weight: 700;
  float: right;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .t-vragen__body > a {
    right: 1rem;
    position: absolute;
    bottom: 0;
  }
}

.w-cta {
  margin: 3rem 0 5rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.w-cta * {
  margin: 0;
}
.w-cta p {
  max-width: 700px;
  margin: auto;
}
.w-cta > a {
  width: max-content;
}
@media (max-width: 767px) {
  .w-cta {
    text-align: left;
  }
}

.over-sante {
  margin: 3rem 0 5rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.over-sante * {
  margin: 0;
}
.over-sante p {
  max-width: 700px;
  margin: auto;
}
.over-sante > a {
  width: max-content;
}
@media (max-width: 767px) {
  .over-sante {
    text-align: left;
  }
}

.w-header {
  position: relative;
  padding-bottom: 4rem;
}
.w-header::after {
  content: url(/images/welzijn-w-after.svg);
  position: absolute;
  bottom: -0.5rem;
  left: 1rem;
  z-index: 0;
}
.w-header h1 {
  font-size: 2.5rem;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .w-header h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 1199px) {
  .w-header h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .w-header h1 {
    font-size: 1.5rem;
    max-width: 55%;
  }
}
@media (max-width: 991px) {
  .w-header .header-body--intro {
    max-width: 90%;
  }
}
.w-header > picture {
  width: 100%;
  height: max-content;
  position: absolute;
  display: inline-block;
  right: -2px;
}
.w-header > picture:before {
  content: url(/images/welzijn/welzijn-w-before.svg);
  position: absolute;
  top: 0;
  left: -4rem;
  z-index: 1;
}
@media (min-width: 1440px) and (max-width: 1440px) {
  .w-header > picture:before {
    left: -10rem;
    transform: scale(1.5);
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .w-header > picture:before {
    left: -15rem;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .w-header > picture:before {
    content: url(/images/welzijn/welzijn-w-before-1440.svg);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .w-header > picture:before {
    content: url(/images/welzijn/welzijn-w-before-1280.svg);
    left: 0;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .w-header > picture:before {
    content: url(/images/welzijn/welzijn-w-before-952.svg);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .w-header > picture:before {
    left: 10rem;
    transform: scale(1.5);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .w-header > picture:before {
    left: 4rem;
  }
}
@media (max-width: 575px) {
  .w-header > picture:before {
    content: url(/images/welzijn/welzijn-w-before-768.svg);
    transform: scale(1.25);
  }
}
.w-header > picture:after {
  content: url(/images/welzijn-w-after.svg);
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  z-index: 0;
}
.w-header > picture > img {
  width: 100%;
  float: right;
}
@media (min-width: 576px) and (max-width: 767px) {
  .w-header > picture > img {
    width: 60vw;
    height: 30vh;
    object-fit: cover;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .w-header > picture > img {
    width: 60vw;
    height: 40vh;
    object-fit: cover;
  }
}
@media (max-width: 575px) {
  .w-header > picture > img {
    aspect-ratio: 3/2;
    object-fit: cover;
  }
}
.w-header__body {
  padding: 2rem 0;
  display: grid;
  gap: 1.5rem;
  place-content: center;
  height: fit-content;
  position: relative;
  z-index: 10;
}
.w-header__body .header-body--intro {
  min-height: 10rem;
}
.w-header__body > * {
  margin: 0;
}

body:not(.no-scroll) .w-header {
  overflow: hidden;
}
