:root {
  --blue: #019CDB;
  --orange: #EA5B18;
  --red: #F0020A;
  --font: #000;
  --button-radius: 12px;
  --element-margin-mobile: 0 0 50px 0;
  --element-margin-desktop: 0 0 100px 0;
  --border-radius: 25px;
}


html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  position: relative;
  font-family:"stolzl", sans-serif !important;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--font) !important;
  transition: all 0.3s;
  line-height: 28px;
}


hr {
  border-top: 1px solid rgba(0, 0, 0, 1);
}


h1 {
  font-size: clamp(30px, 3.5vw, 44px) !important;
  font-weight: 900 !important;
  margin-bottom: 30px !important;
  text-wrap: balance;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 3.5vw, 40px) !important;
  margin-bottom: 40px !important;
  font-weight: 900 !important;
  text-wrap: balance;
}

h3 {
  font-size: clamp(18px, 2.5vw, 20px) !important;
  font-weight: 900 !important;
  margin-bottom: 20px;
}

h4 {
  font-size: clamp(17px, 3.5vw, 19px);
}

h5 {
  font-size: clamp(14px, 2vw, 14px);
}

h6 {
  font-size: clamp(12px, 1.5vw, 14px);
}

p {
  font-size: clamp(16px, 1.5vw, 16px);
  font-weight: 300;
  margin-bottom: 20px;
}

a:not(header a):not(footer a) {
  font-size: clamp(16px, 1.5vw, 16px);
  line-height: 25px;
  font-weight: 300;
  text-decoration: underline;

}

a:hover {
  text-decoration: none;
  color: var(--font);
}

strong {
  font-weight: 700;
}

header ul,
footer ul {
  list-style: none;
}

ul li:not(header ul li),
ol li:not(header ol li) {
  font-size: 16px;
  position: relative;
  font-weight: 300;
}

ul:not(header ul):not(footer ul),
ol:not(header ol):not(footer ol) {
  padding-left: 20px;
}

ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

p, body a {
  color: var(--font);
}

img {
  width: 100%;
  max-width: 100%;
}

.element-margin {
  margin: var(--element-margin-desktop);
}

.nav-bar {
  margin: 20px 0 0 0;
}

.menu-item-has-children > a {
  background-image: url(../images/blue-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
  margin-top: 3px;
  cursor: pointer;
  width: 8px;
  height: 4px;
}

.sub-menu {
  width: 150px;
  display: flex !important;
  flex-direction: column;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: white;
  padding: 0 !important;
  margin-top: 20px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  z-index: 9;
}

.menu-has-children-box {
  display: none;
}

.sub-menu .current-menu-item a {
  border-color: var(--blue);
}

.sub-menu li a {
  border-bottom: 1px solid #F7F7F8;
  padding: 10px;
  padding-left: 20px;
  width: 100%;
  background-color: white;
  display: block;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.sub-menu li a:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: white;
}

.nav-bar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nav-bar .menu {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  margin-bottom: 0;
}

.nav-bar .menu > li {
  padding-bottom: 20px;
}

.nav-bar a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #3A3A3A;
}

.logo {
  display: block;
  width: 287px;
}

