/* Variables
-------------------------*/
/* Colors */
/* CSS Properties */
/* Fonts */
@import url("https://use.typekit.net/fup2vlw.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap");
h1, h2, h3, h4, h5, p, ul li, ol li, a {
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  hyphens: manual;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
  font-weight: 450;
}

p, ul li, ol li, span, a {
  color: inherit;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.wysiwyg {
  color: #FFF2E1;
}
.wysiwyg.dark {
  color: #313B3E;
}
.wysiwyg.big-center {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.wysiwyg .display {
  font-family: "p22-flw-midway-one", cursive, fantasy;
  font-size: clamp(36px, 36px + (80 - 36) * (100vw - 320px) / (1440 - 320), 80px);
  color: #F10D47;
  display: inline-block;
  transform: rotate(-10deg);
  font-weight: 300;
  line-height: 1;
}
.wysiwyg .display.left {
  align-self: flex-start;
}
.wysiwyg .display.right {
  align-self: flex-end;
}
.wysiwyg .h0 {
  font-size: clamp(28px, 28px + (50 - 28) * (100vw - 320px) / (1440 - 320), 50px);
  line-height: 1.65;
  font-weight: 550;
}
.wysiwyg h1, .wysiwyg .h1 {
  font-size: clamp(24px, 24px + (46 - 24) * (100vw - 320px) / (1440 - 320), 46px);
  line-height: 1.5;
}
.wysiwyg h2, .wysiwyg .h2 {
  font-size: clamp(22px, 22px + (40 - 22) * (100vw - 320px) / (1440 - 320), 40px);
  line-height: 1.4;
}
.wysiwyg h3, .wysiwyg .h3 {
  font-size: clamp(20px, 20px + (36 - 20) * (100vw - 320px) / (1440 - 320), 36px);
  line-height: 1.15;
}
.wysiwyg h4, .wysiwyg .h4 {
  font-size: clamp(18px, 18px + (28 - 18) * (100vw - 320px) / (1440 - 320), 28px);
  line-height: 1.15;
  font-weight: 350;
}
.wysiwyg h5, .wysiwyg .h5 {
  font-size: clamp(14px, 14px + (17 - 14) * (100vw - 320px) / (1440 - 320), 17px);
}
.wysiwyg p, .wysiwyg ul li, .wysiwyg ol li, .wysiwyg a {
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px);
}
.wysiwyg p strong, .wysiwyg ul li strong, .wysiwyg ol li strong, .wysiwyg a strong {
  font-weight: 500;
}

/* Elements
-------------------------*/
.grid-x.standard-grid {
  max-width: 2000px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

[data-reveal=fade] {
  opacity: var(--opacity, 0) !important;
  will-change: transform;
  transform: translateY(var(--vertical, 50px)) translateX(var(--horizontal, 0px)) scale(var(--scale, 1));
  transition: opacity var(--duration, 0.85s) ease calc(var(--delay, 0s) + 0.15s), transform var(--duration, 0.85s) ease calc(var(--delay, 0s) + 0.15s);
}
[data-reveal=fade].revealed {
  opacity: var(--to-opacity, 1) !important;
  transform: translateY(0px);
}

[data-reveal=heading] {
  opacity: 0;
}
[data-reveal=heading].revealed {
  opacity: 1;
}
[data-reveal=illustration] {
  opacity: 0;
  transform: translateY(-10px);
  animation: pulse 2s ease-in-out infinite;
  animation-play-state: paused;
}
@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: translateY(0px);
  }
  25% {
    transform: scale(1.01);
  }
  50% {
    opacity: 1;
  }
  75% {
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
  }
}
[data-reveal=illustration].revealed {
  transform: translateY(0px);
  animation-play-state: running;
}

.cta-btn {
  position: relative;
  display: inline-block;
  display: flex;
  align-items: center;
}
.cta-btn:hover span.icon {
  background-color: rgb(255, 230.95, 199.5);
}
.cta-btn:hover span.icon::after {
  transform: rotate(90deg);
}
.cta-btn:hover span.text {
  transform: translateX(3px);
}
.cta-btn.red span.icon {
  background-color: #F10D47;
}
.cta-btn.red span.icon::after {
  width: 20px;
  height: 20px;
  background-image: url("assets/images/star-beige.svg");
}
.cta-btn.red span.text {
  color: #313B3E;
}
.cta-btn span.icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: #FFF2E1;
  transition: 0.25s ease all;
}
.cta-btn span.icon::after {
  content: "";
  display: inline-block;
  background-image: url("assets/images/star-red.svg");
  background-size: contain;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  transition: 0.25s ease all;
}
.cta-btn span.text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px);
  color: #FFF2E1;
  font-weight: 350;
  margin-left: 25px;
  transition: 0.25s ease all;
}

body {
  overscroll-behavior: contain;
  background-color: #FFF2E1;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: rgb(42.2459459459, 50.8675675676, 53.4540540541);
}
body::-webkit-scrollbar-thumb {
  background: #F10D47;
}
body::-webkit-scrollbar-thumb:hover {
  background: rgb(192.6102362205, 10.3897637795, 56.7440944882);
}

