/* Variables
-------------------------*/
/* Colors */
@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Actor&display=swap");
:root {
  --plyr-color-main: #B7C47E;
}

/* CSS Properties */
/* Fonts */
h1, h2, h3, h4, h5, p, ul li, ol li, a {
  color: inherit;
  font-family: "Abril Fatface", cursive;
  font-weight: 400;
  hyphens: manual;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
  font-family: "Abril Fatface", cursive;
  line-height: 1.25;
  font-weight: 350;
  margin-bottom: 0.65em;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, .h1 strong, .h2 strong, .h3 strong, .h4 strong, .h5 strong {
  font-weight: 500;
}

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

.wysiwyg {
  color: #FFFFFF;
}
.wysiwyg.center {
  text-align: center;
}
.wysiwyg.purple h1.highlight, .wysiwyg.purple h2.highlight, .wysiwyg.purple h3.highlight, .wysiwyg.purple h4.highlight, .wysiwyg.purple h5.highlight, .wysiwyg.purple p.highlight {
  color: #B7C47E;
}
.wysiwyg.white h1.highlight, .wysiwyg.white h2.highlight, .wysiwyg.white h3.highlight, .wysiwyg.white h4.highlight, .wysiwyg.white h5.highlight, .wysiwyg.white p.highlight {
  color: #96316D;
}
.wysiwyg.green h1.highlight, .wysiwyg.green h2.highlight, .wysiwyg.green h3.highlight, .wysiwyg.green h4.highlight, .wysiwyg.green h5.highlight, .wysiwyg.green p.highlight {
  color: #96316D;
}
.wysiwyg.green p a:hover {
  color: #96316D;
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg p {
  letter-spacing: 0.5px;
}
.wysiwyg h1.highlight, .wysiwyg h2.highlight, .wysiwyg h3.highlight, .wysiwyg h4.highlight, .wysiwyg h5.highlight, .wysiwyg p.highlight {
  color: #B7C47E;
}
.wysiwyg .h0 {
  font-size: clamp(48px, 48px + (95 - 48) * (100vw - 320px) / (1440 - 320), 95px);
}
.wysiwyg h1, .wysiwyg .h1 {
  font-size: clamp(32px, 32px + (65 - 32) * (100vw - 320px) / (1440 - 320), 65px);
  line-height: 1.45;
}
.wysiwyg h2, .wysiwyg .h2 {
  font-size: 38px;
  line-height: 1.45;
}
.wysiwyg h3, .wysiwyg .h3 {
  font-size: clamp(18px, 18px + (30 - 18) * (100vw - 320px) / (1440 - 320), 30px);
  line-height: 1.35;
}
.wysiwyg h4, .wysiwyg .h4 {
  font-size: 20px;
  line-height: 1.35;
}
.wysiwyg p.highlight {
  text-transform: uppercase;
  color: #B7C47E;
}
.wysiwyg h5, .wysiwyg .h5 {
  font-size: 16px;
  line-height: 1.25;
}
.wysiwyg p, .wysiwyg ul li, .wysiwyg ol li, .wysiwyg a {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}
.wysiwyg p strong, .wysiwyg ul li strong, .wysiwyg ol li strong, .wysiwyg a strong {
  font-weight: 500;
}
.wysiwyg a {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: underline;
}
.wysiwyg p a {
  text-decoration: underline;
  transition: color 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}
.wysiwyg p a:hover {
  color: #FFFFFF;
}

/* Elements
-------------------------*/
[data-reveal=fade] {
  opacity: var(--opacity, 0) !important;
  will-change: transform;
  transform: rotate(var(--rotation, 0deg)) translateY(var(--vertical, 50px)) translateX(var(--horizontal, 0px)) scale(var(--scale, 1));
  transition: opacity var(--duration, 1.25s) cubic-bezier(0.77, 0, 0.18, 1) calc(var(--delay, 0s) + 0.15s), transform var(--duration, 1.25s) ease calc(var(--delay, 0s) + 0.15s);
}
[data-reveal=fade].revealed {
  opacity: var(--to-opacity, 1) !important;
  transform: translateY(0px);
}

[data-reveal=fade-image] {
  opacity: var(--opacity, 0) !important;
  will-change: transform;
  transform: rotate(var(--rotation, 0deg)) translateY(var(--vertical, -100px)) translateX(var(--horizontal, 0px)) scale(var(--scale, 1));
  transition: opacity var(--duration, 1.5s) cubic-bezier(0.77, 0, 0.18, 1) calc(var(--delay, 0s) + 0.15s), transform var(--duration, 2.5s) ease calc(var(--delay, 0s) + 0.15s);
}
[data-reveal=fade-image].revealed {
  opacity: var(--to-opacity, 1) !important;
  transform: translateY(0px);
}

.image-container {
  position: relative;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-btn {
  display: flex;
  gap: 10px;
  background-color: #FFFFFF;
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 30px;
  cursor: pointer;
  transition: 0.25s ease all;
}
.cta-btn.bigger span.text {
  font-size: 18px;
}
.cta-btn.purple {
  background-color: #96316D;
}
.cta-btn.purple:hover {
  background-color: #B7C47E;
}
.cta-btn.purple span.text {
  color: #FFFFFF;
}
.cta-btn:hover {
  background-color: #BDCC81;
}
.cta-btn:hover span.text {
  color: #FFFFFF;
}
.cta-btn span.icon svg {
  width: 15px;
}
.cta-btn span.text {
  font-family: "Actor", sans-serif;
  font-weight: 300;
  font-size: 12.6px;
  text-decoration: none;
  text-transform: uppercase;
  color: #B7C47E;
  transition: 0.25s ease all;
}

body {
  display: flex;
  align-items: center;
  height: 100vh;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
}
body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
}
body a.prev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 65px;
  height: 100%;
  transition: 0.25s ease all;
}
body a.prev.disabled {
  pointer-events: none;
}
body a.prev:hover {
  width: 75px;
}
body a.prev:hover img {
  transform: scaleX(-1) translateX(3px);
  opacity: 1;
}
body a.prev img {
  transform: scaleX(-1);
  opacity: 0.3;
  transition: 0.25s ease all;
}
body a.next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  width: 65px;
  height: 100%;
  transition: 0.25s ease all;
}
body a.next.disabled {
  pointer-events: none;
}
body a.next:hover {
  width: 75px;
}
body a.next:hover img {
  opacity: 1;
  transform: translateX(3px);
}
body a.next img {
  opacity: 0.3;
  transition: 0.25s ease all;
}
body .page-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  margin: auto;
  width: 1500px;
  max-width: calc(100% - 175px);
  height: calc(100% - 130px);
}
body .page-content.more {
  width: 1550px;
  justify-content: flex-end;
  align-items: flex-start;
}
body .page-content.project {
  width: calc(100% - 130px);
  max-width: 2000px;
}
body .page-content.project.spread section.project.main {
  grid-template-columns: 12fr 10fr 10fr;
}
body .page-content.project.spread .project-title {
  grid-column: 1;
}
body .page-content.project.spread .project-info {
  grid-column: 2;
}
body .page-content.project.flipped .project-title, body .page-content.project.multiple .project-title {
  grid-column: 2;
  grid-row: 1;
}
body .page-content.project.flipped .project-info, body .page-content.project.multiple .project-info {
  grid-column: 1;
  grid-row: 1;
}
body .page-content.project.multiple .project-info {
  height: calc(100vh - 300px);
  transform: translateY(0px);
}
body .page-content.project section.project.main {
  display: grid;
  grid-template-columns: 10fr 12fr 8fr;
  grid-gap: 20px;
  padding: 0 75px;
  align-items: center;
}
body .page-content.lesson {
  width: calc(100% - 130px);
  max-width: 2000px;
}
body .page-content.lesson a.cta-btn {
  position: absolute;
  z-index: 2;
  top: 0;
  transform: translateY(-50%);
}
body .page-content.lesson a.cta-btn:hover {
  background-color: rgb(106.7604790419, 34.7395209581, 77.9520958084);
}
body .page-content.contact {
  transform: translateY(-50px);
  width: 1550px;
  max-width: calc(100% - 300px);
  height: calc(100% - 150px);
  justify-content: flex-end;
  align-items: flex-start;
}
body .page-content.contact section.scroll {
  width: 50vw;
  padding-right: 50px;
}
body section.scroll {
  position: relative;
  overscroll-behavior: contain;
  overflow-y: auto;
  padding-top: 2.5vw;
  padding-bottom: 2.5vw;
}
body section.scroll::-webkit-scrollbar {
  width: 4px;
}
body.purple {
  background-color: #96316D;
}
body.purple::before, body.purple::after, body.purple a.prev, body.purple a.next {
  background-color: #9B4B7B;
}
body.purple section.scroll::-webkit-scrollbar-track {
  background: #9B4B7B;
}
body.purple section.scroll::-webkit-scrollbar-thumb {
  background: #FFFFFF;
}
body.purple section.scroll::-webkit-scrollbar-thumb:hover {
  background: rgb(229.5, 229.5, 229.5);
}
body.white {
  background-color: #FFFFFF;
}
body.white::before, body.white::after, body.white a.prev, body.white a.next {
  background-color: #F2E9EF;
}
body.white section.scroll::-webkit-scrollbar-track {
  background: #F2E9EF;
}
body.white section.scroll::-webkit-scrollbar-thumb {
  background: #96316D;
}
body.white section.scroll::-webkit-scrollbar-thumb:hover {
  background: rgb(111.5577889447, 36.4422110553, 81.0653266332);
}
body.green {
  background-color: #BDCC81;
}
body.green nav li a:hover, body.green nav li a.active {
  color: #FFFFFF;
}
body.green::before, body.green::after, body.green a.prev, body.green a.next {
  background-color: #929E5E;
}
body.green section.scroll.light::-webkit-scrollbar-track {
  background: #B7C47E;
}
body.green section.scroll.light::-webkit-scrollbar-thumb {
  background: #7E295C;
}
body.green section.scroll.light::-webkit-scrollbar-thumb:hover {
  background: rgb(87.5209580838, 28.4790419162, 63.9041916168);
}
body.green section.scroll.dark::-webkit-scrollbar-track {
  background: rgb(201.3610169492, 213.5516949153, 152.5983050847);
}
body.green section.scroll.dark::-webkit-scrollbar-thumb {
  background: #7E295C;
}
body.green section.scroll.dark::-webkit-scrollbar-thumb:hover {
  background: rgb(87.5209580838, 28.4790419162, 63.9041916168);
}