.cn-btn {
  border-radius: 10px;
  padding: 0 20px;
  width: fit-content;
  text-decoration: none;
  font-weight: 500;
  line-height: 0;

  overflow: hidden;
  cursor: pointer;
  height: 36px;
  transition: all 0.3s;

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.cn-btn:hover {
  color: white !important;
  background-color: black !important;
}

.btn-white {
  color: #000 !important;
  background-color: white;
}

.btn-blue {
  color: white !important;
  background-color: var(--blue);
}

.btn-orange {
  color: white !important;
  background-color: var(--orange);
}

.btn-red {
  color: white !important;
  background-color: var(--red);
}

.cn-media-container img {
  object-fit: contain;
  height: 100%;
}

.cn-media-container > div:last-child a, .footer-column .cn-media-container a {
  width: 28px;
  height: 28px;
  display: block;
  transition: all 0.3s;
}

.cn-media-container a:hover {
  transform: scale(0.9);
}

header .cn-media-container > div:last-child, .footer-column .cn-media-container {
  display: flex;
  gap: 10px;
}

.phone-label {
  background-color: var(--blue);
  border-radius: 0 0 10px 10px;
  height: 59px;
  margin-top: -30px;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all 0.2s;
}

body .cn-phone-number {
  color: white;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.phone-label:hover {
  margin-top: -20px;
}

.cn-phone-number::before {
  content: "";
  background-image: url(../images/cn-phone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 9px;
  height: 14px;
  display: block;
}

.sub-menu {
  display: none;
  position: absolute;
}

.menu-item-has-children {
  position: relative;
  transition: all 0.3s;
}

.menu-item-has-children:hover .sub-menu {
  display: flex;
}

.header-usps .swiper-wrapper {
  padding-top: 0;
  justify-content: space-around;
  gap: 20px;
}

.header-usps .swiper-slide {
  width: fit-content;
}

.header-usps .swiper-slide p::before {
  content: "";
  background-image: url(../images/blue-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 13px;
  display: block;
  flex-shrink: 0;
}

.header-usps .swiper-slide p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 0;
}

.header-usps-inner {
  display: flex;
  justify-content: space-around;
  gap: 20px;

}

.header-usps {
  background-color: #F7F7F8;
  padding: 20px 0;
}

footer .menu {
  padding-left: 0;
}

footer .menu li a {
  text-decoration: none;
  font-size: 14px;
  color: white;
}

footer .menu li a:hover {
  text-decoration: underline;
}

.footer-column > p {
  color:  var(--blue);
  font-weight: 700;
  font-size: 14px;
}

footer {
  background-color: #000000;
  padding: 50px 0 0 0;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-bottom {
  background: #2E2E2E;
  padding: 20px 0;
  margin-top: 100px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-inner > div:first-child {
  display: flex;
  gap: 30px;
}

.footer-bottom a, .footer-bottom p {
  color: white;
  margin-bottom: 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.copyright span {
  font-size: 12px;
}

.copyright {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

footer .cn-phone-number:hover {
  text-decoration: underline;
}

footer .cn-phone-number {
  font-size: 14px;
}

.cn-email {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
}

.cn-email:hover {
  text-decoration: underline;
  color: white;
}

.cn-email::before {
  content: "";
  background-image: url(../images/cn-mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 17px;
  height: 12px;
  display: block;
}

footer .cn-media-container a {
  width: 36px;
  height: 36px;
}

footer .cn-media-container {
  margin-top: 20px;
  width: fit-content;
  flex-direction: column;
  gap: 20px !important;
}

footer .cn-media-container > div {
  display: flex;
  gap: 10px;
}

.footer-banner-inner {
  background-color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  padding: 30px 40px;
  position: relative;
  padding-left: 200px;
}

.footer-banner-inner p {
  margin-bottom: 0;
  font-size: clamp(18px, 3.5vw, 18px);
  color: white;
  font-weight: 400;
}

.footer-banner-inner > div img {
  position: absolute;
  left: 40px;
  width: 195px;
  height: 195px;
  object-fit: contain;
  bottom: 0;
  
}

.block-left .cn-btn {
  margin-top: 50px;
}

.no-bg-color .usp-block-inner {
  background-color: white;
}

.footer-banner-inner > div:first-child p::before {
  content: "";
  background-image: url(../images/Pijltje.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 65px;
  height: 35px;
  display: block;
}

.footer-banner {
  background-color: #F7F7F8;
  padding-bottom: 175px;
  margin-top: 220px;
  position: relative;
}

.footer-banner .container {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-banner-inner > div {
  flex-shrink: 0;
}

.footer-banner-inner > div:nth-child(2) {
  max-width: 50%;
  text-wrap: balance;
}

.swiper-pagination {
  position: relative;
  display: flex;
  gap: 2px;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  transition: width 0.9s ease, background-color 0.9s ease;
  width: 8px;
  height: 8px;
  border-radius: 50px;
}

.swiper-pagination-bullet-active {
  background-color: var(--blue);
  width: 24px;
  margin: 0 !important;
}

.producten-slider-header .swiper-pagination-bullet, .logo-slider-header .swiper-pagination-bullet {
  background-color: #D6D6E2;
}

.producten-slider-header .swiper-pagination-bullet-active, .logo-slider-header .swiper-pagination-bullet-active {
   background-color: var(--blue);
}

.swiper-buttons {
  display: flex;
  gap: 16px;
  top: 0;
  right: 0;
}

.swiper-button-next,
.swiper-button-prev {
  background: white;
  color: var(--blue);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 19px;
  font-weight: bold;
}

.swiper-wrapper {
  padding-top: 20px;
}


.page-header-left-inner {
  padding-right: 50px;
}

.page-header-section  {
  background-color: #D6E6ED;
  display: flex;
  padding-bottom: 100px;
  align-items: center;
  position: relative;
}

.header-padding-top {
  padding-top: 100px;
}

.page-header-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 50%;
}

.page-header-right {
  width: 50%;
  flex-shrink: 0;
}

.page-header-left p, .page-header-left ol li, .page-header-left ul li {
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 40px;
}

.page-header-right img {
  border-radius: 0 0 0 30px;
}

.section-afbeelding-tekst-inner {
  display: flex;
  gap: 50px;
}

.section-afbeelding-tekst-inner .block-left {
  width: 50%;
  flex-shrink: 0;
}

.section-afbeelding-tekst-inner .block-left img {
  border-radius: 30px;
  width: 475px;
  height: 550px;
  object-fit: cover;
}

.section-afbeelding-tekst-inner .block-right p, .section-afbeelding-tekst-inner .block-right ul li, .section-afbeelding-tekst-inner .block-right ol li {
  line-height: 28px;
}

.block-left p, .block-right p {
  line-height: 28px;
}

.dubbel-tekstblok-inner > div {
  display: flex;
  gap: 30px;
}

.dubbel-tekstblok-inner {
  margin-left: 150px;
  margin-right: 150px;
}

.usp-block-inner {
  border-radius: 30px;
  background-color: #F7F7F8;
  padding: 75px 30px;
  display: grid;
  grid-template-columns: 225px 225px 225px;
  justify-content: center;
  gap: 50px;
  row-gap: 50px;
}

.single-usp {
  display: flex;
  gap: 10px;
}

.usp-block-inner p {
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 500;
  margin-bottom: 0;
  text-wrap: balance;
  line-height: 24px;
}

.single-usp img {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.img-left, .img-right {
  flex-direction: row-reverse;
}

.page-header-section.img-left .page-header-left {
  margin-left: 50px !important;
}

.page-header-section.img-left .page-header-left-inner {
  padding-right: 0;
}

.page-header-section.img-left .page-header-right img {
  border-radius: 0 0 30px 0;
}

.big-img-text {
  display: flex;

  min-height: 670px;
  align-items: center;
  position: relative;
}

.big-img-text .block-right img {
  border-radius: 30px 0 0 30px;
  height: 100%;
  object-fit: cover;
}

.big-img-text.img-left .block-right img {
  border-radius: 0 30px 30px 0;
}

.big-img-text.img-left .block-right {
  right: unset;
  left: 0;
}

.big-img-text.img-left .big-img-text-inner {
  margin-left: auto;
  padding: 50px 150px 50px 0;
}

.big-img-text-inner {
  width: 50%;
  padding: 50px 0 50px 0;
}

.big-img-text .block-right {
  position: absolute;
  right: 0;
  width: 45%;
  height: 100%;
}

body .page-links h2 {
  text-align: center;
  margin-bottom: 75px !important;
}

.page-links-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.page-link-single .cn-btn {
  margin: 10px auto 0 auto;

}

.page-link-single {
  border-radius: 10px;
  padding: 30px 30px 20px 30px;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
}

.page-link-single img {
  width: 150px;
  position: absolute;
  right: 20px;
  top: -50px;
  transition: all 0.3s;
  border-radius: 10px;
}

.page-link-single p {
  width: calc(100% - 190px);
  font-weight: 500;
}

.page-link-single:hover img {
  top: -65px;
}

.page-link-single:hover .cn-btn {
  background-color: black !important;
  color: white !important;
}

.diensten-single img {
  object-fit: contain; 
  display: block;
  margin: 0 auto;
  transition: stroke 0.3s ease;

  max-width: 100px;
  height: 80px;
}

.diensten-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  row-gap: 30px;
}

.diensten-single {
  border-radius: 10px;
  background-color: white;
  padding: 20px 50px 30px 50px;
  text-decoration: none;
}

.diensten-single:hover p {
  transform: translateY(-5px);
}

.diensten-single p {
  margin-bottom: 0;
  margin-top: 20px;
  transition: all 0.3s;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}

.diensten {
  background-color: #F7F7F8;
  padding: 100px 0;
}

.diensten h2 {
  text-align: center;
}

.diensten-single .icon-wrap {
  min-height: 90px;
  max-height: 90px;
  display: flex;
  align-items: flex-end;
}

.diensten-last {
  background-color: var(--blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.diensten-last p {
  color: white;
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;

}

.diensten-last:hover p {
  transform: unset;
}

.diensten-last a::before {
  content: "";
  background-image: url(../images/black-phone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 9px;
  height: 14px;
  display: block;
  margin-right: 8px;
  transition: all 0.3s;
}

.diensten-last a:hover::before {
  content: "";
  background-image: url(../images/cn-phone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 9px;
  height: 14px;
  display: block;
  margin-right: 8px;
}

.contact-wrapper {
  margin-top: 100px;
  position: relative;
}

.contact-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #F7F7F8;
  width: 50vw;
  z-index: 1;
}

.contact-inner {
  width: 60%;
}

.contactform-inner {
  background-color: #F7F7F8;
  border-radius: 30px 0 0 30px;
  padding: 100px;
  position: relative;
  z-index: 2;
}

.gform_required_legend {
  display: none;
}

body .gform_wrapper .gform_fields {
  row-gap: 20px;
}

body .gform_wrapper form .gform-footer .gform_button {
  background-color: var(--blue) !important;
  border-radius: 10px !important;
  font-size: 14px !important;
}

body .gform_wrapper .gform_fields input,
body .gform_wrapper .gform_fields textarea {
  transition: border-color 0.3s ease;
}

body .gform_wrapper .gform_fields input:focus,
body .gform_wrapper .gform_fields textarea:focus {
  outline: none;
  box-shadow: none;
}

body .gform_wrapper .gform_fields input[type="text"]:focus,
body .gform_wrapper .gform_fields input[type="email"]:focus,
body .gform_wrapper .gform_fields input[type="tel"]:focus,
body .gform_wrapper .gform_fields input[type="url"]:focus,
body .gform_wrapper .gform_fields input[type="number"]:focus,
body .gform_wrapper .gform_fields input[type="password"]:focus,
body .gform_wrapper .gform_fields textarea:focus {
  border-color: black; 
}

.gchoice {
  align-items: center !important;
}

body .gform_wrapper .gchoice input {
  border-radius: 5px !important;
  width: 20px !important;
  height: 20px !important;
  border-color: #D6D6E2 !important;
}

.gchoice label, .gchoice label a {
  font-size: 12px !important;
  font-weight: 500 !important;
}

#field_submit {
  margin-left: auto;
}

body .gform_wrapper .gform_fields input[type="text"],
body .gform_wrapper .gform_fields input[type="email"],
body .gform_wrapper .gform_fields input[type="tel"],
body .gform_wrapper .gform_fields input[type="url"],
body .gform_wrapper .gform_fields input[type="number"],
body .gform_wrapper .gform_fields input[type="password"] {
  height: 52px;
  border-radius: 10px;
}



body .gform_wrapper .gform_fields input::placeholder, body .gform_wrapper .gform_fields textarea::placeholder {
  color: #A6ADB4;
  font-size: 14px;
  font-weight: 300;
}

body .gform_wrapper .gform_fields label {
  font-size: 16px;
  color: black !important;
}

.contact-inner > img {
  border-radius: var(--border-radius);
  height: 325px;
  object-fit: cover;
}

.contact-inner > div:first-of-type {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 30px;
  margin-top: 50px;
}

.contact-inner > div:first-of-type a {
  font-weight: 500;
  color: var(--blue);
  font-size: 20px;
  text-decoration: none;

  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.contact-inner > div:first-of-type a:hover {
  text-decoration: underline;
}

.contact-inner > div:first-of-type a:first-child::before {
  content: "";
  background-image: url(../images/phone-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width:22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
}

.contact-inner > div:first-of-type a:last-child::before {
  content: "";
  background-image: url(../images/mail-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width:22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
}

.contact-adres {
  margin-bottom: 30px;
}

.contact-adres p {
  margin-bottom: 0;
}

.contact-adres a {
  color: var(--blue);
}

.single-stap {
  background-color: white;
  border-radius: 30px;
  padding: 40px;
  padding-bottom: 100px;
  width: 475px !important;
  flex-shrink: 0;
}

.werkwijze-stappenplan {
  background-color: #D6E6ED;
  padding-bottom: 100px;
}

.werkwijze-stappenplan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.werkwijze-stappenplan-header .swiper-controls {
  display: flex;
  align-items: center;
  gap: 100px;
}

.stap-label p {
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
}

.single-stap > p {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 500;
  color: black;
}

.stap-tekst p {
  margin-bottom: 0;
  font-size: 20px;
}

.page-template-werkwijze .page-header-section {
  margin-bottom: 0;
}

.slider-contact .swiper-slide img {
  height: 350px;
  object-fit: contain;
}

.contact-image {
  border-radius: var(--border-radius);
  position: relative;
}

.werkwijze-stappenplan > .container {
  margin-left: 0;
}

.contact-image p::before {
      content: "";
    background-image: url(../images/Pijltje.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 65px;
    height: 35px;
    display: block;
}

.contact-image p {
  position: absolute;
  right: 10px;
  top: 45%;
  transform: translateY(-50%) rotate(8deg);
  display: flex;
  flex-direction: column-reverse;
  flex-direction: column;
}

.contact-image p span {
  margin-left: 30px;
  color: white;
  font-weight: 500;
  margin-bottom: -5px;
}

.contact-tekst {
  border-radius: 0 0 30px 30px;
  padding: 30px;
  text-decoration: none;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  gap: 20px;
}

.titel-tekst h1 {
  width: 80%;
}

.slider-contact__contact {
  margin-left: 50px;
}

.titel-tekst p {
  width: 80%;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 40px;
}

.contact-tekst p {
  color: white;
  font-weight: 500;
  text-wrap: balance;
  margin-bottom: 0;
  line-height: 20px;
}

.contact-image img {
  border-radius: 30px 30px 0 0;
  height: 370px;
  object-fit: cover;
}

.contact-tekst a {
  flex-shrink: 0;
}

.slider-contact .swiper {
  width: 100%;
  border-radius: 30px;
}

body .slider-contact {
  background-color: #D6E6ED;
  padding-bottom: 100px;
  margin-top: 250px;
  position: relative;
}

.slider-contact .row > div {
  margin-top: -150px;
}

.slider-contact .slider-wrapper {
  height: 100%;
  display: flex;
  align-items: flex-end;
  background-color: #F7F7F8;
  border-radius: 30px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.slider-contact-inner img {
  border-radius: var(--border-radius);
  height: 100%;
}

.slider-contact-inner {
  height: 470px;
}


.dubbele-tekst-section img {
  
  max-width: 100px;
  height: 80px;
  margin-bottom: 30px;
}

.dubbele-tekst-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.dubbele-tekst {
  display: flex;
  gap: 30px;
  margin-left: 150px;
  margin-right: 150px;
} 

.dubbele-tekst p, .dubbele-tekst li, .dubbele-tekst ol {
  line-height: 28px;
  margin-bottom: 0;
}

.page-template-diensten-categorie header {
  margin-bottom: 100px;
}

.producten-slider-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -250px;
  flex-wrap: wrap;
  gap: 20px;
}

.producten-slider-section .swiper-button-next, .producten-slider-section .swiper-button-prev {
  border: 1px solid #D6D6E2;
}

.producten-slider-section .swiper-slide img {
  object-fit: cover;
  border-radius: 30px;
  height: 450px;
}

.producten-slider-section .slider-wrapper {
  margin-top: -150px;
}

.slider-top-controls {
  display: flex;
  align-items: center;
}

.producten-slider-section .slider-top-controls, .section-logos .slider-top-controls {
  gap: 150px;
}

body .producten-slider-section {
  background-color: #D6E6ED;
  padding-bottom: 100px;
  margin-top: 350px;
}

.opsomming-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;

}

section.section-afbeelding-tekst .block-right {
  margin-right: 150px;
}

.logo-slider-header {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-slider-header .swiper-button-next, .logo-slider-header .swiper-button-prev {
  border: 1px solid #D6D6E2;
}

.section-logos .swiper-slide img {
  max-height: 100px;
  max-width: 175px;
  object-fit: contain;
}

.section-logos .swiper-slide {
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border: 1px solid #D6D6E2;
  border-radius: 10px;
  padding: 15px;
}

html {
  margin-top: 0 !important;
}

.admin-bar header {
  padding-top: 32px;
}

.btn-mobile-nav {
  display: none;
}

#menu_checkbox {
  display: none;
}

.animated-hamburger-menu {
  display: inline-block;
  width: 32px;
  height: 18px;
  position: relative;
  cursor: pointer;
}

.animated-hamburger-menu div {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--font);
  border-radius: 2px;
  transition: 0.3s ease;
}

.animated-hamburger-menu div:nth-child(1) {
  top: 0;
}

.animated-hamburger-menu div:nth-child(2) {
  top: 8px; 
}

.animated-hamburger-menu div:nth-child(3) {
  top: 16px;
}

/* #menu_checkbox:checked + .animated-hamburger-menu div:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

#menu_checkbox:checked + .animated-hamburger-menu div:nth-child(2) {
  opacity: 0;
}

#menu_checkbox:checked + .animated-hamburger-menu div:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
} */

.menu-close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 25px;
  cursor: pointer;
  z-index: 10002;
  color: #000;
  justify-content: flex-end;
  padding: 20px;
  border-bottom: 1px solid #c9c7c7;
  margin-bottom: 30px;
}

header .cn-media-container > div:first-child {
  display: none;
}

.scroll-down img {
  width: 100%;
  height: 12px;
  object-fit: contain;
  transition: all 0.3s;
}

.scroll-down {
  background-color: white;
  border-radius: 50%;
  position: absolute;
  bottom: 130px;
  left: 30px;
  padding: 8px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border: 1px solid #D6D6E2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

body .slider-contact .scroll-down {
  top: -70px;
  bottom: unset;
}

#breadcrumbs {
  position: absolute;
  z-index: 1;
  margin-top: 20px;
  padding: 8px 20px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.3)
}

#breadcrumbs > span {
  display: flex;
  align-items: center;
}

#breadcrumbs > span > span {
  font-size: 12px !important;
  display: flex !important;
  align-items: center;
  width: fit-content !important;
  opacity: 1;
}

#breadcrumbs > span > a {
  display: flex;
  align-items: center;
}

.home #breadcrumbs {
  display: none;
}

.review-card-first img {
  width: 190px;
}

.review-card-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.review-card-box .review-card {
  position: relative;
  background-color: white;
  padding: 20px;
  padding-right: 75px;
  border-radius: var(--button-radius);
  height: 100%;
}

.review-card-first {
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: var(--button-radius);
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.section-reviews {
  background-color: #D6D6E2;
  padding: 100px 0;
}

.review-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}

.review-header h2 {
  margin-bottom: 10px !important;
}

.review-card > div:last-child {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.kiyoh-score span::before {
  content: "";
  background-image: url(../images/kiyoh-icon-clean.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 106%;
  height: 105%;
  position: absolute;
  margin-top: 15px;
}

.kiyoh-score span {
  position: relative;
  font-weight: 600;
  font-size: 19px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.kiyoh-score {
  position: absolute;
  top: 10px;
  right: 10px;
}

.kiyoh-author {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.kiyoh-author p:first-child {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1;
}

.kiyoh-author p:last-child {
    font-size: 14px;
    color: #999999;
    font-weight: 300;
    margin-bottom: 0;
    line-height: 1;
}

.review-content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
  height: 63px;
}

.review-content p {
 font-size: 14px !important;
 margin-bottom: 0;
}

.kiyoh-product p {
  color: #999999;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 30px;
}

.divider {
  height: 100px;
  width: 100%;
}

#cmplz-document h2 {
  font-size: 24px !important;
  margin-bottom: 20px !important;
}

#cmplz-document {
  margin-top: 100px;
}

#cmplz-document a {
  font-size: 14px;
}

.h2-small h2 {
  font-size: 24px !important;
  margin-bottom: 20px !important;
}

.slider-swiper {
  position: relative;
}

.single h2 {
  font-size: clamp(24px, 3.5vw, 30px) !important;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    row-gap: 50px;
    margin-top: 20px;
}

.post-item {
  background: #F7F7F8;
  border-radius: 6px;
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  overflow:  hidden;
}

.post-item img {
  max-width: 100%;
  height: 450px;
  margin-bottom: 10px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px 10px 0 0;
}

.post-item h2 {
  font-size: clamp(18px, 3.5vw, 18px) !important;
  padding: 20px;
  padding-bottom: 0;
  margin-bottom: 20px !important;
  min-height: 65px;
}

.post-item:hover {
  text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.8);
}

.post-item .excerpt {
  padding: 20px;
  padding-top: 0;
  margin-bottom: 30px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 1.6em;
  max-height: calc(1.6em * 3);
}

.blog main {
  margin-top: 100px;
}

.single .single-content {
    margin-top: 100px;
}




@media (max-width: 1200px) {

.post-grid {
  grid-template-columns: repeat(2, 1fr);
}

  .contact-image p {
    right: 10px;
  }

  .slider-contact .swiper-slide img {
    height: 280px;
  }

  .contact-tekst {
  flex-wrap: wrap;
  }

  .page-header-left-inner {
    padding-right: 50px;
  }

  .page-header-section.img-left .page-header-left {
    margin-left: 50px !important;
  }

  .footer-banner-inner > div:nth-child(2) {
    max-width: 40%
  }

  .footer-banner-inner > div img {
    width: 200px;
    height: 200px;

  }

  .contact-inner {
    width: 100%;
  }

  .diensten-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .page-links-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .page-link-single p {
    width: calc(100% - 100px);
  }

  .review-card-box {
    grid-template-columns: 1fr 1fr 1fr;
  }

}
@media (max-width: 991px) {

  .review-card-box {
    grid-template-columns: 1fr 1fr;
  }

  .contact-image p {
    right: 100px;
  }

  .slider-contact__contact {
    margin-left: 0;
  }


  .diensten-inner {
    grid-template-columns: 1fr 1fr;
  }

  .header-usps .swiper-wrapper .swiper-slide:last-child {
    display: none;
  }

  .page-header-left p, .page-header-left ol li, .page-header-left ul li {
    line-height: 30px;
  }

  .usp-block-inner {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .footer-banner-inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    flex-direction: column-reverse;
    padding-bottom: 0;
  }

  .footer-banner-inner > div img {
    position: relative;
    width: 150px;
    height: 150px;
    left: unset;
  }

  .footer-banner-inner > div:nth-child(2) {
    max-width: 100%;
    flex-direction: column;
    text-align: center;
  }

  .footer-banner-inner > div {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    
  }

  .footer-banner .container {
    position: relative;
    top: -192px;
    left: unset;
    transform: unset;
  }

  .footer-banner {
    margin-top: 260px;
    height: 260px;
  }

  .contactform-inner {
    padding: 50px;
  }

  .section-afbeelding-tekst-inner {
    flex-direction: column;
  }

  .section-afbeelding-tekst-inner .block-left {
    width: 100%;
  }

  .section-afbeelding-tekst-inner .block-left img {
    border-radius: 30px;
    width: 100%;
    height: 400px;
    object-fit: cover;
  }

  .dubbel-tekstblok-inner {
    margin-left: 0;
    margin-right: 0;
  }

  .dubbele-tekst {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  section.section-afbeelding-tekst .block-right {
    margin-right: 0;
  }

  .titel-tekst h1 {
    width: 100%;
  }

  .titel-tekst p {
    width: 100%;
    line-height: 30px;
  }

  .slider-contact__contact {
    margin-top: 200px;
  }

  .slider-contact .swiper-slide {
    display: flex;
    align-items: flex-end;
    justify-content: center; 
    height: 100%; 
  }

  .slider-contact .swiper-slide img {
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  header .phone-label .cn-phone-number {
    font-size: 0 !important;
    gap: 0;
  }
}



@media (max-width: 768px) {

  .post-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .blog main {
    margin-top: 50px;
  }

  #cmplz-document {
    margin-top: 50px;
  }

  .divider {
    height: 50px;
  } 

  .review-header {
    margin-bottom: 20px;
  }

  .section-reviews {
    padding: 50px 0;
  }

  .review-card-box {
    grid-template-columns: 1fr;
  }

  .scroll-down {
    display: none;
  }

  header iframe {
    display: none;
  }

  .contact-image p {
    right: 50px;
  }


  .page-link-single img {
    width: 125px;
  }

  .page-links-inner {
    grid-template-columns: 1fr ;
  }



  .dubbele-tekst-section h2 {
    text-align: center;
  }

  .page-template-diensten-categorie header {
    margin-bottom: 50px;
  }

 

  body header .menu-item-has-children .sub-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    box-shadow: unset;
  }



  .menu-item:hover > .sub-menu {
    display: none; 
    opacity: 0;
    visibility: hidden;
  }

  .menu-item-has-children .sub-menu.active {
    display: flex;
    position: static;
    transform: unset;
    border: none;
    margin-top: 0;
    color: white;
    opacity: 1;
    visibility: visible;
    padding: 10px 10px 0 10px;
    gap: 0;
  }

  .sub-menu li a {
    border-bottom: unset;
    padding: 10px;
    padding-left: 0;
    width: 100%;
    display: block;
    padding-left: 20px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  }

  .big-img-text.img-left .block-right img {
    border-radius: 0;
  }

  .big-img-text.img-left .big-img-text-inner {
    padding: 50px 0 0 0;
  }

  .dubbel-tekstblok-inner > div {
    gap: 20px;
    flex-direction: column;
  }

  .diensten {
    padding: 50px 0;
  }

  .werkwijze-stappenplan {
    padding-bottom: 50px;
  }

  .contact-inner > img {
  display: none;
  }

  .contact-wrapper .row {
    flex-direction: column-reverse;
  }



  .primary-menu .cn-media-container {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  header .cn-media-container {
    display: flex;
    padding: 30px;
    padding-top: 10px;
  }

  header .cn-media-container > div:first-child a:first-child::before {
    background-image: url(../images/phone-blue-line.svg);
    height: 20px;
    width: 20px;
  }

  header .cn-media-container > div:first-child a:last-child::before {
    background-image: url(../images/mail-blue-line.svg);
    height: 20px;
    width: 20px;
  }

  header .cn-media-container > div:first-child {
    display: flex;
    flex-direction: column;
  }

  header .cn-media-container > div:last-child a {
    width: 35px;
    height: 35px;
  }

  .primary-menu .menu-primary-container {
    border-bottom: 1px solid #c9c7c7;
  }

  .nav-bar a {
    color: black;
  }

  .menu-item-has-children a {
    display: flex;
    width: 100%;
    height: fit-content;
    padding-right: 0;
    justify-content: space-between;
    background-image: unset;
  }

  .menu-has-children-box {
    display: inline-block;
    margin-left: 3px;
  }

  .menu-item-has-children .menu-has-children-dropdown {
    background-image: url(../images/blue-arrow-down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 15px;
    height: 15px;
  }

  .big-img-text .block-right img {
    border-radius: 0;
  }

  .block-left .cn-btn {
    margin-top: 20px;
  }

  .container {
    padding: 0 30px !important;
  }

  .nav-bar .container {
    padding: 0 20px !important;
  }

  .big-img-text-inner {
    width: 100%;
    padding: 50px 0 0 0;
  }

  .big-img-text {
    flex-direction: column-reverse;
  }

  .element-margin {
    margin: var(--element-margin-mobile);
  }

  .admin-bar header {
    padding-top: 46px;
  }

  .page-header-section {
    padding-bottom: 50px;
  
  }

  .header-padding-top {
    padding-top: 0;
  }

  .big-img-text .block-right {
   position: relative;
   width: 100%;
   padding-left: 0;
  }

  .page-header-left-inner p {
    margin-bottom: 0;
  }

  .nav-bar-inner {
    align-items: center;
    padding-bottom: 30px;
  }

  .btn-mobile-nav {
    display: flex;
  }


  .page-header-section {
    flex-direction: column-reverse;
    gap: 50px;
    padding-left: 30px;

  }

  .page-header-section.img-left {
    padding-left: 0;
    padding-right: 30px;
  }

  .page-header-left-inner {
    padding-right: 30px;
  }

  .page-header-section > div {
    width: 100%;
  }

  .header-usps .swiper-wrapper {
    gap: 0;
  }

  .header-usps .swiper-wrapper .swiper-slide:last-child {
    display: block;
  }

  .contact-wrapper {
    margin-top: 0;
  }

  .header-usps .swiper-slide p {
    justify-content: center;
}

  .nav-bar .menu {
    display: none;
  }

  .cn-media-container > div:last-child {
    display: none;
  }

  .footer-column .cn-media-container {
    display: flex;
    margin-bottom: 20px;
  }

  body .slider-contact {
    padding-bottom: 50px;
    margin-top: 200px;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9998;
  }
  
  body.nav-open .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .cn-phone-number::before {
    width: 15px;
    height: 25px;
  }

  .footer-bottom {
    margin-top: 30px;
  }

  .menu-close-btn {
    display: flex;
  }

  .nav-open  .primary-menu {
    transform: translateX(0);
  }

  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .admin-bar .primary-menu {
    top: 46px;
    height: calc(100svh - 46px);
  }

  .diensten-last p {
  font-size: 18px;
  }

  .diensten-single {
    padding: 10px;
  }


  .primary-menu{
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    max-width: 80%;
    height: 100svh;
    background: white;
    z-index: 99999;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease-in-out;
  }

  .primary-menu .menu {
    padding: 0 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contactform-inner {
    background-color: white;
  }

  .contact-bg {
    display: none;
  }

  body .producten-slider-section {
    padding-bottom: 50px;
    margin-top: 300px;
  }

  .producten-slider-section .swiper-slide {
    width: 85%;
  }

}

@media (max-width: 500px) {

  .footer-column {
    margin-bottom: 25px;
  }

  .footer-column p {
    margin-bottom: 10px;
  }

  .footer-bottom-inner {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .footer-bottom-inner a, .footer-bottom-inner .copyright {
    font-size: 11px;
  }

  h2 {
    margin-bottom: 20px !important;
  }

  .header-usps {
    padding: 15px 0;
  }

  .phone-label {
    padding: 0 10px;
  }

  .logo {
    display: block;
    width: 200px;
  }

  .usp-block-inner {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .usp-block-inner {
    padding: 50px 30px;
    gap: 20px;
    row-gap: 20px;
  }

  .usp-block.no-bg-color .usp-block-inner {
    padding: 0;
  }

  .contactform-inner {
    padding: 50px 0 0 0;
    background-color: white;
  }

  .contact-bg {
    background-color: white;
  }

  .diensten-inner {
    grid-template-columns: 1fr;
  }

  .diensten-last {
    padding: 30px;
  }

  .werkwijze-stappenplan .swiper-slide {
    width: 85% !important;
  }

  .single-stap {
    padding: 30px;
    padding-bottom: 50px;
  }

  .section-logos .swiper-slide {
    padding: 30px;
  }

  .producten-slider-section .slider-top-controls {
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }


  .producten-slider-section .swiper-slide img {
    height: 450px;
  }

  .page-link-single { 
    padding: 25px 15px;
  }

  .contact-image p {
    right: 10px;
    top: 35%;
  }

  .contact-image img {
    height: 300px;
  }
  
  .slider-contact-inner {
    height: 250px;
  }

  .opsomming-rij {
      grid-template-columns: 1fr;
  }

}