@charset "UTF-8";
:root {
  --container-width: 100%;
  --clip-size: 2.5rem;
  --flow-space: 1.4rem;
  --white: rgb(255,255,255);
  --light: rgb(250,249,246);
  --green: rgb(122,197,57);
  --lightblue: rgb(152,164,174);
  --darkblue: rgb(59,69,89);
}

@media (min-width: 576px) {
  :root {
    --container-width: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --clip-size: 4rem;
    --container-width: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --clip-size: 5rem;
    --container-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --clip-size: 6rem;
    --container-width: 1140px;
  }
}
@media (min-width: 1400px) {
  :root {
    --container-width: 1320px;
  }
}
@media all and (min-width: 1500px) {
  :root {
    --container-width: 1440px;
  }
}
@media all and (min-width: 1700px) {
  :root {
    --container-width: 1640px;
  }
}
html {
  font-size: 16px;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--darkblue);
  background: var(--light);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
body.dropdown--is-open {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.grecaptcha-badge {
  display: none !important;
}

@media (min-width: 1200px) {
  .overlay-active .site-overlay {
    opacity: 1;
  }
}
@media (min-width: 1200px) {
  .site-overlay {
    position: fixed;
    z-index: 1023;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    background-color: rgba(59, 69, 86, 0.98);
    transition: opacity 0.15s ease-in-out;
  }
}
/* -- Container ----------------------------*/
.container {
  --bs-gutter-x: 2rem;
  max-width: var(--container-width);
}

.wrapper--fw {
  max-width: var(--container-width);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
}

/* -- Fonts --------------------------------*/
.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  line-height: 0.95;
  text-wrap: balance;
}

span.ts-1,
span.ts-2,
span.ts-3,
span.ts-4,
span.ts-5,
span.ts-6 {
  display: block;
}

.ts-1,
.ts-2,
.ts-3,
.ts-4,
.ts-5,
.ts-6 {
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 0.5em;
}

.ts-1 {
  font-size: clamp(2.925rem, 1.7793rem + 3.2047vw, 5.625rem);
}

.ts-2 {
  font-size: clamp(2.475rem, 1.6158rem + 2.4035vw, 4.5rem);
}

.ts-3 {
  font-size: clamp(2.25rem, 1.6135rem + 1.7804vw, 3.75rem);
}

.ts-4 {
  font-size: clamp(1.75rem, 1.4318rem + 0.8902vw, 3rem);
}

.ts-5 {
  font-size: clamp(1.375rem, 1.1628rem + 0.5935vw, 1.875rem);
}

.ts-6 {
  font-size: clamp(1.0625rem, 0.9829rem + 0.2226vw, 1.25rem);
}

.ts-small {
  font-size: 0.9rem;
}

strong, b {
  font-weight: 700;
}

p {
  line-height: 1.7;
}
p a {
  color: inherit;
  text-decoration: none;
}

p + p {
  margin-top: 1rem;
}

p.lead {
  font-weight: 500;
  line-height: 1.6;
}

/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  box-shadow: none;
}

.link {
  text-decoration: none;
}

.link--arrow {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--darkblue);
  padding: 0;
}
.link--arrow:before {
  content: "\f178";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  color: var(--green);
  padding-right: 1.25rem;
  transition: left 0.5s;
  left: 0;
}
.link--arrow:hover:before {
  position: relative;
  left: 0.75rem;
}

.link--service {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
}
.link--service i {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 100%;
  transition: all 0.5s;
}
.link--service:hover i {
  transform: scale(1.05);
}

.link--portal {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--darkblue);
  font-weight: 700;
  font-size: 1.25rem;
}
.link--portal i {
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border-radius: 100%;
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.15);
  transition: all 0.5s;
}
.link--portal span {
  display: none;
}
.link--portal:hover i {
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.3);
}

.link--menu {
  position: relative;
  z-index: 100;
}

