@import url("https://use.typekit.net/xuv7hye.css");
:root {
  --font-size: 16px;
  --container-width: 100%;
  --container-gutter: 3rem;
  --black: #000000;
  --white: #ffffff;
  --light: #f0f0f0;
  --primary: #F9EC60; 
  --secondary: #00395d;
  --tertiary: #ed319d;
  --quaternary: #4cd08e;
  --primary-dark: #EFE35A;
  --spacing-sm: clamp(1.65rem, 1.2834rem + 0.7638vw, 2.2rem) 0;
  --spacing-md: clamp(2.2rem, 0.7334rem + 3.0556vw, 4.4rem) 0;
  --spacing-lg: clamp(2.75rem, 0.9167rem + 3.8194vw, 5.5rem) 0;
  --flow-space: 1.25rem;
}

@media (min-width: 576px) {
  :root {
    --container-width: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --container-width: 720px;
    --container-gutter: 6rem;
  }
  
  .row {
    --bs-gutter-x: 3rem;
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-width: 1140px;
/*    --container-gutter: 4rem;*/
  }
}
@media (min-width: 1400px) {
  :root {
    --container-width: 1320px;
/*    --container-gutter: 5rem;*/
  }
  
  .offset-xxl-1 {
    margin-left: 8.33333333% !important;
  }
  
}
@media all and (min-width: 1500px) {
  :root {
    --container-width: 1440px;
/*    --container-gutter: 6rem;*/
  }
}
@media all and (min-width: 1700px) {
  :root {
    --container-width: 1640px;
    --container-gutter: 8rem;
  }
}

html {
  font-size: var(--font-size);
}

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

figure {
  margin: 0;
}

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

body {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--secondary);
  background: var(--primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

#swupContainer > * {
  will-change: transform;
}

/* -- Container ----------------------------*/
.container-fluid {
  --bs-gutter-x: var(--container-gutter);
}

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

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

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

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

.display-1,
.fs-1,
.fs-2,
.fs-3,
.fs-4,
.fs-5,
.fs-6 {
  display: block;
  text-wrap: balance;
}

.display-1 {
  font-size: clamp(3.375rem, 2.2611rem + 3.1157vw, 6rem) !important;
  line-height: 1;
}

.fs-1 {
  font-size: clamp(2.75rem, 2.3257rem + 1.1869vw, 3.75rem) !important;
  line-height: 1;
}

.fs-2 {
  font-size: clamp(2.375rem, 2.2159rem + 0.4451vw, 2.75rem) !important;
  line-height: 1;
}

.fs-3 {
  font-size: clamp(2rem, 1.8409rem + 0.4451vw, 2.375rem) !important;
  line-height: 1.2;
}

.fs-4 {
  font-size: clamp(1.75rem, 1.6439rem + 0.2967vw, 2rem) !important;
  line-height: 1.2;
}

.fs-5 {
  font-size: clamp(1.5rem, 1.3939rem + 0.2967vw, 1.75rem) !important;
  line-height: 1.2;
}

.fs-6 {
  font-size: clamp(1.25rem, 1.1439rem + 0.2967vw, 1.5rem) !important;
  line-height: 1.2;
}

