@import url("https://use.typekit.net/jbm8iyh.css");
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInDrop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
    /* Start slightly above */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* Drop to its original position */
  }
}
@keyframes slideUpFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  box-sizing: border-box;
}

html {
  font-family: "nunito", sans-serif;
}

body {
  font-family: "nunito", sans-serif;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  overflow-x: hidden;
  letter-spacing: 0.03em;
  color: #222222;
}
body.error404 .site-wrapper, body.search-results .site-wrapper {
  padding-bottom: 40px;
}

h1 {
  font-size: 2em;
}
h1:first-child:not(.page-title) {
  margin-top: 0;
}

h2 {
  font-size: 1.5em;
}
h2:first-child {
  margin-top: 0;
}

p {
  line-height: 1.4;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: #0cb0a0;
}

ul.custom-list {
  list-style-type: none;
  /* Verwijder de standaard bullet */
  padding-left: 0;
}

ul.custom-list {
  display: grid;
}
ul.custom-list li::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background-image: url("/wp-content/themes/okappi/assets/icons/list-style-item.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  /* Ruimte tussen het icoon en de tekst */
  vertical-align: middle;
  position: relative;
  top: -1px;
}
ul.custom-list li a {
  color: #222222;
}
ul.custom-list li + li {
  margin-top: 7px;
}

img {
  display: flex;
  max-width: 100%;
}

svg {
  width: 25px;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 1400px;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }
}

.padding-top-default {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .padding-top-default {
    padding-top: 60px;
  }
}

.padding-top-half {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .padding-top-half {
    padding-top: 20px;
  }
}

.padding-bottom-default {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .padding-bottom-default {
    padding-bottom: 60px;
  }
}

.padding-bottom-half {
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .padding-bottom-half {
    padding-bottom: 20px;
  }
}

.background-primary-color {
  background-color: #0cb0a0;
  color: #fff;
}

.background-secondary-color {
  background-color: #ebf8f8;
}

.background-grey {
  background-color: #efefef;
}

.section-title {
  margin-top: 0;
  font-size: 26px;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

.section-intro-text {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-intro-text {
    margin-bottom: 40px;
  }
}

.btn-ctr {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-primary {
  background-color: #0cb0a0;
  color: #fff;
  border: none;
  border-radius: 10px;
  min-height: 40px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #31f1de;
}

.btn-secondary {
  background-color: transparent;
  color: #222222;
  border: 1px solid #0cb0a0;
  border-radius: 10px;
  min-height: 40px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #0cb0a0;
}

.grid {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 10px;
}

.form-grid {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .form-grid {
    grid: auto/1fr 1fr;
  }
}
.form-grid button {
  width: max-content;
}

.form-flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-flex button {
  width: max-content;
  align-self: flex-end;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.input-text {
  width: 100%;
  height: 40px;
  border: 1px solid lightgrey;
  padding: 0 10px;
  border-radius: 5px;
}

.google-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
}

.acf-map img {
  max-width: inherit !important;
}

.site-logo a img {
  width: 100px;
  height: auto;
}

.widget.widget_contact a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .widget.widget_contact a {
    justify-content: flex-start;
  }
}
.widget.widget_contact svg {
  width: 17px;
  color: #0cb0a0;
}
.widget.widget_contact .widget-content {
  display: grid;
  grid: auto/1fr;
  gap: 15px;
}
.widget.widget_contact .widget-content .item.address {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}
@media (min-width: 768px) {
  .widget.widget_contact .widget-content .item.address {
    justify-content: flex-start;
  }
}
.widget.widget_logo .site-logo a img {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .widget.widget_logo .site-logo a img {
    margin: 0;
  }
}

header.site-header {
  position: relative;
}
header.site-header .container {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  header.site-header .container {
    padding-top: 20px;
  }
}
header.site-header .container .site-logo {
  width: 200px;
}
@media (min-width: 768px) {
  header.site-header .container .site-logo {
    width: 230px;
  }
}
header.site-header .container .site-menus {
  position: fixed;
  background-color: #0cb0a0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 130px 20px 30px;
  transform: translateX(-100%);
  transition: all 0.3s ease;
  z-index: 1000;
}
header.site-header .container .site-menus.active {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  header.site-header .container .site-menus {
    transform: translateX(0);
    background-color: transparent;
    position: relative;
    padding: 0;
    margin-left: auto;
    display: grid;
    grid: auto/1fr;
    row-gap: 10px;
  }
}
header.site-header .container .site-menus ul {
  padding-left: 0;
  display: grid;
  grid: auto/1fr;
  row-gap: 15px;
}
@media (min-width: 1024px) {
  header.site-header .container .site-menus ul {
    display: flex;
    margin: 0;
    column-gap: 20px;
    justify-content: flex-end;
    align-items: center;
  }
}
header.site-header .container .site-menus ul li.menu-item {
  list-style-type: none;
}
header.site-header .container .site-menus ul li.menu-item a {
  color: #fff;
}
header.site-header .container .site-menus ul li.menu-item.current_page_item a {
  font-weight: bold;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}
@media (min-width: 768px) {
  header.site-header .container .site-menus ul li.menu-item.current_page_item a {
    color: #0CB0A0 !important;
    border-color: #0CB0A0;
  }
}
header.site-header .container .site-menus ul li.menu-item.wpml-ls-item a img.wpml-ls-flag {
  position: relative;
  top: -1px;
}
header.site-header .container .site-menus svg.close-menu {
  position: absolute;
  top: 70px;
  right: 20px;
  fill: #fff;
  height: 30px;
  width: 30px;
}
@media (min-width: 1024px) {
  header.site-header .container .site-menus svg.close-menu {
    display: none;
  }
}
@media (min-width: 1024px) {
  header.site-header .container .site-menus .primary-menu-wrapper {
    order: 2;
  }
}
@media (min-width: 1024px) {
  header.site-header .container .site-menus .primary-menu-wrapper ul#primary-menu li.menu-item a {
    color: #222222;
  }
}
header.site-header .container .site-menus .secondary-menu-wrapper {
  margin-top: 40px;
}
@media (min-width: 1024px) {
  header.site-header .container .site-menus .secondary-menu-wrapper {
    margin-top: 0;
    display: flex;
    column-gap: 20px;
    justify-content: flex-end;
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  header.site-header .container .site-menus .secondary-menu-wrapper ul#secondary-menu li.menu-item a {
    color: #0cb0a0;
  }
}
header.site-header .container .site-menus .secondary-menu-wrapper form#searchform {
  margin-top: 40px;
}
@media (min-width: 1024px) {
  header.site-header .container .site-menus .secondary-menu-wrapper form#searchform {
    margin-top: 0;
  }
  header.site-header .container .site-menus .secondary-menu-wrapper form#searchform input {
    width: 80px;
  }
}
header.site-header .container svg#hamburger-menu {
  margin-left: auto;
  fill: #0cb0a0;
}
@media (min-width: 1024px) {
  header.site-header .container svg#hamburger-menu {
    display: none;
  }
}
header.site-header .container::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #0cb0a0;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
}
@media (min-width: 1024px) {
  header.site-header .container::after {
    left: 40px;
    right: 40px;
  }
}

footer.site-footer {
  margin-top: auto;
  color: #fff;
  padding: 30px 0;
}
footer.site-footer a {
  color: #fff;
}
footer.site-footer .container {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 20px;
}
footer.site-footer .container .footer-text {
  display: grid;
  grid: auto/1fr;
  row-gap: 30px;
  font-size: 14px;
}
@media (min-width: 768px) {
  footer.site-footer .container .footer-text {
    display: flex;
    justify-content: space-between;
  }
}
footer.site-footer .container .footer-text a {
  text-decoration: underline;
}
footer.site-footer .container .footer-text .col {
  max-width: 400px;
}
@media (min-width: 768px) {
  footer.site-footer .container .footer-text .col.col-2 p {
    text-align: right !important;
  }
}
footer.site-footer .container .footer-menus {
  margin-top: 10px;
  opacity: 0.5;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 40px;
}
@media (min-width: 768px) {
  footer.site-footer .container .footer-menus {
    column-gap: 80px;
  }
}
footer.site-footer .container .footer-menus .col h2 {
  font-size: 14px;
  font-weight: normal;
}
footer.site-footer .container .footer-menus .col p {
  display: grid;
  grid: auto/1fr;
  row-gap: 10px;
}
footer.site-footer .container .footer-menus .col ul {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid: auto/1fr;
  gap: 13px;
}
footer.site-footer .container .footer-menus .col ul:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  footer.site-footer .container .footer-menus .col.col-1 {
    display: grid;
    grid: auto/1fr 1fr;
    column-gap: 30px;
    align-items: start;
  }
}
footer.site-footer .container .footer-menus .col.col-1 h2 {
  grid-column: 1/span 2;
}
footer.site-footer .container .footer-menus .col.col-1 ul {
  margin: 0;
}
footer.site-footer .container .site-credentials {
  font-size: 14px;
  opacity: 0.5;
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
  margin-top: 30px;
}
footer.site-footer .container .site-credentials a {
  text-decoration: underline;
}