/* Header
-----------------*/
header {
  position: absolute;
  z-index: 9;
  bottom: 35px;
  right: 35px;
}
header img {
  width: 200px;
}

nav {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 65px;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  display: inline-block;
  text-decoration: none;
  font-family: "Abril Fatface", cursive;
  font-size: 16px;
  color: #96316D;
  transition: 0.15s ease all;
}
nav ul li a.active {
  color: #B7C47E;
}
nav ul li a:hover {
  color: #B7C47E;
  transform: translateY(-2px);
}

/* Content
-----------------*/
section {
  padding-right: 150px;
  padding-left: 150px;
}
section .button-container {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

section.intro.home.scroll {
  height: 50vh;
}
section.intro.home.scroll p.highlight {
  margin-bottom: 25px;
}
section.intro.home.buttons {
  width: 100%;
  margin-top: 50px;
}
section.intro.home.buttons .button-container {
  margin-top: 0;
}
section.intro.home.buttons .button-container .skip-intro-joke {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.intro.home.buttons .button-container .skip-intro-joke > .cta-btn {
  border: none;
  width: 100%;
  display: flex !important;
  justify-content: center;
}
section.intro.home.buttons .button-container .skip-intro-joke > .cta-btn span.text {
  text-align: center;
}
section.intro.home.buttons .button-container .skip-intro-joke > .cta-btn.is-clicked {
  background-color: #B7C47E;
}
section.intro.home.buttons .button-container .skip-intro-joke > .cta-btn.is-clicked span.text {
  color: #FFFFFF;
}
section.intro.home.buttons .button-container .skip-intro-joke__step {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease, margin-top 0.28s ease;
}
section.intro.home.buttons .button-container .skip-intro-joke__step.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 62px;
  margin-top: 10px;
}
section.intro.home.buttons .button-container .skip-intro-joke__step.is-clicked-light {
  background-color: rgb(196.6723404255, 207.2037234043, 150.4962765957);
}
section.intro.home.buttons .button-container .skip-intro-joke__step.is-clicked-light span.text {
  color: #FFFFFF;
}
section.intro.lost .wysiwyg {
  margin-bottom: 50px;
}
section.intro.lost .link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 50px;
}
section.intro.lost .link-grid a {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 15px;
}
section.intro.lost .link-grid a:hover span.text {
  transform: translateX(3px);
  color: #B7C47E;
}
section.intro.lost .link-grid a span.icon {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #B7C47E;
  border-radius: 50%;
}
section.intro.lost .link-grid a span.icon::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 9px;
  width: 8px;
  height: 8px;
  border: 1px solid #96316D;
  border-color: #96316D #96316D transparent transparent;
  transform: rotate(45deg);
}
section.intro.lost .link-grid a span.text {
  font-family: "Abril Fatface", cursive;
  font-size: 20px;
  color: #FFFFFF;
  transition: 0.25s ease all;
}
section.intro.about {
  position: relative;
}
section.intro.about.collage {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
section.intro.about.collage .shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  width: 16vw;
  aspect-ratio: 1/1;
}
section.intro.about.collage .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
section.intro.about.collage .shot-top {
  top: -7%;
  left: 3%;
}
section.intro.about.collage .shot-bottom-left {
  bottom: -7%;
  left: 25%;
}
section.intro.about.collage .shot-bottom-right {
  bottom: -7%;
  left: 65%;
}
section.intro.about.scroll {
  max-height: 60vh;
  padding-left: 50px;
  padding-right: 50px;
}
section.intro.about.scroll .wysiwyg {
  margin-bottom: 25px;
}
section.intro.about .wysiwyg {
  position: relative;
  z-index: 3;
}
section.intro.about .wysiwyg h3 strong {
  color: #B7C47E;
}
section.intro.more {
  position: relative;
}
section.intro.more.collage {
  position: absolute;
  pointer-events: none;
  z-index: 4;
  top: 72px;
  right: 150px;
  width: 280px;
}
section.intro.more.collage .shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  width: 240px;
  aspect-ratio: 1/1;
}
section.intro.more.collage .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
section.intro.more.collage .shot-top {
  top: -72px;
  right: 5%;
}
section.intro.more.collage .shot-middle {
  top: 200px;
  right: -28px;
}
section.intro.more.collage .shot-bottom {
  top: 470px;
  right: 10px;
}
section.intro.more.collage .shot[data-video] {
  pointer-events: auto;
  cursor: pointer;
}
section.intro.more.scroll {
  width: 60vw;
  margin-right: auto;
  margin-left: 0;
  min-height: 66vh;
  max-height: 80vh;
  padding-left: 50px;
  padding-right: 50px;
}
section.intro.more .wysiwyg p strong {
  color: #B7C47E;
}