.link--menu i {
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 100%;
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.15);
  transition: all 0.5s;
}
.link--menu:hover i {
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.3);
}

.link--menu.is-active i {
  color: var(--green);
  background: var(--white);
}

.link--menu.is-active i:before {
  content: "\f00d";
}

@media (min-width: 1400px) {
  .link--portal span {
    display: inline;
  }
}

/* -- Buttons -------------------------------*/
.button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--button-bcg);
  color: var(--button-color);
  transition: ease-out 0.4s;
  box-shadow: inset 0 0 0 0 var(--button-outline);
}
.button:hover {
  box-shadow: inset 400px 0 0 0 var(--button-outline);
}

.button--green {
  --button-bcg: var(--green);
  --button-color: var(--white);
  --button-outline: #84D140;
}

.button--green:hover {
  --button-bcg: var(--green);
  --button-color: var(--white);
}

.button-filter {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: var(--darkblue);
  background: var(--white);
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.15);
  cursor: pointer;
  transition: all 0.5s;
}
.button-filter img {
  padding-right: 1rem;
}
.button-filter:hover {
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.3);
}

/* -- Links ---------------------------------*/
.link--black {
  color: var(--black);
}

.link--white {
  color: var(--white);
}

.link--light {
  color: var(--light);
}

.link--blue {
  color: var(--blue);
}

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

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

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

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

/* -- Colors --------------------------------*/
.clr--black {
  color: var(--black);
}

.clr--white {
  color: var(--white);
}

.clr--light {
  color: var(--light);
}

.clr--blue {
  color: var(--blue);
}

.clr--green {
  color: var(--green);
}

/* -- Lists ---------------------------------*/
ul:not([class]), ol:not([class]) {
  padding: 0 0 0 1rem;
}

ul:not([class]) li + li, ol:not([class]) li + li {
  margin-top: .5rem;
}

ul:not([class]) li a, ol:not([class]) li a {
  color: inherit;
}

/* -- Swipers -------------------------------*/
.swiper-button__prev,
.swiper-button__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  font-size: 1.35rem;
  color: var(--green);
  background: var(--white);
  border-radius: 100%;
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.15);
  flex-shrink: 0;  
  z-index: 2;
}

.swiper-button__prev:hover,
.swiper-button__next:hover {
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.3);
}

.swiper-button__prev {
  left: 1rem;  
}

.swiper-button__next {
  right: 1rem;
}


.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 2rem;
  border-radius: 0.25rem;
  background: var(--darkblue);
  opacity: 0.38;
  cursor: pointer;
}
.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  opacity: 0.8;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}

/* -- Images --------------------------------*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

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

.image-zoom {
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.image-zoom:before {
  content: "\f002";
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: "Font Awesome 6 Sharp";
  font-weight: 900;
  font-size: 1.25rem;
  display: grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border-radius: 100%;
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.15);
  transition: all 0.5s;
}
.image-zoom:hover:before {
  transform: scale(1.05);
}

/* -- Content flow --------------------------*/
.content-flow > * + * {
  margin-block-start: var(--flow-space, 1em);
}
.content-flow :is(h1, h2, h3, h4, h5, h6, blockquote) {
  --flow-space: 2rem;
}
.content-flow :is(h1, h2, h3, h4, h5, h6) + * {
  --flow-space: 1rem;
}
  
/* -- Shortcodes ----------------------------*/
.shortcode-contactgegevens {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: .25rem 1.25rem;
}

.shortcode-contactgegevens a {
  text-decoration: none;
  color: inherit;
}

.shortcode-contactgegevens a:hover {
  text-decoration: underline;
}