aside.sidebar {
  background-color: #efefef;
  padding: 20px;
}
aside.sidebar ul li {
  padding: 3px 0;
}

#searchform {
  border: 1px solid #0cb0a0;
  border-radius: 5px;
  display: flex;
  overflow: hidden;
}
#searchform input[type=text] {
  flex-grow: 1;
  border: none;
  color: #0cb0a0;
  padding: 0 10px;
  padding-top: 3px;
}
#searchform button[type=submit] {
  height: 30px;
  border: none;
  background-color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#searchform button[type=submit] svg {
  height: 15px;
  stroke: #0cb0a0;
}

.slick-slider button.slick-prev {
  width: 25px;
  height: 25px;
  background-image: url(../assets/icons/chevron-left-white.svg);
  left: 5px;
  z-index: 10;
}
.slick-slider button.slick-prev::before {
  display: none;
}
.slick-slider button.slick-next {
  width: 25px;
  height: 25px;
  background-image: url(../assets/icons/chevron-right-white.svg);
  right: 5px;
}
.slick-slider button.slick-next::before {
  display: none;
}

.gform_wrapper .gform_validation_errors {
  margin-bottom: 30px;
}
.gform_wrapper .gform_validation_errors ol li a {
  color: #F76C5E;
}
.gform_wrapper .gform_heading .gform_required_legend {
  display: none;
}
.gform_wrapper form {
  display: grid;
  grid: auto/1fr;
  gap: 5px;
}
.gform_wrapper form .gform-body .gform_fields {
  grid-column-gap: 20px;
}
.gform_wrapper form .gform-body .gform_fields .gfield {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input {
  height: 40px;
  border: none;
  border-bottom: 1px solid #262626;
  padding: 0;
  width: 100%;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select {
  height: 40px;
  border: none;
  border-bottom: 1px solid #262626;
  padding: 0;
  width: 100%;
  background-color: transparent;
  color: grey;
}
.gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea {
  border: none;
  border-bottom: 1px solid #262626;
  padding: 0;
  width: 100%;
}
.gform_wrapper form .gform-body .gform_fields .gfield .validation_message {
  color: #F76C5E;
}
.gform_wrapper form .gform-body .gform_fields .gfield.gfield--type-textarea {
  grid-column: 1/-1;
}
.gform_wrapper form .gform-body .gform_fields .gfield.gfield--width-full {
  grid-column: 1/-1;
}
.gform_wrapper form .gform_footer {
  display: flex;
  justify-content: end;
}
.gform_wrapper form .gform_footer input[type=submit] {
  background-color: #0cb0a0;
  color: #fff;
  border: none;
  border-radius: 10px;
  min-height: 40px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px 15px;
}
.gform_wrapper form .gform_footer input[type=submit]:hover {
  background-color: #31f1de;
}

.gform_confirmation_message {
  padding: 20px;
  border: 1px dotted #0cb0a0;
  font-size: 1.4em;
  margin-top: 5px;
}

.search-item {
  border: 1px solid lightgrey;
  border-radius: 8px;
  padding: 10px 20px;
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
.search-item h2 {
  margin: 0;
}
.search-item .btn-ctr a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.search-item .btn-ctr a svg {
  width: 15px;
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}
.search-item .btn-ctr a:hover svg {
  left: 5px;
}

.post {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  .post {
    grid: auto/1fr minmax(0, 200px);
  }
}
.post a.post-content {
  background-color: #ebf8f8;
  border-radius: 10px;
  display: grid;
  grid: 1fr;
  row-gap: 20px;
  color: #222222;
  padding: 20px;
  font-weight: bolder;
}
@media (min-width: 768px) {
  .post a.post-content {
    grid: auto/auto 1fr;
    column-gap: 20px;
  }
}
.post a.post-content .col .post-date {
  flex-shrink: 0;
}
.post a.post-content .col .post-taxonomy {
  background-color: transparent;
  color: #222222;
  border: 1px solid #0cb0a0;
  border-radius: 10px;
  min-height: 40px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.post a.post-content .col .post-taxonomy:hover {
  color: #fff;
  background-color: #0cb0a0;
}
.post a.post-content .col .post-title {
  margin: 0;
}
.post a.post-content .col.col-1 {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .post a.post-content .col.col-1 {
    row-gap: 30px;
  }
}
@media (min-width: 768px) {
  .post a.post-content .col.col-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
  }
}
.post .post-image {
  aspect-ratio: 16/9;
  max-height: 300px;
  width: 100%;
}
.post .post-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

ul.post-type-filter {
  list-style-type: none;
  padding: 0;
  display: flex;
  gap: 7px;
  margin-bottom: 50px;
}
ul.post-type-filter li {
  border: 1px solid #0cb0a0;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
ul.post-type-filter li.active, ul.post-type-filter li:hover {
  background-color: #0cb0a0;
  color: #fff;
}

a.card {
  text-decoration: none;
  display: block;
  position: relative;
  background-color: #ebf8f8;
  border-radius: 10px;
  overflow: hidden;
  color: #222222;
}
a.card svg {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 15px;
  top: 15px;
  rotate: -45deg;
  transition: all 0.3s ease;
}
a.card:hover svg {
  rotate: 0deg;
}
a.card .card-image {
  height: 200px;
}
a.card .card-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
a.card .card-text {
  padding: 15px 20px;
}
a.card .card-text h3 {
  font-size: 22px;
  margin: 10px 0;
}
@media (min-width: 768px) {
  a.card .card-text h3 {
    font-size: 25px;
  }
}
a.card .card-text .text {
  font-size: 14px;
}

.accordeon-item {
  background-color: #ebf8f8;
  border-radius: 20px;
  padding: 20px;
}
.accordeon-item .title {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
.accordeon-item .title h3 {
  margin: 0;
  font-weight: normal;
}
@media (min-width: 768px) {
  .accordeon-item .title h3 {
    font-size: 20px;
  }
}
.accordeon-item .title .trigger {
  margin-left: auto;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #0cb0a080;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordeon-item .title .trigger svg {
  width: 12px;
  transition: all 0.3s ease;
}
.accordeon-item .title.active .trigger svg {
  rotate: 45deg;
}
.accordeon-item .text {
  margin-top: 20px;
  display: none;
  line-height: 1.4;
}

.usp-item {
  max-width: 400px;
}
.usp-item .icon {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ebf8f8;
  border-radius: 10px;
  margin-bottom: 30px;
}
.usp-item .icon img {
  width: 35px;
  object-fit: contain;
}
.usp-item h3 {
  border-bottom: 1px solid #0cb0a0;
  padding-bottom: 15px;
}
.testimonial-item {
  background-color: #ebf8f8;
  border-radius: 10px;
  padding: 30px 20px;
}
.testimonial-item .credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}
.testimonial-item .credentials h3 {
  margin: 0;
}
.section-text {
  margin-bottom: 30px;
  display: grid;
  grid: auto/1fr;
  gap: 20px;
}
.section-text > * {
  margin: 0;
}
.section-text a.link {
  width: max-content;
  max-width: 100%;
  overflow-wrap: break-word;
}

.filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter button {
  border: 1px solid #0cb0a0;
  border-radius: 10px;
  background-color: #fff;
  padding: 10px 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.filter button.active, .filter button:hover {
  background-color: #0cb0a0;
  color: #fff;
}

.card-post {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
.card-post:nth-child(1) {
  animation-delay: 0s;
}
.card-post:nth-child(2) {
  animation-delay: 0.1s;
}
.card-post:nth-child(3) {
  animation-delay: 0.2s;
}
.card-post:nth-child(4) {
  animation-delay: 0.3s;
}
.card-post:nth-child(5) {
  animation-delay: 0.4s;
}
.card-post:nth-child(6) {
  animation-delay: 0.5s;
}
.card-post:nth-child(7) {
  animation-delay: 0.6s;
}
.card-post:nth-child(8) {
  animation-delay: 0.7s;
}
.card-post:nth-child(9) {
  animation-delay: 0.8s;
}
.card-post:nth-child(10) {
  animation-delay: 0.9s;
}
.card-post:nth-child(11) {
  animation-delay: 1s;
}
.card-post:nth-child(12) {
  animation-delay: 1.1s;
}
.card-post:nth-child(13) {
  animation-delay: 1.2s;
}
.card-post:nth-child(14) {
  animation-delay: 1.3s;
}
.card-post:nth-child(15) {
  animation-delay: 1.4s;
}
.card-post:nth-child(16) {
  animation-delay: 1.5s;
}
.card-post:nth-child(17) {
  animation-delay: 1.6s;
}
.card-post:nth-child(18) {
  animation-delay: 1.7s;
}
.card-post:nth-child(19) {
  animation-delay: 1.8s;
}
.card-post:nth-child(20) {
  animation-delay: 1.9s;
}
.card-post:nth-child(21) {
  animation-delay: 2s;
}
.card-post:nth-child(22) {
  animation-delay: 2.1s;
}
.card-post:nth-child(23) {
  animation-delay: 2.2s;
}
.card-post:nth-child(24) {
  animation-delay: 2.3s;
}
.card-post:nth-child(25) {
  animation-delay: 2.4s;
}
.card-post:nth-child(26) {
  animation-delay: 2.5s;
}
.card-post:nth-child(27) {
  animation-delay: 2.6s;
}
.card-post:nth-child(28) {
  animation-delay: 2.7s;
}
.card-post:nth-child(29) {
  animation-delay: 2.8s;
}
.card-post:nth-child(30) {
  animation-delay: 2.9s;
}
.card-post:nth-child(31) {
  animation-delay: 3s;
}
.card-post:nth-child(32) {
  animation-delay: 3.1s;
}
.card-post:nth-child(33) {
  animation-delay: 3.2s;
}
.card-post:nth-child(34) {
  animation-delay: 3.3s;
}
.card-post:nth-child(35) {
  animation-delay: 3.4s;
}
.card-post:nth-child(36) {
  animation-delay: 3.5s;
}
.card-post:nth-child(37) {
  animation-delay: 3.6s;
}
.card-post:nth-child(38) {
  animation-delay: 3.7s;
}
.card-post:nth-child(39) {
  animation-delay: 3.8s;
}
.card-post:nth-child(40) {
  animation-delay: 3.9s;
}
.card-post:nth-child(41) {
  animation-delay: 4s;
}
.card-post:nth-child(42) {
  animation-delay: 4.1s;
}
.card-post:nth-child(43) {
  animation-delay: 4.2s;
}
.card-post:nth-child(44) {
  animation-delay: 4.3s;
}
.card-post:nth-child(45) {
  animation-delay: 4.4s;
}
.card-post:nth-child(46) {
  animation-delay: 4.5s;
}
.card-post:nth-child(47) {
  animation-delay: 4.6s;
}
.card-post:nth-child(48) {
  animation-delay: 4.7s;
}
.card-post:nth-child(49) {
  animation-delay: 4.8s;
}
.card-post:nth-child(50) {
  animation-delay: 4.9s;
}
.card-post:nth-child(51) {
  animation-delay: 5s;
}
.card-post:nth-child(52) {
  animation-delay: 5.1s;
}
.card-post:nth-child(53) {
  animation-delay: 5.2s;
}
.card-post:nth-child(54) {
  animation-delay: 5.3s;
}
.card-post:nth-child(55) {
  animation-delay: 5.4s;
}
.card-post:nth-child(56) {
  animation-delay: 5.5s;
}
.card-post:nth-child(57) {
  animation-delay: 5.6s;
}
.card-post:nth-child(58) {
  animation-delay: 5.7s;
}
.card-post:nth-child(59) {
  animation-delay: 5.8s;
}
.card-post:nth-child(60) {
  animation-delay: 5.9s;
}
.card-post:nth-child(61) {
  animation-delay: 6s;
}
.card-post:nth-child(62) {
  animation-delay: 6.1s;
}
.card-post:nth-child(63) {
  animation-delay: 6.2s;
}
.card-post:nth-child(64) {
  animation-delay: 6.3s;
}
.card-post:nth-child(65) {
  animation-delay: 6.4s;
}
.card-post:nth-child(66) {
  animation-delay: 6.5s;
}
.card-post:nth-child(67) {
  animation-delay: 6.6s;
}
.card-post:nth-child(68) {
  animation-delay: 6.7s;
}
.card-post:nth-child(69) {
  animation-delay: 6.8s;
}
.card-post:nth-child(70) {
  animation-delay: 6.9s;
}
.card-post:nth-child(71) {
  animation-delay: 7s;
}
.card-post:nth-child(72) {
  animation-delay: 7.1s;
}
.card-post:nth-child(73) {
  animation-delay: 7.2s;
}
.card-post:nth-child(74) {
  animation-delay: 7.3s;
}
.card-post:nth-child(75) {
  animation-delay: 7.4s;
}
.card-post:nth-child(76) {
  animation-delay: 7.5s;
}
.card-post:nth-child(77) {
  animation-delay: 7.6s;
}
.card-post:nth-child(78) {
  animation-delay: 7.7s;
}
.card-post:nth-child(79) {
  animation-delay: 7.8s;
}
.card-post:nth-child(80) {
  animation-delay: 7.9s;
}
.card-post:nth-child(81) {
  animation-delay: 8s;
}
.card-post:nth-child(82) {
  animation-delay: 8.1s;
}
.card-post:nth-child(83) {
  animation-delay: 8.2s;
}
.card-post:nth-child(84) {
  animation-delay: 8.3s;
}
.card-post:nth-child(85) {
  animation-delay: 8.4s;
}
.card-post:nth-child(86) {
  animation-delay: 8.5s;
}
.card-post:nth-child(87) {
  animation-delay: 8.6s;
}
.card-post:nth-child(88) {
  animation-delay: 8.7s;
}
.card-post:nth-child(89) {
  animation-delay: 8.8s;
}
.card-post:nth-child(90) {
  animation-delay: 8.9s;
}
.card-post:nth-child(91) {
  animation-delay: 9s;
}
.card-post:nth-child(92) {
  animation-delay: 9.1s;
}
.card-post:nth-child(93) {
  animation-delay: 9.2s;
}
.card-post:nth-child(94) {
  animation-delay: 9.3s;
}
.card-post:nth-child(95) {
  animation-delay: 9.4s;
}
.card-post:nth-child(96) {
  animation-delay: 9.5s;
}
.card-post:nth-child(97) {
  animation-delay: 9.6s;
}
.card-post:nth-child(98) {
  animation-delay: 9.7s;
}
.card-post:nth-child(99) {
  animation-delay: 9.8s;
}
.card-post:nth-child(100) {
  animation-delay: 9.9s;
}
@media (min-width: 768px) {
  .card-post {
    grid: auto/1fr minmax(0, 200px);
  }
}
.card-post a.post-content {
  background-color: #EBF8F8;
  border-radius: 10px;
  display: grid;
  grid: 1fr;
  row-gap: 20px;
  color: #222222;
  padding: 20px;
  font-weight: bolder;
}
@media (min-width: 768px) {
  .card-post a.post-content {
    grid: auto/200px 1fr;
    column-gap: 20px;
  }
}
.card-post a.post-content .col span.cat {
  border: 1px solid #0cb0a0;
  border-radius: 10px;
  padding: 8px 10px 7px;
  font-size: 14px;
  font-weight: normal;
}
.card-post a.post-content .col .post-title {
  margin: 0;
}
.card-post a.post-content .col.col-1 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .card-post a.post-content .col.col-1 {
    row-gap: 30px;
  }
}
@media (min-width: 768px) {
  .card-post a.post-content .col.col-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
  }
}
.card-post .post-image {
  background-color: #efefef;
  border-radius: 10px;
  margin-bottom: 0;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.card-post .post-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.card-project {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
.card-project:nth-child(1) {
  animation-delay: 0s;
}
.card-project:nth-child(2) {
  animation-delay: 0.1s;
}
.card-project:nth-child(3) {
  animation-delay: 0.2s;
}
.card-project:nth-child(4) {
  animation-delay: 0.3s;
}
.card-project:nth-child(5) {
  animation-delay: 0.4s;
}
.card-project:nth-child(6) {
  animation-delay: 0.5s;
}
.card-project:nth-child(7) {
  animation-delay: 0.6s;
}
.card-project:nth-child(8) {
  animation-delay: 0.7s;
}
.card-project:nth-child(9) {
  animation-delay: 0.8s;
}
.card-project:nth-child(10) {
  animation-delay: 0.9s;
}
.card-project:nth-child(11) {
  animation-delay: 1s;
}
.card-project:nth-child(12) {
  animation-delay: 1.1s;
}
.card-project:nth-child(13) {
  animation-delay: 1.2s;
}
.card-project:nth-child(14) {
  animation-delay: 1.3s;
}
.card-project:nth-child(15) {
  animation-delay: 1.4s;
}
.card-project:nth-child(16) {
  animation-delay: 1.5s;
}
.card-project:nth-child(17) {
  animation-delay: 1.6s;
}
.card-project:nth-child(18) {
  animation-delay: 1.7s;
}
.card-project:nth-child(19) {
  animation-delay: 1.8s;
}
.card-project:nth-child(20) {
  animation-delay: 1.9s;
}
.card-project:nth-child(21) {
  animation-delay: 2s;
}
.card-project:nth-child(22) {
  animation-delay: 2.1s;
}
.card-project:nth-child(23) {
  animation-delay: 2.2s;
}
.card-project:nth-child(24) {
  animation-delay: 2.3s;
}
.card-project:nth-child(25) {
  animation-delay: 2.4s;
}
.card-project:nth-child(26) {
  animation-delay: 2.5s;
}
.card-project:nth-child(27) {
  animation-delay: 2.6s;
}
.card-project:nth-child(28) {
  animation-delay: 2.7s;
}
.card-project:nth-child(29) {
  animation-delay: 2.8s;
}
.card-project:nth-child(30) {
  animation-delay: 2.9s;
}
.card-project:nth-child(31) {
  animation-delay: 3s;
}
.card-project:nth-child(32) {
  animation-delay: 3.1s;
}
.card-project:nth-child(33) {
  animation-delay: 3.2s;
}
.card-project:nth-child(34) {
  animation-delay: 3.3s;
}
.card-project:nth-child(35) {
  animation-delay: 3.4s;
}
.card-project:nth-child(36) {
  animation-delay: 3.5s;
}
.card-project:nth-child(37) {
  animation-delay: 3.6s;
}
.card-project:nth-child(38) {
  animation-delay: 3.7s;
}
.card-project:nth-child(39) {
  animation-delay: 3.8s;
}
.card-project:nth-child(40) {
  animation-delay: 3.9s;
}
.card-project:nth-child(41) {
  animation-delay: 4s;
}
.card-project:nth-child(42) {
  animation-delay: 4.1s;
}
.card-project:nth-child(43) {
  animation-delay: 4.2s;
}
.card-project:nth-child(44) {
  animation-delay: 4.3s;
}
.card-project:nth-child(45) {
  animation-delay: 4.4s;
}
.card-project:nth-child(46) {
  animation-delay: 4.5s;
}
.card-project:nth-child(47) {
  animation-delay: 4.6s;
}
.card-project:nth-child(48) {
  animation-delay: 4.7s;
}
.card-project:nth-child(49) {
  animation-delay: 4.8s;
}
.card-project:nth-child(50) {
  animation-delay: 4.9s;
}
.card-project:nth-child(51) {
  animation-delay: 5s;
}
.card-project:nth-child(52) {
  animation-delay: 5.1s;
}
.card-project:nth-child(53) {
  animation-delay: 5.2s;
}
.card-project:nth-child(54) {
  animation-delay: 5.3s;
}
.card-project:nth-child(55) {
  animation-delay: 5.4s;
}
.card-project:nth-child(56) {
  animation-delay: 5.5s;
}
.card-project:nth-child(57) {
  animation-delay: 5.6s;
}
.card-project:nth-child(58) {
  animation-delay: 5.7s;
}
.card-project:nth-child(59) {
  animation-delay: 5.8s;
}
.card-project:nth-child(60) {
  animation-delay: 5.9s;
}
.card-project:nth-child(61) {
  animation-delay: 6s;
}
.card-project:nth-child(62) {
  animation-delay: 6.1s;
}
.card-project:nth-child(63) {
  animation-delay: 6.2s;
}
.card-project:nth-child(64) {
  animation-delay: 6.3s;
}
.card-project:nth-child(65) {
  animation-delay: 6.4s;
}
.card-project:nth-child(66) {
  animation-delay: 6.5s;
}
.card-project:nth-child(67) {
  animation-delay: 6.6s;
}
.card-project:nth-child(68) {
  animation-delay: 6.7s;
}
.card-project:nth-child(69) {
  animation-delay: 6.8s;
}
.card-project:nth-child(70) {
  animation-delay: 6.9s;
}
.card-project:nth-child(71) {
  animation-delay: 7s;
}
.card-project:nth-child(72) {
  animation-delay: 7.1s;
}
.card-project:nth-child(73) {
  animation-delay: 7.2s;
}
.card-project:nth-child(74) {
  animation-delay: 7.3s;
}
.card-project:nth-child(75) {
  animation-delay: 7.4s;
}
.card-project:nth-child(76) {
  animation-delay: 7.5s;
}
.card-project:nth-child(77) {
  animation-delay: 7.6s;
}
.card-project:nth-child(78) {
  animation-delay: 7.7s;
}
.card-project:nth-child(79) {
  animation-delay: 7.8s;
}
.card-project:nth-child(80) {
  animation-delay: 7.9s;
}
.card-project:nth-child(81) {
  animation-delay: 8s;
}
.card-project:nth-child(82) {
  animation-delay: 8.1s;
}
.card-project:nth-child(83) {
  animation-delay: 8.2s;
}
.card-project:nth-child(84) {
  animation-delay: 8.3s;
}
.card-project:nth-child(85) {
  animation-delay: 8.4s;
}
.card-project:nth-child(86) {
  animation-delay: 8.5s;
}
.card-project:nth-child(87) {
  animation-delay: 8.6s;
}
.card-project:nth-child(88) {
  animation-delay: 8.7s;
}
.card-project:nth-child(89) {
  animation-delay: 8.8s;
}
.card-project:nth-child(90) {
  animation-delay: 8.9s;
}
.card-project:nth-child(91) {
  animation-delay: 9s;
}
.card-project:nth-child(92) {
  animation-delay: 9.1s;
}
.card-project:nth-child(93) {
  animation-delay: 9.2s;
}
.card-project:nth-child(94) {
  animation-delay: 9.3s;
}
.card-project:nth-child(95) {
  animation-delay: 9.4s;
}
.card-project:nth-child(96) {
  animation-delay: 9.5s;
}
.card-project:nth-child(97) {
  animation-delay: 9.6s;
}
.card-project:nth-child(98) {
  animation-delay: 9.7s;
}
.card-project:nth-child(99) {
  animation-delay: 9.8s;
}
.card-project:nth-child(100) {
  animation-delay: 9.9s;
}
@media (min-width: 768px) {
  .card-project {
    grid: auto/1fr minmax(0, 200px);
  }
}
.card-project a.post-content {
  background-color: #ebf8f8;
  border-radius: 10px;
  display: grid;
  grid: 1fr;
  row-gap: 20px;
  color: #222222;
  padding: 20px;
  font-weight: bolder;
}
@media (min-width: 768px) {
  .card-project a.post-content {
    grid: auto/200px 1fr;
    column-gap: 20px;
  }
}
.card-project a.post-content .col span.cat {
  border: 1px solid #0cb0a0;
  border-radius: 10px;
  padding: 8px 10px 7px;
  font-size: 14px;
  font-weight: normal;
}
.card-project a.post-content .col .post-title {
  margin: 0;
}
.card-project a.post-content .col.col-1 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .card-project a.post-content .col.col-1 {
    row-gap: 30px;
  }
}
@media (min-width: 768px) {
  .card-project a.post-content .col.col-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
  }
}
.card-project .post-image {
  background-color: #efefef;
  border-radius: 10px;
  margin-bottom: 0;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.card-project .post-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.card-news {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
.card-news:nth-child(1) {
  animation-delay: 0s;
}
.card-news:nth-child(2) {
  animation-delay: 0.1s;
}
.card-news:nth-child(3) {
  animation-delay: 0.2s;
}
.card-news:nth-child(4) {
  animation-delay: 0.3s;
}
.card-news:nth-child(5) {
  animation-delay: 0.4s;
}
.card-news:nth-child(6) {
  animation-delay: 0.5s;
}
.card-news:nth-child(7) {
  animation-delay: 0.6s;
}
.card-news:nth-child(8) {
  animation-delay: 0.7s;
}
.card-news:nth-child(9) {
  animation-delay: 0.8s;
}
.card-news:nth-child(10) {
  animation-delay: 0.9s;
}
.card-news:nth-child(11) {
  animation-delay: 1s;
}
.card-news:nth-child(12) {
  animation-delay: 1.1s;
}
.card-news:nth-child(13) {
  animation-delay: 1.2s;
}
.card-news:nth-child(14) {
  animation-delay: 1.3s;
}
.card-news:nth-child(15) {
  animation-delay: 1.4s;
}
.card-news:nth-child(16) {
  animation-delay: 1.5s;
}
.card-news:nth-child(17) {
  animation-delay: 1.6s;
}
.card-news:nth-child(18) {
  animation-delay: 1.7s;
}
.card-news:nth-child(19) {
  animation-delay: 1.8s;
}
.card-news:nth-child(20) {
  animation-delay: 1.9s;
}
.card-news:nth-child(21) {
  animation-delay: 2s;
}
.card-news:nth-child(22) {
  animation-delay: 2.1s;
}
.card-news:nth-child(23) {
  animation-delay: 2.2s;
}
.card-news:nth-child(24) {
  animation-delay: 2.3s;
}
.card-news:nth-child(25) {
  animation-delay: 2.4s;
}
.card-news:nth-child(26) {
  animation-delay: 2.5s;
}
.card-news:nth-child(27) {
  animation-delay: 2.6s;
}
.card-news:nth-child(28) {
  animation-delay: 2.7s;
}
.card-news:nth-child(29) {
  animation-delay: 2.8s;
}
.card-news:nth-child(30) {
  animation-delay: 2.9s;
}
.card-news:nth-child(31) {
  animation-delay: 3s;
}
.card-news:nth-child(32) {
  animation-delay: 3.1s;
}
.card-news:nth-child(33) {
  animation-delay: 3.2s;
}
.card-news:nth-child(34) {
  animation-delay: 3.3s;
}
.card-news:nth-child(35) {
  animation-delay: 3.4s;
}
.card-news:nth-child(36) {
  animation-delay: 3.5s;
}
.card-news:nth-child(37) {
  animation-delay: 3.6s;
}
.card-news:nth-child(38) {
  animation-delay: 3.7s;
}
.card-news:nth-child(39) {
  animation-delay: 3.8s;
}
.card-news:nth-child(40) {
  animation-delay: 3.9s;
}
.card-news:nth-child(41) {
  animation-delay: 4s;
}
.card-news:nth-child(42) {
  animation-delay: 4.1s;
}
.card-news:nth-child(43) {
  animation-delay: 4.2s;
}
.card-news:nth-child(44) {
  animation-delay: 4.3s;
}
.card-news:nth-child(45) {
  animation-delay: 4.4s;
}
.card-news:nth-child(46) {
  animation-delay: 4.5s;
}
.card-news:nth-child(47) {
  animation-delay: 4.6s;
}
.card-news:nth-child(48) {
  animation-delay: 4.7s;
}
.card-news:nth-child(49) {
  animation-delay: 4.8s;
}
.card-news:nth-child(50) {
  animation-delay: 4.9s;
}
.card-news:nth-child(51) {
  animation-delay: 5s;
}
.card-news:nth-child(52) {
  animation-delay: 5.1s;
}
.card-news:nth-child(53) {
  animation-delay: 5.2s;
}
.card-news:nth-child(54) {
  animation-delay: 5.3s;
}
.card-news:nth-child(55) {
  animation-delay: 5.4s;
}
.card-news:nth-child(56) {
  animation-delay: 5.5s;
}
.card-news:nth-child(57) {
  animation-delay: 5.6s;
}
.card-news:nth-child(58) {
  animation-delay: 5.7s;
}
.card-news:nth-child(59) {
  animation-delay: 5.8s;
}
.card-news:nth-child(60) {
  animation-delay: 5.9s;
}
.card-news:nth-child(61) {
  animation-delay: 6s;
}
.card-news:nth-child(62) {
  animation-delay: 6.1s;
}
.card-news:nth-child(63) {
  animation-delay: 6.2s;
}
.card-news:nth-child(64) {
  animation-delay: 6.3s;
}
.card-news:nth-child(65) {
  animation-delay: 6.4s;
}
.card-news:nth-child(66) {
  animation-delay: 6.5s;
}
.card-news:nth-child(67) {
  animation-delay: 6.6s;
}
.card-news:nth-child(68) {
  animation-delay: 6.7s;
}
.card-news:nth-child(69) {
  animation-delay: 6.8s;
}
.card-news:nth-child(70) {
  animation-delay: 6.9s;
}
.card-news:nth-child(71) {
  animation-delay: 7s;
}
.card-news:nth-child(72) {
  animation-delay: 7.1s;
}
.card-news:nth-child(73) {
  animation-delay: 7.2s;
}
.card-news:nth-child(74) {
  animation-delay: 7.3s;
}
.card-news:nth-child(75) {
  animation-delay: 7.4s;
}
.card-news:nth-child(76) {
  animation-delay: 7.5s;
}
.card-news:nth-child(77) {
  animation-delay: 7.6s;
}
.card-news:nth-child(78) {
  animation-delay: 7.7s;
}
.card-news:nth-child(79) {
  animation-delay: 7.8s;
}
.card-news:nth-child(80) {
  animation-delay: 7.9s;
}
.card-news:nth-child(81) {
  animation-delay: 8s;
}
.card-news:nth-child(82) {
  animation-delay: 8.1s;
}
.card-news:nth-child(83) {
  animation-delay: 8.2s;
}
.card-news:nth-child(84) {
  animation-delay: 8.3s;
}
.card-news:nth-child(85) {
  animation-delay: 8.4s;
}
.card-news:nth-child(86) {
  animation-delay: 8.5s;
}
.card-news:nth-child(87) {
  animation-delay: 8.6s;
}
.card-news:nth-child(88) {
  animation-delay: 8.7s;
}
.card-news:nth-child(89) {
  animation-delay: 8.8s;
}
.card-news:nth-child(90) {
  animation-delay: 8.9s;
}
.card-news:nth-child(91) {
  animation-delay: 9s;
}
.card-news:nth-child(92) {
  animation-delay: 9.1s;
}
.card-news:nth-child(93) {
  animation-delay: 9.2s;
}
.card-news:nth-child(94) {
  animation-delay: 9.3s;
}
.card-news:nth-child(95) {
  animation-delay: 9.4s;
}
.card-news:nth-child(96) {
  animation-delay: 9.5s;
}
.card-news:nth-child(97) {
  animation-delay: 9.6s;
}
.card-news:nth-child(98) {
  animation-delay: 9.7s;
}
.card-news:nth-child(99) {
  animation-delay: 9.8s;
}
.card-news:nth-child(100) {
  animation-delay: 9.9s;
}
@media (min-width: 768px) {
  .card-news {
    grid: auto/1fr minmax(0, 200px);
  }
}
.card-news a.post-content {
  background-color: #ebf8f8;
  border-radius: 10px;
  display: grid;
  grid: 1fr;
  row-gap: 20px;
  color: #222222;
  padding: 20px;
  font-weight: bolder;
}
@media (min-width: 768px) {
  .card-news a.post-content {
    grid: auto/200px 1fr;
    column-gap: 20px;
  }
}
.card-news a.post-content .col span.cat {
  border: 1px solid #0cb0a0;
  border-radius: 10px;
  padding: 8px 10px 7px;
  font-size: 14px;
  font-weight: normal;
}
.card-news a.post-content .col .post-title {
  margin: 0;
}
.card-news a.post-content .col.col-1 {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .card-news a.post-content .col.col-1 {
    row-gap: 30px;
  }
}
@media (min-width: 768px) {
  .card-news a.post-content .col.col-2 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
  }
}
.card-news .post-image {
  background-color: #efefef;
  border-radius: 10px;
  margin-bottom: 0;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.card-news .post-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

section.form .container {
  display: grid;
  grid: auto/1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  section.form .container {
    grid: auto/1fr 1fr;
  }
}
@media (min-width: 1024px) {
  section.form .container {
    gap: 80px;
  }
}
section.form .container .col .section-intro-text {
  margin-bottom: 0;
}

section.contact .container .col ul.contact-items {
  padding: 0;
  display: grid;
  grid: auto/1fr;
  gap: 10px;
  list-style-type: none;
}
section.contact .container .col ul.contact-items li {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid #f3f3f3;
  border-radius: 5px;
  opacity: 0;
  animation: slideUpFadeIn 0.5s ease-out forwards;
}
section.contact .container .col ul.contact-items li:nth-child(1) {
  animation-delay: 0s;
}
section.contact .container .col ul.contact-items li:nth-child(2) {
  animation-delay: 0.1s;
}
section.contact .container .col ul.contact-items li:nth-child(3) {
  animation-delay: 0.2s;
}
section.contact .container .col ul.contact-items li:nth-child(4) {
  animation-delay: 0.3s;
}
section.contact .container .col ul.contact-items li:nth-child(5) {
  animation-delay: 0.4s;
}
section.contact .container .col ul.contact-items li:nth-child(6) {
  animation-delay: 0.5s;
}
section.contact .container .col ul.contact-items li:nth-child(7) {
  animation-delay: 0.6s;
}
section.contact .container .col ul.contact-items li:nth-child(8) {
  animation-delay: 0.7s;
}
section.contact .container .col ul.contact-items li:nth-child(9) {
  animation-delay: 0.8s;
}
section.contact .container .col ul.contact-items li:nth-child(10) {
  animation-delay: 0.9s;
}
section.contact .container .col ul.contact-items li:nth-child(11) {
  animation-delay: 1s;
}
section.contact .container .col ul.contact-items li:nth-child(12) {
  animation-delay: 1.1s;
}
section.contact .container .col ul.contact-items li:nth-child(13) {
  animation-delay: 1.2s;
}
section.contact .container .col ul.contact-items li:nth-child(14) {
  animation-delay: 1.3s;
}
section.contact .container .col ul.contact-items li:nth-child(15) {
  animation-delay: 1.4s;
}
section.contact .container .col ul.contact-items li:nth-child(16) {
  animation-delay: 1.5s;
}
section.contact .container .col ul.contact-items li:nth-child(17) {
  animation-delay: 1.6s;
}
section.contact .container .col ul.contact-items li:nth-child(18) {
  animation-delay: 1.7s;
}
section.contact .container .col ul.contact-items li:nth-child(19) {
  animation-delay: 1.8s;
}
section.contact .container .col ul.contact-items li:nth-child(20) {
  animation-delay: 1.9s;
}
section.contact .container .col ul.contact-items li:nth-child(21) {
  animation-delay: 2s;
}
section.contact .container .col ul.contact-items li:nth-child(22) {
  animation-delay: 2.1s;
}
section.contact .container .col ul.contact-items li:nth-child(23) {
  animation-delay: 2.2s;
}
section.contact .container .col ul.contact-items li:nth-child(24) {
  animation-delay: 2.3s;
}
section.contact .container .col ul.contact-items li:nth-child(25) {
  animation-delay: 2.4s;
}
section.contact .container .col ul.contact-items li:nth-child(26) {
  animation-delay: 2.5s;
}
section.contact .container .col ul.contact-items li:nth-child(27) {
  animation-delay: 2.6s;
}
section.contact .container .col ul.contact-items li:nth-child(28) {
  animation-delay: 2.7s;
}
section.contact .container .col ul.contact-items li:nth-child(29) {
  animation-delay: 2.8s;
}
section.contact .container .col ul.contact-items li:nth-child(30) {
  animation-delay: 2.9s;
}
section.contact .container .col ul.contact-items li:nth-child(31) {
  animation-delay: 3s;
}
section.contact .container .col ul.contact-items li:nth-child(32) {
  animation-delay: 3.1s;
}
section.contact .container .col ul.contact-items li:nth-child(33) {
  animation-delay: 3.2s;
}
section.contact .container .col ul.contact-items li:nth-child(34) {
  animation-delay: 3.3s;
}
section.contact .container .col ul.contact-items li:nth-child(35) {
  animation-delay: 3.4s;
}
section.contact .container .col ul.contact-items li:nth-child(36) {
  animation-delay: 3.5s;
}
section.contact .container .col ul.contact-items li:nth-child(37) {
  animation-delay: 3.6s;
}
section.contact .container .col ul.contact-items li:nth-child(38) {
  animation-delay: 3.7s;
}
section.contact .container .col ul.contact-items li:nth-child(39) {
  animation-delay: 3.8s;
}
section.contact .container .col ul.contact-items li:nth-child(40) {
  animation-delay: 3.9s;
}
section.contact .container .col ul.contact-items li:nth-child(41) {
  animation-delay: 4s;
}
section.contact .container .col ul.contact-items li:nth-child(42) {
  animation-delay: 4.1s;
}
section.contact .container .col ul.contact-items li:nth-child(43) {
  animation-delay: 4.2s;
}
section.contact .container .col ul.contact-items li:nth-child(44) {
  animation-delay: 4.3s;
}
section.contact .container .col ul.contact-items li:nth-child(45) {
  animation-delay: 4.4s;
}
section.contact .container .col ul.contact-items li:nth-child(46) {
  animation-delay: 4.5s;
}
section.contact .container .col ul.contact-items li:nth-child(47) {
  animation-delay: 4.6s;
}
section.contact .container .col ul.contact-items li:nth-child(48) {
  animation-delay: 4.7s;
}
section.contact .container .col ul.contact-items li:nth-child(49) {
  animation-delay: 4.8s;
}
section.contact .container .col ul.contact-items li:nth-child(50) {
  animation-delay: 4.9s;
}
section.contact .container .col ul.contact-items li:nth-child(51) {
  animation-delay: 5s;
}
section.contact .container .col ul.contact-items li:nth-child(52) {
  animation-delay: 5.1s;
}
section.contact .container .col ul.contact-items li:nth-child(53) {
  animation-delay: 5.2s;
}
section.contact .container .col ul.contact-items li:nth-child(54) {
  animation-delay: 5.3s;
}
section.contact .container .col ul.contact-items li:nth-child(55) {
  animation-delay: 5.4s;
}
section.contact .container .col ul.contact-items li:nth-child(56) {
  animation-delay: 5.5s;
}
section.contact .container .col ul.contact-items li:nth-child(57) {
  animation-delay: 5.6s;
}
section.contact .container .col ul.contact-items li:nth-child(58) {
  animation-delay: 5.7s;
}
section.contact .container .col ul.contact-items li:nth-child(59) {
  animation-delay: 5.8s;
}
section.contact .container .col ul.contact-items li:nth-child(60) {
  animation-delay: 5.9s;
}
section.contact .container .col ul.contact-items li:nth-child(61) {
  animation-delay: 6s;
}
section.contact .container .col ul.contact-items li:nth-child(62) {
  animation-delay: 6.1s;
}
section.contact .container .col ul.contact-items li:nth-child(63) {
  animation-delay: 6.2s;
}
section.contact .container .col ul.contact-items li:nth-child(64) {
  animation-delay: 6.3s;
}
section.contact .container .col ul.contact-items li:nth-child(65) {
  animation-delay: 6.4s;
}
section.contact .container .col ul.contact-items li:nth-child(66) {
  animation-delay: 6.5s;
}
section.contact .container .col ul.contact-items li:nth-child(67) {
  animation-delay: 6.6s;
}
section.contact .container .col ul.contact-items li:nth-child(68) {
  animation-delay: 6.7s;
}
section.contact .container .col ul.contact-items li:nth-child(69) {
  animation-delay: 6.8s;
}
section.contact .container .col ul.contact-items li:nth-child(70) {
  animation-delay: 6.9s;
}
section.contact .container .col ul.contact-items li:nth-child(71) {
  animation-delay: 7s;
}
section.contact .container .col ul.contact-items li:nth-child(72) {
  animation-delay: 7.1s;
}
section.contact .container .col ul.contact-items li:nth-child(73) {
  animation-delay: 7.2s;
}
section.contact .container .col ul.contact-items li:nth-child(74) {
  animation-delay: 7.3s;
}
section.contact .container .col ul.contact-items li:nth-child(75) {
  animation-delay: 7.4s;
}
section.contact .container .col ul.contact-items li:nth-child(76) {
  animation-delay: 7.5s;
}
section.contact .container .col ul.contact-items li:nth-child(77) {
  animation-delay: 7.6s;
}
section.contact .container .col ul.contact-items li:nth-child(78) {
  animation-delay: 7.7s;
}
section.contact .container .col ul.contact-items li:nth-child(79) {
  animation-delay: 7.8s;
}
section.contact .container .col ul.contact-items li:nth-child(80) {
  animation-delay: 7.9s;
}
section.contact .container .col ul.contact-items li:nth-child(81) {
  animation-delay: 8s;
}
section.contact .container .col ul.contact-items li:nth-child(82) {
  animation-delay: 8.1s;
}
section.contact .container .col ul.contact-items li:nth-child(83) {
  animation-delay: 8.2s;
}
section.contact .container .col ul.contact-items li:nth-child(84) {
  animation-delay: 8.3s;
}
section.contact .container .col ul.contact-items li:nth-child(85) {
  animation-delay: 8.4s;
}
section.contact .container .col ul.contact-items li:nth-child(86) {
  animation-delay: 8.5s;
}
section.contact .container .col ul.contact-items li:nth-child(87) {
  animation-delay: 8.6s;
}
section.contact .container .col ul.contact-items li:nth-child(88) {
  animation-delay: 8.7s;
}
section.contact .container .col ul.contact-items li:nth-child(89) {
  animation-delay: 8.8s;
}
section.contact .container .col ul.contact-items li:nth-child(90) {
  animation-delay: 8.9s;
}
section.contact .container .col ul.contact-items li:nth-child(91) {
  animation-delay: 9s;
}
section.contact .container .col ul.contact-items li:nth-child(92) {
  animation-delay: 9.1s;
}
section.contact .container .col ul.contact-items li:nth-child(93) {
  animation-delay: 9.2s;
}
section.contact .container .col ul.contact-items li:nth-child(94) {
  animation-delay: 9.3s;
}
section.contact .container .col ul.contact-items li:nth-child(95) {
  animation-delay: 9.4s;
}
section.contact .container .col ul.contact-items li:nth-child(96) {
  animation-delay: 9.5s;
}
section.contact .container .col ul.contact-items li:nth-child(97) {
  animation-delay: 9.6s;
}
section.contact .container .col ul.contact-items li:nth-child(98) {
  animation-delay: 9.7s;
}
section.contact .container .col ul.contact-items li:nth-child(99) {
  animation-delay: 9.8s;
}
section.contact .container .col ul.contact-items li:nth-child(100) {
  animation-delay: 9.9s;
}
section.contact .container .col ul.contact-items li:nth-of-type(odd) {
  background-color: #f3f3f3;
}
section.contact .container .col ul.contact-items li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222222;
  flex-shrink: 0;
}
section.contact .container .col ul.contact-items li a svg {
  width: 20px;
  height: 20px;
  color: #0CB0A0;
}
section.contact .container .col ul.contact-items li > a {
  font-weight: bold;
}
section.contact .container .col ul.contact-items li .contact-data {
  display: flex;
  column-gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
}
section.contact .container.show-form {
  display: grid;
  grid: auto/1fr;
  row-gap: 40px;
}
@media (min-width: 768px) {
  section.contact .container.show-form {
    grid: auto/40% 1fr;
  }
}
@media (min-width: 768px) {
  section.contact .container.show-form .col:nth-of-type(2) {
    border-left: 1px solid #0cb0a0;
    padding-left: 30px;
  }
}
@media (min-width: 1024px) {
  section.contact .container.show-form .col:nth-of-type(2) {
    padding-left: 60px;
  }
}
@media (min-width: 768px) {
  section.contact .container.show-form .col:nth-of-type(1) {
    padding-right: 30px;
  }
}
@media (min-width: 1024px) {
  section.contact .container.show-form .col:nth-of-type(1) {
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  section.contact .container.hide-form .contact-items {
    grid: auto/repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  section.contact .container.hide-form .contact-items {
    grid: auto/repeat(3, minmax(0, 1fr)) !important;
  }
}

section.google-map .container iframe {
  width: 100%;
  display: flex;
}
section.google-map.full-width .container {
  margin: 0;
  padding: 0;
  max-width: none;
}

section.hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
section.hero .container {
  position: relative;
}
section.hero .container .image-wrapper {
  aspect-ratio: 16/11;
  overflow: hidden;
  width: 100%;
  max-height: 400px;
  position: relative;
  border-radius: 10px;
}
section.hero .container .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
}
section.hero .container .image-wrapper.image::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent linear-gradient(0deg, #000000 0%, #0F0F0F 0%, #54545400 70%) 0% 0% no-repeat padding-box;
}
section.hero .container .slider .slick-list .slick-track .slick-slide .slide {
  aspect-ratio: 16/11;
  overflow: hidden;
  max-height: 400px;
  position: relative;
  border-radius: 10px;
}
section.hero .container .slider .slick-list .slick-track .slick-slide .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
section.hero .container .slider .slick-list .slick-track .slick-slide .slide::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent linear-gradient(0deg, #000000 0%, #0F0F0F 0%, #54545400 70%) 0% 0% no-repeat padding-box;
  border-radius: 10px;
}
section.hero .container .content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 20px 30px;
  row-gap: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  z-index: 1;
}
@media (min-width: 768px) {
  section.hero .container .content {
    padding: 20px 40px;
    display: grid;
    grid: auto/1fr 1fr;
    column-gap: 40px;
    align-items: end;
  }
}
@media (min-width: 1024px) {
  section.hero .container .content {
    padding: 20px 60px;
    grid: auto/1fr 1fr;
    column-gap: 40px;
    align-items: end;
  }
}
section.hero .container .content .title {
  margin: 0;
  font-size: 24px;
}
@media (min-width: 768px) {
  section.hero .container .content .title {
    font-size: 36px;
  }
}
section.hero .container .content .text {
  font-size: 14px;
}
@media (min-width: 768px) {
  section.hero .container .content .text {
    font-size: 18px;
  }
}

section.quick-links .container .link-blocks-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  section.quick-links .container .link-blocks-wrapper {
    grid: auto/repeat(3, 1fr);
    gap: 15px;
  }
}
@media (min-width: 768px) {
  section.quick-links .container .link-blocks-wrapper.columns-4 {
    grid: auto/repeat(2, 1fr);
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  section.quick-links .container .link-blocks-wrapper.columns-4 {
    grid: auto/repeat(4, 1fr);
  }
}
section.quick-links .container .link-blocks-wrapper .link-block-item {
  background-color: #EBF8F8;
  border-radius: 10px;
  padding: 10px 20px;
  padding-right: 40px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  section.quick-links .container .link-blocks-wrapper .link-block-item {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  section.quick-links .container .link-blocks-wrapper .link-block-item {
    min-height: 170px;
  }
}
section.quick-links .container .link-blocks-wrapper .link-block-item svg {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 15px;
  rotate: -45deg;
  transition: all 0.3s ease;
  cursor: pointer;
}
section.quick-links .container .link-blocks-wrapper .link-block-item h3 {
  margin: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  section.quick-links .container .link-blocks-wrapper .link-block-item h3 {
    font-size: 20px;
  }
}
section.quick-links .container .link-blocks-wrapper .link-block-item ul.link-items {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: none;
  margin-top: 20px;
  font-size: 14px;
}
section.quick-links .container .link-blocks-wrapper .link-block-item.active svg {
  rotate: 0deg;
}

section.store-locator .container #wpsl-wrap {
  margin-top: 30px;
}
section.store-locator .container #wpsl-wrap .wpsl-search {
  background-color: transparent;
  border: 1px solid #0cb0a0;
  border-radius: 10px;
}
section.store-locator .container #wpsl-wrap .wpsl-search form {
  display: grid;
  grid: auto/1fr;
  padding-bottom: 15px;
  row-gap: 10px;
}
@media (min-width: 768px) {
  section.store-locator .container #wpsl-wrap .wpsl-search form {
    display: flex;
    align-items: end;
    gap: 15px;
  }
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-input {
  display: flex;
  align-items: center;
  display: grid;
  grid: auto/1fr;
  margin-bottom: 0;
  margin-right: 0;
  flex-grow: 1;
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-input input {
  display: inline-block;
  width: 100% !important;
  height: 40px;
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-select-wrap {
  display: grid;
  grid: auto/1fr;
  row-gap: 10px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-select-wrap {
    display: flex;
    gap: 15px;
  }
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-select-wrap #wpsl-radius,
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-select-wrap #wpsl-results {
  display: flex;
  align-items: center;
  display: grid;
  grid: auto/1fr;
  margin: 0;
  width: 100%;
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-select-wrap #wpsl-radius label,
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-select-wrap #wpsl-results label {
  margin: 0;
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-select-wrap #wpsl-radius select,
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-select-wrap #wpsl-results select {
  height: 40px;
  padding-left: 10px;
  width: 100% !important;
  min-width: 150px;
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-search-btn-wrap {
  margin-top: 5px;
  margin-right: 0;
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-search-btn-wrap input[type=submit] {
  background-color: #0cb0a0;
  color: #fff;
  border: none;
  border-radius: 10px;
  min-height: 40px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #0cb0a0;
  margin: 0;
  width: 100px;
}
section.store-locator .container #wpsl-wrap .wpsl-search form .wpsl-search-btn-wrap input[type=submit]:hover {
  background-color: #31f1de;
}
section.store-locator .container #wpsl-wrap #wpsl-gmap {
  border-radius: 10px;
}
section.store-locator .container #wpsl-wrap #wpsl-result-list #wpsl-stores ul {
  display: grid;
  grid: auto/1fr;
  row-gap: 10px;
  padding-right: 10px;
}
section.store-locator .container #wpsl-wrap #wpsl-result-list #wpsl-stores ul li {
  background-color: #EBF8F8;
  border-bottom: none;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 14px;
}

section.free-text .container .content.with-border {
  border: 1px solid #e3e3e3;
  padding: 20px;
  border-radius: 15px;
}
@media (min-width: 768px) {
  section.free-text .container .content.with-border {
    padding: 30px;
  }
}

section.post-grid-slider .container .grid-slider .grid-slide .grid-slide-wrapper {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 10px;
}
section.post-grid-slider .container .grid-slider .grid-slide .grid-slide-wrapper .post {
  opacity: 0;
  /* Initially hidden */
  animation: fadeInDrop 0.8s ease-in-out forwards;
}
section.post-grid-slider .container .grid-slider .grid-slide .grid-slide-wrapper .post:nth-child(2) {
  animation-delay: 0.2s;
}
section.post-grid-slider .container .grid-slider .grid-slide .grid-slide-wrapper .post:nth-child(3) {
  animation-delay: 0.4s;
}
section.post-grid-slider .container .grid-slider .grid-slide .grid-slide-wrapper .post:nth-child(4) {
  animation-delay: 0.6s;
}
section.post-grid-slider .container .grid-slider .grid-slide .grid-slide-wrapper .post:nth-child(5) {
  animation-delay: 0.8s;
}
section.post-grid-slider .container .grid-slider .grid-slide .grid-slide-wrapper .post:nth-child(6) {
  animation-delay: 1s;
}
section.post-grid-slider .container .slider-controls {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 30px;
}
section.post-grid-slider .container .slider-controls button {
  background-color: #0CB0A0;
  border: none;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 25px;
}
section.post-grid-slider .container .slider-controls button svg {
  width: 18px;
  stroke: #fff;
}
section.post-grid-slider .container .slider-controls button.slick-disabled {
  background-color: #0cb0a080;
  cursor: auto;
}
section.post-grid-slider .container .slider-controls .slide-dots ul.slick-dots {
  position: static;
  display: flex;
  gap: 7px;
}
section.post-grid-slider .container .slider-controls .slide-dots ul.slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
section.post-grid-slider .container .slider-controls .slide-dots ul.slick-dots li button {
  color: #222222;
  /* Stel de kleur van de cijfers in (zwart in dit geval) */
  font-size: 14px;
  /* Stel de grootte van de cijfers in */
  cursor: pointer;
  background-color: #EBF8F8;
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding-top: 7px;
}
section.post-grid-slider .container .slider-controls .slide-dots ul.slick-dots li button::before {
  display: none;
}
section.post-grid-slider .container .slider-controls .slide-dots ul.slick-dots li.slick-active button {
  font-weight: bold;
  /* Maak het actieve nummer vetgedrukt */
}

section.cards .container .cards-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 15px;
}
@media (min-width: 768px) {
  section.cards .container .cards-wrapper {
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  section.cards .container .cards-wrapper {
    grid: auto/repeat(3, minmax(0, 1fr));
  }
  section.cards .container .cards-wrapper a.card:nth-child(4n+1), section.cards .container .cards-wrapper a.card:nth-child(4n) {
    grid-column: span 2;
  }
  section.cards .container .cards-wrapper a.card:nth-last-child(-n+3):nth-child(odd) {
    grid-column: span 1;
  }
}

section.accordeon-items .container .accordeon-items-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 15px;
  margin-top: 30px;
}

section.faq .container .content .text {
  margin-bottom: 30px;
}
section.faq .container .faq-items-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 15px;
}

section.cta .container .cta-wrapper {
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid: auto/minmax(0, 1fr);
}
@media (min-width: 768px) {
  section.cta .container .cta-wrapper {
    grid: auto/55% minmax(0, 1fr);
  }
}
section.cta .container .cta-wrapper .col .text {
  margin-bottom: 20px;
}
section.cta .container .cta-wrapper .col a.btn-primary {
  padding-left: 20px;
  padding-right: 20px;
}
section.cta .container .cta-wrapper .col:first-of-type {
  background-color: #ebf8f8;
  padding: 40px 30px;
}
@media (min-width: 768px) {
  section.cta .container .cta-wrapper .col:first-of-type {
    padding: 60px 30px;
  }
}
section.cta .container .cta-wrapper .col img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
}