section.projects {
  width: 100%;
  height: calc(100% - 50px);
  transform: translateY(-25px);
}
section.projects .wysiwyg {
  width: min(1040px, 100%);
  margin: 0 auto;
}
section.projects .wysiwyg h3 {
  margin-bottom: 40px;
}
section.projects .wysiwyg ul.projecten {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section.projects .wysiwyg ul.projecten li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(150, 49, 109, 0.2);
  padding: 8px 28px 8px 0;
  transition: 0.25s ease all;
  position: relative;
}
section.projects .wysiwyg ul.projecten li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid #B7C47E;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.25s ease all;
}
section.projects .wysiwyg ul.projecten li a:hover {
  transform: translateX(2px);
  border-bottom-color: #96316D;
}
section.projects .wysiwyg ul.projecten li a:hover::after {
  transform: translate(3px, -50%) rotate(45deg);
}
section.projects .wysiwyg ul.projecten li a span.title {
  font-family: "Abril Fatface", cursive;
  font-size: clamp(24px, 1.8vw, 38px);
  color: #B7C47E;
  line-height: 1.2;
}
section.projects .wysiwyg ul.projecten li a span.location {
  font-family: "Abril Fatface", cursive;
  color: #B7C47E;
  font-size: clamp(24px, 1.8vw, 38px);
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

section.project-media {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
section.project-media .media-reveal {
  position: absolute;
  margin: 0;
  aspect-ratio: 1/1;
  width: 14vw;
}
section.project-media .media-reveal figure {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
section.project-media .media-reveal figure[data-video] {
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.24s ease, filter 0.24s ease;
  transform-origin: 50% 50%;
}
section.project-media .media-reveal figure[data-video]:hover {
  transform: scale(1.05) rotate(1.2deg);
  filter: brightness(1.04);
}
section.project-media .media-reveal a {
  pointer-events: auto;
  transition: 0.25s ease all;
}
section.project-media .media-reveal a:hover {
  transform: scale(1.05);
}
section.project-media .media-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.project-media .cta-btn {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: 100px;
  pointer-events: auto;
}
section.project-media .cta-btn:hover {
  background-color: #B7C47E;
  color: #96316D;
}
section.project-media.order-spread .media-1 {
  bottom: 65px;
  left: 5%;
}
section.project-media.order-spread .media-2 {
  top: -10px;
  left: 9%;
}
section.project-media.order-spread .media-3 {
  top: -5%;
  left: 50%;
}
section.project-media.order-spread .media-4 {
  top: calc(50% - 12vw);
  right: 100px;
}
section.project-media.order-spread .media-5 {
  bottom: 65px;
  right: 65px;
}
section.project-media.order-flipped .media-1 {
  top: -10px;
  left: 8%;
}
section.project-media.order-flipped .media-2 {
  top: 5%;
  right: 34%;
}
section.project-media.order-flipped .media-3 {
  top: 20%;
  right: 65px;
}
section.project-media.order-flipped .media-4 {
  bottom: 65px;
  right: 100px;
}
section.project-media.order-flipped .media-5 {
  bottom: 65px;
  right: 34%;
}
section.project-media.order-multiple .media-1 {
  top: 5%;
  right: 34%;
}
section.project-media.order-multiple .media-2 {
  top: 20%;
  right: 65px;
}
section.project-media.order-multiple .media-3 {
  bottom: 65px;
  right: 100px;
}
section.project-media.order-multiple .media-4 {
  bottom: 65px;
  right: 34%;
}

.project-media-layers {
  display: none;
}

section.project {
  position: relative;
  width: 100%;
  padding-top: 36px;
  padding-bottom: 40px;
}
section.project .project-title {
  color: #B7C47E;
  margin-left: 25px;
  padding: 0 35px;
  margin-bottom: 0px;
  font-size: clamp(42px, 4vw, 76px);
}
section.project .project-info {
  color: #96316D;
  height: 50vh;
  transform: translateY(10vh);
  padding: 0 50px 0 0;
}
section.project .project-info hr {
  border: none;
  margin: 50px 0;
}
section.project .project-info p strong {
  font-family: "Abril Fatface", cursive;
  color: #96316D;
}

section.lessons {
  width: 100%;
}
section.lessons .wysiwyg {
  margin: 0 auto;
  padding: 72px 90px;
}
section.lessons .wysiwyg h1 {
  margin-bottom: 36px;
  color: #96316D;
}
section.lessons .wysiwyg ul.lessons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
section.lessons .wysiwyg ul.lessons li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding: 8px 26px 8px 0;
  position: relative;
  transition: 0.25s ease all;
}
section.lessons .wysiwyg ul.lessons li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #FFFFFF;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.25s ease all;
}
section.lessons .wysiwyg ul.lessons li a:hover {
  transform: translateX(2px);
  border-bottom-color: rgba(150, 49, 109, 0.9);
}
section.lessons .wysiwyg ul.lessons li a:hover::after {
  transform: translate(3px, -50%) rotate(45deg);
  border-color: #96316D;
}
section.lessons .wysiwyg ul.lessons li a span.title {
  font-family: "Abril Fatface", cursive;
  font-size: clamp(24px, 1.8vw, 40px);
  color: #FFFFFF;
  line-height: 1.2;
  transition: 0.25s ease color;
}

section.lesson {
  position: relative;
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100%;
}
section.lesson .lesson-card {
  padding-top: 50px;
  padding-left: 75px;
  padding-right: 75px;
}
section.lesson .lesson-card.dark {
  background-color: #B7C47E;
}
section.lesson .lesson-card section {
  padding: 0;
  height: calc(100vh - 230px);
  padding-right: 50px;
}
section.lesson .lesson-card h1 {
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.75em;
  line-height: 1;
}
section.lesson .lesson-card blockquote {
  margin: 0 0 24px;
  font-family: "Abril Fatface", cursive;
  font-size: clamp(22px, 1.5vw, 30px);
  color: rgb(86.9047619048, 94.0476190476, 55.9523809524);
  line-height: 1.25;
  border: none;
  padding: 0;
}
section.lesson .lesson-card iframe {
  margin-bottom: 25px;
}
section.lesson .lesson-card .lesson-source {
  margin: 0 0 24px;
  color: #FFFFFF;
  font-size: 16px;
}
section.lesson .lesson-card .lesson-media {
  margin-bottom: 22px;
  border: 1px solid rgba(146, 158, 94, 0.3);
}
section.lesson .lesson-card .lesson-media img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}
section.lesson .lesson-card .lesson-copy p {
  color: rgb(116.4523809524, 126.0238095238, 74.9761904762);
}
section.lesson .lesson-card .lesson-copy p strong {
  color: #96316D;
  font-family: "Abril Fatface", cursive;
  text-transform: lowercase;
}
section.lesson .lesson-card .lesson-copy p strong::first-letter {
  text-transform: capitalize;
}
section.lesson .lesson-card .lesson-copy blockquote {
  margin-top: 25px;
  margin-bottom: 15px;
}
section.lesson .lesson-card .lesson-copy cite {
  color: #FFFFFF;
  font-family: "Actor", sans-serif;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 25px;
}