/* -- Contactformulier ----------------------*/
.gform-theme {
  --gf-color-primary: #3B4559 !important;
  --gf-ctrl-choice-check-color: #3B4559 !important;  
  --gf-ctrl-shadow: none !important;
  
  --gf-ctrl-border-width: 2px !important;
  --gf-ctrl-border-color: rgba(59,69,89,0.2) !important;
  
  --gf-ctrl-btn-font-weight: 700 !important;
  --gf-ctrl-btn-bg-color-primary: #7AC539 !important;
  --gf-ctrl-btn-bg-color-hover-primary: #84D140 !important;
  --gf-ctrl-btn-bg-color-focus-primary: #84D140 !important;
}

.gfield_consent_label .gfield_required {
  padding-left: .5rem !important; 
}

.gfield_label {
  font-weight: 700 !important;
}

/* -- Header --------------------------------*/
.header {
  position: relative;
  z-index: 1024;
}
.header-top {
  position: relative;
  padding: 0.5rem 0;
  background: var(--darkblue);
  z-index: 50;
}
.header-top-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-navigation {
  position: relative;
  padding: 2rem 0;
  background: var(--white);
  z-index: 50;
}
.header-navigation-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.header-navigation-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
.header-navigation-right {
  display: flex;
  gap: 0.5rem;
}

.header__logo img,
.footer__logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.header-top__nav {
  display: none;
  margin: 0;
}
.header-top__nav .nav-link {
  color: var(--lightblue);
}
.header-top__nav .nav-link:hover {
  color: var(--white);
}

.header-navigation__nav {
  display: none;
}

@media all and (min-width: 992px) {
  .header-top__nav {
    display: flex;
    margin: 0;
  }
  .header-top__nav .nav-link {
    color: var(--lightblue);
  }
  .header-top__nav .nav-link:hover {
    color: var(--white);
  }
}
@media (min-width: 1320px) {
  .link--menu {
    display: none;
  }
  .header-navigation__nav {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin: 0;
  }
  .header-navigation__nav .nav-link {
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.625rem 1.125rem;
    border-radius: 0.35rem;
  }
  .header-navigation__nav .nav-link.show, .header-navigation__nav .nav-link:hover {
    color: var(--white);
    background: var(--darkblue);
  }
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: visible;
    transition: transform ease-in 0.1s, opacity ease-in 0.3s;
    position: absolute !important;
    width: 100%;
    top: 100%;
    left: 0;
    inset: 50px auto auto 0 !important;
    background: none;
    border: none;
    transform: translate3d(0, 4rem, 0px) !important;
    padding: 0 8.3333%;
    pointer-events: none;
  }
  .dropdown-menu.show {
    opacity: 1;
    pointer-events: auto;
  }
  .dropdown-menu-inner {
    background: var(--light);
    display: flex;
  }
  .overlay-active .dropdown-menu {
    transition: transform ease-in 0.1s;
  }
  .dropdown-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%;
    padding: 4rem;
  }
  .dropdown-menu__title {
    display: block;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--darkblue);
    margin-bottom: 1.5rem;
    line-height: 0.95;
  }
  .dropdown-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .dropdown-menu__nav .dropdown-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--darkblue);
    text-decoration: none;
  }
  .dropdown-menu__nav .dropdown-link:before {
    content: "\f178";
    font-family: "Font Awesome 6 Pro";
    font-weight: 700;
    color: var(--green);
    padding-right: 1.25rem;
    transition: all 0.5s;
    left: 0;
  }
  .dropdown-menu__nav .dropdown-link:hover:before {
    position: relative;
    left: 0.75rem;
  }
  .dropdown-menu__more {
    text-decoration: none;
    color: var(--darkblue);
  }
  .dropdown-menu-image {
    width: 50%;
    aspect-ratio: 8/5;
  }
  .dropdown-menu-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, var(--clip-size) 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, var(--clip-size) 100%);
  }
}
@media (min-width: 1400px) {
  .header-navigation__nav .nav-link {
    font-size: 1.25rem;
  }
  .dropdown-menu-content {
    width: 40%;
    padding: 4rem;
  }
  .dropdown-menu-image {
    width: 60%;
  }
}
@media (min-width: 1500px) {
  .dropdown-menu-content {
    width: 40%;
    padding: 5rem;
  }
  .dropdown-menu-image {
    width: 60%;
  }
}
.hero {
  position: relative;
}
.hero-content {
  position: absolute;
  display: flex;
  align-items: end;
  padding: 3rem 0 6rem 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.hero-content__title {
  font-weight: 900;
  color: var(--white);
  margin: 0;
  padding-right: 2rem;
}

.hero-background {
  position: relative;
  background: var(--light);
}
.hero-background:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: rgb(59, 69, 89);
  background: linear-gradient(0deg, rgb(59, 69, 89) 0%, rgba(59, 69, 89, 0) 80%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.hero-background__media-1 {
  position: relative;
}
.hero-background__media-1:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(59, 69, 89);
  background: linear-gradient(270deg, rgb(59, 69, 89) 0%, rgba(59, 69, 89, 0) 50%);
}
.hero-background__media-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero--no-image {
  height: 30vh;
  min-height: 240px;
  background: var(--darkblue);
}

.hero--no-image:before {
  content: '';
  position: absolute;
  height: 40%;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); 
  opacity: .4;
}