.fs-lead {
  font-size: clamp(1.25rem, 1.1439rem + 0.4451vw, 1.5rem) !important;
  text-wrap: balance;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.content-flow p,
.content-flow ul, 
.content-flow ol {
  font-size: 17px;
}

p:not([class]) {
  line-height: 1.6;
}

strong, b {
  font-weight: 700;
}

/* -- Text ----------------------------------*/
@media all and (min-width: 576px) {
  .text-split {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
/* -- Lists ---------------------------------*/
.fa-ul {
  margin: 0 0 0 1.5rem;
}
.fa-ul li + li {
  margin-top: 0.75rem;
}

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

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

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

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

.button-circle {
  width: 3.75em;
  height: 3.75em;
  display: grid;
  background: var(--button__bcg);
  color: var(--button__color);
  place-items: center;
  border-radius: 100%;
}
.button-circle i {
  font-size: 1.5rem;
}

.button--white {
  --button__color: var(--secondary);
  --button__bcg: var(--white);
}

.button--secondary {
  --button__color: var(--primary);
  --button__bcg: var(--secondary);
}

.button-arrow {
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  text-decoration: none;
  display: inline-flex;
  position: relative;
}

.button-arrow--primary {
  --button-arrow__color: var(--secondary);
  --button-arrow__bcg: var(--primary);
  --button-content__color: var(--white);
  --button-content__bcg: var(--secondary);
}

.button-arrow--secondary {
  --button-arrow__color: var(--secondary);
  --button-arrow__bcg: var(--white);
  --button-content__color: var(--white);
  --button-content__bcg: var(--secondary);
}

.button-arrow--white {
  --button-arrow__color: var(--primary);
  --button-arrow__bcg: var(--secondary);
  --button-content__color: var(--secondary);
  --button-content__bcg: var(--white);
}

.button-arrow--white-primary {
  --button-arrow__color: var(--secondary);
  --button-arrow__bcg: var(--primary);
  --button-content__color: var(--secondary);
  --button-content__bcg: var(--white);
}

.button-arrow__arrow {
  color: var(--button-arrow__color);
  background-color: var(--button-arrow__bcg);
  border-radius: 10em;
  width: 3.75em;
  height: 3.75em;
  display: grid;
  place-items: center;
  position: relative;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform: scale(1) rotate(0.001deg);
  transform-origin: left;
}
.button-arrow__arrow i {
  font-size: 1.125rem;
}

.button-arrow__arrow.is--duplicate {
  position: absolute;
  z-index: 2;
  right: 0;
  transform: scale(0) rotate(0.001deg);
  transform-origin: right;
}

.button-arrow__content {
  color: var(--button-content__color);
  background-color: var(--button-content__bcg);
  border-radius: 10em;
  justify-content: center;
  align-items: center;
  height: 3.75em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: relative;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform: translateX(-0.5em) rotate(0.001deg);
  z-index: 3;
}

.button-arrow__content-text {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  line-height: 1;
}

.button-arrow:hover .button-arrow__content {
  transform: translateX(-3.75em) rotate(0.001deg);
}

.button-arrow:hover .button-arrow__arrow {
  transform: scale(0) rotate(0.001deg);
}

.button-arrow:hover .button-arrow__arrow.is--duplicate {
  transform: scale(1) translateX(-0.5em) rotate(0.001deg);
}

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

/* -- Aspect ratios -------------------------*/
.aspect-1x1 {
  aspect-ratio: 1/1;
}

.aspect-2x1 {
  aspect-ratio: 2/1;
}

.aspect-6x5 {
  aspect-ratio: 6/5;
}

.aspect-1x1 img,
.aspect-2x1 img,
.aspect-6x5 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.animation-wrapper {
  max-width: 540px;
}

/* -- Clipmask ------------------------------*/
.ts-mask {
  clip-path: url(#ts-mask);
  -webkit-clip-path: url(#ts-mask);
  display: block;
  width: 100%;
  height: auto;
}


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

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

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

/* -- Swipers --------------------------------*/
.swiper--cijfers {
  overflow: visible;
}

.swiper--gallery {
  background: var(--black);
}
.swiper--gallery .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-controls {
  position: absolute;
  bottom: 2rem;
  left: 2.35rem;
  display: flex;
  z-index: 10;
  --control-w: 3.375rem;
}
.swiper-controls__prev, .swiper-controls__next {
  position: relative;
  width: var(--control-w);
  height: var(--control-w);
  display: grid;
  place-items: center;
  margin: 0 -0.35rem;
  background: var(--white);
  overflow: hidden;
  border-radius: 50%;
}
.swiper-controls__prev::before, .swiper-controls__prev::after, .swiper-controls__next::before, .swiper-controls__next::after {
  content: attr(data-icon);
  font-family: "Font Awesome 6 Sharp";
  font-weight: 400;
  font-size: 1.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.swiper-controls__prev::before, .swiper-controls__next::before {
  z-index: 2;
}
.swiper-controls__prev::after, .swiper-controls__next::after {
  z-index: 1;
}
.swiper-controls__prev.swiper-controls__prev::after, .swiper-controls__next.swiper-controls__prev::after {
  transform: translate(calc(-50% - var(--control-w)), -50%);
}
.swiper-controls__prev.swiper-controls__prev::before, .swiper-controls__next.swiper-controls__prev::before {
  transform: translate(-50%, -50%);
}
.swiper-controls__prev.swiper-controls__prev:hover::before, .swiper-controls__next.swiper-controls__prev:hover::before {
  transform: translate(calc(-50% + var(--control-w)), -50%);
}
.swiper-controls__prev.swiper-controls__prev:hover::after, .swiper-controls__next.swiper-controls__prev:hover::after {
  transform: translate(-50%, -50%);
}
.swiper-controls__prev.swiper-controls__next::after, .swiper-controls__next.swiper-controls__next::after {
  transform: translate(calc(-50% + var(--control-w)), -50%);
}
.swiper-controls__prev.swiper-controls__next::before, .swiper-controls__next.swiper-controls__next::before {
  transform: translate(-50%, -50%);
}
.swiper-controls__prev.swiper-controls__next:hover::before, .swiper-controls__next.swiper-controls__next:hover::before {
  transform: translate(calc(-50% - var(--control-w)), -50%);
}
.swiper-controls__prev.swiper-controls__next:hover::after, .swiper-controls__next.swiper-controls__next:hover::after {
  transform: translate(-50%, -50%);
}

.swiper-pagination {
  position: relative;
  margin-top: 2rem;
}
.swiper-pagination-bullet {
  width: 34px;
  height: 8px;
  border-radius: 20px;
  background-color: var(--secondary);
}

/* -- Controls -------------------------------*/
.controls {
  position: fixed;
  bottom: clamp(1.5rem, 0.8635rem + 1.7804vw, 3rem);
  right: clamp(1.5rem, 0.8635rem + 1.7804vw, 3rem);
  z-index: 999;
  display: flex;
  gap: 1rem;
}
.controls-pager {
  --control-size: 3.375rem;
  display: flex;
}
.controls-pager__up, .controls-pager__down {
  position: relative;
  width: var(--control-size);
  height: var(--control-size);
  display: grid;
  place-items: center;
  margin: 0 -0.35rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  overflow: hidden;
  font-size: 1.125rem;
}
.controls-pager__up::before, .controls-pager__up::after, .controls-pager__down::before, .controls-pager__down::after {
  content: attr(data-icon);
  font-family: "Font Awesome 6 Sharp";
  font-weight: 400;
  font-size: 1.125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.3s cubic-bezier(0.5, 0.5, 0.3, 1);
}
.controls-pager__up::before, .controls-pager__down::before {
  z-index: 2;
  transform: translate(-50%, -50%);
}
.controls-pager__up::after, .controls-pager__down::after {
  z-index: 1;
}
.controls-pager__up.controls-pager__up::after, .controls-pager__down.controls-pager__up::after {
  transform: translate(-50%, calc(-50% + var(--control-size)));
}
.controls-pager__up.controls-pager__up:hover::before, .controls-pager__down.controls-pager__up:hover::before {
  transform: translate(-50%, calc(-50% - var(--control-size)));
}
.controls-pager__up.controls-pager__up:hover::after, .controls-pager__down.controls-pager__up:hover::after {
  transform: translate(-50%, -50%);
}
.controls-pager__up.controls-pager__down::after, .controls-pager__down.controls-pager__down::after {
  transform: translate(-50%, calc(-50% - var(--control-size)));
}
.controls-pager__up.controls-pager__down:hover::before, .controls-pager__down.controls-pager__down:hover::before {
  transform: translate(-50%, calc(-50% + var(--control-size)));
}
.controls-pager__up.controls-pager__down:hover::after, .controls-pager__down.controls-pager__down:hover::after {
  transform: translate(-50%, -50%);
}
.controls-pager__up i, .controls-pager__down i {
  opacity: 0;
}
.controls-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 3.375em;
  background: var(--white);
  border-radius: 10em;
  padding: 0 1.5rem 0 2rem;
  transition: all 0.5s;
  cursor: pointer;
}
.controls-trigger__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.controls-trigger__menu {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  bottom: calc(100% + 0.5rem);
  right: 0;
}
.controls-trigger__menu .menu__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 3.375em;
  background: var(--white);
  color: var(--secondary);
  border-radius: 10em;
  padding: 0 2rem;
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
}
.controls-trigger__menu .menu__link i {
  font-size: 1.5rem;
}

[data-controls-menu=active] .controls-trigger__menu {
  visibility: visible;
  pointer-events: auto;
}

[data-controls-menu=active] .controls-trigger {
  background: var(--secondary);
  color: var(--primary);
}

.controls-trigger__toggle {
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  pointer-events: auto;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 23.5em;
  display: flex;
  transform: translate(0em, 0em) rotate(0.001deg);
}

[data-controls-menu=active] .controls-trigger__toggle {
  transform: translate(0, 0) rotate(0.001deg);
}

.controls-trigger__toggle-bar {
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  background-color: var(--secondary);
  width: 50%;
  height: 0.125em;
  position: absolute;
  transform: translateY(-0.15em) rotate(0.001deg);
}

.controls-trigger__toggle:hover .controls-trigger__toggle-bar {
  transform: translateY(0.15em) rotate(0.001deg);
}

[data-controls-menu=active] .controls-trigger__toggle .controls-trigger__toggle-bar {
  transform: translateY(0em) rotate(45deg);
  background-color: var(--primary);
}

.controls-trigger__toggle .controls-trigger__toggle-bar:nth-child(2) {
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  transform: translateY(0.15em) rotate(0.001deg);
}

.controls-trigger__toggle:hover .controls-trigger__toggle-bar:nth-child(2) {
  transform: translateY(-0.15em) rotate(0.001deg);
}

[data-controls-menu=active] .controls-trigger__toggle .controls-trigger__toggle-bar:nth-child(2) {
  transform: translateY(0em) rotate(-45deg);
}

/* -- Transition screen ---------------------*/
.transition-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr min-content;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  background: var(--primary);
  pointer-events: none;
  z-index: 888;
  transition: opacity 0.001s ease-in-out !important;
}

/* -- Utility classes -----------------------*/
.mt-n5 {
  position: relative;
  margin-top: -5rem;
}

/* -- Navigation ------------------------------*/
.site-navigation {
  position: relative;
  padding: 2.25rem 0;
  z-index: 999;
}
.site-navigation-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.site-navigation-inner__left {
  display: flex;
  gap: 6rem;
}

.site-navigation__mobile {
  position: relative;
  z-index: 500;
  pointer-events: none;
  inset: 0;
}

.navigation__dark-bg {
  transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
  background-color: #000;
  position: absolute;
  inset: 0;
}

[data-navigation-status=active] .navigation__dark-bg {
  opacity: 0.33;
  visibility: visible;
}

.hamburger-nav {
  border-radius: 1.5em;
  position: absolute;
  top: -1.75rem;
  right: 0;
}

.hamburger-nav__bg {
  transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  background-color: var(--secondary);
  border-radius: 1.75em;
  width: 3.5em;
  height: 3.5em;
  position: absolute;
  top: 0;
  right: 0;
}

[data-navigation-status=active] .hamburger-nav__bg {
  width: 100%;
  height: 100%;
}

.hamburger-nav__group {
  transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1), transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  pointer-events: auto;
  transform-origin: 100% 0;
  flex-flow: column;
  padding: 2.25rem 2.5rem 2rem 2.5rem;
  display: flex;
  position: relative;
  transform: scale(0.15) rotate(0.001deg);
  opacity: 0;
  visibility: hidden;
  min-width: 60vw;
}

[data-navigation-status=active] .hamburger-nav__group {
  transform: scale(1) rotate(0.001deg);
  opacity: 1;
  visibility: visible;
}

.hamburger-nav__menu-p {
  opacity: 0.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
}

.hamburger-nav__ul {
  grid-column-gap: 0.375em;
  grid-row-gap: .5rem;
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  position: relative;
}

.hamburger-nav__li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hamburger-nav__a {
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.hamburger-nav__a[aria-current] {
  color: var(--primary);
}

.hamburger-nav__p {
  white-space: nowrap;
  margin-bottom: 0;
  padding-right: 1.25em;
  font-size: clamp(2.5rem, 1.3281rem + 3.9063vw, 3.75rem);
  line-height: 1;
  text-transform: uppercase;
}

.hamburger-nav__a[aria-current] .hamburger-nav__p {
  font-weight: 800;
}

.hamburger-nav__a[aria-current] .hamburger-nav__p:after {
  content: '\f061';
  font-family: "Font Awesome 6 Sharp";
  display: inline-block;
  font-weight: 300;  
  padding-left: .5rem;
  transform: rotate(45deg);
}

.hamburger-nav__editions {
  border: 1px solid var(--primary);
  padding: 1.125rem 1.5rem;
  border-radius: 2rem;
  margin: 2rem 0;
}

  .hamburger-nav__editions .editions-current {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
  }

  .hamburger-nav__editions .editions-current:after {
    content: '\f063';
    font-family: "Font Awesome 6 Sharp";
    font-weight: 400;
    transition: transform .5s;
  }

  .hamburger-nav__editions .editions-current[aria-expanded="true"]:after {
    transform: rotate(180deg);
  }

  .hamburger-nav__editions .editions-flyout {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.125rem 0;
  }

    .hamburger-nav__editions .editions-flyout__link {
      color: var(--white);
      font-weight: 700;
    }  

    .hamburger-nav__editions .editions-flyout__link:before {
      content: '\f061';
      font-family: "Font Awesome 6 Sharp";
      font-weight: 300;
      padding-right: .5rem;
    }
      
.hamburger-nav__toggle {
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  pointer-events: auto;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0em, 0em) rotate(0.001deg);
}

[data-navigation-status=active] .hamburger-nav__toggle {
  transform: translate(-1em, 1em) rotate(0.001deg);
}

.hamburger-nav__toggle-bar {
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  background-color: var(--primary);
  width: 40%;
  height: 0.125em;
  position: absolute;
  transform: translateY(-0.15em) rotate(0.001deg);
}

.hamburger-nav__toggle:hover .hamburger-nav__toggle-bar {
  transform: translateY(0.15em) rotate(0.001deg);
}

[data-navigation-status=active] .hamburger-nav__toggle .hamburger-nav__toggle-bar {
  transform: translateY(0em) rotate(45deg);
}

.hamburger-nav__toggle .hamburger-nav__toggle-bar:nth-child(2) {
  transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  transform: translateY(0.15em) rotate(0.001deg);
}

.hamburger-nav__toggle:hover .hamburger-nav__toggle-bar:nth-child(2) {
  transform: translateY(-0.15em) rotate(0.001deg);
}

[data-navigation-status=active] .hamburger-nav__toggle .hamburger-nav__toggle-bar:nth-child(2) {
  transform: translateY(0em) rotate(-45deg);
}

.site-navigation__brand {
  display: inline-block;
}

  .site-navigation__brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

.site-navigation__nav,
.site-navigation__editions {
  display: none;
}

@media all and (min-width: 992px) {
  .site-navigation__nav {
    display: inline-flex;
    gap: 2.25rem;
    align-items: center;
  }
  .site-navigation__nav .nav-link {
    font-size: 1rem;
    position: relative;
    display: inline-flex;
    color: var(--secondary);
    text-transform: uppercase;
    align-items: center;
    font-weight: 700;
    padding: 0;
  }
  .site-navigation__nav .nav-link:before {
    content: "";
    position: absolute;
    bottom: 0em;
    left: 0;
    width: 100%;
    height: 0.1em;
    background: currentColor;
    transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
  }
  .site-navigation__nav .nav-link.active:before,
  .site-navigation__nav .nav-link:hover:before {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
  }
  .site-navigation__mobile {
    display: none;
    pointer-events: none;
  }
  .site-navigation__editions {
    display: inline-flex;
    position: relative;
  }
  .site-navigation__editions .editions-current {
    position: relative;
    color: var(--secondary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 3.375rem;
    padding: 0 1.75rem;
    border-radius: 10em;
    background: var(--primary);
    border: 2px solid var(--secondary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
    transition: all 0.35s;
    cursor: pointer;
  }
  .site-navigation__editions .editions-flyout {
    position: absolute;
    background: #fff;
    border-radius: 10em 0 0 10em;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    height: 3.375rem;
    padding: 0 2.75rem 0 1rem;
    right: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
  }
  .site-navigation__editions .editions-flyout__link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 0.5rem 0.85rem;
    border-radius: 3rem;
    transition: background 0.35s;
  }
  .site-navigation__editions .editions-flyout__link:hover {
    background: var(--light);
  }
  .site-navigation__editions.is-active .editions-current {
    color: var(--primary);
    background: var(--secondary);
  }
}
/* -- Tiles ---------------------------------*/
.tile-cijfer {
  display: grid;
  gap: clamp(1.5rem, 0.4392rem + 2.9674vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(max(300px, 34%), 1fr));
  align-items: center;
  padding: clamp(1.5rem, 0.8635rem + 1.7804vw, 3rem) clamp(1.5rem, -0.4095rem + 5.3412vw, 6rem);
  background: var(--white);
}

/* -- Module-introductie ---------------*/
.module {
  padding: var(--spacing-md);
}

.module-media {
  position: relative;
}

.module-media__popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 1.727rem + 3.5608vw, 6rem);
  color: var(--primary);
  z-index: 3;
}

.module-media__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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;
}

.module-content__meta {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--module-box__body, var(--secondary));
  text-transform: uppercase;
  letter-spacing: 0.125em;
}

.module-content__title {
  margin-block-start: 0;
  font-weight: 800;
  color: var(--module-box__title, var(--secondary));
}

.module-box {
  padding: 3rem 1.5rem;
  background: var(--module-box__bcg);
  color: var(--module-box__body);
}
.module-box--white {
  --module-box__bcg: var(--white);
  --module-box__title: var(--secondary);
  --module-box__body: var(--secondary);
}
.module-box--secondary {
  --module-box__bcg: var(--secondary);
  --module-box__title: var(--primary);
  --module-box__body: var(--white);
}

/* -- Module-no3 ------------------------*/
.module-grid--3 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content;
  grid-template-areas: "media" "content";
  gap: 0 0;
  align-items: center;
}
.module-grid--3 .module-grid__media {
  grid-area: media;
}
.module-grid--3 .module-grid__media .module-media {
  clip-path: url(#ts-mask);
  -webkit-clip-path: url(#ts-mask);
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  z-index: 2;
}
.module-grid--3 .module-grid__content {
  grid-area: content;
  z-index: 3;
}

/* -- Module-no4 ------------------------*/
.module-grid--4 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content;
  grid-template-areas: "media" "content";
  gap: 0 0;
  align-items: center;
}
.module-grid--4 .module-grid__media {
  grid-area: media;
}
.module-grid--4 .module-grid__media .module-media {
  clip-path: url(#ts-mask);
  -webkit-clip-path: url(#ts-mask);
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  z-index: 2;
}
.module-grid--4 .module-grid__content {
  grid-area: content;
  z-index: 3;
}

/* -- Module-no6 ------------------------*/
.module-no6 {
  position: relative;
}
.module-no6 .module-background {
  display: none;
}

/* -- Module-no9 ------------------------*/
.module-no9 {
  position: relative;
  overflow: hidden;
}
.module-no9 .swiper--extend {
  overflow: visible;
}

/* -- Module-no10 -----------------------*/
.module-no10 {
  position: relative;
  overflow: hidden;
}
.module-no10 .swiper--extend {
  overflow: visible;
}

/* -- Module-gallery --------------------*/
.module-gallery {
  padding: clamp(2.75rem, 0.9167rem + 3.8194vw, 5.5rem) 0 0 0;
}

@media all and (min-width: 992px) {
  .module-box {
    padding: calc(5% + 3rem) calc(10% + 3rem);
  }
  .module-no6 {
    padding: var(--spacing-lg);
  }
  .module-no6 .module-box {
    clip-path: url(#ts-mask);
    -webkit-clip-path: url(#ts-mask);
    display: block;
    width: 100%;
    height: auto;
  }
  .module-no6 .module-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
  }
  .module-no6 .module-background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .module-no10 .swiper--extend {
    direction: rtl;
  }
  .module-no10 .swiper--extend .swiper-controls {
    flex-direction: row-reverse;
    left: auto;
    right: 2.35rem;
  }
}

@media all and (min-width: 1025px) {
  .module-grid--3 {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    grid-template-areas: none;
  }
  .module-grid--3 .module-grid__content {
    grid-area: 1/1/2/8;
  }
  .module-grid--3 .module-grid__content .module-box {
    clip-path: url(#ts-mask);
    -webkit-clip-path: url(#ts-mask);
    display: block;
    width: 100%;
    height: auto;
  }
  .module-grid--3 .module-grid__media {
    grid-area: 1/7/2/13;
  }
  .module-grid--3 .module-grid__media .module-media {
    -webkit-clip-path: none;
            clip-path: none;
  }
  .module-grid--4 {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
    grid-template-areas: none;
  }
  .module-grid--4 .module-grid__content {
    grid-area: 1/6/2/13;
  }
  .module-grid--4 .module-grid__content .module-box {
    clip-path: url(#ts-mask);
    -webkit-clip-path: url(#ts-mask);
    display: block;
    width: 100%;
    height: auto;
  }
  .module-grid--4 .module-grid__media {
    grid-area: 1/1/2/8;
  }
  .module-grid--4 .module-grid__media .module-media {
    -webkit-clip-path: none;
            clip-path: none;
  }
}

@media all and (min-width: 1200px) {
  .module-no9:before,
  .module-no10:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(41.666vw + 0.5rem);
    background: var(--primary);
    z-index: 2;
  }
  .module-no9 .module-content,
  .module-no10 .module-content {
    position: relative;
    z-index: 3;
  }
  .module-no9 .swiper--extend,
  .module-no10 .swiper--extend {
    z-index: 1;
  }
  .module-no10:before {
    top: 0;
    left: auto;
    right: 0;
  }
}
/* -- Section start -------------------------*/
.section-start {
  padding: var(--spacing-lg);
}
.section-start.has--element {
  position: relative;
}
.section-start.has--element::before {
  content: "";
  position: absolute;
  width: 10vw;
  height: 5%;
  background: var(--secondary);
  top: 12.5%;
  right: 0;
  transform: translateY(-100%);
  max-height: 2.813rem;
  max-width: 5.625rem;
}

.section-content__meta {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.125em;
}

.section-content__title {
  display: flex;
  align-items: center;
  font-weight: 800;
  text-transform: uppercase;
  margin-block-start: -.5rem; 
}
.section-content__title i {
  font-size: 1.125em;
  rotate: 45deg;
}

.quicklinks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quicklinks__link {
  font-size: clamp(1.25rem, 1.1439rem + 0.4451vw, 1.5rem);
  color: var(--secondary);
}
.quicklinks__link i {
  transition: all 0.35s;
}
.quicklinks__link:hover i {
  rotate: 45deg;
}

/* -- Section themas ------------------------*/
.thema-wrapper .thema {
  display: flex;
  gap: 1.25rem;
  flex: 1;
  transition: flex 0.5s ease;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  padding: clamp(2.2rem, 0.7334rem + 3.0556vw, 4.4rem);
  background: var(--thema-background);
}

.thema-arrow,
.thema-heading,
.thema-content {
  position: relative;
  z-index: 2;
}
.thema__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.thema__background.on-active {
  opacity: 0;
  transition: opacity .5s;
}

.thema.active .thema__background.on-active {
  opacity: .4;
}

.thema-wrapper .thema.active {
  flex: 3;
}
.thema-wrapper .thema.active .thema-content {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
  transition-delay: 0.5s;
  height: 100%;
}
.thema-wrapper .thema.active .thema-heading__title {
  color: var(--thema-title-color);
  transition: color 0.35s;
}
.thema-wrapper .thema .thema-arrow {
  margin-top: 1.5rem;
}
.thema-wrapper .thema .thema-arrow__icon {
  font-size: clamp(5rem, 3.6209rem + 3.8576vw, 8.25rem);
  line-height: 1;
  transition: all 0.5s;
  color: var(--thema-title-color);
}
.thema-wrapper .thema .thema-heading {
  margin-bottom: 1.25rem;
}
.thema-wrapper .thema .thema-heading__meta {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--thema-meta-color);
  text-transform: uppercase;
  letter-spacing: 0.125em;
}
.thema-wrapper .thema .thema-heading__title {
  display: flex;
  font-size: clamp(5rem, 3.6209rem + 3.8576vw, 8.25rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--thema-title-color);
}
.thema-wrapper .thema .thema-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
.thema-wrapper .thema .thema-content p {
  text-wrap: balance;
  color: var(--thema-text-color);
}
.thema-wrapper .thema:hover .thema-arrow__icon {
  rotate: 45deg;
}

.thema:nth-child(1) {
  --thema-meta-color: var(--primary);
  --thema-title-color: var(--white);
  --thema-text-color: var(--primary);
  --thema-background: var(--secondary);
}

.thema:nth-child(2) {
  --thema-meta-color: var(--secondary);
  --thema-title-color: var(--secondary);
  --thema-text-color: var(--secondary);
  --thema-background: var(--primary);
}

.thema:nth-child(3) {
  --thema-meta-color: var(--primary);
  --thema-title-color: var(--primary);
  --thema-text-color: var(--primary);
  --thema-background: #222;
}

@media all and (min-width: 1200px) {
  .thema-wrapper {
    display: flex;
    width: 100%;
    height: 50vh;
    min-height: 540px;
    overflow: hidden;
  }
  .thema-wrapper .thema {
    gap: 2rem;
  }
  .thema-wrapper .thema-heading {
    margin-bottom: 2rem;
  }
  .thema-wrapper .thema-content {
    max-width: 70%;
  }
}
/* -- Section introductie -------------------*/
.section-introductie {
  position: relative;
  padding: var(--spacing-md);
}
.section-introductie::before {
  content: "";
  position: absolute;
  width: 10vw;
  height: 5%;
  background: var(--secondary);
  top: 12.5%;
  right: 0;
  transform: translateY(-100%);
  max-height: 2.813rem;
  max-width: 5.625rem;
}

/* -- Section cijfers -----------------------*/
.section-cijfers {
  overflow: hidden;
}

/* -- Section artikelen ---------------------*/
.section-artikelen-lijst {
  padding: var(--spacing-lg);
}

.articlelinks__link {
  display: inline-block;
  width: 100%;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 1.1439rem + 0.2967vw, 1.5rem);
  line-height: 1.2;
  color: var(--secondary);
}
.articlelinks__link:before {
  content: attr(data-article-number);
  position: absolute;
  left: 0;
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .articlelinks {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    -moz-column-fill: balance;
         column-fill: balance;
  }
  .articlelinks__link {
    position: relative;
    display: inline-block;
    width: 100%;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: clamp(1.25rem, 1.1439rem + 0.2967vw, 1.5rem);
    line-height: 1.2;
    color: var(--secondary);
  }
  .articlelinks__link:before {
    content: attr(data-article-number);
    position: absolute;
    left: 0;
    font-weight: 700;
  }
}
/* -- Footer ----------------------------------*/
.site-footer {
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  width: 10vw;
  height: 5%;
  background: var(--secondary);
  top: 12.5%;
  left: 0;
  transform: translateY(-100%);
  max-height: 2.813rem;
  max-width: 5.625rem;
}
.site-footer__top {
  padding: 12rem 0 2.5rem 0;
}

.site-footer__top .fs-1 p {
  line-height: 1;
}

.site-footer__middle {
  padding: 2.5rem 0;
}
.site-footer__middle p {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
}
.site-footer__middle p a {
  font-weight: 700;
}
.site-footer__bottom {
  padding: 1rem 0;
  background: var(--primary-dark);
}
.site-footer__bottom span {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(0, 57, 93, 0.3);
}
.site-footer__bottom span a {
  color: rgba(0, 57, 93, 0.3);
}

@media all and (min-width: 992px) {
  .site-footer::before {
    top: 25%;
  }
}/*# sourceMappingURL=stylesheet.css.map */