body.lesson-beelden .media-layer-modal__controls [data-layer-more] {
  display: none;
}
body.lesson-beelden .media-layer-modal__controls [data-layer-less] .text {
  font-size: 0;
  line-height: 0;
}
body.lesson-beelden .media-layer-modal__controls [data-layer-less] .text::after {
  content: "Sluiten";
  font-size: 18px;
  line-height: 1;
}

section.contact.collage {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
section.contact.collage .shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  width: 16vw;
  aspect-ratio: 1/1;
}
section.contact.collage .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
section.contact.collage .shot-a {
  top: -40px;
  left: 8%;
}
section.contact.collage .shot-b {
  top: 0;
  left: 65%;
}
section.contact.collage .shot-c {
  top: 25%;
  left: 75%;
}
section.contact.collage .shot-d {
  top: 50%;
  left: 70%;
}
section.contact.info-page {
  position: relative;
  height: 50vh;
  width: 50vw;
  padding: 0;
}
section.contact.info-page .wysiwyg p strong {
  color: #96316D;
}
section.contact.info-page .credits-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px 50px;
  margin-top: 35px;
  margin-bottom: 35px;
}
section.contact.info-page .credits-grid * {
  color: #96316D;
}
section.contact.info-page .credits-grid h5.highlight {
  font-size: 22px;
}
section.contact.info-page .credits-grid p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: "Abril Fatface", cursive;
}
section.contact.info-page .credits-grid p span {
  font-family: "Actor", sans-serif;
}
section.contact.info-page .credits-grid p span.credit-nickname {
  font-family: "Abril Fatface", cursive;
  color: #FFFFFF;
}
section.contact.info-page .credits-grid p {
  gap: 15px;
}
section.contact.info-page .credits-grid p.full {
  grid-template-columns: 1fr;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-sizing: border-box;
  overflow-y: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(49.0419161677, 15.9580838323, 35.8083832335, 0.8);
  backdrop-filter: blur(2px);
}
.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100vw - 80px);
  max-width: min(100%, 1100px);
  max-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  background: #000;
  flex-shrink: 0;
}
.video-modal__dialog .plyr {
  width: 100%;
}
.video-modal__dialog--portrait {
  width: min(100%, 420px);
  max-width: min(100%, 420px);
  max-height: calc(100vh - 60px);
  aspect-ratio: 9/16;
}
.video-modal__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease background-color;
  padding-bottom: 4px;
}
.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
}

