:root {
  --font-size: 16px;
  --container-width: 100%;
  --side-gutter: 0;
  --radius-sm: 1rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.5rem;
  --white: #ffffff;
  --light: #f2f4f7;
  --dark: #565961;
/*  --dark: #878b95;*/
  --primary: #e41520;
  --secondary: #1B2434;
  --tertiary: #0B1425;
/*  --tertiary: #000a1c;*/
  --light-hover: #f7f8fa;
  --dark-hover: #9fa3ad;
  --primary-hover: #f44a56;
  --secondary-hover: #242d42;
  --tertiary-hover: #051123;  
  --swiper-wrapper-transition-timing-function: linear !important;
}

@media (min-width: 576px) {
  :root {
    --container-width: 540px;
    --side-gutter: 2rem;
  }
}
@media (min-width: 768px) {
  :root {
    --container-width: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --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: var(--font-size);
}

* {
  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: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--secondary);
  background: var(--white);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

body.mobile-menu--is-open {
  position: fixed;
  top: 0;
  overflow: hidden;
  width: 100vw;
  height: 100dvh;
}

body:before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #08121ccc;
  z-index: 888;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

body.navigation-submenu--open:before {
  opacity: 1;
}

/* -- Container ----------------------------*/
.container {
  max-width: var(--container-width);
}

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

/* -- Fonts --------------------------------*/
.ff-barlow {
  font-family: "Barlow Condensed", serif;
  font-weight: 800;
  font-style: normal;
  line-height: 1 !important;
}

.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: 700;
  line-height: 1.2;
  text-wrap: balance;
}

h1, .fs-1 {
  font-size: clamp(2.5rem, 1.8571rem + 1.7857vw, 4rem) !important;
}

h2, .fs-2 {
  font-size: clamp(2rem, 1.5714rem + 1.1905vw, 3rem) !important;
}

h3, .fs-3 {
  font-size: clamp(1.75rem, 1.4286rem + 0.8929vw, 2.5rem) !important;
}

h4, .fs-4 {
  font-size: clamp(1.5rem, 1.1786rem + 0.8929vw, 2.25rem) !important;
}

h5, .fs-5 {
  font-size: clamp(1.25rem, 1.0357rem + 0.5952vw, 1.75rem) !important;
}

h6, .fs-6 {
  font-size: clamp(1.0625rem, 0.875rem + 0.5208vw, 1.5rem) !important;
}

.fs-lead {
  font-size: 1.125rem;
}

.fs-small, .small, small {
  font-size: 0.875rem;
}

.fs-1,
.fs-2,
.fs-3,
.fs-4,
.fs-5,
.fs-6 {
  font-weight: 700;
  display: block;
  text-wrap: balance;
  line-height: 1.2;
}

strong, b {
  font-weight: 700;
}

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

blockquote {
  color: var(--primary);
  font-size: 1.25rem;
  margin: 0;
}

blockquote cite:before {
  content: '— ';
}

ul.kolommen,
ol:not([class]),
ul:not([class]) {
  padding-left: 1rem;
}
ul.kolommen li::marker,
ol:not([class]) li::marker,
ul:not([class]) li::marker {
  font-size: 1.125rem;
  color: var(--secondary);
}

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

ul.kolommen {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: 1rem;  
}

/* -- Lists ---------------------------------*/
.fa-ul {
  margin: 0 0 0 1.5rem;
}
.fa-ul li + li {
  margin-top: 0.75rem;
}

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

a:not([class]),
a:not([class]):hover {
  color: inherit;
}


.link {
  --link-color: var(--secondary);
  --hover-color: var(--secondary-hover);
  display: inline-block;
  font-weight: 700;
  color: var(--link-color);
  border-bottom: 2px solid var(--link-color);
}
.link:hover {
  color: var(--hover-color);
  border-bottom: 2px solid var(--hover-color);
}

.link__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--tertiary);
  border-radius: 100%;
  margin-right: 0.5rem;
}
.link__icon--offline:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -4px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--tertiary);
  border-radius: 100%;
  background: var(--primary);
}
.link__icon--online:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -4px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--tertiary);
  border-radius: 100%;
  background: #55C950;
}

.is-offline .link__icon:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -4px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--tertiary);
  border-radius: 100%;
  background: var(--primary);
}
.is-online .link__icon:before {
  content: "";
  position: absolute;
  top: -1px;
  right: -4px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--tertiary);
  border-radius: 100%;
  background: #55C950;
}

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

.link--dark {
  --link-color: var(--dark);
  --hover-color: var(--dark-hover);
}

.link--primary {
  --link-color: var(--primary);
  --hover-color: var(--primary-hover);
}

.link--secondary {
  --link-color: var(--secondary);
  --hover-color: var(--secondary-hover);
}

/* -- Buttons -------------------------------*/
.buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.facetwp-load-more,
.button {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 3rem;
  padding: 0.85rem 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:after {
  content: "\f0a9";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 700;
  padding-left: 0.5rem;
}
.button.button--no-icon:after {
  content: "";
  padding: 0;
}
.button:hover {
  color: var(--button-color-hover);
  box-shadow: inset 400px 0 0 0 var(--button-outline);
}

.button--primary {
  --button-name: var(--primary);
  --button-bcg: var(--primary);
  --button-color: var(--white);
  --button-color-hover: var(--white);
  --button-outline: var(--primary-hover);
}

.button--secondary {
  --button-name: var(--secondary);
  --button-bcg: var(--secondary);
  --button-color: var(--white);
  --button-color-hover: var(--white);
  --button-outline: var(--secondary-hover);
}

.facetwp-load-more,
.button--dark {
  --button-name: var(--dark);
  --button-bcg: var(--dark);
  --button-color: var(--white);
  --button-color-hover: var(--white);
  --button-outline: var(--dark-hover);
}

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

.facetwp-load-more,
.button--outline {
  --button-bcg: transparent;
  --button-outline: transparent;
  color: var(--button-name);
  border: 2px solid var(--button-name);
}
.button--outline:hover {
  --button-outline: var(--button-name);
  color: var(--white);
}

.button--outline.button--white:hover {
  color: var(--primary);
}

.button--search {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: rgba(135, 139, 149, .4);
  border-radius: 100%;
  margin-right: 0.5rem;
  transition: ease-out 0.4s;
}

.button--search:hover {
  background: rgba(135, 139, 149, .8);
}

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

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

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

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

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

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

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

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

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

.clr--dark {
  color: var(--dark) !important;
}

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

.clr--primary {
  color: var(--primary) !important;
}

/* -- Radius --------------------------------*/
.radius-sm {
  border-radius: var(--radius-sm);
}

.radius-md {
  border-radius: var(--radius-md);
}

.radius-lg {
  border-radius: var(--radius-lg);
}

/* -- 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);
}

/* -- 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 {
  position: relative;
  margin-top: 2rem;
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 1.25rem;
  border-radius: 0.25rem;
  background: var(--dark);
  opacity: 0.38;
  cursor: pointer;
  transform: all 0.5s;
}

.swiper-pagination-bullets .swiper-pagination-bullet:hover {
  opacity: 0.8;
}

.swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 2rem;
  opacity: 1;
  background: var(--dark);
}
.swiper-pagination-bullets .swiper-pagination-bullet-active:hover {
  opacity: 1;
}

/* -- Modals ----------------------------------*/
.modal {
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  padding: 2em 1em;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
  transition: all 0.2s linear;
}

.modal[data-modal-group-status="active"] {
  opacity: 1;
  visibility: visible;
}

.modal__dark {
  opacity: .5;
  pointer-events: auto;
  cursor: pointer;
  background-color: #131313;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.modal__card {
  pointer-events: auto;
  width: 100%;
  max-width: 54em;
  max-height: 100%;
  padding: 0;
  display: none;
  position: relative;
}

.modal__card[data-modal-status="active"] {
  display: flex;
}

.modal__scroll {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: #e2e1df;
  border-radius: 1.25em;
  flex-flow: column;
  width: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
  overflow: scroll;
}

.modal__content {
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: center;
  grid-column-gap: 1rem;
  width: 100%;
}

.search-form__input {
  border-radius: 3rem 0 0 3rem;
  border: none;
  padding: .375rem 1.5rem .375rem 2rem;
}

.modal__btn-close {
  background-color: #efeeec;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 51.2px;
  height: 51.2px;
  display: flex;
}

.modal__btn-close-bar {
  background-color: currentColor;
  width: .125em;
  height: 40%;
  position: absolute;
  transform: rotate(45deg);
}

.modal__btn-close-bar.is--second {
  transform: rotate(-45deg);
}

/* Demo Buttons */

.demo-btn {
  background-color: #efeeec;
  border-radius: 50em;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.demo-btn__p {
  margin-bottom: 0;
  padding: .65em 1.25em;
  font-size: 1em;
}


/* -- 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;
}

.content-flow a:not([class]) {
  text-decoration: underline;
}
.content-flow a:not([class]):hover {
  text-decoration: none;
}

/* -- Modal -----------------------------------*/
.fancybox__content {
  width: 100% !important;
  max-width: 1366px !important;
  height: auto !important;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-md);
}

.has-video .fancybox__content {
  aspect-ratio: 16/9;
}

.fancybox__backdrop {
  background-color: #08121ccc;
  opacity: 1 !important;
  backdrop-filter: blur(4px);
}

.modal-wrapper {
  position: relative;
  width: 100%;
  padding: 1.5rem;
}

.carousel__button.is-close {
  position: absolute;
  top: calc(-42px - 1rem) !important;
  right: 1.5rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  z-index: 9999;
}

.carousel__button svg {
  filter: none;
}

.modal-content {
  display: grid;
  grid-template-rows: max-content max-content;
  padding: clamp(1rem, 0.3635rem + 1.7804vw, 2.5rem);
  gap: clamp(1rem, 0.3635rem + 1.7804vw, 2.5rem);
  border: none;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.popup-modal .modal-content {
  background: var(--light);
}
 
.modal-video {
  padding: 0;
  border: none;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.modal-video iframe,
.modal-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.modal-media__image,
.modal-media__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-element {
  overflow: hidden;
}

  .video-element__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.modal-body {
  padding: 0;
}

@media all and (min-width: 992px) {
  .modal-content--has-media {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    grid-template-rows: 1fr;
    align-items: center;
    gap: clamp(1rem, 0.3635rem + 1.7804vw, 2.5rem);
  }
}

/* -- Navigation ------------------------------*/
.site-navigation {
  position: relative;
  z-index: 999;
}

.site-navigation--sticky {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-56px);
  z-index: 999;
}

.site-navigation__top {
  padding: 0.75rem 0;
  background: var(--secondary);
}

.site-navigation__bottom {
  position: relative;
  padding: 1.25rem 0;
  background: var(--white);
  box-shadow: 0 0 1rem 0 rgba(27, 36, 52, 0.05);
  transition: padding .5s;
}

.button--menu {
  min-height: 52px;
}

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

.navigation__logo {
  max-width: 220px;
}

.service-link {
  display: flex;
  align-items: center;
  color: var(--dark);
}
.service-link strong {
  color: var(--white);
  margin-left: 0.5rem;
}

.top-nav {
  align-items: center;
  gap: 1.75rem;
}
.top-nav .nav-link {
  padding: 0;
  color: rgba(255,255,255,.63);
}
.top-nav .nav-link:hover {
  color: var(--white);
}

.main-nav {
  align-items: center;
  gap: 2.5rem;
}
.main-nav .nav-item:not(.nav-item--button) .nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  padding: 0;
}
.main-nav .nav-item:not(.nav-item--button) .nav-link.active, .main-nav .nav-item:not(.nav-item--button) .nav-link.show, .main-nav .nav-item:not(.nav-item--button) .nav-link:hover {
  color: var(--primary);
}

.main-nav .dropdown-toggle::after,
.mobile-nav .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  border: none;
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0;
}

.mobile-nav .dropdown-toggle[aria-expanded="true"]::after {
  content: "\f106";
}

.main-nav .dropdown-toggle.show::after {
  content: "\f106";
  color: var(--primary);
}

.nav-item--button .nav-link {
  --button-name: var(--primary);
  --button-bcg: var(--primary);
  --button-color: var(--white);
  --button-color-hover: var(--white);
  --button-outline: var(--primary-hover);
  
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 3rem;
  padding: 0.85rem 1.5rem !important;
  background-color: var(--button-bcg);
  color: var(--button-color) !important;
  transition: ease-out 0.4s;
  box-shadow: inset 0 0 0 0 var(--button-outline);
}

.nav-item--button .nav-link:hover {
  color: var(--button-color-hover);
  box-shadow: inset 400px 0 0 0 var(--button-outline);
}

.nav-item--button .nav-link:after {
  content: "\f007";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 700;
  padding-left: 0.5rem;
}

.dropdown-wrapper {
  position: absolute;
  background: red;
  width: 100vw;
  transform: none !important;
  top: 100% !important;
  left: 0;
  border: none;
  padding: 0;
  z-index: 500;
}
.dropdown-wrapper__main {
  background: var(--white);
  padding: 4rem 0;
}

.dropdown-menu-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dropdown-menu-columns__column--image {
  grid-column: 4;
}

.dropdown-wrapper__footer {
  background: var(--light);
  padding: 1.25rem 0;
}

.dropdown-menu__title {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.main-submenu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.main-submenu__link {
  font-size: 1.015;
  color: var(--dark);
}

.main-submenu__link.active, .main-submenu__link:hover {
  color: var(--secondary);
}

.dropdown-footer__information {
  display: flex;
  gap: 2.5rem;
  color: var(--dark);
}

.dropdown-footer__information a {
  color: var(--primary);
  font-weight: 700;
}

.mobile-nav {
  align-items: flex-start;
  gap: 1.25rem;
}

.mobile-nav .nav-link {
  font-size: 1.25rem;
  font-weight: 700; 
  color: var(--secondary);
  padding: 0;
}

.mobile-nav .collapse {
  margin: .75rem 0 1.5rem 0;
}

.mobile-nav .collapse.show {
  display: grid;
  gap: 1rem;  
  opacity: 1;
}

.mobile-nav .dropdown-menu-columns__column:not(last-of-type) {
  margin-top: 3rem;
}

.collapse-menu__title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--secondary);
}

.collapse-submenu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.collapse-submenu__link {
  font-size: 1.015;
  color: var(--dark);
}
.collapse-submenu__link.active, .collapse-submenu__link:hover {
  color: var(--secondary);
}

@media all and (min-width: 768px) {
  .site-navigation__bottom {
    padding: 2.25rem 0;
  }

  .site-navigation--sticky .site-navigation__bottom {
    padding: 1.25rem 0;
  }
}

@media all and (min-width: 1200px) {
  .main-nav {
    gap: 1rem;
  }
  .main-nav .nav-item:not(.nav-item--button) .nav-link {
    font-size: 1.1rem;
  }
}

@media all and (min-width: 1500px) {
  .main-nav {
    gap: 2.5rem;
  }
  .main-nav .nav-item:not(.nav-item--button) .nav-link {
    font-size: 1.25rem;
  }
}


/* -- Site mobile wrapper ---------------------*/
.site-navigation__mobile {
  background: var(--white);
  height: 0;
  opacity: 0;    
  pointer-events: none;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu--is-open .site-navigation__mobile {
  opacity: 1;
  pointer-events: all;
  padding: 3rem 0;
  visibility: visible;
  height: calc(100dvh - 165px); 
}

/* -- Header ----------------------------------*/
.site-header-title {
  background: var(--light);
  padding: clamp(2.5rem, 0.8333rem + 3.4722vw, 5rem) 0;
}
.site-header-media {
  position: relative;
}
.site-header-media:before {
  content: "";
  position: absolute;
  top: 0;
  height: 25%;
  width: 100%;
  background: var(--light);
  z-index: -1;
}
.site-header-media:after {
  content: "";
  position: absolute;
  top: 20%;
  height: 40%;
  width: 100%;
  background-image: url("../images/header-media-bcg.svg");
  background-repeat: repeat-x;
  background-position: -2px left;
  background-size: contain;
  z-index: -1;
}
.site-header-media-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--media-ratio);
}

.site-header-media__video,
.site-header-media__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-header-login {
  display: none;
}

.site-header-media__title {
  position: absolute;
  font-size: clamp(2rem, 1.5714rem + 1.1905vw, 3rem);
  font-weight: 700;
  color: var(--white);
  bottom: clamp(1rem, 0.1513rem + 2.3739vw, 3rem);
  left: clamp(1rem, 0.1513rem + 2.3739vw, 3rem);
  z-index: 4;
}

/* -- Header breadcrumb -----------------------*/
.site-header-breadcrumb {
  background: var(--light);
  padding: 1.5rem 0;
}

.breadcrumb {
  font-size: 0.95rem;
  color: var(--dark);
  margin: 0;
}
.breadcrumb a {
  color: var(--dark);
  text-decoration: underline;
}

.breadcrumb .spacer {
  padding: 0 .25rem;
}

.breadcrumb a:hover {
  text-decoration: none;
}
.breadcrumb .current-item {
  font-weight: 700;
  color: var(--secondary);
}

/* -- Header title ----------------------------*/
.site-header-title {
  background: var(--light);
  padding: clamp(2.5rem, 0.8333rem + 3.4722vw, 5rem) 0;
  overflow: hidden;
}

.swiper--titles {
  overflow: visible;
}

.swiper--titles .swiper-slide:not(.swiper-slide-fully-visible) {
  opacity: 0;
}

.animated-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.animated-title__prepend, .animated-title__append {
  font-size: clamp(1.25rem, 1.0357rem + 0.5952vw, 1.75rem);
  color: var(--primary);
  line-height: 1.2;
}
.animated-title__title {
  position: relative;
  font-family: "Barlow Condensed", serif;
  font-weight: 800;
  font-style: normal;
  font-size: clamp(3.75rem, 2.6892rem + 2.9674vw, 6.25rem);
  line-height: 1 !important;
  text-transform: uppercase;
}
.animated-title__title:after {
  content: attr(data-title);
  position: absolute;
  top: -50%;
  left: -50%;
  color: var(--dark);
  font-size: 220%;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

/* -- Header content --------------------------*/
.site-header-content {
  background: var(--light);
}

.site-header-content--sm {
  padding: 0 0 3rem 0;
}

.site-header-content--lg {
  padding: clamp(1.5rem, 1.1667rem + 0.6944vw, 2rem) 0 clamp(3.5rem, 1.1667rem + 4.8611vw, 7rem) 0;
}

.site-header-content-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

@media all and (min-width: 1200px) {
  .site-header-content .content-flow {
    margin-top: 2rem;
  }
}
/* -- Header media ----------------------------*/
.site-header--frontpage .site-header-media-inner:after {
  content: "";
  position: absolute;
  width: 140%;
  aspect-ratio: 1;
  background-image: url("../images/header-overlay.svg");
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -47%);
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.site-header--hero .site-header-media-inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, rgb(228, 21, 32) 0%, rgba(228, 21, 32, 0) 45%);
  z-index: 0;
}

.site-header--frontpage .site-header-media-inner {
  --media-ratio: 4/3;
}

.site-header--hero .site-header-media-inner {
  --media-ratio: 16/9;
}

/* -- Header elements -------------------------*/
.video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: clamp(3.5rem, 2.8635rem + 1.7804vw, 5rem);
  height: clamp(3.5rem, 2.8635rem + 1.7804vw, 5rem);
  cursor: pointer;
  background: var(--primary);
  border-radius: 100%;
}
.video-button__icon {
  position: relative;
  font-size: clamp(1.25rem, 0.9318rem + 0.8902vw, 2rem);
  color: var(--white);
  transform: translateX(0.125rem);
  z-index: 10;
}
.video-button:before, .video-button:after {
  content: "";
  position: absolute;
  width: 225%;
  height: 225%;
  background: var(--primary);
  border-radius: 100%;
  opacity: 0;
  animation: animationSignal cubic-bezier(0, 0.55, 0.55, 1) 2s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-fill-mode: none;
  transform-origin: 50% 50%;
  animation-fill-mode: forwards;
  animation-delay: 0.78s;
  animation-iteration-count: infinite;
  z-index: 2;
}
.video-button:after {
  animation-delay: 1s;
}
@keyframes animationSignal {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  1% {
    opacity: 0.25;
  }
  20% {
    opacity: 0.25;
  }
  60% {
    transform: scale(1);
    opacity: 0;
  }
}
/* -- Login form ------------------------------*/
.site-login {
  margin-top: 1rem;
}

.login-form {
  background: var(--primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}
.login-form__title {
  margin-bottom: 1.25rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}
.login-form__input {
  border: none;
  color: var(--dark);
  border-radius: 3rem;
  padding: 0.5rem 1.5rem;
  min-height: 52px;
}
.login-form p {
  color: var(--white);
}

.login-form a.small-link {
  font-size: 0.85rem;
  color: var(--white);
  text-decoration: underline;
}
.login-form a.small-link:hover {
  text-decoration: none;
}

@media all and (min-width: 768px) {
  .site-login {
    position: relative;
    margin-top: -3rem;
    margin-left: 1.5rem;
  }
}
@media all and (min-width: 992px) {
  .site-header--frontpage .site-header-media-inner {
    --media-ratio: 16/9;
  }
  .site-header--hero .site-header-media-inner {
    --media-ratio: 16/9;
  }
}
@media all and (min-width: 1200px) {
  .site-header-login {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    min-width: 420px;
    z-index: 3;
  }
  .site-login {
    display: none;
  }
  .site-header--frontpage .site-header-media-inner {
    --media-ratio: 41/22;
  }
  .site-header--hero .site-header-media-inner {
    --media-ratio: 21/9;
  }
}
@media all and (min-width: 1400px) {
  .site-header-login {
    width: 480px;
  }
}
/* -- Tiles ---------------------------------*/
.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  background: linear-gradient(140deg, rgba(27,36,52,1) 0%, rgba(27,36,52,0) 50%); 
}

.media-overlay__label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  border-radius: 3rem;
  border: 1px solid var(--white);
  padding: 0.5rem 1rem;
}
.media-overlay__controls {
  display: flex;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.media-overlay__controls a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--white);
  color: var(--primary);
  transition: all 0.5s;
}
.media-overlay__controls a:hover {
  background: var(--primary);
  color: var(--white);
}

/* -- Dienst -------------------------*/
.tile-dienst {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-areas: "media" "body";
  gap: 2.188rem;
}
.tile-dienst-media {
  grid-area: media;
  position: relative;
  aspect-ratio: 3/2;
}
.tile-dienst__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-sm);
}
.tile-dienst__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: var(--primary);
  transform: translate(-25%, 50%);
}
.tile-dienst__icon i {
  font-size: 1.5rem;
  color: var(--white);
}
.tile-dienst-body {
  grid-area: body;
}
.tile-dienst__title {
  margin-bottom: 1.5rem;
}

@media all and (min-width: 992px) {
  .tile-dienst {
    grid-template-columns: 42.666% 50%;
    grid-template-areas: "media body";
    gap: 8.333%;
    align-items: center;
  }
  .tile-dienst__icon {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
  }
  .tile-dienst__icon i {
    font-size: 1.5rem;
    color: var(--white);
  }
  .tile-dienst--reverse {
    grid-template-columns: 50% 42.666%;
    grid-template-areas: "body media";
  }
  .tile-dienst--reverse .tile-dienst__icon {
    right: auto;
    left: 0;
    transform: translate(-50%, -50%);
  }
  .tile-dienst--reverse .tile-dienst-body {
    text-align: right;
  }
}
/* -- CTA --------------------------*/
.tile-cta {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--primary);
  border-radius: var(--radius-sm);
  overflow: visible;
}
.tile-cta-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tile-cta-media:after {
  content: "";
  position: absolute;
  width: 200%;
  aspect-ratio: 1;
  background-image: url("../images/tile-cta-overlay.svg");
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  left: 50%;
  transform: translate(-52%, -45%);
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.tile-cta__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tile-cta-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.5rem;
}

/* -- News -------------------------*/
.tile-news {
  display: grid;
  grid-template-rows: max-content 1fr;
  gap: 2rem;
  height: 100%;
}
.tile-news-media {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.tile-news__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tile-news-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.tile-news-body p {
  margin-bottom: 0;
}
.tile-news__title {
  display: block;
  font-weight: 700;
  font-size: clamp(1.0625rem, 0.875rem + 0.5208vw, 1.5rem);
  color: var(--primary);
  text-wrap: balance;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.tile-news__time {
  display: block;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: .25rem;
}

/* -- Blok -------------------------*/
.tile-blok {
  display: grid;
  grid-template-rows: max-content 1fr;
  gap: 2rem;
  height: 100%;
}
.tile-blok-media {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.tile-blok__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tile-blok-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.tile-blok-body p {
  margin-bottom: 0;
}
.tile-blok__title {
  display: block;
  font-weight: 700;
  font-size: clamp(1.0625rem, 0.875rem + 0.5208vw, 1.5rem);
  color: var(--primary);
  text-wrap: balance;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* -- Verhaal ----------------------*/
.tile-verhaal {
  display: grid;
  grid-template-rows: max-content 1fr;
  gap: 2rem;
  height: 100%;
}
.tile-verhaal-media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.tile-verhaal__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tile-verhaal-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.tile-verhaal-body p {
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0;
}

.tile-verhaal__naam {
  color: var(--primary);
}

.tile-verhaal__functie {
  display: block;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* -- Vacature ---------------------*/
.tile-vacature {
  background: var(--light);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.tile-vacature__title {
  color: var(--primary);
  font-weight: 700;
}

.vacature-tags {
  display: flex;
  gap: 0.25rem;
  margin: 1.5rem 0;
}
.vacature-tags__tag {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  border-radius: 3rem;
  padding: 0.5rem 1rem;
}
.vacature-tags__tag i {
  padding-right: 0.25rem;
}

@media all and (min-width: 1200px) {
  .tile-vacature {
    background: var(--light);
    padding: 3rem 2rem;
    border-radius: var(--radius-sm);
  }
}
/* -- Vestiging --------------------*/
.tile-vestiging-media {
  position: relative;
  border-radius: var(--radius-sm);
  aspect-ratio: 16/9;
  overflow: hidden;
}
.tile-vestiging-body {
  padding: 1rem;
}

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

.vestiging__naam {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.vestiging__address {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.vestiging__contact {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.vestiging__contact li + li {
  margin-top: .5rem;
}

.vestiging__contact a {
  color: inherit;
}


.vestiging__openingstijden {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
}
.vestiging__openingstijden i {
  transition: all 0.25s;
}
.vestiging__openingstijden[aria-expanded=true] i {
  transform: rotate(-180deg);
}

.table {
  --bs-table-bg: none;
}

.table td,
.table th {
  padding: .25rem 0;
}

/* -- Team -------------------------*/
.tile-team-media {
  position: relative;
  border-radius: var(--radius-sm);
  aspect-ratio: 5/7;
  overflow: hidden;
}
.tile-team-body {
  padding: 1rem;
}

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

.team__naam {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.team__functie {
  font-size: 1.125rem;
}

/* -- Opsomming --------------------*/
.tile-opsomming {
  position: relative;
  background: var(--primary);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.tile-opsomming:after {
  content: "";
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  background-image: url("../images/circle-overlay.svg");
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.tile-opsomming-body {
  position: relative;
  color: var(--white);
  padding: 3rem 2rem;
  z-index: 2;
}
.tile-opsomming__title {
  margin-bottom: 1.5rem;
}

/* -- Logo -------------------------*/
.tile-logo {
  border: 2px solid var(--light); 
  border-radius: var(--radius-sm);
  transition: all .5s;
}

  .tile-logo-media {
    aspect-ratio: 16/9;
    padding: 3rem;
  }

    .tile-media__logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: all .5s;
    }

a.tile-logo:hover {
  border-color: var(--primary);
}

a.tile-logo:hover .tile-media__logo {
  transform: scale(1.05);
}


/* -- Kernwaarde -------------------*/
.tile-kernwaarde {
  display: flex;
  gap: 2rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 2rem;
  height: 100%;
}
.tile-kernwaarde-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  font-size: 1.125rem;
  border-radius: 100%;
  color: var(--white);
  background: var(--primary);
}
.tile-kernwaarde-body p {
  color: var(--dark);
}
.tile-kernwaarde__title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* -- Outside -------------------*/
.tile-outside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  height: 100%;
}
.tile-outside-media {
  display: flex;
}
.tile-outside-media img {
  max-width: 240px;
  height: auto;
}
.tile-outside__title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* -- History ----------------------*/
.tile-history {
  display: grid;
  grid-template-rows: max-content 1fr;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  height: 100%;
}
.tile-history-media {
  aspect-ratio: 16/9;
}
.tile-history-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tile-history-body {
  padding: 3rem 1.5rem;
}
.tile-history-body p {
  color: var(--dark);
}
.tile-history-body p:last-of-type {
  margin: 0;
}
.tile-history__title {
  color: var(--white);
  margin-bottom: 1rem;
}

@media all and (min-width: 992px) {
  .tile-cta-body {
    padding: 2.25rem 1.75rem;
  }
}
@media all and (min-width: 1200px) {
  .tile-cta {
    grid-template-columns: 41.666% 58.333%;
  }
  .tile-cta-media {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  }
  .tile-cta-body {
    padding: 3rem;
  }
  .tile-history {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    grid-template-rows: 1fr;
  }
  .tile-history-body {
    padding: 3rem 2rem;
  }
  .tile-history-media {
    aspect-ratio: auto;
  }
  .tile-history-media img {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  }
}
@media all and (min-width: 1400px) {
  .tile-cta-body {
    padding: 4rem;
  }
}

/* -- Modules --------------------------*/
.module {  
  --spacing-sm: clamp(1.35rem, 1.05rem + 0.625vw, 1.8rem) 0;
  --spacing-md: clamp(1.8rem, 0.6rem + 2.5vw, 3.6rem) 0;
  --spacing-lg: clamp(2.25rem, 0.75rem + 3.125vw, 4.5rem) 0;  
  --margin-md: clamp(2.25rem, 0.75rem + 3.125vw, 4.5rem) 0;
  --margin-lg: clamp(3.15rem, 0.45rem + 5.625vw, 7.2rem) 0;
}

.swiper--triple {
  overflow: visible;
}
.swiper--triple .swiper-slide {
  height: auto;
}

.swiper--kernwaarden {
  overflow: visible;
}
.swiper--kernwaarden .swiper-slide {
  height: auto;
}

.facetwp-facet {
  margin-bottom: 0 !important;
}

.facetwp-type-kormelink,
.facetwp-type-radio {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.facetwp-type-kormelink, .facetwp-radio,
.facetwp-type-radio .facetwp-radio {
  position: relative;
  border-radius: 2rem;
  font-weight: 700;
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 3rem;
  padding: 0.85rem 1.5rem;
}

.facetwp-type-kormelink .facetwp-radio.checked,
.facetwp-type-radio .facetwp-radio.checked {
  font-weight: 700;
  color: #fff;
  border: 2px solid var(--primary);
  background: var(--primary);
}
.facetwp-type-kormelink .facetwp-radio .facetwp-counter,
.facetwp-type-radio .facetwp-radio .facetwp-counter {
  display: none;
}

.module-spacer {
  margin: var(--spacing-sm);
}

/* -- Module-usps ----------------------*/
.module-usps {
  margin: var(--spacing-sm);
}

.usps-wrapper {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.usp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.usp__icon {
  color: var(--primary);
}
.usp__description {
  font-weight: 700;
}

@media all and (min-width: 1200px) {
  .usp {
    font-size: 1.015rem;
  }
}
/* -- Module-blokken ----------------------*/
.module-blokken {
  margin: var(--margin-lg);
}

/* -- Module-outside ----------------------*/
.module-outside {
  margin: var(--spacing-lg);
}

.outside-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
}

/* -- Module-team ----------------------*/
.module-team {
  margin: var(--margin-lg);
}

.module-teams .row-cols-md-2 .col {
  margin-bottom: 1.5rem;
}

/* -- Module-vestigingen ---------------*/
.module-vestigingen {
  margin: var(--margin-lg);
}

.module-vestigingen .row-cols-md-2 .col {
  margin-bottom: 1.5rem;
}

/* -- Module-faq -----------------------*/
.module-faq {
  margin: var(--margin-lg);
}

.accordion-item {
  border-color: rgb(242, 244, 247);
}

.accordion-button {
  color: var(--secondary);
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='22284c'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.accordion-button:not(.collapsed) {
  color: var(--secondary);
  background: rgb(242, 244, 247);
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='22284c'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

/* -- Module-logos ---------------------*/
.module-logos {
  margin: var(--margin-lg);
}

.logos-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
}

/* -- Module-verhalen ------------------*/
.module-verhalen {
  margin: var(--margin-lg);
  overflow: hidden;
}

.verhalen-swiper-container {
  position: relative;
  padding: clamp(1.5rem, 1.1667rem + 0.6944vw, 2rem) 0 clamp(2.5rem, 0.8333rem + 3.4722vw, 5rem) 0;
}

.verhalen-swiper-container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: var(--light);
}

/* -- Module-galerij -------------------*/
.module-galerij {
  background: var(--white);
  overflow: hidden;
}

.swiper--galerij {
  overflow: visible;
}

.swiper--galerij .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.galerij-wrapper {
  display: flex;
  flex-wrap: nowrap;
  place-items: center;
  height: 100vh;
  padding: 10vh 0;
}
.galerij-wrapper__item {
  height: 80vh;
}

.galerij-grid {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  grid-template-areas: "item1 item1 item2" "item1 item1 item3" "item4 item5 item3";
  width: 180vw;
  height: 80vh;
  padding: 0.5rem;
}
.galerij-grid__item {
  background: #ccc;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.galerij-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Assigning grid areas */
.galerij-grid__item[data-item="1"] {
  grid-area: item1;
}

.galerij-grid__item[data-item="2"] {
  grid-area: item2;
}

.galerij-grid__item[data-item="3"] {
  grid-area: item3;
}

.galerij-grid__item[data-item="4"] {
  grid-area: item4;
}

.galerij-grid__item[data-item="5"] {
  grid-area: item5;
}

@media all and (min-width: 992px) {
  .galerij-grid {
    width: 90vw;
  }
}
@media all and (min-width: 1200px) {
  .galerij-grid {
    width: 80vw;
  }
}
@media all and (min-width: 1700px) {
  .galerij-grid {
    width: 70vw;
  }
}

/* -- Module-kernwaarden ---------------*/
.module-kernwaarden {
  position: relative;
  background: var(--primary);
  padding: var(--spacing-lg);
  overflow: hidden;
}
.module-kernwaarden .container {
  position: relative;
  z-index: 1;
}
.module-kernwaarden:after {
  content: "";
  position: absolute;
  width: 65vw;
  aspect-ratio: 1;
  background-image: url("../images/circle-overlay.svg");
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.swiper--kernwaarden {
  overflow: visible;
}

.swiper--kernwaarden .swiper-slide {
  height: auto;
}

/* -- Module-history ---------------*/
.module-history {
  position: relative;
}
.module-history--timeline {
  margin: var(--margin-lg);
}
.module-history--swiper {
  background: var(--light);
  padding: var(--spacing-lg);
  overflow: hidden;
}
.module-history .container {
  position: relative;
  z-index: 1;
}

.swiper--history {
  overflow: visible;
}
.swiper--history:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100vw;
  top: 50%;
  left: calc((-100vw + var(--container-width) - 1.5rem) / 2);
  background: var(--secondary);
  transform: translate(-50% -50%);
  opacity: 0.2;
}

.swiper--history .swiper-slide {
  position: relative;
  height: auto;
}

.swiper--history .swiper-slide:not(:last-child):after {
  content: "\f0a9";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 700;
  font-size: 1.125rem;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--primary);
  color: var(--white);
  transform: translate(50%, -50%);
  z-index: 444;
}

.history-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding-top: 2rem;
}
.history-timeline:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  top: 0;
  left: 50%;
  background: var(--secondary);
  transform: translate(-50% -50%);
  opacity: 0.2;
  z-index: -1;
}
.history-timeline__item:not(:last-of-type) {
  position: relative;
}
.history-timeline__item:not(:last-of-type):after {
  content: "\f0ab";
  font-family: "Font Awesome 6 Sharp";
  font-weight: 700;
  font-size: 1.125rem;
  display: grid;
  place-items: center;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--primary);
  color: var(--white);
  transform: translate(-50%, 50%);
  z-index: 444;
}

@media all and (min-width: 992px) {
  .swiper--history .swiper-slide:not(:last-child):after {
    content: "\f0a9";
    font-family: "Font Awesome 6 Sharp";
    font-weight: 700;
    font-size: 1.125rem;
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    right: calc(var(--container-width) / 100 * -4.1665);
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--primary);
    color: var(--white);
    transform: translate(50%, -50%);
    z-index: 444;
  }
}
/* -- Module-diensten -------------------*/
.module-diensten {
  padding: var(--spacing-lg);
}

.diensten-wrapper {
  display: grid;
  gap: 4rem;
}

@media all and (min-width: 992px) {
  .diensten-wrapper {
    display: grid;
    gap: 2rem;
  }
}

/* -- Module-blogs --------------------*/
.module-blogs {
  margin: var(--margin-lg);
  overflow: hidden;
}

/* -- Module-nieuws --------------------*/
.module-nieuws {
  margin: var(--margin-lg);
  overflow: hidden;
}

/* -- Module-vacatures -----------------*/
.module-vacatures {
  margin: var(--margin-lg);
  overflow: hidden;
}

/* -- Module-content -------------------*/
.module-content {
  position: relative;
  margin: var(--margin-lg);  
}

.module-content--background {
  padding: var(--spacing-lg);
}

.module-content--background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: var(--light);
  border-radius: 0;
  z-index: -1;
}

@media all and (min-width: 992px) {
  .module-content--background:after {
    width: 70vw;
    height: 100%;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  }
  .module-content--background.module-content--reverse:after {
    left: auto;
    right: 0;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  }
}
/* -- Module-agenda --------------------*/
.module-agenda {
  background: var(--light);
  padding: var(--spacing-lg);
}
.module-agenda .table {
  --bs-table-bg: none;
}
.module-agenda .table > :not(caption) > * > * {
  padding: 0.75rem 0;
}
.module-agenda .table .clickable-row {
  cursor: pointer;
}
.module-agenda .table .clickable-row:hover td {
  color: var(--primary);
}
.module-agenda .table th {
  color: var(--secondary);
  font-weight: 700;
  padding: 0.65rem 0;
  font-size: 1.125rem;
}
.module-agenda .table td {
  color: var(--dark);
  font-weight: 400;
  padding: 0.65rem 0;
}
.module-agenda .table .clickable-row i {
  transition: all 0.25s;
}
.module-agenda .table .clickable-row:hover i {
  position: relative;
  transform: translateX(-0.5rem);
}

.overzicht .table {
  color: #fff;
}

@media all and (min-width: 1200px) {
  .module-agenda .table th {
    font-size: 1.25rem;
  }
  .module-agenda .table td {
    font-size: 1.125rem;
  }
}

/* -- Zoekresultaten --------------------------*/
.section-search { 
  padding: 2.25rem 0 6rem 0;
  background: var(--light);
}

  .section-search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

    .facetwp-facet-zoekwoord,
    .facetwp-facet-zoekwoord .facetwp-input-wrap {
      width: 100%;
    }

    .facetwp-facet-zoekwoord {
      position: relative;
    }

      .facetwp-facet-zoekwoord .facetwp-search {
        display: block;
        width: 100%;
        font-size: 1.125rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-clip: padding-box;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;      
        border: none;
        border-radius: 3rem;
        padding: 0.85rem 1.5rem;
        width: 100%;
      }

      .facetwp-facet-zoekwoord .facetwp-icon {
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
      }

      .facetwp-facet-zoekwoord .facetwp-icon::before {
        content: '\f002' !important;
        display: flex;
        align-items: center;
        font-family: "Font Awesome 6 Sharp" !important;
        font-size: 1.25rem !important;
        font-weight: 700;        
        width: inherit;
        height: inherit;
        background: none;
        font-style: normal;
        background: none;
        color: var(--secondary);
        line-height: 1;                
      }

    .section-search-form__counter {
      color: var(--dark);
      display: flex;
      gap: .25rem;
      flex-shrink: 0;
    }

    .section-search-form__sort {
      color: var(--dark);
      display: flex;
      gap: .5rem;
      flex-shrink: 0;
    }
  
  .section-search-overzicht .facetwp-template {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }  

      .search-item {
        display: block;
        padding-bottom: 2rem;
        border-bottom: 2px solid #878b9529;
      }

        .search-item__title {
          display: block;
          font-size: 1.25rem;
          font-weight: 700;
          color: var(--primary);
          margin-bottom: .25rem;
        }

        .search-item__permalink {
          color: var(--dark);
          font-size: .85rem;
        }

        .search-item__description {
          color: var(--secondary);
          margin-top: .5rem;
        }

          .search-item__description p:last-of-type {
            margin: 0;
          }

.section-search-pagination {
  margin-top: 3rem;
}

  .facetwp-pager {
    display: flex;
    gap: .25rem;
  }

    .facetwp-pager .facetwp-page {
      display: grid;
      place-items: center;
      min-width: 2.625rem;
      min-height: 2.625rem;
      border-radius: 0.625rem;
      padding: 0 .625rem;
      font-size: 1.125rem;
      color: var(--dark);
      border: 2px solid var(--dark);
    }

    .facetwp-pager .facetwp-page:hover {
      color: var(--secondary);
      border: 2px solid var(--secondary);
    }  

    .facetwp-pager .facetwp-page.active {
      color: var(--white);
      background: var(--dark);
      border: 2px solid var(--dark);
    }


/* -- Vacature --------------------------------*/
.aside-vestiging {
  margin-top: 2rem;
  padding: 2rem;
  border: 2px solid var(--light);
  border-radius: var(--radius-sm);
}

.vestiging__map {
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
}

.aside-contactpersoon {
  padding: 2rem;
  background: var(--light);
  border-radius: var(--radius-sm);
}

.aside-contactpersoon__photo {
  position: relative;
  max-width: 140px;
  margin-top: -6rem;
}

  .aside-contactpersoon__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    border-radius: 100%;
  }

  .aside-contactpersoon__links {
    margin-top: 1rem;
    display: flex;
    gap: .25rem;
  }

  .link-social {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--white);
    color: var(--primary);
    transition: all 0.5s;
  }
  .link-social:hover {
    background: var(--primary);
    color: var(--white);
  }

.share-links {
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.share-links a {
  font-size: 1rem;
  color: var(--dark);
}
.share-links a:hover {
  color: var(--primary);
}

/* -- Footer ----------------------------------*/
.site-footer {
  margin-top: 4rem;
   --cta-background: var(--white);
}

body.error404 .site-footer,
.module-history--swiper ~ .site-footer,
.module-agenda ~ .site-footer,
.site-footer:has(.site-footer__jobalerts) {
  --cta-background: var(--light);
}

.site-footer__jobalerts {
  background: var(--light);
  padding: 5rem 0 3rem 0;
}

.site-footer__cta {
  background: var(--cta-background);
}

.site-footer__cta .tile-cta {
  position: relative;
  margin-bottom: -4rem;
  z-index: 3;
}
.site-footer__newsletter {
  position: relative;
  padding: 8rem 0 3rem 0;
  background: var(--secondary);
}
.site-footer__newsletter .container {
  position: relative;
  z-index: 2;
}
.site-footer__newsletter:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern.svg");
  z-index: 1;
}

.site-footer__contact {
  padding: 8rem 0 4rem 0;
  border-top: 2px solid #323845;
  background: var(--secondary);
}

.site-footer__newsletter ~ .site-footer__contact {
  padding: 4rem 0;
}

.site-footer__main {
  padding: 0 0 4rem 0;
  background: var(--secondary);
}
.site-footer__copyright {
  padding: 2rem 0;
  background: var(--secondary);
}

.newsletter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}

.newsletter__title {
  flex-shrink: 0;
  text-transform: uppercase;
}

.jobalert-form .input-group {
  gap: 0.5rem;
}
.jobalert-form__input {
  height: 100%;
  border: none;
  border-radius: 3rem;
  padding: 0.5rem 1.5rem;
  min-height: 52px;
}
.jobalert-form__button {
  border: none;
  border-radius: 3rem !important;
}

.newsletter-form {
  flex-grow: 1;
  background: var(--white);
  border-radius: 3rem;
}
.newsletter-form .input-group {
  gap: 0.5rem;
}
.newsletter-form__input {
  border: none;
  border-radius: 3rem 0 0 3rem;
  padding: 0.5rem 1.5rem;
}
.newsletter-form__button {
  border: none;
  border-radius: 3rem !important;
}

h2.gform_submission_error {
	font-size: 1.125rem !important;
}

.gform-theme--framework .gfield:where(.gfield--type-multiselect, .gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select, .gfield--input-type-select) .chosen-search input[type="text"]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select, .gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type="hidden"])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn)) > button:not([id*="mceu_"]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"], [type="button"], [type="reset"]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type="submit"], [type="button"], [type="reset"]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input[type="submit"].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
  --gf-local-border-color: rgba(27, 36, 52,.3) !important;
  --gf-local-outline-color: rgba(27, 36, 52,.05) !important;
}

#validation_message_1_3,
#gform_8_validation_container,
#gform_5_validation_container,
#gform_4_validation_container,
#gform_2_validation_container,
#gform_1_validation_container {
  display: none;
}
.newsletter-form .gform-theme--foundation .gform_footer, .newsletter-form .gform-theme--foundation .gform_page_footer {
  margin-block-start: 0 !important;
}

.jobalert-form .gform_fields {
  row-gap: .75rem !important;
}

.gform-theme--orbital input:not([type="checkbox"]) {
  font-size: 1rem !important;
  border-radius: 3rem !important;
  padding: 0.5rem 1.5rem !important;
  box-shadow: none !important;
  min-height: 52px !important;
}

.gform-theme--orbital select {
  font-size: 1rem !important;
  border-radius: 3rem !important;
  padding: 0 1.5rem !important;
  box-shadow: none !important;
  min-height: 52px !important;
}

.gform-theme--orbital input[type="checkbox"] {
  box-shadow: none !important;
}

#gform_submit_button_8,
#gform_submit_button_6,
#gform_submit_button_5,
#gform_submit_button_4,
#gform_submit_button_3,
#gform_submit_button_2,
#gform_submit_button_1 {
  --button-name: var(--primary);
  --button-bcg: var(--primary);
  --button-color: var(--white);
  --button-color-hover: var(--white);
  --button-outline: var(--primary-hover);
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 3rem;
  padding: 0.85rem 1.5rem !important;
  background-color: var(--button-bcg);
  color: var(--button-color);
  transition: ease-out 0.4s;
  box-shadow: inset 0 0 0 0 var(--button-outline);
  min-height: 52px !important;
}

#gform_submit_button_8:after,
#gform_submit_button_6:after,
#gform_submit_button_5:after,
#gform_submit_button_4:after,
#gform_submit_button_3:after,
#gform_submit_button_2:after,
#gform_submit_button_1:after {
  content: "\f0a9";
  font-family: "Font Awesome 6 Sharp" !important;
  font-size: 1rem !important;
  font-weight: 700;
  padding-left: 0.5rem;
}

#gform_3 {  
  --gf-field-pg-prog-bar-bg-color-blue: var(--primary);
}

#gform_3_validation_container {
  display: none;
}

.gform_next_button {
  background: var(--primary) !important;
}

.gform-theme--orbital .ginput_container_fileupload input {
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.gform-theme--framework input[type="file"]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::file-selector-button {
  background-color: var(--white) !important;
}

.gform-theme--framework .gfield_consent_description:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  border: none !important;
  padding: 0 !important;
}

#gform_previous_button_3 {
  border: 2px solid var(--dark);
  background: none;
  color: var(--dark);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
}
.contact-links__link {
  display: flex;
  align-items: center;
}
.contact-links__link strong {
  font-size: 1.125rem;
  color: var(--white);
}

.footer__title {
  margin-bottom: 1.5rem;
}

.footer-vestiging {
  color: rgba(255,255,255,.63);
}
.footer-vestiging a {
  color: inherit;
}
.footer-vestiging a:hover {
  color: var(--white);
}

#map-svg {
  max-width: 80%;
}

.map-path {
  fill: none;
  stroke: #586074;
  stroke-width: 2;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-menu .nav-link {
  font-size: 1.125rem;
  color: rgba(255,255,255,.63);
  transition: color 0.4s;
}
.footer-menu .nav-link:hover {
  color: var(--white);
}

.socialmedia-links {
  display: flex;
  gap: 0.75rem;
}
.socialmedia-links__link {
  display: grid;
  place-items: center;
  width: 2.625rem;
  height: 2.625rem;
  background: rgba(135, 139, 149, 0.4);
  border-radius: 0.625rem;
  font-size: 1.125rem;
  color: var(--white);
  transition: background 0.4s;
}
.socialmedia-links__link:hover {
  background: rgb(135, 139, 149);
}

.copyright-text {
  color: rgba(255,255,255,.63);
}
.copyright-text a {
  color: inherit;
}
.copyright-text a:hover {
  color: rgba(255,255,255,1);
}

.copyright-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem 1.5rem;
}
.copyright-links__link {
  color: rgba(255,255,255,.63);
}
.copyright-links__link:hover {
  color: rgba(255,255,255,1);
}

@media all and (min-width: 576px) {
  .copyright-links {
    flex-direction: row;
  }
}

/* -- Hubspot -----------------------------*/
.module-content {
  --input-background: var(--light);
}
.fancybox__content {
  --input-background: var(--white);
}

.hs-form {
  display: grid;
  gap: 1.5rem;
}

.hs-form fieldset {
  max-width: 100% !important;
} 

.hs-form .hs-input:not([type="checkbox"]) {
  width: 100% !important;
  font-size: 1rem !important;
  border-radius: 3rem !important;
  padding: 0.5rem 1.5rem !important;
  box-shadow: none !important;
  min-height: 52px !important;
  background-color: var(--input-background);
  border: none;
}

.hs-form select.hs-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  
  background-color: #f4f7fa;
  border: none;
  border-radius: 9999px;
  padding: 1rem 3rem 1rem 1.5rem;
  
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23000' stroke-width='2' viewBox='0 0 24 24'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 1rem;
}

.hs-form .hs-input[type="checkbox"]  {
  --bs-form-check-bg: var(--bs-body-bg);
  flex-shrink: 0;
  width: 1.25rem !important;
  height: 1.25rem !important;
  appearance: none;
  background-color: var(--input-background);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: none;
  border-radius: .25rem;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}

.hs-form .hs-input.hs-fieldtype-textarea  {
  border-radius: 1.5rem !important;
  min-height: 150px !important;
}

.hs-form .hs-input[type="checkbox"]:checked  {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.hs-form .hs-input:focus-visible,
.hs-form .hs-input:focus {
  outline: 0 !important;
  box-shadow: 0 0 0 .25rem rgba(13,110,253,.25) !important;
}

.hs-form .hs-input:not([type="checkbox"]).error {
  border-bottom: 2px solid #dc3545;
  border-color: #dc3545;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(.375em + .1875rem) center;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.hs-error-msgs label {
  color: #dc3545;
}

.hs-form .form-columns-2 {
  display: flex;
  gap: 1rem;
}

.hs-form-field > label {
  margin: 0 0 .5rem 1.5rem;
}

.hs-form-field > label span {
  font-weight: 500;
}

.inputs-list {
  list-style: none;
  margin: 0 0 0 1.5rem;
  padding: 0;
}

.inputs-list .hs-form-booleancheckbox label,
.inputs-list .hs-form-checkbox label {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: .5rem;
  align-items: center;
}

.hs-submit .hs-button.primary {
  --button-name: var(--primary);
  --button-bcg: var(--primary);
  --button-color: var(--white);
  --button-color-hover: var(--white);
  --button-outline: var(--primary-hover);
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 3rem;
  padding: 0.85rem 1.5rem !important;
  background-color: var(--button-bcg);
  color: var(--button-color);
  transition: ease-out 0.4s;
  box-shadow: inset 0 0 0 0 var(--button-outline);
  min-height: 52px !important;
} 

.hs-submit .hs-button.primary:after {
  content: "\f0a9";
  font-family: "Font Awesome 6 Sharp" !important;
  font-size: 1rem !important;
  font-weight: 700;
  padding-left: 0.5rem;
}

.hs-richtext {
  max-width: 150ch;
  text-wrap: balance;
}

.fn-date-picker .is-today .pika-button {
  color: var(--secondary) !important;
}

.fn-date-picker .is-selected .pika-button {
  color: var(--white) !important;
  background: var(--secondary) !important;
  box-shadow: inset 0 1px 3px var(--secondary) !important;
}
.fn-date-picker .pika-button:hover {
  background-color: var(--primary) !important;
}


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