@charset "UTF-8";
html {
  max-width: 100vw;
  overflow-x: hidden;
}

/* VARIABELEN */
:root {
  --color-white: #FFFFFF;
  --color-dark: #1A1200;
  --color-gold: #DCB96C;
  --color-gold-dark: #C79524;
  --color-sand: #D9CEB1;
  --color-beige: #DBD7D2;
  --color-grey: #91917D;
  --font-poltawski: "Poltawski Nowy", serif;
  --font-pt-sans: "PT Sans", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --wrapper-width: 1270;
  --wrapper-small-width: 1110;
  --wrapper-extra-small-width: 730;
  --overflow-margin: 70;
}

/* GLOBAAL EN EERSTE DEFINIËRING */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  appearance: none;
}

/* ::placeholder {
    color: rgba(255, 255, 255, 0.45);
    opacity: 1;
}
::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.45);
} */
/* ALGEMENE STIJLING */
body {
  position: relative;
  font-family: var(--font-pt-sans);
  color: var(--color-dark);
  /* min-height: 100dvh; */
}

.wrapper {
  margin: 0 auto;
  width: calc(100% - 40px);
  max-width: calc(var(--wrapper-width) * 1px);
}

.wrapper-small {
  margin: 0 auto;
  width: calc(100% - 150px);
  max-width: calc(var(--wrapper-small-width) * 1px);
}

.wrapper-extra-small {
  margin: 0 auto;
  width: calc(100% - 150px);
  max-width: calc(var(--wrapper-extra-small-width) * 1px);
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 25px;
  font-family: var(--font-poltawski);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  transition: 450ms;
}

.button.button-primary {
  background-color: var(--color-gold);
  color: var(--color-dark);
}

.button.button-primary:hover {
  background-color: var(--color-sand);
}

.button-icon {
  gap: 13px;
  padding: 0 25px 0 20px;
}

.button-icon svg {
  height: 14px;
}

.button-icon span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background-color: var(--color-white);
  transform: translateX(-7px) translateY(2px);
}

.button-alt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-pt-sans);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 20px;
}

.button-alt > span:first-of-type {
  position: relative;
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: transparent;
  transition: 350ms;
}

.button-alt > span:first-of-type::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gold);
  border-radius: 50%;
  z-index: 1;
  transition: 350ms ease;
}

.button-alt:hover > span:first-of-type::after {
  transform: scale(1.2);
  background-color: var(--color-gold-dark);
}

.button-alt > span:first-of-type svg {
  position: relative;
  z-index: 2;
}

.button-alt > span:last-of-type {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: 350ms ease;
}

.button-alt:hover > span:last-of-type {
  transform: translateX(5px);
}

.link-group {
  gap: 1em;
  justify-content: center;
  font-size: 3em;
  display: flex;
}

.bg-white {
  background: white;
}

.underline-link {
  color: inherit;
  font-size: 1em;
  line-height: 1.25;
  color: var(--color-gold-dark);
}

[data-underline-link] {
  text-decoration: none;
  position: relative;
}

[data-underline-link]::before,
[data-underline-link=alt]::before,
[data-underline-link=alt]::after {
  content: "";
  position: absolute;
  bottom: -0.0625em;
  left: 0;
  width: 100%;
  height: 0.0625em;
  background-color: currentColor;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}

[data-underline-link=alt]::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
  transition-delay: 0.3s;
}

[data-underline-link=alt]::after {
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
  transition-delay: 0s;
}

@media (hover: hover) and (pointer: fine) {
  [data-hover]:hover [data-underline-link]::before,
  [data-underline-link]:hover::before {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
  }
  [data-hover]:hover [data-underline-link=alt]::before,
  [data-underline-link=alt]:hover::before {
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
    transition-delay: 0s;
  }
  [data-hover]:hover [data-underline-link=alt]::after,
  [data-underline-link=alt]:hover::after {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
    transition-delay: 0.3s;
  }
}
h1,
.title-large {
  font-family: var(--font-poltawski);
  font-size: 54px;
  font-weight: 400;
}

.subtitle {
  color: var(--color-grey);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 400;
}

.title {
  color: var(--color-dark);
  font-family: var(--font-poltawski);
  font-size: 40px;
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 20px;
}

.title-alt {
  color: var(--color-dark);
  font-family: var(--font-poltawski);
  font-size: 30px;
  font-weight: 500;
}

.title-alt-medium {
  font-size: 24px;
}

.title-alt-small {
  font-size: 20px;
}

.title-alt-smallest {
  font-size: 17px;
}

.text {
  font-size: 20px;
  line-height: 1.7em;
}

.text-larger {
  font-size: 23px;
  line-height: 1.7em;
}

.text-footer {
  display: block;
  font-style: italic;
  margin-top: 30px;
}

.list {
  list-style: none;
  appearance: none;
  padding: 0;
  margin: 35px 0 0 0;
  font-size: 20px;
  line-height: 1.7em;
  text-align: center;
}

.list h4 {
  font-weight: 600;
}

.list > li > span {
  color: var(--color-sand);
}

.bg-beige .list > li > span {
  color: var(--color-white);
}

.bg-gradient {
  background-image: linear-gradient(0deg, rgb(178, 190, 181) 0%, rgb(26, 18, 0) 50%);
  background-size: cover;
}

.text-left,
.text-left * {
  text-align: left !important;
}

.last-item {
  padding-bottom: calc(var(--overflow-margin) * 5px) !important;
}

/* HEADER -------------------------------------------------------------------------------------------------------------------------- */
.bold-nav-full {
  z-index: 100;
  pointer-events: none;
  position: fixed;
  inset: 0;
  margin-top: 25px;
}

.bold-nav-full__bar {
  z-index: 1;
  justify-content: space-between;
  width: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}

.bold-nav-full__logo {
  pointer-events: auto;
  color: var(--color-white);
  justify-content: center;
  align-items: center;
  width: 120px;
  display: flex;
  transition: 450ms;
}

.scrolled .bold-nav-full__logo {
  opacity: 0;
}

.bold-nav-full__logo svg {
  width: 100%;
}

.logo-line {
  height: 1px;
  background-color: var(--color-sand);
  width: 0%;
  transform: translateX(-1px) translateY(-1px);
  margin-right: 35px;
  transition: width 5s cubic-bezier(0.17, 0.67, 1, 0.32);
}

@media screen and (min-width: 768px) {
  body.admin-bar .bold-nav-full_buttons {
    top: 88px !important;
  }
}
.bold-nav-full_buttons {
  display: flex;
  position: fixed;
  top: 56px;
  right: calc((100dvw - var(--wrapper-width) * 1px) / 2);
}

.bold-nav-full_buttons a:nth-of-type(1) {
  z-index: 2;
  transition: 450ms ease;
}

.scrolled .bold-nav-full_buttons a:nth-of-type(1) {
  transform: translateX(-137px);
  border-radius: 20px 0 0 20px;
}

.bold-nav-full_buttons a:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 20px 20px 0;
  padding: 0 25px 0 20px;
  z-index: 1;
}

.bold-nav-full__hamburger {
  pointer-events: auto;
  color: var(--color-dark);
  cursor: pointer;
  background-color: var(--color-white);
  border: 1px solid var(--color-beige);
  justify-content: center;
  align-items: center;
  width: 70px;
  padding-left: 12px;
  height: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar {
  background-color: currentColor;
  width: 1.5em;
  height: 0.115em;
  position: absolute;
  transform: translate(0, 0) rotate(0.001deg);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translate(0, -0.45em) scale(1, 1) rotate(0.001deg);
}

.bold-nav-full__hamburger .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translate(0, 0.45em) scale(1, 1) rotate(0.001deg);
}

/* Hamburger - Hover */
.bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translate(0, -0.45em) scale(0.5, 1) rotate(0.001deg);
}

.bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translate(0, 0.45em) scale(0.5, 1) rotate(0.001deg);
}

/* Hamburger (Navigation Open) */
[data-navigation-status=active] .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translate(0, 0) rotate(45deg) scale(1, 1);
}

[data-navigation-status=active] .bold-nav-full__hamburger-bar:nth-child(2) {
  transform: translate(-250%, 0) rotate(0.001deg) scale(1, 1);
}

[data-navigation-status=active] .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translate(0, 0) rotate(-45deg) scale(1, 1);
}

/*  Hamburger - Hover (Navigation Open)  */
[data-navigation-status=active] .bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(1) {
  transform: translate(0, 0) rotate(45deg) scale(0.7, 1);
}

[data-navigation-status=active] .bold-nav-full__hamburger:hover .bold-nav-full__hamburger-bar:nth-child(3) {
  transform: translate(0, 0) rotate(-45deg) scale(0.7, 1);
}

.bold-nav-full__tile {
  pointer-events: auto;
  background-image: linear-gradient(0deg, rgb(178, 190, 181) 0%, rgb(26, 18, 0) 85%);
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  transition: clip-path 1s cubic-bezier(0.9, 0, 0.1, 1);
  clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

[data-navigation-status=active] .bold-nav-full__tile {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.bold-nav-full__ul {
  flex-flow: column;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
}

.bold-nav-full__li {
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.bold-nav-full__link {
  color: var(--color-white);
  padding-left: 0.075em;
  padding-right: 0.075em;
  font-family: var(--font-pt-sans);
  font-size: 50px;
  font-weight: 500;
  text-decoration: none;
  transform: translateY(100%) rotate(5deg);
  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1);
  white-space: nowrap;
}

.bold-nav-full__link.is--current {
  color: var(--color-gold);
}

.bold-nav-full__li:nth-child(1) .bold-nav-full__link {
  transition-delay: 0.2s;
}

.bold-nav-full__li:nth-child(2) .bold-nav-full__link {
  transition-delay: 0.15s;
}

.bold-nav-full__li:nth-child(3) .bold-nav-full__link {
  transition-delay: 0.1s;
}

.bold-nav-full__li:nth-child(4) .bold-nav-full__link {
  transition-delay: 0.05s;
}

.bold-nav-full__li:nth-child(5) .bold-nav-full__link {
  transition-delay: 0s;
}

/* Tile - Links (Navigation Open) */
[data-navigation-status=active] .bold-nav-full__link {
  transform: translateY(0%) rotate(0.001deg);
  transition-delay: 0.3s;
}

[data-navigation-status=active] .bold-nav-full__li:nth-child(1) .bold-nav-full__link {
  transition-delay: 0.3s;
}

[data-navigation-status=active] .bold-nav-full__li:nth-child(2) .bold-nav-full__link {
  transition-delay: 0.35s;
}

[data-navigation-status=active] .bold-nav-full__li:nth-child(3) .bold-nav-full__link {
  transition-delay: 0.4s;
}

[data-navigation-status=active] .bold-nav-full__li:nth-child(4) .bold-nav-full__link {
  transition-delay: 0.45s;
}

[data-navigation-status=active] .bold-nav-full__li:nth-child(5) .bold-nav-full__link {
  transition-delay: 0.5s;
}

.bold-nav-full__link-text {
  text-shadow: 0 1.1em 0;
  display: block;
  position: relative;
}

/* Tile - Links (Hover) */
.bold-nav-full__li {
  transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.bold-nav-full__ul:has(.bold-nav-full__li:hover) .bold-nav-full__li {
  opacity: 0.15;
}

.bold-nav-full__ul:has(.bold-nav-full__li:hover) .bold-nav-full__li:hover {
  opacity: 1;
}

/* Tile - Links (Hover) */
.bold-nav-full__link .bold-nav-full__link-text {
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  transform: translateY(0%) rotate(0.001deg);
}

.bold-nav-full__link:hover .bold-nav-full__link-text {
  transform: translateY(-100%) rotate(0.001deg);
}

/* ------------- Desktop Nav (always visible) ------------- */
@media (min-width: 768px) {
  .bold-nav-full {
    position: relative;
    inset: auto;
    height: auto;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
    margin-top: 45px;
    margin-bottom: -110px;
  }
  .bold-nav-full .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .bold-nav-full__logo {
    pointer-events: auto;
    color: var(--color-white);
    justify-content: center;
    align-items: center;
    width: 190px;
    display: flex;
  }
  .scrolled .bold-nav-full__logo {
    opacity: 1;
  }
  .bold-nav-full__bar {
    position: static;
    padding: 0;
    width: auto;
    display: flex;
    align-items: center;
    gap: 2em;
  }
  .bold-nav-full__hamburger {
    display: none;
  }
  .bold-nav-full__tile {
    position: static;
    pointer-events: auto;
    background-color: transparent;
    height: auto;
    clip-path: none;
    transition: none;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    gap: 2em;
    padding-right: 200px;
    background-image: none;
  }
  .bold-nav-full__ul {
    flex-direction: row;
    align-items: center;
    gap: 2em;
  }
  .bold-nav-full__li {
    overflow: visible;
  }
  .bold-nav-full__link {
    transform: none;
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.2;
    text-shadow: none;
    transition: color 0.3s ease;
    transition-delay: 0s !important;
  }
  .bold-nav-full__link .bold-nav-full__link-text {
    transform: none;
    text-shadow: none;
  }
  .bold-nav-full__link:hover {
    color: var(--color-gold);
  }
  .bold-nav-full__link:hover .bold-nav-full__link-text {
    transform: none;
  }
}
/* NOTIFICATION -------------------------------------------------------------------------------------------------------------------------- */
.global-notification {
  position: fixed;
  left: 50%;
  bottom: 35px;
  padding: 17px 75px 17px 40px;
  background-color: var(--color-gold);
  color: var(--color-dark);
  font-size: 20px;
  border-radius: 30px;
  transform: translateX(-50%) translateY(0) scale(1);
  transition: 2s ease;
  animation: 2s show-notification ease forwards;
  z-index: 100;
}

.global-notification.dismissed {
  transform: translateX(-50%) translateY(200px) scale(0.75);
  animation: 2s hide-notification ease forwards;
}

.global-notification button {
  position: absolute;
  display: grid;
  place-items: center;
  top: 10px;
  right: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.global-notification button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  border-radius: 50%;
  z-index: -1;
  transition: 350ms ease;
}

.global-notification button:hover::after {
  transform: scale(1.2);
}

.global-notification button svg path {
  fill: var(--color-gold);
  transition: 250ms ease;
}

.global-notification button:hover svg path {
  fill: var(--color-dark);
}

@keyframes show-notification {
  0%, 25% {
    transform: translateX(-50%) translateY(200px) scale(0.75);
  }
  65% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
@keyframes hide-notification {
  0% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
  45% {
    transform: translateX(-50%) translateY(200px) scale(0.75);
  }
}
/* HERO -------------------------------------------------------------------------------------------------------------------------- */
.hero {
  padding: 175px 0 calc(75px + var(--overflow-margin) * 1px) 0;
  background-image: linear-gradient(0deg, rgb(178, 190, 181) 0%, rgb(26, 18, 0) 50%);
  background-size: cover;
  text-align: center;
}

.hero h1 {
  color: var(--color-white);
  z-index: 5;
  position: relative;
}

.hero .text-content {
  margin: 80px auto 0 auto;
  color: var(--color-white);
  font-family: var(--font-pt-sans);
}

.hero .text-content span:first-of-type {
  font-size: 150px;
  line-height: 100%;
  color: var(--color-sand);
}

.hero .text-content p {
  font-family: var(--font-poltawski);
  font-size: 28px;
  margin-top: -80px;
  margin-bottom: 20px;
  font-style: italic;
}

.hero .text-content span:last-of-type {
  font-size: 16px;
  line-height: 100%;
  color: var(--color-sand);
}

.slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 250px;
  display: grid;
  place-items: center;
  padding: 0 200px;
  text-align: center;
}

.slides {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slides::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(26, 18, 0, 0.75) 0%, rgba(33, 23, 0, 0) 100%);
  z-index: 4;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s ease-in-out;
  transform: rotate(-5deg) scale(1.2);
}

.slide.current {
  opacity: 1;
  z-index: 2;
  transform: rotate(0deg) scale(1);
}

.slider__indicators {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-family: var(--font-montserrat);
  letter-spacing: 0.1em;
  font-weight: 400;
  z-index: 5;
}

.slider__indicators__current,
.slider__indicators__next {
  font-size: 12px;
  width: 2ch;
  text-align: center;
}

.slider__indicators__progress {
  position: relative;
  width: 110px;
  height: 1px;
  background: rgba(151, 151, 151, 0.3);
  overflow: hidden;
}

.slider__indicators__progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  animation: progress 5s linear infinite;
}

@keyframes progress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/* CONTENT -------------------------------------------------------------------------------------------------------------------------- */
.content {
  position: relative;
}

.content:not(.content-center) {
  margin-top: calc(var(--overflow-margin) * -1px);
  padding-bottom: calc(var(--overflow-margin) * 2px);
}

.content.content-left-right:not(:has(~ .content.content-left-right)) {
  margin-bottom: calc(var(--overflow-margin) * -1px);
  padding-bottom: 0;
}

.content-left-right-alt {
  margin-top: 0 !important;
  padding-top: calc(var(--overflow-margin) * 1px);
}

.content.content-center {
  padding-top: calc(var(--overflow-margin) * 1.25px);
  padding-bottom: calc(var(--overflow-margin) * 1.25px);
}

.content.content-center.bg-beige {
  padding-top: calc(var(--overflow-margin) * 2px);
}

.content.bg-beige::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--overflow-margin) * 1px);
  right: 0;
  bottom: 0;
  background-color: var(--color-beige);
  z-index: -1;
}

.content.content-center.bg-beige::after {
  top: 0;
}

.content > div {
  display: flex;
  gap: 85px;
  align-items: center;
}

.content.content-left > div {
  flex-direction: row-reverse;
}

.content.content-center > div {
  flex-direction: column;
  gap: 0;
}

.content .slider {
  height: 665px;
  width: 485px;
  min-width: 485px;
  padding: 0;
}

.content .slides::after {
  height: 195px;
  top: unset;
}

.content .text-content {
  padding: calc(var(--overflow-margin) * 1px) 0;
}

.content .text-content .button-alt {
  margin-top: 25px;
}

.content.content-center * {
  text-align: center;
}

.content.content-center .title {
  padding: 5px 0;
}

.content .list:not(:last-of-type) {
  margin-bottom: calc(var(--overflow-margin) * 1px);
}

.content.content-center .text {
  margin-top: calc(var(--overflow-margin) * 1.45px);
}

/* FOOTER -------------------------------------------------------------------------------------------------------------------------- */
footer {
  position: relative;
  /* margin-top: calc(var(--overflow-margin) * 0.35px); */
  margin-top: 0;
  padding-bottom: calc(var(--overflow-margin) * 1.25px);
  text-align: center;
  color: var(--color-white);
}

footer::after {
  content: "";
  position: absolute;
  left: 0;
  /* top: 180px; */
  top: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(0deg, rgb(26, 18, 0) 50%, rgb(178, 190, 181) 100%);
  background-size: cover;
  z-index: -1;
}

footer .footer-top {
  display: flex;
  height: 360px;
  border-radius: 250px;
  overflow: hidden;
  /* margin-bottom: calc(var(--overflow-margin) * 1.85px); */
  margin-bottom: calc(var(--overflow-margin) * -1.5px);
  transform: translateY(-50%);
}

footer .footer-top .footer-item {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: center;
}

footer .footer-top .footer-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 18, 0, 0.45);
  /* background-image: linear-gradient(0deg,rgba(26, 18, 0, 0.75) 0%, rgba(33, 23, 0, 0) 100%); */
  z-index: 1;
}

footer .footer-top .footer-item > div {
  z-index: 2;
}

footer .footer-top .footer-item h2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-poltawski);
  font-size: 54px;
  font-weight: 400;
  color: var(--color-white);
}

footer .footer-top .footer-item h2 svg {
  height: 38px;
}

footer .footer-top .footer-item h2 span::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 52px;
  background-color: var(--color-white);
  top: 50%;
  transform: translateX(-16px) translateY(-50%);
}

footer .footer-top .footer-item .button {
  display: inline-flex;
  margin-top: 20px;
}

footer .footer-bottom {
  display: flex;
  padding: 0 80px;
  gap: 50px;
}

footer .footer-bottom .footer-item {
  flex: 1;
  text-align: left;
}

footer .footer-bottom .footer-item .title {
  color: var(--color-white);
}

footer .footer-bottom .footer-item .list {
  text-align: left;
  margin-top: 0;
}

footer .footer-bottom .footer-item a {
  text-decoration: none;
  color: var(--color-gold);
  transition: 250ms;
}

footer .footer-bottom .footer-item a:hover {
  opacity: 0.5;
}

footer .footer-legal {
  display: flex;
  align-items: center;
  margin-top: calc(var(--overflow-margin) * 1.5px);
  text-align: left;
  font-size: 14px;
}

footer .footer-legal .footer-item {
  display: flex;
  gap: 30px;
}

footer .footer-legal .footer-item a {
  text-decoration: none;
  color: var(--color-white);
  transition: 250ms;
}

footer .footer-legal .footer-item a:hover {
  opacity: 0.5;
}

footer .footer-legal .footer-item:last-of-type {
  margin-left: auto;
  align-items: center;
}

footer .footer-legal .footer-item:last-of-type > a {
  opacity: 0.5;
}

footer .footer-legal .footer-item:last-of-type > a:hover {
  opacity: 1;
}

footer .footer-legal .footer-item:last-of-type > div {
  display: flex;
}

footer .footer-legal .footer-item:last-of-type > div .button {
  color: var(--color-dark);
}

footer .footer-legal .footer-item:last-of-type > div .button:hover {
  background-color: var(--color-gold-dark);
  opacity: 1;
}

footer .footer-legal .footer-item:last-of-type > div .button:nth-of-type(1) {
  border-radius: 25px 0 0 25px;
}

footer .footer-legal .footer-item:last-of-type > div .button:nth-of-type(2) {
  border-radius: 0 25px 25px 0;
  margin-left: 2px;
}

/* IMAGE GRID -------------------------------------------------------------------------------------------------------------------------- */
.image-grid {
  padding: 175px 0 calc(75px + var(--overflow-margin) * 1px) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 15px;
  transition: 500ms;
}

.gallery-grid__item {
  overflow: hidden;
  height: 20dvw;
  cursor: pointer;
}

.gallery-grid__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 2s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.1);
}

.grid-item-extra-wide {
  grid-column: span 5;
}

.grid-item-wide {
  grid-column: span 4;
}

.grid-item-square {
  grid-column: span 3;
}

.grid-item-small {
  grid-column: span 2;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .gallery-grid__item {
    height: 30dvw;
  }
  .grid-item-extra-wide {
    grid-column: span 3;
  }
  .grid-item-wide {
    grid-column: span 2;
  }
  .grid-item-wide:first-of-type {
    grid-column: span 3;
  }
  .grid-item-square {
    grid-column: span 2;
  }
  .grid-item-small {
    grid-column: span 1;
  }
}
@media (max-width: 768px) {
  .image-grid {
    padding: 125px 0 calc(25px + var(--overflow-margin) * 1px) 0;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid__item {
    height: 45dvw;
  }
  .grid-item-extra-wide {
    grid-column: span 1;
  }
  .grid-item-wide {
    grid-column: span 1;
  }
  .grid-item-wide:first-of-type {
    grid-column: span 1;
  }
  .grid-item-square {
    grid-column: span 1;
  }
  .grid-item-small {
    grid-column: span 1;
  }
}
@media (max-width: 450px) {
  .image-grid {
    padding: 125px 0 calc(25px + var(--overflow-margin) * 1px) 0;
  }
  .gallery-grid__item {
    height: unset;
    aspect-ratio: 1;
  }
  .grid-item-extra-wide {
    grid-column: span 2;
  }
  .grid-item-wide {
    grid-column: span 2;
  }
  .grid-item-wide:first-of-type {
    grid-column: span 2;
  }
  .grid-item-square {
    grid-column: span 2;
  }
  .grid-item-small {
    grid-column: span 2;
  }
}
/* Lightbox */
.gallery-item__button {
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: 500ms;
}

.gallery-item__button:focus-visible {
  outline-offset: 0;
  border-radius: 0;
  outline: none;
}

.lightbox-wrap {
  z-index: 100;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100dvh;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
  transition: 500ms;
}

.lightbox-wrap.is-active {
  display: flex;
}

.lightbox-img__wrap {
  width: 90vw;
  height: calc(100svh - 10em);
}

.lightbox-img__container {
  width: 100%;
  height: 100%;
}

.lightbox-img__list {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.lightbox-img__item {
  visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.lightbox-img__item.is-active {
  visibility: visible;
}

.lightbox-img {
  object-fit: contain;
  border-radius: 0;
  min-width: auto;
  max-height: 100%;
}

.lightbox-img__item img {
  object-fit: contain !important;
  min-width: auto;
  width: 100%;
  max-width: calc(var(--wrapper-width) * 1px);
  max-height: 100%;
}

.lightbox-nav {
  z-index: 2;
  color: var(--color-white);
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 30px;
  text-align: center;
}

.lightbox-nav__col {
  width: 33.333%;
}

.lightbox-nav__col.start {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.lightbox-nav__col.center {
  grid-column-gap: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lightbox-nav__col.end {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.lightbox-nav__text {
  margin-bottom: 0;
  font-size: 14px;
}

.lightbox-nav__text.previous svg {
  transform: rotate(180deg);
}

.lightbox-nav__button {
  position: relative;
  grid-column-gap: 0;
  grid-row-gap: 0;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
  border: none;
  appearance: none;
  height: 40px;
  width: 40px;
  cursor: pointer;
}

.lightbox-nav__button > span:first-of-type::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gold);
  border-radius: 50%;
  z-index: 1;
  transition: 350ms ease;
}

.lightbox-nav__button:hover > span:first-of-type::after {
  transform: scale(1.2);
  background-color: var(--color-gold-dark);
}

.lightbox-nav__button > span:first-of-type svg {
  position: relative;
  z-index: 2;
}

.lightbox-nav__button > span:last-of-type {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: 350ms ease;
}

.lightbox-nav__col.end .lightbox-nav__button > span {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  transition: 250ms;
}

.lightbox-nav__col.end .lightbox-nav__button > span:hover {
  opacity: 0.5;
}

.lightbox-nav__col.end .lightbox-nav__button > span::after {
  display: none;
}

/* TEXT CONTENT -------------------------------------------------------------------------------------------------------------------------- */
.hero-alt {
  padding: 175px 0 calc(0px + var(--overflow-margin) * 1px) 0;
  text-align: left;
}

.hero-alt .subtitle {
  margin-bottom: 10px;
}

.content.content-center.text-left > div {
  text-align: left;
  align-items: flex-start;
}

.content.content-center.text-left p {
  margin: 5px 0 20px 0;
}

.content.content-center.text-left p.text-larger {
  margin-bottom: 30px;
}

.content.content-center.text-left.single-title .title {
  padding-top: 15px;
  padding-bottom: 20px;
}

/* TEXT CONTENT IMAGES -------------------------------------------------------------------------------------------------------------------------- */
.content-images-text {
  text-align: center;
  padding-top: calc(var(--overflow-margin) * 1.25px);
  padding-bottom: calc(var(--overflow-margin) * 1.25px);
}

.content-images-text > div {
  text-align: left;
}

.content-images-text .content-left-right-alt {
  padding-bottom: 0;
}

.content-images-text .content-left-right-alt:last-of-type {
  margin-bottom: 0 !important;
}

.content-images-text .content-left-right-alt img {
  width: 485px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

/* RESPONSIVE -------------------------------------------------------------------------------------------------------------- */
/* RESPONSIVE -------------------------------------------------------------------------------------------------------------- */
/* RESPONSIVE -------------------------------------------------------------------------------------------------------------- */
@media (max-width: 1310px) {
  /* HEADER --------------------------------------------------- */
  .bold-nav-full_buttons {
    right: 20px;
  }
  .bold-nav-full__tile {
    padding-right: 185px;
  }
  .bold-nav-full__ul {
    gap: 1em;
  }
  .logo-line {
    margin-right: 25px;
  }
  /* HERO --------------------------------------------------- */
  .hero .slider {
    padding: 0 100px;
  }
  .hero,
  .title-large {
    font-size: 45px;
  }
  /* FOOTER --------------------------------------------------- */
  footer .footer-top .footer-item h2 {
    font-size: 45px;
  }
  footer .footer-top .footer-item h2 svg {
    height: 32px;
  }
}
@media (max-width: 1000px) {
  /* ALGEMEEN ---------------------------------------------------  */
  .title {
    font-size: 35px;
    padding-top: 10px;
    padding-bottom: 15px;
  }
  .text-larger {
    font-size: 20px;
  }
  /* HERO --------------------------------------------------- */
  .hero .text-content {
    padding: 0 25px;
  }
  .hero .text-content p {
    font-size: 25px;
  }
  /* CONTENT --------------------------------------------------- */
  .content > div {
    gap: 50px;
  }
  .content .slider {
    min-width: unset;
    width: 400px;
    min-width: 400px;
    height: 650px;
  }
  /* FOOTER --------------------------------------------------- */
  footer .footer-top {
    /* margin-bottom: calc(var(--overflow-margin) * 1.5px); */
  }
  footer .footer-bottom {
    padding: 0 40px;
  }
  footer .footer-legal .footer-item:first-of-type {
    flex-wrap: wrap;
  }
  footer .footer-legal .footer-item:first-of-type span {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  footer .footer-legal .footer-item {
    gap: 0;
  }
  footer .footer-legal .footer-item:first-of-type a {
    margin-right: 15px;
  }
  footer .footer-legal .footer-item:last-of-type {
    flex: 1;
    justify-content: flex-end;
  }
  footer .footer-legal .footer-item:last-of-type > a {
    margin-right: 20px;
    white-space: nowrap;
  }
  /* TEXT CONTENT IMAGES --------------------------------------------------- */
  .content-images-text .content-left-right-alt img {
    width: 400px;
  }
}
@media (max-width: 850px) {
  /* ALGEMEEN ---------------------------------------------------  */
  .title {
    font-size: 30px;
    padding-top: 8px;
    padding-bottom: 10px;
  }
  .title-alt {
    font-size: 25px;
  }
  .title-alt-medium {
    font-size: 22px;
  }
  .title-alt-small {
    font-size: 18px;
  }
  .title-alt-smallest {
    font-size: 16px;
  }
  .text {
    font-size: 18px;
    line-height: 1.6em;
  }
  .list {
    margin: 15px 0 0 0;
  }
  .list p {
    font-size: 18px;
  }
  .last-item {
    padding-bottom: calc(var(--overflow-margin) * 3.5px) !important;
  }
  /* CONTENT --------------------------------------------------- */
  .content > div {
    gap: 35px;
  }
  .content .slider {
    min-width: unset;
    width: 300px;
    max-width: 300px;
    min-width: 300px;
    height: 600px;
  }
  .content .list:not(:last-of-type) {
    margin-bottom: calc(var(--overflow-margin) * 1.5px);
  }
  /* FOOTER --------------------------------------------------- */
  footer::after {
    /* top: calc(275px / 2); */
  }
  footer .footer-top {
    height: 275px;
    margin-bottom: calc(var(--overflow-margin) * -1px);
  }
  /* TEXT CONTENT IMAGES --------------------------------------------------- */
  .content-images-text .content-left-right-alt img {
    width: 300px;
  }
}
@media (max-width: 768px) {
  /* VARIABELEN --------------------------------------------------- */
  :root {
    --overflow-margin: 35;
  }
  /* ALGEMEEN ---------------------------------------------------  */
  .wrapper-extra-small {
    width: calc(100% - 40px);
  }
  .last-item {
    padding-bottom: calc(var(--overflow-margin) * 5px) !important;
  }
  /* HEADER --------------------------------------------------- */
  .bold-nav-full_buttons {
    right: 70px;
    top: 25px;
    z-index: 2;
  }
  .bold-nav-full__tile {
    padding-right: 0;
    margin-top: -25px;
    height: calc(100% + 25px);
  }
  /* NOTIFICATION --------------------------------------------------- */
  .global-notification {
    font-size: 16px;
    bottom: 20px;
    padding: 15px 75px 15px 22px;
    border-radius: 25px;
  }
  .global-notification button {
    top: 5px;
    right: 5px;
  }
  /* HERO --------------------------------------------------- */
  .hero {
    padding: 125px 0 calc(var(--overflow-margin) * 4px) 0;
  }
  .hero .slider {
    height: 350px;
  }
  .hero h1,
  .title-large {
    font-size: 35px;
  }
  .slider__indicators {
    bottom: 25px;
  }
  .hero .text-content {
    padding: 0;
    margin: 50px auto 0 auto;
  }
  .hero .text-content p {
    font-size: 22px;
    margin-top: -65px;
  }
  .hero .text-content span:first-of-type {
    font-size: 125px;
  }
  .hero-alt {
    padding: 125px 0 calc(0px + var(--overflow-margin) * 1px) 0;
    text-align: left;
  }
  /* CONTENT --------------------------------------------------- */
  .content {
    padding-bottom: calc(var(--overflow-margin) * 4px);
  }
  .content:not(.content-center) {
    padding-bottom: calc(var(--overflow-margin) * 3px);
  }
  .content > div,
  .content.content-left > div {
    flex-direction: column;
    gap: 45px;
  }
  .content.content-left-right:not(:has(~ .content.content-left-right)) {
    margin-bottom: calc(var(--overflow-margin) * 2px);
  }
  .content .slider {
    min-width: unset;
    width: 100%;
    max-width: unset;
    height: 300px;
  }
  .content .text-content {
    padding: 0;
  }
  /* FOOTER --------------------------------------------------- */
  footer {
    /* margin-top: calc(var(--overflow-margin) * 1px); */
  }
  footer::after {
    /* top: calc(250px / 2); */
  }
  footer .footer-top {
    height: 250px;
    margin-bottom: calc(var(--overflow-margin) * -1.5px);
  }
  footer .footer-top .footer-item h2 {
    font-size: 35px;
  }
  footer .footer-top .footer-item h2 svg {
    height: 25px;
  }
  footer .footer-bottom .footer-item .list {
    font-size: 18px;
  }
  footer .footer-legal {
    flex-direction: column-reverse;
    margin-top: calc(var(--overflow-margin) * 2.5px);
  }
  footer .footer-legal .footer-item:first-of-type {
    flex-wrap: nowrap;
    gap: 25px;
    margin-top: 30px;
  }
  footer .footer-legal .footer-item:first-of-type span {
    margin-bottom: 0;
  }
  footer .footer-legal .footer-item:first-of-type a {
    margin-right: 0;
  }
  footer .footer-legal .footer-item:last-of-type {
    flex: none;
    margin-left: unset;
  }
  /* TEXT CONTENT IMAGES --------------------------------------------------- */
  .content-images-text {
    padding-top: calc(var(--overflow-margin) * 2px);
    padding-bottom: calc(var(--overflow-margin) * 2px);
  }
  .content-images-text .content:not(.content-center) {
    padding-bottom: calc(var(--overflow-margin) * 1px);
  }
  .content-images-text .content-left-right-alt img {
    width: 80%;
  }
}
@media (max-width: 650px) {
  /* ALGEMEEN --------------------------------------------------- */
  .last-item {
    padding-bottom: calc(var(--overflow-margin) * 3.5px) !important;
  }
  /* FOOTER --------------------------------------------------- */
  footer .footer-top {
    flex-direction: column;
    height: 650px;
    transform: translateY(calc(var(--overflow-margin) * -1.5px));
    margin-bottom: calc(var(--overflow-margin) * 1px);
  }
  footer .footer-top .footer-item > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  footer .footer-bottom {
    padding: 0;
    gap: 30px;
  }
}
@media (max-width: 500px) {
  /* ALGEMEEN ---------------------------------------------------  */
  .wrapper-small {
    width: calc(100% - 40px);
    position: relative;
  }
  /* NOTIFICATION --------------------------------------------------- */
  .global-notification {
    border-radius: 30px;
  }
  .global-notification button {
    top: 10px;
    right: 10px;
  }
  /* HERO --------------------------------------------------- */
  .hero .slider {
    padding: 0 35px;
    height: 250px;
  }
  .hero h1 {
    font-size: 25px;
  }
  .hero-alt h1 {
    font-size: 30px;
  }
  .hero .text-content p {
    font-size: 20px;
  }
  /* CONTENT --------------------------------------------------- */
  .content {
    padding-bottom: calc(var(--overflow-margin) * 3px);
  }
  .content > div {
    gap: 30px;
  }
  .content .slider {
    min-width: unset;
    width: 100%;
    max-width: unset;
    height: 200px;
  }
  /* FOOTER --------------------------------------------------- */
  footer .footer-top {
    height: 500px;
  }
  footer .footer-top .footer-item h2 {
    font-size: 25px;
  }
  footer .footer-top .footer-item h2 svg {
    height: 18px;
  }
  footer .footer-bottom {
    flex-direction: column;
  }
  footer .footer-legal .footer-item:last-of-type {
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-legal .footer-item:first-of-type {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
  }
  footer .footer-legal .footer-item:first-of-type span {
    text-align: center;
  }
  footer .footer-legal .footer-item {
    gap: 0;
  }
  footer .footer-legal .footer-item:first-of-type a {
    margin-right: 5px;
  }
  footer .footer-legal .footer-item:last-of-type {
    flex: 1;
    justify-content: flex-end;
  }
  footer .footer-legal .footer-item:last-of-type > a {
    margin-right: 20px;
    white-space: nowrap;
  }
  /* TEXT CONTENT --------------------------------------------------- */
  .content.content-center.text-left p {
    font-size: 16px;
  }
  .content.content-center.text-left p.text-larger {
    font-size: 18px;
  }
}