.hero--image .hero-background {
  display: grid;
  grid-template-columns: 100%;
  height: 40vh;
  min-height: 400px;
}
.hero--image .hero-background__media-1 {
  height: 40vh;
  min-height: 400px;
}

.hero--frontpage .hero-background {
  display: grid;
  grid-template-columns: 100%;
  height: 50vh;
  min-height: 440px;
}
.hero--frontpage .hero-background__media-1 {
  height: 50vh;
  min-height: 440px;
}
.hero--frontpage .hero-background__media-2 {
  display: none;
  height: 50vh;
  min-height: 440px;
}

@media all and (min-width: 992px) {
  .hero--no-image:after {
    content: '';
    position: absolute;
    width: calc(var(--clip-size) * 1.5);
    height: 100%;
    background: var(--light);
    top: 0;
    right: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, calc(var(--clip-size) * 0.5) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, calc(var(--clip-size) * 0.5) 100%);
  }

  .hero-background {
    -webkit-clip-path: polygon(0 0, calc(100% - var(--clip-size) * 1.5) 0, calc(100% - var(--clip-size) * 0.5) 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - var(--clip-size) * 1.5) 0, calc(100% - var(--clip-size) * 0.5) 100%, 0 100%);
  }
  .hero--frontpage .hero-background {
    grid-template-columns: 65% calc(var(--clip-size) * 1.5) auto;
    height: 65vh;
    min-height: 650px;
  }
  .hero--frontpage .hero-background__media-1, .hero--frontpage .hero-background__media-2 {
    height: 65vh;
    min-height: 650px;
    display: block;
  }
  .hero--frontpage .hero-background__media-1 img, .hero--frontpage .hero-background__media-2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero--frontpage .hero-background__media-1 {
    grid-area: 1/1/2/3;
  }
  .hero--frontpage .hero-background__media-2 {
    grid-area: 1/2/2/4;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, calc(var(--clip-size) * 1.5) 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, calc(var(--clip-size) * 1.5) 100%);
  }
  .hero--image .hero-background {
    height: 50vh;
    min-height: 500px;
  }
  .hero--image .hero-background__media-1 {
    height: 50vh;
    min-height: 500px;
  }
}
.usps {
  position: relative;
  margin-top: -3rem;
  padding-bottom: 3rem;
  z-index: 3;
}

.usps-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #fff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0 3rem 0 rgba(59, 69, 89, 0.15);
}

.usps-usp {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.usps-usp__icon {
  width: 44px;
}
.usps-usp__icon img {
  width: 100%;
  height: 100%;
}
.usps-usp__title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}
.usps-usp__subtitle {
  display: block;
  font-weight: 700;
  color: var(--darkblue);
  line-height: 1;
}

@media all and (min-width: 768px) {
  .usps-wrapper {
    justify-content: space-around;
    padding: 3rem 1.5rem;
  }
}

body.mobile-menu--is-open {
  overflow: hidden;
  height: 100vh;
}

.mobile-menu {
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  background: var(--green);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: .5s opacity;
}

.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow-y: scroll;
}

  .mobile-menu .nav {
    flex-direction: column;
    gap: .5rem;
  }

  .mobile-menu__primary-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding: 0;
  }

  .mobile-menu__primary-nav a:hover {
    color: var(--white);
  }

  .mobile-menu__secondary-nav a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    opacity: .8;
    padding: 0;
  }

  .mobile-menu__secondary-nav a:hover {
    opacity: 1;
    color: var(--white);
  }

.mobile-menu--is-open .mobile-menu {
  opacity: 1;
  pointer-events: all;
}

@media all and (min-width: 1320px) {
  .mobile-menu {
    display: none;
  }
}

/* -- Tiles ---------------------------------*/
.tile-blok {
  color: var(--white);
  background: var(--darkblue);
  padding: 3.25rem 2rem;
  border-radius: 1rem;
}
.tile-blok__title {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}
.tile-blok__description {
  margin-bottom: 1rem;
}
.tile-blok__link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  padding: 0;
  text-decoration: none;
}
.tile-blok__link:before {
  content: "\f178";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  color: var(--green);
  padding-right: 1rem;
  transition: all 0.5s;
  left: 0;
}
.tile-blok__link:hover:before {
  position: relative;
  left: 0.5rem;
}

.tile-product {
  position: relative;
}
.tile-product__media {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.tile-product__media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.5s;
}
.tile-product__label {
  position: absolute;
  bottom: -2px;
  left: 0;
  padding: 1rem 1.75rem 1rem 0;
  background: var(--light);
  -webkit-clip-path: polygon(0 0, calc(100% - 0.75rem) 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - 0.75rem) 0, 100% 100%, 0 100%);
}
.tile-product__label .tile-product__title {
  font-size: clamp(1rem, 0.8939rem + 0.2967vw, 1.25rem);
  font-weight: 700;
  color: var(--darkblue);
  padding: 0;
}
.tile-product__label .tile-product__title:before {
  content: "\f178";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  color: var(--green);
  padding-right: 1.25rem;
  transition: all 0.5s;
  left: 0;
}
.tile-product:hover .tile-product__media img {
  transform: scale(1);
}
.tile-product:hover .tile-product__title:before {
  position: relative;
  left: 0.75rem;
}

@media all and (min-width: 1200px) {
  .tile-product__media {
    aspect-ratio: 16/9;
  }
  
  .tile-product__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* -- Modules --------------------------*/
.module {
  margin: 4rem 0;
}
.page-modules .module:last-child {
  margin-bottom: 0;
}

.module__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.module__nav .nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--darkblue);
  padding: 0;
}
.module__nav .nav-link:before {
  content: "\f178";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  color: var(--green);
  padding-right: 1.25rem;
  transition: all 0.5s;
  left: 0;
}
.module__nav .nav-link:hover:before {
  position: relative;
  left: 0.75rem;
}

/* -- Module products -------------------------*/
.grid-products {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

@media all and (min-width: 768px) {
  .grid-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (min-width: 1200px) {
  .module {
    margin: 6rem 0;
  }
  .page-modules .module:last-child {
    margin-bottom: 0;
  }

  .grid-products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .grid-products .tile-product {
    grid-column: span 2;
  }
  .grid-products .tile-product__media {
    aspect-ratio: 16/9;
  }
  .grid-products .tile-product__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .grid-products--featured .tile-product:nth-child(-n+2) {
    grid-column: span 3;
  }
}

@media all and (min-width: 1920px) {
  .module {
    margin: 8rem 0;
  }
  .page-modules .module:last-child {
    margin-bottom: 0;
  }
}

/* -- Module call to action -------------------------*/
.module-cta {
  position: relative;
  background: var(--darkblue);
  padding: 4rem 0;
}
.module-cta .container {
  position: relative;
  z-index: 1;
}
.module-cta__bcg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  z-index: 0;
}
.module-cta__bcg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0 0, calc(100% - var(--clip-size)) 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - var(--clip-size)) 0, 100% 100%, 0 100%);
}