section.banner .container .content {
  background-color: #0cb0a0;
  color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
}
section.banner .container .content .section-title {
  margin-bottom: 15px;
  font-size: 25px;
}
section.usp .container .usp-wrapper {
  display: grid;
  grid: auto/1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  section.usp .container .usp-wrapper {
    grid: auto/repeat(3, 1fr);
  }
}

section.testimonials .container .content {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
section.testimonials .container .content h2.section-title {
  margin: 0;
}
section.testimonials .container .content nav.slider-nav {
  display: flex;
  gap: 20px;
}
section.testimonials .container .content nav.slider-nav button {
  width: 50px;
  height: 50px;
  border: none;
  background-color: #ebf8f8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
section.testimonials .container .content nav.slider-nav button svg {
  width: 21px;
}
@media (min-width: 768px) {
  section.testimonials .container .testimonial-items-wrapper .slick-list {
    padding: 0 100px 0 0;
  }
}
@media (min-width: 768px) {
  section.testimonials .container .testimonial-items-wrapper .slick-list .slick-track .slick-slide {
    margin: 0 30px 0 0;
  }
}

section.text-image .container .content {
  display: grid;
  grid: auto/repeat(1, minmax(0, 1fr));
  background-color: #ebf8f8;
  border-radius: 10px;
}
@media (min-width: 992px) {
  section.text-image .container .content {
    grid: auto/repeat(2, minmax(0, 1fr));
  }
}
section.text-image .container .content .col:first-of-type {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  section.text-image .container .content .col:first-of-type {
    padding: 100px 50px 100px 25px;
  }
}
section.text-image .container .content .col img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
@media (min-width: 992px) {
  section.text-image .container .content.image-left .col:first-of-type {
    order: 2;
    padding: 100px 25px 100px 50px;
  }
}

section.video .container .video-wrapper video {
  border-radius: 10px;
}
section.video .container .video-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 10px;
}

section.search-my-centre .container .text {
  margin-bottom: 30px;
}
section.search-my-centre .container .map-wrapper {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 30px;
}
@media (min-width: 768px) {
  section.search-my-centre .container .map-wrapper {
    grid: auto/minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (min-width: 1024px) {
  section.search-my-centre .container .map-wrapper {
    grid: auto/minmax(0, 400px) minmax(0, 1fr);
  }
}
section.search-my-centre .container .map-wrapper .form-wrapper {
  background-color: #EBF8F8;
  padding: 20px;
  border-radius: 10px;
}
section.search-my-centre .container .map-wrapper .form-wrapper .input-group {
  width: 100%;
}
@media (min-width: 400px) {
  section.search-my-centre .container .map-wrapper .form-wrapper .input-group {
    width: calc(100% - 110px);
  }
}
@media (min-width: 400px) {
  section.search-my-centre .container .map-wrapper .form-wrapper .input-group.number {
    width: 100px;
  }
}
section.search-my-centre .container .map-wrapper .form-wrapper .results-wrapper {
  display: none;
  border-top: 1px solid lightgrey;
  padding-top: 20px;
  margin-top: 20px;
}
section.search-my-centre .container .map-wrapper .form-wrapper .results-wrapper .results {
  display: none;
}
section.search-my-centre .container .map-wrapper .form-wrapper .results-wrapper .results h3 {
  margin-top: 0;
}
section.search-my-centre .container .map-wrapper .form-wrapper .results-wrapper .results ul li {
  line-height: 1.4;
}
section.search-my-centre .container .map-wrapper .form-wrapper .results-wrapper .results ul li + li {
  margin-top: 10px;
}
section.search-my-centre .container .map-wrapper .form-wrapper .results-wrapper .results ul li .relocation-area {
  color: #F76C5E;
}
section.search-my-centre .container .map-wrapper .form-wrapper .results-wrapper .no-results {
  display: none;
  font-weight: bold;
}
section.search-my-centre .container .map-wrapper .gm-style-iw-chr {
  position: absolute;
  right: 0;
}
section.search-my-centre .container .map-wrapper .wgc-infowindow ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
section.search-my-centre .container .map-wrapper .wgc-infowindow ul li {
  padding: 3px 0;
}
section.search-my-centre .container .map-wrapper .wgc-infowindow ul li a {
  display: flex;
  gap: 10px;
  align-items: center;
}
section.search-my-centre .container .map-wrapper .wgc-infowindow ul li a svg {
  width: 17px;
  color: black;
}

.ui-autocomplete {
  font-size: 13px;
  line-height: 1.4;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10000;
  /* belangrijk voor boven andere elementen */
  border: 1px solid #ccc;
  background: #fff;
}

.ui-menu-item {
  padding: 4px 10px;
  cursor: pointer;
}

.ui-menu-item:hover {
  background-color: #f0f0f0;
}

/* Verwijder de standaard border/kader bij hover */
.ui-menu-item-wrapper.ui-state-active {
  padding: 6px 10px !important;
  margin: 0 !important;
  border: none !important;
  background: #f0f0f0;
  /* of transparant indien je dat wil */
  outline: none !important;
  box-shadow: none !important;
}

.ui-menu-item-wrapper {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 6px 10px !important;
  /* vaste padding voor alle staten */
  box-sizing: border-box !important;
}

section.image .container .img-wrapper {
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 10px;
  max-height: 400px;
  width: 100%;
}
section.image .container .img-wrapper img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  object-fit: cover;
  object-position: center;
}

section.news .container .grid-news {
  display: grid;
  grid: auto/minmax(0, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  .error404 .site-wrapper main.main-content .container {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .error404 .site-wrapper main.main-content .container h1.page-title {
    margin-bottom: 40px;
  }
}

body.search .site-wrapper main.main-content .container .search-results {
  display: grid;
  grid: auto/1fr;
  gap: 10px;
}
@media (min-width: 768px) {
  body.search .site-wrapper main.main-content .container .search-results {
    margin-top: 40px;
  }
}
body.search .site-wrapper main.main-content .container nav.navigation {
  margin-top: 20px;
}

.single-job .site-wrapper .container {
  display: grid;
  grid: auto/1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .single-job .site-wrapper .container {
    grid: auto/1fr minmax(0, 350px);
  }
}
.single-job .site-wrapper .container h2 {
  margin-bottom: 15px;
}
.single-job .site-wrapper .container h3 {
  margin-bottom: 10px;
  margin-top: 25px;
}
.single-job .site-wrapper .container h3:first-child {
  margin-top: 0;
}
.single-job .site-wrapper .container main.main-content .content {
  line-height: 1.5;
}
.single-job .site-wrapper .container aside {
  background-color: #ebf8f8;
  padding: 20px;
  border-radius: 10px;
}
.single-job .site-wrapper .container aside h3 {
  font-size: 22px;
}

/*# sourceMappingURL=main.css.map */
