@charset "UTF-8";
/*/ Layout /*/
@font-face {
  font-family: "Asap";
  src: url("../font/Asap-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Nunito", sans-serif;
  src: url("../font/Nunito-VariableFont_wght.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  font-family: "Asap", sans-serif;
  color: #000000;
}

.container {
  max-width: 1440px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Asap", sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

ol li {
  list-style-type: disc;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*/ BURGER TRIGGER /*/
.top-burger {
  display: none;
  background-color: #000000;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  top: 50%;
  position: absolute;
  right: 25px;
  transform: translateY(-50%);
}

.burger-trigger {
  position: relative;
  height: 18px;
  width: 20px;
  z-index: 15;
  display: none;
  cursor: pointer;
}
.burger-trigger span {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  transition-duration: 0.3s;
  border-radius: 999px;
}
.burger-trigger span:first-child {
  top: 0px;
}
.burger-trigger span.center {
  top: calc(50% - 1px);
}
.burger-trigger span:last-child {
  bottom: 0px;
}
.burger-trigger.burger-active {
  display: none;
}
.burger-trigger.burger-active span:nth-of-type(1) {
  rotate: -135deg;
  top: 8.5px;
}
.burger-trigger.burger-active span.center {
  opacity: 0;
}
.burger-trigger.burger-active span:nth-of-type(4) {
  rotate: 135deg;
  bottom: 7.5px;
}

.theme-loader {
  display: flex;
  justify-content: center;
  margin-top: 76px;
}
.theme-loader button.wpgb-button.wpgb-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  outline: none !important;
  width: 70px;
  height: 70px;
  background-color: #C1D72E;
  transition: 0.1s ease-in-out;
}
.theme-loader button.wpgb-button.wpgb-load-more::after {
  font-family: "Font Awesome 6 Pro";
  content: "\f063" !important;
  font-size: 28px;
}

.theme-wrapper {
  padding: 75px 0;
}

.theme-verloop {
  display: none;
}

.alt-logo {
  display: none;
}

.wrapper .content-body > div:last-child {
  position: relative;
}
.wrapper .content-body > div:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 30%, rgb(246, 255, 194) 100%);
  pointer-events: none;
}

.cursor-example {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #C1D72E;
  z-index: 9999;
  pointer-events: none;
  color: white;
  font-size: 12px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  font-size: 5px;
  line-height: 1.1;
  text-align: center;
}

/*/ Blocks /*/
.theme-header {
  background-image: url(../img/tobe1hero.jpg);
  background-size: cover;
  height: 100%;
  padding: 0px;
}
.theme-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.theme-header-wrapper {
  position: relative;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu {
  font-family: "Nunito", sans-serif;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.21);
  border-radius: 28px;
  padding: 12px 70px;
  gap: 70px;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu li {
  text-transform: uppercase;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu li a {
  color: white;
  font-size: 21px;
  font-weight: 700;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu li a:hover {
  color: #000000;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu .current-menu-item > a {
  font-weight: 1000;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu .current-menu-item > a::before {
  content: "• ";
  color: white;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76 > a {
  padding-bottom: 40px;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76:hover .sub-menu {
  display: block;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76 .sub-menu {
  display: none;
  position: absolute;
  margin-top: 24px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  z-index: 5;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76 .sub-menu li {
  list-style-type: disc;
  list-style-position: inside;
  color: #C1D72E;
  text-transform: none !important;
  padding: 12px 28px;
  transition: 0.2s ease-in-out;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76 .sub-menu li:first-child {
  padding: 18px 28px 12px;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76 .sub-menu li:last-child {
  padding: 12px 28px 18px;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76 .sub-menu li:hover {
  background-color: #F8F9EE;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76 .sub-menu li a {
  color: #777777;
  font-weight: 500;
}
.theme-header-wrapper .menu-main-menu-container .navbar-menu #menu-item-76 .sub-menu li a::before {
  content: "" !important;
}
.theme-header-logo {
  position: relative;
  transform: translate(0%, 39%);
  padding-bottom: 50px;
}
.theme-header-logo-container {
  width: 149px;
}
.theme-header-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.theme-header-cta {
  background-color: #000;
  color: white;
  border-radius: 28px;
  font-family: "Nunito", sans-serif;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;
}
.theme-header-cta i {
  margin-right: 4px;
}
.theme-header-cta span {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
}
.theme-header-cta span a {
  color: #ffffff;
}
.theme-header-underlay {
  position: relative;
}
.theme-header-underlay-bigOne {
  position: absolute;
  top: 80px;
}
.theme-header-underlay-bigOne svg {
  overflow: visible;
  position: fixed;
  right: 130px;
  width: 271px;
}
.theme-header-underlay-bigOne svg #Laag_1-2 {
  overflow: visible;
}
.theme-header-underlay-bigOne svg #Laag_1-2 .cls-2, .theme-header-underlay-bigOne svg #Laag_1-2 .cls-1 {
  visibility: hidden;
}

.theme-about {
  position: relative;
  z-index: 1;
}
.theme-about-slogan {
  width: 94%;
}
.theme-about-slogan h2 {
  font-family: "Asap", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #DDDDD9;
  font-style: italic;
}
.theme-about-info {
  width: 82%;
}
.theme-about-info-title {
  font-family: "Asap", sans-serif;
  font-size: 35px;
  font-weight: 700;
}
.theme-about-info-content {
  font-family: "Asap", sans-serif;
  color: #777777;
  margin-bottom: 32px;
}
.theme-about-info-readmore {
  border: 1px solid #000000;
  border-radius: 24px;
  padding: 10px 20px;
  color: #000000;
}
.theme-about-info-readmore:hover {
  background-color: #C1D72E;
  border: 1px solid #C1D72E;
  color: #ffffff !important;
}
.theme-about-info-readmore a:hover {
  color: #ffffff !important;
}
.theme-about-image {
  max-height: 350px;
  overflow: clip;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
  position: relative;
}
.theme-about-image:hover {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.19);
}
.theme-hero {
  background-color: #F0F1E9;
  padding: 100px 0px 0px;
}
.theme-hero-bigOne {
  justify-content: end;
  padding: 0;
}
.theme-hero-bigOne-wrapper {
  display: flex;
  justify-content: end;
  position: absolute;
  height: 500px;
  width: 300px;
  left: 170px;
}
.theme-hero-icon {
  border-radius: 999px;
  background-color: #E3EEA1;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-left: 15px;
}
.theme-hero-icon img {
  width: 50px;
}
.theme-hero-wrapper-header {
  font-size: 48px;
  font-weight: 700;
  font-family: "Asap", sans-serif;
  margin-bottom: 21px;
}
.theme-hero-wrapper-content {
  font-size: 21px;
  font-family: "Asap", sans-serif;
  color: #777777;
}

.theme-aanbod {
  background: rgb(240, 241, 233);
  background: linear-gradient(180deg, rgb(240, 241, 233) 50%, rgb(255, 255, 255) 50%);
}
.theme-aanbod .aanbod-wrapper {
  display: flex;
  width: 75%;
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
  border-radius: 40px;
}
.theme-aanbod-row {
  position: relative;
  z-index: 3;
}
.theme-aanbod a {
  color: #000000;
}
.theme-aanbod-card {
  padding: 50px 0px 100px;
  transition: 0.2s ease-in-out;
  position: relative;
}
.theme-aanbod-card:nth-child(odd) {
  background-color: white;
}
.theme-aanbod-card:nth-child(even) {
  background-color: #FAFCEE;
}
.theme-aanbod-card:first-child {
  border-radius: 20px 0px 0px 20px;
}
.theme-aanbod-card:last-child {
  border-radius: 0px 20px 20px 0px;
}
.theme-aanbod-card:hover {
  background-color: #C1D72E;
  box-shadow: none;
}
.theme-aanbod-card:hover .theme-aanbod-card-content-image {
  background-color: white;
}
.theme-aanbod-card:hover .theme-aanbod-card-content-title,
.theme-aanbod-card:hover .theme-aanbod-card-content-arrow {
  color: white;
}
.theme-aanbod-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.theme-aanbod-card-content-image {
  border-radius: 999px;
  background-color: #E3EEA1;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-aanbod-card-content-image .cursor-example {
  mix-blend-mode: difference;
}
.theme-aanbod-card-content-image img {
  width: 51px;
}
.theme-aanbod-card-content-title {
  font-weight: 601;
  font-size: 26px;
  text-align: center;
  margin: 0;
}
.theme-aanbod-card-content-arrow {
  color: #C1D72E;
  font-size: 36px;
  position: absolute;
  bottom: 25px;
}

.theme-contact {
  padding: 0px 0px 75px;
  background: rgb(240, 241, 233);
  background: linear-gradient(180deg, rgb(240, 241, 233) 50%, rgb(255, 255, 255) 50%);
}
.theme-contact.contact-background {
  background-color: #FBFBF8;
}
.theme-contact-header {
  font-size: 48px;
}
.theme-contact-subtext {
  color: #777777;
  font-size: 21px;
}
.theme-contact-wrapper {
  margin-top: 56px;
}
.theme-contact-wrapper-image img {
  border-radius: 20px;
  aspect-ratio: 16/9;
  transition: 0.4s ease-in-out;
}
.theme-contact-wrapper-image img:hover {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.19);
}
.theme-contact-wrapper-info {
  margin-top: 32px;
}
.theme-contact-wrapper-details {
  margin-top: 24px;
}
.theme-contact-wrapper-details p {
  display: flex;
  align-items: center;
}
.theme-contact-wrapper-details i {
  display: flex;
  justify-content: center;
  color: #97AA19;
  font-size: 24px;
  width: 24px;
}
.theme-contact-wrapper-details span {
  font-size: 21px;
  color: #777777;
  margin-left: 21px;
}
.theme-contact-form {
  margin-top: 56px;
  background-color: #ffffff;
  padding: 48px 42px;
  border-radius: 20px;
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
}
.theme-contact-form h3 {
  font-size: 36px;
  margin-bottom: 30px;
}
.theme-contact-form input, .theme-contact-form textarea {
  border: none !important;
  border-radius: 24px !important;
  background-color: #F5F5EF;
  resize: none;
}
.theme-contact-form input::-moz-placeholder, .theme-contact-form textarea::-moz-placeholder {
  content: "a";
  font-family: "Asap", sans-serif;
  color: #777777;
  font-weight: 400;
}
.theme-contact-form input::placeholder, .theme-contact-form textarea::placeholder {
  content: "a";
  font-family: "Asap", sans-serif;
  color: #777777;
  font-weight: 400;
}
.theme-contact-form button {
  background-color: #C1D72E;
  color: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  font-weight: 700;
}
.theme-contact-form input[type=checkbox] {
  border-radius: 999px !important;
}
.theme-contact-form .ff_t_c p {
  color: #777777;
}
.theme-contact-form .ff_t_c strong {
  color: #000000;
}
.theme-contact-form .ff_t_c a {
  color: #777777;
  text-decoration: underline;
}

.theme-diensten {
  background: rgb(240, 241, 233);
  background: linear-gradient(180deg, rgb(240, 241, 233) 50%, rgb(255, 255, 255) 50%);
}
.theme-diensten-row {
  display: flex;
  justify-content: space-between;
}
.theme-diensten .a-card {
  text-decoration: none;
}
.theme-diensten-card {
  padding: 50px;
  transition: 0.2s ease-in-out;
  position: relative;
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  height: -moz-min-content;
  height: min-content;
  background-color: white;
}
.theme-diensten-card:hover {
  background-color: #C1D72E;
  box-shadow: none;
}
.theme-diensten-card:hover .theme-diensten-card-content-image {
  background-color: white;
}
.theme-diensten-card:hover .theme-diensten-card-content-title,
.theme-diensten-card:hover .theme-diensten-card-content-info,
.theme-diensten-card:hover .theme-diensten-card-content-arrow-span,
.theme-diensten-card:hover .theme-diensten-card-content-arrow-a,
.theme-diensten-card:hover .theme-diensten-card-content-arrow {
  color: white;
}
.theme-diensten-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.theme-diensten-card-content-image {
  border-radius: 999px;
  background-color: #E3EEA1;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-diensten-card-content-image .cursor-example {
  mix-blend-mode: difference;
}
.theme-diensten-card-content-image img {
  width: 51px;
}
.theme-diensten-card-content-info {
  font-size: 18px;
  color: #777777;
}
.theme-diensten-card-content-title {
  color: #000000;
}
.theme-diensten-card-content-arrow {
  color: #C1D72E;
  font-size: 36px;
}
.theme-diensten-card-content-arrow .card-arrow-margin {
  margin-right: 24px;
}
.theme-diensten-card-content-arrow span {
  color: #000000;
  text-decoration: underline;
  font-size: 24px;
}
.theme-diensten-card-content-arrow-a {
  display: flex;
  align-items: center;
  color: #C1D72E;
}

.theme-dienst {
  background: rgb(240, 241, 233);
  background: linear-gradient(180deg, rgb(240, 241, 233) 50%, rgb(255, 255, 255) 50%);
}
.theme-dienst-info {
  padding: 50px 54px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
}
.theme-dienst-info p {
  color: #777777;
}
.theme-dienst-info strong {
  color: #000000;
}
.theme-dienst .extra-info-container p {
  color: #777777;
}
.theme-dienst .extra-info-container strong {
  color: #000000;
}
.theme-dienst .extra-info-container em {
  color: #C1D72E;
  font-size: 24px;
  font-weight: 600;
}
.theme-dienst-extrainfo {
  border-radius: 20px 20px 0px 0px;
  padding: 50px 54px 4px;
  background-color: #ffffff;
}
.theme-dienst-extra {
  border-radius: 0px 0px 20px 20px;
  padding: 35px 39px;
  background-color: #ffffff;
  display: flex;
  position: relative;
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
}
.theme-dienst-extra.col-12, .theme-dienst-extra .col-8, .theme-dienst-extra .col-4 {
  padding: 0px;
}
.theme-dienst-extra-image {
  position: absolute;
  max-height: 364px;
  overflow: clip;
  border-radius: 20px;
  transition: 0.4s ease-in-out;
}
.theme-dienst-extra-image:hover {
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.19);
}
.theme-dienst-extra-image img {
  border-radius: 20px;
}

.theme-single-news {
  background: rgb(240, 241, 233);
  background: linear-gradient(90deg, rgb(240, 241, 233) 50%, rgb(255, 255, 255) 100%);
}
.theme-single-news-info {
  padding: 50px 54px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
}
.theme-single-news-info p {
  color: #777777;
}
.theme-single-news-info strong {
  color: #000000;
}
.theme-single-news-wrapper {
  text-align: center;
  margin-top: 44px;
}
.theme-single-news-wrapper-data {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
  margin-top: 20px;
}
.theme-single-news-wrapper-data h2 {
  font-size: 24px;
}
.theme-single-news-wrapper-data-date {
  color: #C1D72E;
}
.theme-single-news-wrapper-data-type {
  color: #ADADAD;
}
.theme-single-news-wrapper-data-type a {
  color: #ADADAD;
}
.theme-single-news-image img {
  border-radius: 20px 20px 0px 0px;
  height: 440px;
}
.theme-single-news-content {
  padding: 50px 54px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
}
.theme-single-news-content p {
  color: #777777;
  word-wrap: break-word;
}
.theme-single-news-content strong {
  color: #000000;
  font-size: 21px;
}
.theme-single-news-content em {
  color: #C1D72E;
  font-size: 24px;
  font-weight: 600;
}
.theme-single-news-content a {
  color: #C1D72E;
  text-decoration: underline;
}
.theme-single-news-content.with-image {
  border-radius: 0px 0px 20px 20px;
}

.theme-news-archive {
  background: rgb(240, 241, 233);
  background: linear-gradient(180deg, rgb(240, 241, 233) 50%, rgb(255, 255, 255) 50%);
}
.theme-news-archive .news-archive-gap {
  flex-wrap: wrap;
  margin: -15px;
}
.theme-news-archive-card {
  box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
  border-radius: 20px;
  background-color: #ffffff;
  transition: 0.4s ease-in-out;
  margin: 15px;
  width: calc(33.333% - 30px);
}
.theme-news-archive-card:hover {
  background-color: #C1D72E;
}
.theme-news-archive-card:hover .theme-news-archive-content-title,
.theme-news-archive-card:hover .theme-news-archive-content-excerpt,
.theme-news-archive-card:hover .news-readmore-arrow,
.theme-news-archive-card:hover span,
.theme-news-archive-card:hover p,
.theme-news-archive-card:hover .theme-news-archive-content-data-date,
.theme-news-archive-card:hover .theme-news-archive-content-data-type a,
.theme-news-archive-card:hover .theme-news-archive-content-data-type {
  color: #ffffff;
}
.theme-news-archive-image img {
  border-radius: 20px 20px 0px 0px;
  aspect-ratio: 16/9;
}
.theme-news-archive-content {
  border-radius: 20px;
  padding: 40px 44px;
}
.theme-news-archive-content-data {
  display: flex;
}
.theme-news-archive-content-data-date {
  color: #C1D72E;
}
.theme-news-archive-content-data-type {
  color: #ADADAD;
}
.theme-news-archive-content-data-type a {
  color: #ADADAD;
}
.theme-news-archive-content-data h2 {
  font-size: 18px;
  text-transform: uppercase;
}
.theme-news-archive-content-title {
  font-size: 28px;
}
.theme-news-archive-content-excerpt {
  color: #777777;
}
.theme-news-archive-content-send a {
  display: flex;
  align-items: center;
}
.theme-news-archive-content-send a span {
  color: #000000;
  text-decoration: underline;
  font-size: 21px;
}
.theme-news-archive-content-send .news-readmore-arrow {
  color: #C1D72E;
  font-size: 36px;
  margin-right: 24px;
}

.theme-cta .cta-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}
.theme-cta-icon {
  border-radius: 999px;
  background-color: #E3EEA1;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.theme-cta-icon img {
  width: 50px;
}
.theme-cta-content {
  margin-left: 15px;
}
.theme-cta-content-info {
  color: #777777;
  margin-bottom: 32px;
  width: 80%;
}
.theme-cta-content-button {
  background-color: #C1D72E;
  color: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  font-weight: 700;
}
.theme-cta-content-button:hover {
  color: #C1D72E;
  background-color: white;
}

.theme-ctavar2 {
  padding-top: 0px;
}
.theme-ctavar2-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  top: -30px;
}
.theme-ctavar2-wrapper-call {
  color: #97AA19;
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
}
.theme-ctavar2-wrapper-button {
  background-color: #C1D72E;
  color: #ffffff !important;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  font-weight: 700;
}
.theme-ctavar2-wrapper-button:hover {
  color: #ffffff !important;
  background-color: #000000;
}

.theme-footer {
  position: relative;
  z-index: 1;
  background-color: #FBFBF9;
  padding: 94px 0px 0px;
}
.theme-footer .sub-menu {
  display: none;
}
.theme-footer-content {
  width: 100%;
}
.theme-footer-content-title {
  color: #97AA19;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 38px;
}
.theme-footer-content-quote {
  font-size: 21px;
  color: #777777;
  margin-bottom: 38px;
}
.theme-footer-menu-title {
  color: #97AA19;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 38px;
}
.theme-footer-menu-links {
  font-size: 21px;
}
.theme-footer-menu-links a {
  color: #777777;
}
.theme-footer-menu-links ul {
  list-style-type: disc;
  list-style-position: inside;
  color: #BFD52F;
}
.theme-footer-menu-links ul li {
  margin-bottom: 18px;
}
.theme-footer-menu-links ul li a {
  color: #777777;
}
.theme-footer-menu-links ul li a:hover {
  color: #97AA19;
}
.theme-footer-menu-contact {
  display: flex;
  flex-direction: column;
  color: #777777;
}
.theme-footer-menu-contact-icons {
  display: flex;
  flex-direction: column;
}
.theme-footer-menu-contact-icons-item a {
  display: flex;
  gap: 20px;
  margin-bottom: 4px;
  color: #777777;
}
.theme-footer-menu-contact-icons-item a:first-child {
  margin-bottom: 16px;
}
.theme-footer-menu-contact-icons-item a > i {
  color: #97AA19;
  font-size: 24px;
  width: 24px;
  display: flex;
  justify-content: center;
}
.theme-footer-menu-contact-icons-item a span {
  flex: 1;
}
.theme-footer-menu-contact-icons-item a span:hover {
  color: #97AA19;
}
.theme-footer-menu .footer-menu-container .current-menu-item a {
  font-weight: 1000;
  color: #000000;
}
.theme-footer-bottom-container {
  background-color: #ffffff;
  border-radius: 20px 20px 0px 0px;
  padding: 36px;
  color: #777777;
  font-size: 21px;
}
.theme-footer-bottom-container-links a {
  color: #777777;
}
.theme-footer-bottom-container-links a:hover {
  color: #97AA19;
}
.theme-footer-bottom-container-links-left {
  left: 16px;
  position: relative;
}
.theme-footer-bottom-container-backtotop {
  position: relative;
}
.theme-footer-bottom-container-backtotop-link {
  position: absolute;
  border-radius: 999px;
  background-color: #C1D72E;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50px;
  bottom: 0;
  transition: 0.1s ease-in-out;
}
.theme-footer-bottom-container-backtotop-link i {
  color: #ffffff;
  font-size: 28px;
}

.theme-offcanvas {
  overflow-y: scroll;
  scrollbar-width: thin;
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  font-size: 21px;
  transform: translate(100%, 0);
  transition: 0.2s ease-in;
  background-color: #C1D72E;
}
.theme-offcanvas.canvas-open {
  transform: translate(0, 0);
}
.theme-offcanvas-overlay {
  z-index: 90;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
}
.theme-offcanvas-overlay.overlay-active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.theme-offcanvas-top {
  padding: 25px 15px;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url(../img/tobe1hero.jpg);
  background-size: cover;
}
.theme-offcanvas-top-logo {
  width: 260px;
}
.theme-offcanvas-top-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.theme-offcanvas-top-burger {
  position: absolute;
  right: 25px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-offcanvas-top-burger .burger-trigger {
  margin: 0;
  display: block;
}
.theme-offcanvas-top-burger .burger-trigger span {
  background-color: #ffffff;
}
.theme-offcanvas-wrapper {
  padding: 44px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 30%, rgb(246, 255, 194) 100%);
  position: relative;
  z-index: 10;
  text-transform: uppercase;
}
.theme-offcanvas-wrapper .sub-menu {
  display: block;
  margin-left: 24px;
}
.theme-offcanvas-wrapper .sub-menu a {
  font-weight: 100;
  margin-bottom: 12px;
}
.theme-offcanvas-wrapper .sub-menu li:last-child a {
  margin-bottom: 32px;
}
.theme-offcanvas-wrapper-navmenu ul li a {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
  font-size: 24px;
  color: #777777;
  font-weight: 500;
}
.theme-offcanvas-wrapper-navmenu ul li a:hover {
  color: #000000;
}
.theme-offcanvas-wrapper-navmenu ul li.current_page_item {
  list-style-type: disc;
  color: #C1D72E;
}
.theme-offcanvas-wrapper-navmenu ul li.current_page_item a {
  color: #000000;
  font-weight: 700;
}
.theme-offcanvas-wrapper-navmenu #Laag_3 {
  position: absolute;
  opacity: 0.4;
  width: 200px;
  top: 0;
  right: 18px;
  bottom: 0;
  transform: translateY(30%);
  overflow: visible;
  z-index: -1;
}
.theme-offcanvas-wrapper__background .canvas-open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
.theme-offcanvas-middle {
  display: flex;
  padding: 30px 0 60px 52px;
  margin-top: -30px;
  background-color: #ffffff;
  position: relative;
  z-index: 11;
}
.theme-offcanvas-middle-wrapper-call {
  color: #97AA19;
  font-size: 32px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 24px;
  width: 80%;
}
.theme-offcanvas-middle-wrapper-cta {
  background-color: #000;
  color: white;
  border-radius: 28px;
  font-family: "Nunito", sans-serif;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: row;
  padding: 14px 24px;
  justify-content: center;
  align-items: center;
}
.theme-offcanvas-middle-wrapper-cta i {
  margin-right: 4px;
}
.theme-offcanvas-middle-wrapper-cta span {
  font-family: "Nunito", sans-serif;
  font-weight: 500;
}
.theme-offcanvas-middle-wrapper-cta span a {
  color: #ffffff;
}
.theme-offcanvas-middle-catalogus {
  margin-left: 35px;
  font-size: 14px;
}
.theme-offcanvas-middle-catalogus i {
  margin-right: 9px;
  font-size: 16px;
}
.theme-offcanvas-bottom {
  padding: 44px 0px;
  background-color: #C1D72E;
  position: relative;
}
.theme-offcanvas-search {
  padding: 24px 0 24px 52px;
  background-color: #ffffff;
  border-radius: 40px 0 0 0;
  margin-top: -30px;
  position: relative;
}
.theme-offcanvas-search button {
  margin-left: 0;
  padding-left: 0;
  display: flex;
}
.theme-offcanvas-search input {
  background-color: transparent;
  border: none;
  outline: none;
  width: 80%;
  color: #DDDDD9;
}
.theme-offcanvas-search form {
  display: flex;
}

/*/ mediaQuery /*/
@media screen and (max-width: 1440px) {
  .theme-header-wrapper .menu-main-menu-container .navbar-menu {
    padding: 12px 30px;
    gap: 30px;
  }
  .theme-header-underlay-bigOne svg {
    right: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .theme-header-container {
    display: block;
  }
  .theme-header-logo {
    position: relative;
    padding: 25px 0px;
    transform: unset;
  }
  .theme-header-cta {
    transform: translateY(50%);
  }
  .theme-header-wrapper .menu-main-menu-container .navbar-menu {
    padding: 12px 30px;
    gap: 30px;
  }
  .theme-cta .cta-icon-row {
    margin: auto;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 992px) {
  .theme-about-slogan {
    width: 100%;
    margin-bottom: 1rem;
  }
  .theme-about-info {
    width: 100%;
  }
  .theme-about-image {
    max-height: unset;
    margin-bottom: 32px;
  }
  .theme-hero-icon {
    margin: auto;
    margin-bottom: 50px;
  }
  .theme-cta .cta-icon-row {
    margin: auto;
  }
  .theme-cta-content-info {
    width: 100%;
  }
  .theme-news-archive-card {
    width: unset;
  }
  .theme-aanbod .aanbod-wrapper {
    width: unset;
    box-shadow: unset;
    flex-wrap: wrap;
  }
  .theme-aanbod-card {
    padding: 50px;
    transition: 0.2s ease-in-out;
    position: relative;
  }
  .theme-aanbod-card-content-arrow {
    position: unset;
  }
  .theme-aanbod-card:nth-child(odd) {
    background-color: white;
  }
  .theme-aanbod-card:nth-child(even) {
    background-color: #FAFCEE;
  }
  .theme-aanbod-card:first-child {
    border-radius: 0px;
  }
  .theme-aanbod-card:last-child {
    border-radius: 0px;
  }
  .theme-aanbod-card:hover {
    background-color: #C1D72E;
    box-shadow: none;
  }
  .theme-aanbod-card:hover .theme-aanbod-card-content-image {
    background-color: white;
  }
  .theme-aanbod-card:hover .theme-aanbod-card-content-title,
  .theme-aanbod-card:hover .theme-aanbod-card-content-arrow {
    color: white;
  }
  .theme-footer-bottom-container-links-left {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .theme-wrapper {
    padding: 50px 0px;
  }
  .theme-hero {
    padding: 50px 0px 0px;
  }
  .cursor-example {
    display: none;
  }
  .alt-logo {
    display: block;
  }
  .theme-header-underlay-bigOne {
    display: none;
  }
  .theme-header-logo {
    padding: 25px 0px;
  }
  .theme-header-logo-container {
    width: 260px;
  }
  .theme-header-logo-container .header-logo {
    display: none;
  }
  .theme-header-wrapper {
    display: none;
  }
  .theme-header-cta {
    display: none;
  }
  .theme-header .top-burger {
    display: flex;
  }
  .theme-header-burger-trigger {
    display: block;
  }
  .theme-aanbod-row {
    padding-right: 15px;
    padding-left: 15px;
    z-index: 1;
  }
  .theme-aanbod-card {
    padding: 50px;
    transition: 0.2s ease-in-out;
    position: relative;
    box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
  }
  .theme-aanbod-card:nth-child(odd) {
    background-color: white;
  }
  .theme-aanbod-card:nth-child(even) {
    background-color: #FAFCEE;
  }
  .theme-aanbod-card:first-child {
    border-radius: 20px 20px 0px 0px;
  }
  .theme-aanbod-card:last-child {
    border-radius: 0px 0px 20px 20px;
  }
  .theme-aanbod-card:hover {
    background-color: #C1D72E;
    box-shadow: none;
  }
  .theme-aanbod-card:hover .theme-aanbod-card-content-image {
    background-color: white;
  }
  .theme-aanbod-card:hover .theme-aanbod-card-content-title,
  .theme-aanbod-card:hover .theme-aanbod-card-content-arrow {
    color: white;
  }
  .theme-dienst-info {
    padding: 24px 44px;
  }
  .theme-dienst-extrainfo {
    padding: 24px 44px;
  }
  .theme-dienst-extra {
    padding: 0px 29px 9px;
    flex-direction: column-reverse;
  }
  .theme-dienst-extra-info {
    margin-top: 32px;
  }
  .theme-dienst-extra-image {
    position: unset;
  }
  .theme-ctavar2-wrapper {
    display: block;
  }
  .theme-ctavar2-wrapper-call {
    margin-bottom: 24px;
  }
  .theme-diensten-card {
    margin-bottom: 30px;
  }
  .theme-single-news-wrapper {
    margin-top: 60px;
  }
  .theme-single-news-content {
    padding: 24px 44px;
  }
  .footer-nav-mobile {
    display: block !important;
  }
}
@media screen and (max-width: 576px) {
  .theme-diensten-card {
    padding: 32px;
  }
  .theme-contact-form {
    padding: 32px 24px;
  }
  .theme-about-slogan {
    margin-bottom: 5rem;
  }
  .theme-aanbod-row {
    padding-right: 15px;
    padding-left: 15px;
  }
  .theme-aanbod-card {
    padding: 50px;
    transition: 0.2s ease-in-out;
    position: relative;
    box-shadow: 0px 9px 16px rgba(0, 0, 0, 0.06);
  }
  .theme-aanbod-card:nth-child(odd) {
    background-color: white;
  }
  .theme-aanbod-card:nth-child(even) {
    background-color: #FAFCEE;
  }
  .theme-aanbod-card:first-child {
    border-radius: 20px 20px 0px 0px;
  }
  .theme-aanbod-card:last-child {
    border-radius: 0px 0px 20px 20px;
  }
  .theme-aanbod-card:hover {
    background-color: #C1D72E;
    box-shadow: none;
  }
  .theme-aanbod-card:hover .theme-aanbod-card-content-image {
    background-color: white;
  }
  .theme-aanbod-card:hover .theme-aanbod-card-content-title,
  .theme-aanbod-card:hover .theme-aanbod-card-content-arrow {
    color: white;
  }
  .theme-footer-bottom-container {
    padding: 4px;
    font-size: 16px;
  }
  .theme-footer-bottom-container-backtotop-link {
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .theme-news-archive-content-data h2 {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */