/*!***********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./css/header/header.scss ***!
  \***********************************************************************************************************************************************************/
.gin-secondary-toolbar {
  display: none;
}

.gin-secondary-toolbar {
  display: none;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.header {
  background: var(--white);
  isolation: isolate;
  position: sticky;
  padding: 0 !important;
  top: 0;
  z-index: 10;
  box-shadow: 0 0 10px rgba(var(--black), 0.16);
}
body.gin--horizontal-toolbar .header {
  top: var(--gin-toolbar-height);
}
.header--scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header--scrolled.header--down .header__row--top {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin-top: -10px;
}
.header--scrolled.header--up .header__row--top {
  opacity: 1;
  visibility: visible;
  max-height: 100px;
  margin-top: 0;
}
.header__row {
  display: flex;
  justify-content: center;
}
.header__row--top {
  width: 100%;
  background-color: var(--primary-color);
  display: none;
  justify-content: unset;
  border-bottom: 1px solid var(--primary-color);
  transition: ease 300ms;
  height: 48px;
}
@media (min-width: 75em) {
  .header__row--top {
    display: flex;
    flex-direction: row;
  }
}
.header__row--bottom {
  height: 80px;
}
@media (min-width: 75em) {
  .header__row--bottom {
    height: 92px;
  }
}
.header__topbar {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-left: calc((100vw - 11 * clamp(16px, 2vw, 48px)) / 12 + clamp(16px, 2vw, 48px));
  color: var(--white);
}
.header__topbar--mobile {
  display: flex;
  flex-direction: column;
  padding: 2.4rem;
}
@media (min-width: 75em) {
  .header__topbar--mobile {
    display: none;
  }
}
.header__container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: clamp(16px, 2vw, 48px);
  padding-right: clamp(16px, 2vw, 48px);
  width: 100%;
}
@media (min-width: 48em) {
  .header__container {
    padding-left: calc((100vw - 11 * clamp(16px, 2vw, 48px)) / 12 + clamp(16px, 2vw, 48px));
    padding-right: calc((100vw - 11 * clamp(16px, 2vw, 48px)) / 12 + clamp(16px, 2vw, 48px));
  }
}
.header__logo {
  max-height: 76px;
  max-width: clamp(164px, 9.1111111111em + 86 * (100vw - 360px) / 2040, 250px);
  transition: max-width 300ms ease;
}
.header__logo img {
  height: 100%;
  width: 100%;
}
@media (min-width: 75em) {
  .header__menu {
    margin-left: auto;
  }
}
.header__language-switcher {
  display: flex;
  margin-left: auto;
  margin-right: 16px;
}
@media (min-width: 75em) {
  .header__language-switcher {
    align-items: center;
  }
}
.header__language-switcher .dropbutton-wrapper,
.header__language-switcher .dropbutton-widget {
  display: contents;
}
@media (min-width: 75em) {
  .header__actions {
    display: none;
  }
}

.lang-switcher {
  position: relative;
}
.lang-switcher__trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 7px 10px 7px 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  transition: border-color 200ms ease, background 200ms ease;
}
.lang-switcher__trigger:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.05);
}
.lang-switcher__flag {
  display: block;
  width: 20px;
  height: 14px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.lang-switcher__code {
  letter-spacing: 0.05em;
}
.lang-switcher__chevron {
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(135deg) translate(1px, -1px);
  margin-left: 2px;
  transition: transform 220ms ease;
  opacity: 0.5;
}
.lang-switcher__list {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 0ms linear 220ms;
  z-index: 100;
}
.lang-switcher__item {
  border-radius: 6px;
}
.lang-switcher__item .language-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: color 150ms ease, background 150ms ease;
}
.lang-switcher__item .language-link::before {
  content: "";
  display: block;
  width: 20px;
  height: 14px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
.lang-switcher__item .language-link[hreflang=nl]::before {
  background-image: url("https://flagcdn.com/w40/nl.png");
}
.lang-switcher__item .language-link[hreflang=en]::before {
  background-image: url("https://flagcdn.com/w40/gb.png");
}
.lang-switcher__item .language-link[hreflang=de]::before {
  background-image: url("https://flagcdn.com/w40/de.png");
}
.lang-switcher__item .language-link[hreflang=fr]::before {
  background-image: url("https://flagcdn.com/w40/fr.png");
}
.lang-switcher__item .language-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.lang-switcher:hover .lang-switcher__list, .lang-switcher:focus-within .lang-switcher__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}
.lang-switcher:hover .lang-switcher__chevron, .lang-switcher:focus-within .lang-switcher__chevron {
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0.8;
}

.lang-switcher__flag[data-lang=nl] {
  background-image: url("https://flagcdn.com/w40/nl.png");
}

.lang-switcher__flag[data-lang=en] {
  background-image: url("https://flagcdn.com/w40/gb.png");
}

.lang-switcher__flag[data-lang=de] {
  background-image: url("https://flagcdn.com/w40/de.png");
}

.lang-switcher__flag[data-lang=fr] {
  background-image: url("https://flagcdn.com/w40/fr.png");
}

/*# sourceMappingURL=header.min.css.map*/