.plyr__video-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #000;
}
.plyr__video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

body.video-modal-open {
  overflow: hidden;
}

.media-layer-modal {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: block;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.media-layer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(49.0419161677, 15.9580838323, 35.8083832335, 0.72);
  backdrop-filter: blur(2px);
}
.media-layer-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  padding: 60px 40px;
}
.media-layer-modal__grid {
  position: relative;
  width: 100%;
  height: 100%;
}
.media-layer-modal__grid .media-layer-modal__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.media-layer-modal__grid .media-layer-modal__layer figure {
  pointer-events: auto;
}
.media-layer-modal__grid figure {
  position: absolute;
  margin: 0;
  top: var(--scatter-y, 50%);
  left: var(--scatter-x, 50%);
  width: clamp(170px, var(--scatter-size, 22vw), 340px);
  aspect-ratio: 1/1;
  overflow: hidden;
  transform: translate(-50%, -50%) translateY(20px) scale(calc(0.94 * var(--video-hover-scale, 1))) rotate(calc(var(--enter-rotation, 0deg) + var(--video-hover-tilt, 0deg)));
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.34s ease, filter 0.34s ease;
  transition-delay: var(--enter-delay, 0ms);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}
.media-layer-modal__grid figure[data-video] {
  cursor: pointer;
}
.media-layer-modal__grid figure[data-video]:hover {
  --video-hover-scale: 1.05;
  --video-hover-tilt: 1.2deg;
  filter: brightness(1.04);
}
.media-layer-modal__grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-layer-modal__grid:has(.media-layer-modal__layer--visible + .media-layer-modal__layer--visible) .media-layer-modal__layer--visible:not(:last-child) figure {
  filter: blur(1.6px) brightness(0.8) saturate(0.82);
  opacity: 0.7;
}
.media-layer-modal__controls {
  position: absolute;
  top: 40px;
  right: 100px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.media-layer-modal__controls .cta-btn {
  padding: 15px 30px;
}
.media-layer-modal__controls [data-layer-more] {
  order: 1;
}
.media-layer-modal__controls [data-layer-less] {
  order: 2;
}
.media-layer-modal__controls [data-layer-more][disabled] {
  opacity: 1;
  cursor: not-allowed;
  background: #FFFFFF;
  color: #96316D;
  text-decoration: line-through;
  border-color: rgba(150, 49, 109, 0.35);
}
.media-layer-modal__controls [data-layer-more][disabled] .text {
  color: #929E5E;
  text-decoration: line-through;
}
.media-layer-modal--visible {
  opacity: 1;
  transform: scale(1);
}
.media-layer-modal--visible .media-layer-modal__layer--visible figure {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(calc(1 * var(--video-hover-scale, 1))) rotate(var(--video-hover-tilt, 0deg));
}

body.media-layer-open {
  overflow: hidden;
}

[data-delay=".25s"] {
  --delay: .25s;
}

[data-delay=".5s"] {
  --delay: .5s;
}

[data-delay=".75s"] {
  --delay: .75s;
}

[data-delay="1s"] {
  --delay: 1s;
}

[data-delay="1.25s"] {
  --delay: 1.25s;
}

[data-rotation="5deg"] {
  --rotation: 5deg;
}

[data-rotation="-5deg"] {
  --rotation: -5deg;
}

/* Footer
-----------------*/
/* 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;
  }
}
@media screen and (max-width: 641px) {
  .tablet-up {
    display: none !important;
  }
}