/* Header
-----------------*/
header {
  position: fixed;
  width: 50px;
  top: 50px;
  left: 50px;
  height: calc(100vh - 100px);
  background-color: rgba(26.4864864865, 31.8918918919, 33.5135135135, 0.35);
  z-index: 9;
}
header.white {
  background-color: rgba(0, 0, 0, 0.1);
}
header.white .bar .links a.inschrijven {
  color: #313B3E !important;
}
header.white .bar .links .instagram:hover svg path {
  fill: #F10D47 !important;
}
header.white .bar .links .instagram .icon svg path {
  fill: #313B3E !important;
}
header .bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
header .bar .hamburger {
  width: 50px;
  height: 50px;
  background-color: #FFF2E1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease background-color;
}
header .bar .hamburger:hover {
  background-color: rgb(255, 230.95, 199.5);
}
header .bar .hamburger.active span.icon {
  background-color: rgba(255, 242, 225, 0);
}
header .bar .hamburger.active span.icon::before {
  transform: rotate(45deg);
}
header .bar .hamburger.active span.icon::after {
  transform: rotate(-45deg);
  width: 100%;
}
header .bar .hamburger span.icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: #F10D47;
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all;
}
header .bar .hamburger span.icon::before, header .bar .hamburger span.icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #F10D47;
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all;
}
header .bar .hamburger span.icon::before {
  transform: translateY(-7px);
}
header .bar .hamburger span.icon::after {
  transform: translateY(7px);
  width: 70%;
}
header .bar .hamburger span.text {
  position: absolute;
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateY(-65px);
  font-size: 16px;
  color: #FFF2E1;
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all;
}
header .bar .links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
header .bar .links a.inschrijven {
  display: inline-block;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  color: #FFF2E1;
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all;
  will-change: transform;
}
header .bar .links a.inschrijven:hover {
  color: #FFF2E1;
  transform: rotate(180deg) translateY(5px);
}
header .bar .links .instagram {
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 25px;
}
header .bar .links .instagram:hover .icon svg path {
  fill: #FFF2E1 !important;
  transform: scale(1.25);
}
header .bar .links .instagram .icon svg {
  width: 20px;
  overflow: visible;
  will-change: transform;
}
header .bar .links .instagram .icon svg path {
  transform-origin: 50% 50%;
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all;
}

nav {
  position: fixed;
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 8;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.45s, visibility 0s linear 0.7s;
}
nav.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0s, visibility 0s linear 0s;
}
nav.active ul.menu li {
  transform: translateY(0px);
}
nav.active ul.menu li.white {
  transition-delay: 0.2s;
}
nav.active ul.menu li.light-blue {
  transition-delay: 0.1s;
}
nav.active ul.menu li.blue {
  transition-delay: 0s;
}
nav ul.menu {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
}
nav ul.menu:hover li {
  flex-grow: 0.95;
}
nav ul.menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  will-change: transform;
  min-width: 0;
  flex: 1 1 0;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1), flex-grow 0.45s cubic-bezier(0.77, 0, 0.18, 1), background-color 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}