.blockquote {
  padding: 3rem 0;
}
.blockquote__title {
  display: block;
  font-weight: 800;
  line-height: 0.95;
  position: relative;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 14ch;
}
.blockquote__title:before {
  content: "“";
  position: absolute;
  font-size: clamp(3.25rem, 1.977rem + 3.5608vw, 6.25rem);
  font-weight: 800;
  color: var(--green);
  padding-right: 1.25rem;
  transition: all 0.5s;
  top: -2rem;
  left: -0.5rem;
}
.blockquote__paragraph {
  color: var(--white);
  font-size: 1rem;
}
.blockquote-footer {
  margin-top: 1.25rem;
}
.blockquote-footer:before {
  content: "";
}
.blockquote__author {
  font-weight: 700;
  font-size: 1rem;
  font-style: normal;
  color: var(--white);
}
.blockquote__author span {
  color: var(--green);
}

.cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 0 3rem 0 rgba(59, 69, 89, 0.15);
}

.cta__title {
  display: block;
  font-size: clamp(1.25rem, 0.9848rem + 0.7418vw, 1.875rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.cta__contact {
  display: flex;
  gap: 0.25rem;
}
.cta__contact a {
  color: var(--darkblue);
  text-decoration: none;
}

@media all and (min-width: 992px) {
  .module-cta__bcg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .module-cta__bcg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-clip-path: polygon(0 0, calc(100% - var(--clip-size)) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - var(--clip-size)) 0, 100% 100%, 0 100%);
  }
  .cta-wrapper {
    padding: 3rem;
  }
  .blockquote__title:before {
    top: -0.5rem;
    right: 100%;
    left: auto;
  }
}
/* -- Module content --------------------------*/
.module-content--dark {
  background: var(--darkblue);
  color: var(--white);
  padding: 0;
}

.module-content--dark .module__nav .nav-link {
  color: var(--white);
}

.module-content--dark-inner {
  padding: 4rem 0 0 0;
}

.module-content--dark .module-content-inner {
  padding: 2rem 0;
}

.break-out--left,
.break-out--right {
  position: relative;
  max-width: none;
  padding: 0;
}
.break-out--left figure,
.break-out--right figure {
  margin: 0;
}
.break-out--left figure img,
.break-out--right figure img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.break-out--left {
  --margin-size: calc(var(--container-width) - 1rem);
  margin-left: calc((var(--margin-size) - 100vw) / 2);
  width: calc(100vw + (var(--margin-size) - 100vw) / 2);
}

.break-out--right {
  --margin-size: calc(var(--container-width) - 1rem);
  margin-right: calc((var(--margin-size) - 100vw) / 2 + 1rem);
  width: calc(100vw + (var(--margin-size) - 100vw) / 2);
  right: -0.5rem;
}

.break-out--left__image {
  -webkit-clip-path: polygon(0 0, calc(100% - var(--clip-size)) 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - var(--clip-size)) 0, 100% 100%, 0 100%);
}

.break-out--right__image {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, var(--clip-size) 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, var(--clip-size) 100%);
}

@media all and (min-width: 540px) {
  .break-out--right {
    right: -0.25rem;
  }
}
@media all and (min-width: 992px) {
  .module-content--dark-inner {
    padding: 4rem 0;
  }
  .break-out--left {
    --margin-size: calc(var(--container-width) - 1rem);
    position: relative;
    margin-left: calc((var(--margin-size) - 100vw) / 2);
    width: 50vw;
    padding: 0;
  }
  .break-out--right {
    --margin-size: calc(var(--container-width) - 1rem);
    position: relative;
    margin-right: calc((var(--margin-size) - 100vw) / 2);
    width: 50vw;
    padding: 0;
    right: 0;
  }
}

/* -- Page content ---------------------*/
.page-content {
  padding: 4rem 0 0 0;
  margin-bottom: 3rem;
}

.c-element + .c-element {
  margin-top: 2.5rem;
}

.sidebar-usps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-usp {
  display: flex;
  gap: 1.25rem;
}
.sidebar-usp__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 100%;
  box-shadow: 0 0 1.5rem 0 rgba(59, 69, 89, 0.15);
  flex-shrink: 0;
}
.sidebar-usp__icon i {
  font-size: 1.35rem;
  color: var(--green);
}
.sidebar-usp__title {
  display: block;
  font-weight: 700;
  color: var(--darkblue);
}
.sidebar-usp-body {
  flex-grow: 1;
}

/* -- Diensten -------------------------*/
.blokken-wrapper,
.dienst-blokken {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  justify-content: center;
}

/* -- Producten ------------------------*/
.overview-products {
  margin: 4rem 0;
}

/* -- Actueel --------------------------*/
.overview-actueel {
  margin: 4rem 0;
}

.grid-actueel {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.tile-actueel {
  position: relative;
  display: flex;
  flex-direction: column;
}

  .tile-actueel__media {
    overflow: hidden;
    aspect-ratio: 16/9;
  }
    .tile-actueel__media img {
      width: 100%;
      height: auto;
      -o-object-fit: cover;
         object-fit: cover;
      transform: scale(1.05);
      transition: transform 0.5s;
    }
    .tile-actueel:hover .tile-actueel__media img {
      transform: scale(1);
    }
  
  .tile-actueel__body {
    padding: 2rem 1.5rem;
    background: var(--darkblue);
    border-radius: 0 0 1.5rem 1.5rem;
    display: flex;
    justify-content: space-between;  
    flex-direction: column;
    flex-grow: 1;
  }

    .tile-actueel__meta {
      display: block;
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--green);
      padding: 0;
      text-decoration: none;
    }

    .tile-actueel__title {
      display: block;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1rem;
      text-decoration: none;
    }

    .tile-actueel__body .link {
      color: var(--white);
    }

    .tile-actueel__body p {
      color: rgba(255,255,255,.8);
    }

/* -- Pagination ---------------------------*/
.pagination {
  justify-content: center;
}

.page-numbers {
  padding: 0;
}

  .page-numbers li {
    display: inline-block;
  }

  .page-numbers li + li {
    margin-left: 5px;
  }

  .page-numbers li a,
  .page-numbers li span { 
    font-weight: 700;
    display: block;
    padding: .55rem 1rem;
    background: none; 
    border: 2px solid var(--lightblue); 
    color: var(--lightblue); 
    text-decoration: none;
    border-radius: .25rem;
  }

  .page-numbers li a:hover {
    background: var(--lightblue); 
    border: 2px solid var(--lightblue); 
    color: #fff; 
  }		

  .page-numbers li .current { 
    font-weight: 900;
    background: var(--darkblue); 
    border: 2px solid var(--darkblue); 
    color: #fff; 
  }

@media all and (min-width: 992px) {
  .grid-actueel {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (min-width: 1200px) {
  .grid-actueel {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tile-actueel__media {
    aspect-ratio: 16/9;
  }
  .tile-actueel__media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* -- Products -------------------------*/
.list-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 1rem;
}

.offcanvas {
  --bs-offcanvas-width: 100%;
  border: none !important;
}
.offcanvas__title {
  color: var(--darkblue);
}
.offcanvas__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: grid;
  font-size: 1.125rem;
  place-items: center;
  color: var(--white);
  background: var(--darkblue);
  text-decoration: none;
  border-radius: 100%;
  cursor: pointer;
}
.offcanvas-header {
  padding: 3rem 1.5rem 0 1.5rem;
  flex-direction: column;
  align-items: flex-start;
}
.offcanvas-header p {
  max-width: 44ch;
  text-wrap: pretty;
}
.offcanvas-body {
  padding: 1rem 1.5rem 0 1.5rem;
}
.offcanvas-backdrop {
  background-color: #3b4559;
}

.filters-item {
  margin-bottom: 2rem;
}
.filters-item__title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--darkblue);
}

@media all and (min-width: 768px) {
  .offcanvas {
    --bs-offcanvas-width: 30vw;
    min-width: 480px;
  }
  .offcanvas-header {
    padding: 4rem 2rem 0 3rem;
  }
  .offcanvas-body {
    padding: 1.5rem 2rem 0 3rem;
  }
}
@media all and (min-width: 992px) {
  .offcanvas-header {
    padding: 5rem 3rem 0 3rem;
  }
  .offcanvas-body {
    padding: 2rem 3rem 0 3rem;
  }
}

/* -- Product --------------------------*/
.product-gallery {
  padding: 4rem 0;
  overflow: hidden;
}
.product-gallery__swiper {
  position: relative;
  overflow: visible;
}
.product-gallery__swiper:before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% - var(--clip-size));
  width: 50vw;
  height: 100%;
  background: var(--light);
  -webkit-clip-path: polygon(0 0, calc(100% - var(--clip-size)) 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, calc(100% - var(--clip-size)) 0, 100% 100%, 0 100%);
  z-index: 10;
}
.product-gallery__swiper .swiper-slide {
  aspect-ratio: 4/3;
}
.product-gallery__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery .swiper-pagination-bullets {
  position: absolute;
  bottom: -2rem;
}

.product-downloads {
  padding: 4rem 0;
  background: var(--lightblue);
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.download-list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: var(--darkblue);
  padding: 0.85rem 1.5rem;
  border-radius: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}
.download-list__link i {
  color: var(--green);
  transition: all 0.5s;
}
.download-list__link:hover i {
  padding-right: 0.75rem;
}

/* -- Footer ----------------------------------*/
.footer {
  position: relative;
}
.footer-top {
  padding: 5rem 0;
  background: #fff;
}
.footer-bottom {
  padding: 1rem 0;
  background: rgba(59, 69, 89, 0.1);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  margin: 2rem 0 1rem 0;
}
.footer__contact a {
  text-decoration: none;
  color: var(--darkblue);
}
.footer__contact a:first-child {
  font-weight: 700;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}
.footer__socials a {
  font-size: 1.75rem;
  color: var(--darkblue);
  transition: all 0.5s;
}
.footer__socials a:hover {
  transform: translateY(-0.25rem);
}

.footer-top__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-top__nav .nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--darkblue);
  padding: 0;
}
.footer-top__nav .nav-link:before {
  content: "\f178";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  color: var(--green);
  padding-right: 1.25rem;
  transition: all 0.5s;
  left: 0;
}
.footer-top__nav .nav-link:hover:before {
  position: relative;
  left: 0.75rem;
}

.footer__certificates {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .5rem 1rem;
}

  .footer__certificates__logo {
    max-height: 60px;
  }

.footer-bottom__text {
  font-size: 0.875rem;
  color: var(--lightblue);
}
.footer-bottom__text a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom__text a:hover {
  color: var(--darkblue);
}

.footer-bottom__nav {
  justify-content: flex-end;
  gap: 1.25rem;
}
.footer-bottom__nav .nav-link {
  font-size: 0.875rem;
  color: var(--lightblue);
  padding: 0;
}
.footer-bottom__nav .nav-link:hover {
  color: var(--darkblue);
}/*# sourceMappingURL=stylesheet.css.map */