nav ul.menu li:hover {
  flex-grow: 1.25;
}
nav ul.menu li:hover h3 {
  transform: translateX(-15px);
}
nav ul.menu li:hover h3 span {
  transform: translateX(25px);
}
nav ul.menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 40px;
}
nav ul.menu li h3 {
  font-size: clamp(22px, 22px + (40 - 22) * (100vw - 320px) / (1440 - 320), 40px);
  font-weight: 500;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
nav ul.menu li h3 span {
  display: block;
  padding-left: 15px;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}
nav ul.menu li.white {
  flex-grow: 1.03;
  background-color: #FFF2E1;
  transition-delay: 0s;
}
nav ul.menu li.white h3 {
  color: #A9052D;
}
nav ul.menu li.light-blue {
  background-color: #F10D47;
  transition-delay: 0.1s;
}
nav ul.menu li.light-blue h3 {
  color: #FFF2E1;
}
nav ul.menu li.blue {
  background-color: #A9052D;
  transition-delay: 0.2s;
}
nav ul.menu li.blue h3 {
  color: #FFF2E1;
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}
.popup.active {
  pointer-events: auto;
}
.popup.active .bg {
  opacity: 1;
  transition: 0.25s cubic-bezier(0.77, 0, 0.18, 1) opacity 0s;
}
.popup.active .panel {
  transform: translateX(0);
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all 0.25s;
}
.popup.active .panel .image-container img {
  opacity: 1;
}
.popup.active .panel .text-container {
  height: 25svh;
  overflow-y: auto;
}
.popup.active .panel .text-container::-webkit-scrollbar {
  width: 5px;
}
.popup.active .panel .text-container::-webkit-scrollbar-track {
  background: rgb(127.6, 153.6, 161.4);
}
.popup.active .panel .text-container::-webkit-scrollbar-thumb {
  background: #313B3E;
}
.popup.active .panel .text-container::-webkit-scrollbar-thumb:hover {
  background: rgb(26.4864864865, 31.8918918919, 33.5135135135);
}
.popup.active .panel .text-container h3 {
  opacity: 1;
  transform: translateX(0);
}
.popup.active .panel .text-container p {
  opacity: 1;
  transform: translateX(0);
}
.popup.active .panel .close {
  transform: translateX(-50px);
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all 0.25s;
}
.popup.active .panel .close:hover::before, .popup.active .panel .close:hover::after {
  transform: rotate(0deg);
}
.popup .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(157, 177, 183, 0), rgba(157, 177, 183, 0.5));
  z-index: 1;
  opacity: 0;
  transition: 0.25s cubic-bezier(0.77, 0, 0.18, 1) opacity 0.25s;
}
.popup .panel {
  background-color: #9DB1B7;
  width: 25vw;
  padding: 25px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  z-index: 2;
  transform: translateX(100%);
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all 0s;
}
.popup .panel .close {
  width: 50px;
  height: 50px;
  background-color: #F10D47;
  grid-row: 1;
  grid-column: 1;
  z-index: 2;
  transform: translateX(0px);
  align-self: flex-end;
  cursor: pointer;
  transition: 0.5s ease all;
}
.popup .panel .close::before, .popup .panel .close::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  top: 25px;
  left: calc(100% - 50px + 12px);
  background-color: #FFF2E1;
  transition: 0.35s cubic-bezier(0.77, 0, 0.18, 1) all;
}
.popup .panel .close::before {
  transform: rotate(45deg);
}
.popup .panel .close::after {
  transform: rotate(-45deg);
}
.popup .panel .image-container {
  grid-row: 1;
  grid-column: 1;
  background-color: #313B3E;
}
.popup .panel .image-container img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) opacity 0.5s;
}
.popup .panel .text-container {
  margin-top: 10px;
  grid-row: 2;
  padding: 20px;
}
.popup .panel .text-container h3 {
  font-weight: 600;
  margin-bottom: 0.35em;
  opacity: 0;
  transform: translateX(25px);
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) all 0.5s;
  font-size: calc(clamp(20px, 20px + (36 - 20) * (100vw - 320px) / (1440 - 320), 36px) * 0.9);
}
.popup .panel .text-container p {
  font-weight: 400;
  opacity: 0;
  font-size: calc(clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px) * 0.9);
  transform: translateX(25px);
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) all 0.6s;
}
.popup .panel .navigation {
  grid-row: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.popup .panel .navigation div {
  font-family: "p22-flw-midway-two", cursive, fantasy;
  font-size: 100px;
  font-size: 80px;
  letter-spacing: -10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 40px;
}
.popup .panel .navigation div img {
  width: 30px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.popup .panel .navigation div.prev img {
  transform: rotate(180deg);
}
.popup .panel .navigation div.next {
  margin-right: 5px;
  display: flex;
  justify-content: flex-end;
}

/* Content
-----------------*/
section {
  position: relative;
  overflow: hidden;
  background-image: url("assets/images/noise.png");
  background-repeat: repeat;
}
section.intro {
  position: absolute;
  overflow: visible;
  top: 25px;
  width: 95vw;
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}
section.intro img {
  max-width: 300px;
}
section.vertical-slider {
  overflow: visible;
  position: relative;
  height: 100vh;
}
section.vertical-slider .cell {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}
section.vertical-slider .cell .text-container {
  position: relative;
  grid-column: 2/span 4;
  align-self: flex-end;
  padding-bottom: clamp(30px, 8vw, 100px);
}
@keyframes highlight-animation {
  0% {
    transform: translateY(-25px) scaleY(1) skewY(15deg);
    opacity: 0.25;
  }
  50% {
    transform: translateY(25px) scaleY(1.25) skewY(0deg);
    opacity: 0.45;
  }
  100% {
    transform: translateY(-25px) scaleY(1) skewY(15deg);
    opacity: 0.25;
  }
}
section.vertical-slider .cell .text-container img {
  position: absolute;
  opacity: 0.35;
  bottom: 10%;
  left: 25%;
  transform: translateX(-50%);
  animation: highlight-animation 10s ease-in-out infinite;
}
section.vertical-slider .cell .text-container a.cta-btn {
  margin-top: 30px;
}
section.vertical-slider .cell .vertical-slider {
  position: relative;
  overflow: hidden;
  grid-column: 7/span 4;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 35px;
}
section.vertical-slider .cell .vertical-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to bottom, #f10d47, rgba(241, 13, 71, 0));
  z-index: 3;
}
section.vertical-slider .cell .vertical-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(to top, #f10d47, rgba(241, 13, 71, 0));
  z-index: 3;
}
section.vertical-slider .cell .vertical-slider .col {
  display: grid;
}
section.vertical-slider .cell .vertical-slider .col img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 35px;
}
section.visual .standard-grid {
  position: relative;
  display: grid;
  overflow: hidden;
}
section.visual .standard-grid video {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}
section.visual .standard-grid .wysiwyg {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(15px, 4vw, 50px) clamp(30px, 8vw, 100px);
  width: 50%;
  z-index: 3;
  background-image: url("assets/images/lanes-up-strong.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-position-y: 100%;
  background-size: 100%;
}
section.visual .standard-grid .wysiwyg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(241, 13, 71, 0.5), rgba(0, 0, 0, 0));
  z-index: 2;
}
section.visual .standard-grid .wysiwyg h2 {
  position: relative;
  margin-bottom: 0;
  font-weight: 450;
  line-height: 1.4;
  z-index: 3;
}
section.text {
  padding-top: clamp(15px, 4vw, 50px);
  padding-bottom: clamp(15px, 4vw, 50px);
}
section.text .standard-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 20px;
  align-items: center;
}
section.text .standard-grid .wysiwyg {
  grid-column: 2/span 8;
  grid-row: 1;
  z-index: 2;
}
section.text .standard-grid .wysiwyg h4 {
  margin-bottom: clamp(15px, 4vw, 50px);
}
section.text .standard-grid .wysiwyg h2 {
  margin-bottom: clamp(15px, 4vw, 50px);
}
section.text .standard-grid .wysiwyg.shorted {
  grid-column: 2/span 6;
}
section.text .standard-grid .wysiwyg.big-center {
  grid-column: 2/span 8;
  text-align: center;
}
section.text .standard-grid .wysiwyg .display.left {
  transform: translateX(-150px);
  padding-bottom: 50px;
  white-space: nowrap;
}
section.text .standard-grid .wysiwyg .display .block {
  display: inline-block;
  height: 50px;
  width: 150px;
}
section.text .standard-grid .wysiwyg .display .block.x2 {
  width: 400px;
}
section.text .standard-grid .illustration {
  grid-row: 1;
  z-index: 0;
}
section.text .standard-grid .illustration img {
  width: 100%;
  height: auto;
  display: block;
}
section.text .standard-grid .illustration.h-end {
  grid-column: 6/span 4;
}
section.text .standard-grid .illustration.h-start {
  grid-column: 1/span 3;
}
section.text .standard-grid .illustration.v-end {
  align-self: end;
  transform: translateY(25%);
}
section.text .dual-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}
section.text .dual-columns .wysiwyg h4 {
  margin-bottom: clamp(15px, 4vw, 50px);
}
section.text .dual-columns .wysiwyg h2 {
  margin-bottom: clamp(15px, 4vw, 50px);
}
section.building-phases {
  padding: clamp(30px, 8vw, 100px) 0;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}
section.building-phases .building {
  display: grid;
  grid-row: 1;
  grid-column: 1/span 4;
  z-index: 1;
}
section.building-phases .building img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
section.building-phases .building img.active {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.5s ease 0s;
}
section.building-phases .building-phase-navigation {
  position: relative;
  grid-column: 6/span 3;
  grid-row: 1;
  margin-top: 50%;
  line-height: 40px;
  height: auto;
  z-index: 2;
  align-self: flex-start;
}
section.building-phases .building-phase-navigation::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 9px;
  width: 2px;
  height: calc(100% - 40px);
  background-color: #313B3E;
  z-index: -1;
}
section.building-phases .building-phase-navigation .ball {
  position: absolute;
  top: 13px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #313B3E;
  z-index: 2;
}
section.building-phases .building-phase-navigation li {
  position: relative;
  display: flex;
  align-items: center;
  color: #313B3E;
  font-weight: 500;
  cursor: pointer;
}
section.building-phases .building-phase-navigation li.active::after {
  opacity: 1;
  transform: scale(1);
}
section.building-phases .building-phase-navigation li::before {
  content: "";
  display: inline-block;
  margin-right: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFF2E1;
  border: 1px solid #313B3E;
}
section.call-to-action {
  padding-top: clamp(15px, 4vw, 50px);
  padding-bottom: clamp(60px, 16vw, 200px);
}
section.call-to-action img {
  width: 90%;
  opacity: 0.4;
  height: auto;
  display: block;
  margin-top: calc(0px - clamp(45px, 12vw, 150px));
  margin-bottom: calc(0px - clamp(30px, 8vw, 100px));
}
section.horizontal-slider {
  overflow: hidden;
  display: grid;
  grid-gap: 50px;
  padding-bottom: 100px;
}
section.horizontal-slider.beige::before {
  background: linear-gradient(to right, #fff2e1, rgba(255, 242, 225, 0));
}
section.horizontal-slider.beige::after {
  background: linear-gradient(to left, #fff2e1, rgba(255, 242, 225, 0));
}
section.horizontal-slider::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #313b3e, #313b3e, #313b3e, rgba(241, 13, 71, 0));
  z-index: 1;
}
@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
section.horizontal-slider .row-1 .track {
  animation: scroll-right 25s linear infinite;
}
section.horizontal-slider .row-2 .track {
  animation: scroll-left 25s linear infinite;
}
section.horizontal-slider .row {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  gap: 50px;
}
section.horizontal-slider .row .track {
  display: flex;
  gap: 50px;
  width: max-content;
}
section.horizontal-slider .row .track img {
  width: 25vw;
  flex-shrink: 0;
  aspect-ratio: 1/1.5;
  object-fit: cover;
}
section.beige {
  background-color: #FFF2E1;
}
section .bg-image {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0));
}
section .bg-image.up {
  top: auto;
  bottom: 0;
  mask-image: linear-gradient(to top, black, rgba(0, 0, 0, 0));
}
section .bg-image img {
  width: 100%;
  max-width: 100% !important;
  height: auto;
  display: block;
  object-fit: cover;
}

section.home.intro {
  background-image: none;
}
section.home.vertical-slider {
  background-color: #F10D47;
}
section.home.visual {
  background-color: #F10D47;
}
section.home.text.text-1 {
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
  background-color: #F10D47;
}
section.home.text.text-2 {
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.home.text.text-3 {
  padding-top: clamp(60px, 16vw, 200px);
  padding-bottom: clamp(30px, 8vw, 100px);
  background-color: #F10D47;
}
section.home.text.text-4 {
  padding-bottom: clamp(30px, 8vw, 100px);
  background-color: #F10D47;
}
section.home.text.text-4 .dual-columns {
  margin-bottom: 25px;
}
section.home.text.text-5 {
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
  background-color: #F10D47;
}
section.home.map::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/images/noise.png");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
}
section.home.map img.bg {
  width: 100%;
  object-fit: contain;
}
section.home.map ul.spaces {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.home.map ul.spaces li {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  background-color: #F10D47;
  color: #FFF2E1;
  font-weight: 500;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  transition: 0.25s ease all;
}
section.home.map ul.spaces li:hover {
  transform: translate(-50%, calc(-50% - 5px));
}
section.home.map ul.spaces li .data-container {
  display: none;
}
section.home.types {
  padding-left: 50px;
  padding-bottom: clamp(30px, 8vw, 100px);
  background-color: #F10D47;
}
section.home.types .grid-x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}
section.home.types .grid-x:has(.type:hover) .type .image-container img {
  filter: grayscale(75%);
  opacity: 0.5;
}
section.home.types .grid-x .type {
  width: 100%;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
}
section.home.types .grid-x .type:hover .image-container img {
  transform: scale(1.05);
  filter: grayscale(0%) !important;
  opacity: 1 !important;
}
section.home.types .grid-x .type:hover .wysiwyg h3 {
  transform: translateY(-5px);
}
section.home.types .grid-x .type:hover .wysiwyg .icon {
  width: 120px;
}
section.home.types .grid-x .type:hover .wysiwyg .icon img {
  transform: scale(1.25) transxlateX(5px);
}
section.home.types .grid-x .type .image-container {
  grid-column: 1;
  grid-row: 1/span 2;
  width: 100%;
  overflow: hidden;
  background-color: #A9052D;
}
section.home.types .grid-x .type .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) all;
  will-change: transform;
}
section.home.types .grid-x .type .wysiwyg {
  position: relative;
  margin-bottom: -1px;
  z-index: 2;
  grid-row: 2;
  grid-column: 1;
  padding: calc(clamp(15px, 4vw, 50px) * 0.5);
  text-align: left;
  display: grid;
}
section.home.types .grid-x .type .wysiwyg::before {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 175%;
  background: linear-gradient(to top, rgba(169, 5, 45, 0.9), rgba(169, 5, 45, 0.75), rgba(169, 5, 45, 0));
}
section.home.types .grid-x .type .wysiwyg h3 {
  position: relative;
  z-index: 2;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) transform;
  font-weight: 500;
  padding-right: 100px;
}
section.home.types .grid-x .type .wysiwyg h3 strong {
  font-size: 0.8em;
  font-weight: 250;
  display: block;
}
section.home.types .grid-x .type .wysiwyg .icon {
  background-color: #FFF2E1;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) all;
}
section.home.types .grid-x .type .wysiwyg .icon img {
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1) transform;
}
section.home.planning {
  padding-bottom: clamp(30px, 8vw, 100px);
  background-color: #F10D47;
}
section.home.planning .grid-x {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 20px;
}
section.home.planning .container {
  display: grid;
  grid-column: 2/span 8;
  align-items: center;
}
section.home.planning .container ul {
  margin: 0;
  padding: 0;
  grid-row: 1;
  grid-column: 1/span 10;
}
section.home.planning .container ul li {
  display: flex;
  justify-content: space-between;
  color: #FFF2E1;
  font-size: calc(clamp(28px, 28px + (50 - 28) * (100vw - 320px) / (1440 - 320), 50px) * 1.25);
  margin-bottom: 0.5em;
}
section.home.planning .container ul li span.fase {
  font-weight: 500;
}
section.home.planning .container ul li span.date {
  font-weight: 500;
}
@keyframes highlight-animation {
  0% {
    transform: translateY(-25px) scaleY(1) skewY(15deg);
    opacity: 0.25;
  }
  50% {
    transform: translateY(25px) scaleY(1.25) skewY(0deg);
    opacity: 0.45;
  }
  100% {
    transform: translateY(-25px) scaleY(1) skewY(15deg);
    opacity: 0.25;
  }
}
section.home.planning .container img {
  grid-row: 1;
  grid-column: 5/span 5;
  justify-self: flex-end;
  opacity: 0.5;
  animation: highlight-animation 10s ease-in-out infinite;
}
section.home.frame {
  background-color: #F10D47;
}
section.home.frame iframe {
  width: 100%;
  border: none;
}
section.home.call-to-action {
  background-color: #F10D47;
}
section.home.horizontal-slider {
  background-color: #F10D47;
}

section.inschrijven.vertical-slider {
  background-color: #FFF2E1;
}
section.inschrijven.vertical-slider .cell .vertical-slider::before {
  background: linear-gradient(to bottom, #fff2e1, rgba(255, 242, 225, 0));
}
section.inschrijven.vertical-slider .cell .vertical-slider::after {
  background: linear-gradient(to top, #fff2e1, rgba(255, 242, 225, 0));
}
section.inschrijven.text.text-1 {
  padding-bottom: 0;
}
section.inschrijven.text.text-1 .form-container {
  padding-top: clamp(30px, 8vw, 100px);
}
section.inschrijven.text.text-1 .form-container .gform_wrapper {
  margin: 0;
}
section.inschrijven.text.text-1 .form-container .gform_heading {
  display: none;
}
section.inschrijven.text.text-1 .form-container .gform_validation_errors,
section.inschrijven.text.text-1 .form-container .validation_message {
  margin-bottom: 20px;
}
section.inschrijven.text.text-1 .form-container .gform_body .gfield {
  margin: 0;
}
section.inschrijven.text.text-1 .form-container .gform_body .gfield_label {
  margin-bottom: 8px;
  color: rgba(49, 59, 62, 0.8);
  font-family: "Montserrat", sans-serif;
  font-weight: 450;
}
section.inschrijven.text.text-1 .form-container .gform_body input[type=text],
section.inschrijven.text.text-1 .form-container .gform_body input[type=email],
section.inschrijven.text.text-1 .form-container .gform_body input[type=tel],
section.inschrijven.text.text-1 .form-container .gform_body input[type=date],
section.inschrijven.text.text-1 .form-container .gform_body input[type=number],
section.inschrijven.text.text-1 .form-container .gform_body textarea,
section.inschrijven.text.text-1 .form-container .gform_body select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.45);
  background: transparent;
  box-shadow: none;
  color: rgba(49, 59, 62, 0.9);
  padding: 8px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px);
  line-height: 1.1;
  transition: 0.2s cubic-bezier(0.77, 0, 0.18, 1) border-color;
  border-radius: 0;
}
section.inschrijven.text.text-1 .form-container .gform_body input[type=text]:focus,
section.inschrijven.text.text-1 .form-container .gform_body input[type=email]:focus,
section.inschrijven.text.text-1 .form-container .gform_body input[type=tel]:focus,
section.inschrijven.text.text-1 .form-container .gform_body input[type=date]:focus,
section.inschrijven.text.text-1 .form-container .gform_body input[type=number]:focus,
section.inschrijven.text.text-1 .form-container .gform_body textarea:focus,
section.inschrijven.text.text-1 .form-container .gform_body select:focus {
  outline: none;
  border-color: rgba(49, 59, 62, 0.8);
}
section.inschrijven.text.text-1 .form-container .gform_body textarea {
  min-height: 140px;
  resize: vertical;
}
section.inschrijven.text.text-1 .form-container .gform_body .ginput_container .gfield_checkbox {
  flex-direction: row;
}
section.inschrijven.text.text-1 .form-container .gform_body .gfield_checkbox,
section.inschrijven.text.text-1 .form-container .gform_body .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
section.inschrijven.text.text-1 .form-container .gform_body .gfield_checkbox > div,
section.inschrijven.text.text-1 .form-container .gform_body .gfield_checkbox > li,
section.inschrijven.text.text-1 .form-container .gform_body .gfield_radio > div,
section.inschrijven.text.text-1 .form-container .gform_body .gfield_radio > li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
section.inschrijven.text.text-1 .form-container .gform_body .gfield_checkbox input,
section.inschrijven.text.text-1 .form-container .gform_body .gfield_radio input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  border-radius: 0px;
  background-color: transparent;
  accent-color: #313B3E;
}
section.inschrijven.text.text-1 .form-container .gform_body .gfield_checkbox label,
section.inschrijven.text.text-1 .form-container .gform_body .gfield_radio label {
  margin: 0;
  color: rgba(49, 59, 62, 0.8);
  font-weight: 400;
}
section.inschrijven.text.text-1 .form-container .gform_footer,
section.inschrijven.text.text-1 .form-container .gform_page_footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 18px;
  margin-top: 28px;
  padding: 0;
}
section.inschrijven.text.text-1 .form-container .gform_footer input[type=submit],
section.inschrijven.text.text-1 .form-container .gform_footer button,
section.inschrijven.text.text-1 .form-container .gform_page_footer input[type=submit],
section.inschrijven.text.text-1 .form-container .gform_page_footer button {
  grid-column: 2;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFF2E1;
  font-family: "Montserrat", sans-serif;
  font-size: calc(clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px) * 0.95);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: 0.25s cubic-bezier(0.77, 0, 0.18, 1) background-color;
}
section.inschrijven.text.text-1 .form-container .gform_footer input[type=submit]:hover,
section.inschrijven.text.text-1 .form-container .gform_footer button:hover,
section.inschrijven.text.text-1 .form-container .gform_page_footer input[type=submit]:hover,
section.inschrijven.text.text-1 .form-container .gform_page_footer button:hover {
  background-color: rgba(0, 0, 0, 0.82);
}
section.inschrijven.text.text-2 {
  padding-top: 0;
}
section.inschrijven.text.text-2 .dual-columns {
  margin-top: 0;
  text-align: left;
}
section.inschrijven.text.text-2 a.cta-btn {
  margin-top: 35px;
}
section.inschrijven.types {
  background-image: none;
  padding-top: clamp(60px, 16vw, 200px);
  background-color: #313B3E;
}
section.inschrijven.types .type {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}
section.inschrijven.types .type::after {
  content: "";
  position: relative;
  height: 1px;
  width: 100%;
  background-color: #F10D47;
  grid-row: 3;
  grid-column: 2/span 8;
}
section.inschrijven.types .type .image-container {
  grid-row: 1;
}
section.inschrijven.types .type .image-container img {
  width: 100%;
  height: auto;
  display: block;
}
section.inschrijven.types .type .title-container {
  grid-row: 1;
  padding-top: 100px;
  align-self: flex-end;
}
section.inschrijven.types .type .title-container h4 {
  font-weight: 500;
  margin-bottom: 2em;
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px);
}
section.inschrijven.types .type .title-container h2 {
  font-weight: 350;
}
section.inschrijven.types .type .text-container {
  grid-row: 2;
  grid-column: 2/span 8;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 9%;
  margin-top: 50px;
  padding-bottom: 75px;
}
section.inschrijven.types .type .text-container a.cta-btn {
  margin-top: 35px;
}
section.inschrijven.types .type:nth-child(odd) .image-container {
  grid-column: 1/span 3;
}
section.inschrijven.types .type:nth-child(odd) .title-container {
  grid-column: 4/span 5;
  padding-left: 10%;
}
section.inschrijven.types .type:nth-child(even) .image-container {
  grid-column: 8/span 3;
}
section.inschrijven.types .type:nth-child(even) .title-container {
  grid-column: 2/span 5;
}
section.inschrijven.types .type:last-child::after {
  display: none;
}
section.inschrijven.text {
  padding-top: clamp(60px, 16vw, 200px);
  padding-bottom: clamp(60px, 16vw, 200px);
}
section.inschrijven.text.text-2 {
  background-image: none;
  background-color: #313B3E;
}
section.inschrijven.text.text-2 .display.left {
  margin-bottom: 25px;
  transform: rotate(-5deg);
}
section.inschrijven.call-to-action {
  background-color: #FFF2E1;
}
section.inschrijven.planning {
  background-image: none;
  padding-top: clamp(60px, 16vw, 200px);
  background-color: #313B3E;
}
section.inschrijven.horizontal-slider {
  background-image: none;
  background-color: #313B3E;
}
section.inschrijven.horizontal-slider::after {
  content: none;
}

section.details.intro {
  top: 0;
  width: 100%;
  background-color: #FFF2E1;
  padding-bottom: clamp(30px, 8vw, 100px);
  position: relative;
  height: 100vh;
}
section.details.intro .logo {
  position: absolute;
  padding: 0 5vw;
  padding-bottom: 50px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}
section.details.intro .logo img {
  max-width: 300px;
}
section.details.intro .standard-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  align-items: flex-end;
  grid-gap: 20px;
}
section.details.intro .wysiwyg {
  grid-column: 2/span 7;
}
section.details.intro .wysiwyg h1 {
  font-weight: 600;
}
section.details.pijlers {
  background-color: #FFF2E1;
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
section.details.pijlers .standard-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 60px 20px;
}
section.details.pijlers .pijler {
  display: grid;
  grid-column: 2/span 9;
  grid-template-columns: repeat(10, 1fr);
  grid-gap: 40px;
  align-items: flex-start;
}
section.details.pijlers .pijler:first-child .text-container::before {
  content: none;
}
section.details.pijlers .pijler:last-child .title-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 2px;
  background-color: #F10D47;
}
section.details.pijlers .pijler .text-container {
  position: relative;
  grid-column: 1/span 5;
  display: grid;
  grid-gap: 20px;
  padding-top: 50px;
}
section.details.pijlers .pijler .text-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #F10D47;
}
section.details.pijlers .pijler .text-container h2 {
  font-weight: 600;
  color: #313B3E;
}
section.details.pijlers .pijler .text-container p {
  font-size: calc(clamp(18px, 18px + (28 - 18) * (100vw - 320px) / (1440 - 320), 28px) * 0.9);
  color: #313B3E;
}
section.details.pijlers .pijler .video-container {
  grid-column: 7/span 3;
  width: 100%;
  position: relative;
  overflow: hidden;
}
section.details.pijlers .pijler .video-container video {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.details.pijlers .pijler .title-container {
  position: relative;
  grid-column: 1/span 10;
  margin-top: 20px;
  padding-bottom: 50px;
}
section.details.pijlers .pijler .title-container h3 {
  font-size: 7.5vw;
  font-weight: 700;
  color: #313B3E;
}
section.details.text.text-2 {
  padding-top: 0;
  padding-bottom: 0;
}
section.details.text.text-3 {
  padding-top: clamp(60px, 16vw, 200px);
  padding-bottom: clamp(60px, 16vw, 200px);
}
section.details.text.text-3 .wysiwyg a.cta-btn {
  margin-top: 35px;
}

/* Footer
-----------------*/
footer {
  background-color: #313B3E;
  padding-top: clamp(45px, 12vw, 150px);
  padding-bottom: clamp(45px, 12vw, 150px);
}
footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #FFF2E1;
  z-index: 1;
}
footer .standard-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: auto auto;
  grid-gap: 125px 20px;
  align-items: start;
}
footer .logos-container {
  grid-column: 2/span 5;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}
footer .logos-container img {
  display: block;
  height: 10vw;
  width: auto;
  object-fit: contain;
}
footer .logos-container img:nth-child(2) {
  width: 12.5vw;
  margin-left: 3vw;
  padding-left: 5.5vw;
  border-left: 1px solid rgba(255, 242, 225, 0.55);
}
footer .text-container {
  grid-column: 7/span 3;
  grid-row: 1;
  text-align: left;
  justify-self: end;
  max-width: 420px;
}
footer .text-container p {
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 350;
}
footer .text-container a.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #FFF2E1;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px);
  font-weight: 300;
  transition: 0.25s cubic-bezier(0.77, 0, 0.18, 1) color;
}
footer .text-container a.contact-link::after {
  content: url("assets/images/footer-arrow.svg");
  font-family: "p22-flw-midway-two", cursive, fantasy;
  font-size: 24px;
  line-height: 0.4;
  margin-top: 3px;
  opacity: 0.5;
  transition: 0.25s cubic-bezier(0.77, 0, 0.18, 1) all;
}
footer .text-container a.contact-link:hover {
  color: #FFF2E1;
}
footer .text-container a.contact-link:hover::after {
  opacity: 1;
  transform: translateX(5px);
}
footer .slogan-container {
  grid-column: 2/span 3;
  grid-row: 2;
}
footer .slogan-container h4 {
  margin-bottom: 0;
}
footer .slogan-container h4 span {
  font-family: "p22-flw-midway-one", cursive, fantasy;
  font-size: clamp(36px, 36px + (60 - 36) * (100vw - 320px) / (1440 - 320), 60px);
  line-height: 0.5;
  color: #F10D47;
  display: inline-block;
  transform: none;
  font-weight: 300;
}
footer .links-container {
  grid-column: 5/span 5;
  grid-row: 2;
  justify-self: end;
  align-self: end;
}
footer .links-container ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .links-container ul li {
  margin: 0;
}
footer .links-container ul li a {
  color: rgba(255, 242, 225, 0.6);
  font-size: calc(clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px) * 0.9);
  font-weight: 300;
  transition: 0.25s cubic-bezier(0.77, 0, 0.18, 1) color;
}
footer .links-container ul li a:hover {
  color: #F10D47;
}

/* Media Queries
-------------------------*/
@media screen and (min-width: 1026px) {
  .phablet {
    display: none !important;
  }
}
@media screen and (min-width: 642px) {
  .mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 1025px) {
  .desktop-only {
    display: none !important;
  }
  header {
    top: 30px;
    left: 30px;
    right: auto;
    width: 50px;
    height: 50px;
    background-color: transparent;
  }
  header .bar {
    height: auto;
  }
  header .bar .hamburger {
    margin: 0;
  }
  header .bar .links {
    display: none;
  }
  nav ul.menu {
    flex-direction: column;
    height: 100%;
  }
  nav ul.menu:hover li {
    flex-grow: 1;
  }
  nav ul.menu li {
    flex: 1 1 0;
    width: 100%;
    transform: translateX(-100%);
    justify-content: flex-start;
  }
  nav ul.menu li:hover {
    flex-grow: 1;
  }
  nav ul.menu li a {
    justify-content: flex-start;
    padding: 40px 50px;
  }
  nav ul.menu li h3 {
    width: 100%;
    text-align: center;
  }
  nav ul.menu li h3 span {
    padding-left: 30px;
  }
  nav ul.menu li.white, nav ul.menu li.light-blue, nav ul.menu li.blue {
    flex-grow: 1;
  }
  nav.active ul.menu li {
    transform: translateX(0);
  }
  .grid-x.standard-grid {
    padding-left: 30px;
    padding-right: 30px;
  }
  section.vertical-slider {
    height: auto;
  }
  section.vertical-slider .cell {
    grid-template-columns: 1fr;
    grid-gap: clamp(15px, 4vw, 50px);
  }
  section.vertical-slider .cell .text-container {
    grid-column: 1;
    order: 2;
    padding-bottom: 0;
  }
  section.vertical-slider .cell .vertical-slider {
    grid-column: 1;
    order: 1;
    height: 70vh;
  }
  section.visual .standard-grid .wysiwyg {
    width: 100%;
    padding: clamp(15px, 4vw, 50px);
  }
  section.text .standard-grid {
    grid-template-columns: 1fr;
    grid-gap: clamp(15px, 4vw, 50px);
  }
  section.text .standard-grid .illustration,
  section.text .standard-grid .wysiwyg {
    grid-column: 1 !important;
  }
  section.text .standard-grid .illustration {
    order: 1;
    transform: none;
    align-self: auto;
  }
  section.text .standard-grid .wysiwyg {
    order: 2;
  }
  section.text .dual-columns {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  section.building-phases {
    grid-template-columns: 1fr;
  }
  section.building-phases .building {
    grid-column: 1;
    grid-row: 2;
  }
  section.building-phases .building img {
    transform-origin: 30% 80%;
    transform: scale(1.3);
  }
  section.building-phases .building-phase-navigation {
    grid-column: 1;
    grid-row: 1;
    margin-top: 100px;
    margin-left: 30px;
    margin-bottom: 50px;
  }
  section.horizontal-slider {
    grid-gap: 30px;
  }
  section.horizontal-slider .row,
  section.horizontal-slider .row .track {
    gap: 30px;
  }
  section.horizontal-slider .row .track img {
    width: 40vw;
  }
  section.home.vertical-slider .text-container {
    margin-bottom: 75px;
  }
  section.home.types {
    padding-left: 0;
  }
  section.home.types .grid-x {
    grid-template-columns: 1fr;
  }
  section.inschrijven.text.text-1 .form-container .gform_body .gform_fields {
    grid-template-columns: 1fr;
  }
  section.inschrijven.text.text-1 .form-container .gform_footer,
  section.inschrijven.text.text-1 .form-container .gform_page_footer {
    grid-template-columns: 1fr;
  }
  section.inschrijven.text.text-1 .form-container .gform_footer input[type=submit],
  section.inschrijven.text.text-1 .form-container .gform_footer button,
  section.inschrijven.text.text-1 .form-container .gform_page_footer input[type=submit],
  section.inschrijven.text.text-1 .form-container .gform_page_footer button {
    grid-column: 1;
  }
  section.inschrijven.types .type {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  section.inschrijven.types .type::after {
    grid-column: 1;
    grid-row: 4;
  }
  section.inschrijven.types .type .image-container,
  section.inschrijven.types .type .title-container,
  section.inschrijven.types .type .text-container {
    grid-column: 1 !important;
  }
  section.inschrijven.types .type .image-container {
    grid-row: 1;
  }
  section.inschrijven.types .type .title-container {
    grid-row: 2;
    padding-top: 0;
    padding-left: 0 !important;
  }
  section.inschrijven.types .type .text-container {
    grid-row: 3;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-top: 0;
    padding-bottom: 30px;
  }
  section.details.intro {
    min-height: 100vh;
  }
  section.details.intro .wysiwyg {
    grid-column: 1/span 10;
  }
  section.details.pijlers .standard-grid {
    grid-template-columns: 1fr;
    grid-gap: clamp(15px, 4vw, 50px);
  }
  section.details.pijlers .pijler {
    grid-column: 1 !important;
    grid-template-columns: 1fr !important;
    grid-gap: 25px;
  }
  section.details.pijlers .pijler .text-container,
  section.details.pijlers .pijler .video-container,
  section.details.pijlers .pijler .title-container {
    grid-column: 1 !important;
  }
  section.project.timeline .standard-grid {
    grid-template-columns: 1fr;
    grid-gap: clamp(15px, 4vw, 50px);
  }
  section.project.timeline .time-point {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 25px;
    margin-bottom: 75px;
  }
  section.project.timeline .time-point .image-container,
  section.project.timeline .time-point .text-container,
  section.project.timeline .time-point .date {
    grid-column: 1 !important;
  }
  section.project.timeline .time-point .image-container {
    grid-row: 1;
  }
  section.project.timeline .time-point .image-container.illustration {
    grid-column: 1 !important;
  }
  section.project.timeline .time-point .text-container {
    grid-row: 2;
  }
  section.project.timeline .time-point .date {
    grid-row: 3;
  }
  footer {
    padding-top: clamp(15px, 4vw, 50px);
    padding-bottom: clamp(15px, 4vw, 50px);
  }
  footer .standard-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 25px;
  }
  footer .logos-container,
  footer .text-container,
  footer .slogan-container,
  footer .links-container {
    grid-column: 1 !important;
    grid-row: auto !important;
    text-align: left;
    justify-self: start;
  }
  footer .logos-container {
    gap: 20px;
  }
  footer .text-container {
    max-width: 100%;
  }
  footer .text-container p {
    margin-bottom: 10px;
  }
  footer .text-container .contact-link {
    font-size: clamp(14px, 14px + (17 - 14) * (100vw - 320px) / (1440 - 320), 17px);
  }
  footer .text-container .contact-link::after {
    font-size: 28px;
  }
  footer .links-container ul {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px 30px;
  }
  .popup .panel {
    width: 60vw;
  }
}
@media screen and (max-width: 641px) {
  .tablet-up {
    display: none !important;
  }
  .grid-x.standard-grid {
    padding-left: 20px;
    padding-right: 20px;
  }
  header {
    top: 20px;
    left: 20px;
    right: auto;
    width: 50px;
    height: 50px;
    background-color: transparent;
  }
  header .bar {
    height: auto;
  }
  header .bar .hamburger {
    margin: 0;
  }
  header .bar .hamburger span.text {
    display: none;
  }
  header .bar .links {
    display: none;
  }
  .popup.active .panel .close {
    transform: translateX(0px);
  }
  section.building-phases .building-phase-navigation {
    line-height: 40px;
  }
  section.building-phases .building-phase-navigation li::after {
    height: calc(100% - 40px);
  }
  section.vertical-slider .cell .vertical-slider {
    height: 55vh;
  }
  section.horizontal-slider {
    padding-bottom: 60px;
  }
  section.horizontal-slider .row,
  section.horizontal-slider .row .track {
    gap: 20px;
  }
  section.horizontal-slider .row .track img {
    width: 50vw;
  }
  section.call-to-action a.cta-btn {
    margin-top: 25px;
  }
  section.home.intro a img {
    width: 200px;
    margin-top: -50px;
  }
  section.home.vertical-slider .text-container img {
    display: none;
  }
  section.home.visual .standard-grid::after {
    content: none;
  }
  section.home.types .grid-x {
    grid-gap: 50px;
  }
  section.home.map ul.spaces li {
    padding: 8px 16px;
    font-size: 12px;
  }
  section.home.text.text-1 {
    padding: 50px 0;
  }
  section.home.text.text-2 {
    padding: 75px 0;
  }
  section.home.text.text-3 {
    padding: 75px 0;
  }
  section.home.text.text-4 {
    padding: 75px 0;
    padding-top: 50px;
  }
  section.home.text.text-4 .standard-grid .illustration {
    align-self: flex-start !important;
    transform: translateY(-400px);
  }
  section.home.text.text-5 {
    padding: 75px 0;
  }
  section.home.planning .container {
    grid-column: 1/span 10;
    padding: clamp(30px, 8vw, 100px) 0 clamp(60px, 16vw, 200px);
  }
  section.home.planning .container ul li {
    font-size: clamp(22px, 22px + (40 - 22) * (100vw - 320px) / (1440 - 320), 40px);
  }
  section.home.planning .container img {
    display: none;
  }
  section.home.frame iframe {
    height: 400px;
  }
  section.inschrijven.vertical-slider .cell .vertical-slider {
    height: 50vh;
  }
  section.inschrijven.vertical-slider .text-container {
    padding-bottom: clamp(30px, 8vw, 100px);
  }
  section.inschrijven.planning {
    padding-bottom: 50px;
  }
  section.inschrijven.planning .container {
    padding-bottom: 10px;
  }
  section.details.intro {
    padding-top: 150px;
    padding-bottom: 50px;
    height: auto;
    min-height: 50vh;
  }
  section.details.intro .wysiwyg {
    grid-column: 1/span 10;
  }
  section.details.pijlers .pijler .title-container h3 {
    font-size: 10.5vw;
  }
  section.project.timeline .time-point .date {
    margin-top: -25px;
    font-size: 25vw;
  }
  section.project.timeline .time-point .image-container .cta-btn {
    left: 15px;
    bottom: 15px;
  }
  .popup .panel {
    width: 100vw;
    height: 100svh;
  }
  footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  footer .grid-x.standard-grid {
    grid-gap: 50px;
  }
  footer .logos-container {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  footer .logos-container img {
    width: 90%;
    height: 80px;
    max-height: 100px;
    border: none !important;
    padding: 0 !important;
  }
  footer .logos-container img:first-child {
    margin-bottom: 25px;
  }
  footer .slogan-container {
    display: block;
    width: 100%;
  }
  footer .slogan-container h4 {
    text-align: center;
  }
  footer .slogan-container h4 span {
    font-size: clamp(40px, 40px + (64 - 40) * (100vw - 320px) / (1440 - 320), 64px);
  }
  footer .text-container {
    text-align: center;
  }
  footer .text-container .contact-link {
    font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / (1440 - 320), 24px);
  }
  footer .text-container .contact-link::after {
    font-size: 24px;
  }
  footer .links-container {
    width: 100%;
  }
  footer .links-container ul {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
}