/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries near the relevant code. For example, if you wanted to change the styles for buttons on small devices, paste the mobile query code up in the buttons section and style it there.
*/

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}

/* Basic Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTITIE
html zetten we op 62.5% zodat alle REM berekeningen gebaseerd
zijn op 10px grootte. (bijv. 1.5rem = 15px) */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6em;
  line-height: 1.6;
  /* font-weight: 400; */
  font-family: "SF Compact Display", "HelveticaNeue", "Helvetica Neue",
    Helvetica, Arial, sans-serif;
  color: #222;
  --space: 2rem;
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */

  scroll-behavior: smooth;
}

.nowrap {
  white-space: nowrap;
}

.flex {
  display: flex;
  gap: var(--gap, 1rem);
}
.grid {
  display: grid;
  gap: var(--gap, 1rem);
}

.two-wide {
  grid-template-columns: minmax(0, 1fr);
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .two-wide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Variabelen
–––––––––––––––––––––––––––––––––––––––––––––––––– */

:root {
  --paarsLight: #e0addb;
  --paarsDark: #592954;
  --paars: #812c78;
  --geelLight: #f6ecc6;
  --geelDark: #584e29;
  --geel: #ffce00;

  --space: 2rem;

  --fs-xl: clamp(3.5rem, 12vw + 1rem, 8rem);
  --fs-900: 12rem;
  --fs-800: 7.2rem;
  --fs-700: 4.8rem;
  --fs-600: 3rem;
  --fs-500: 2.25rem;
  --fs-400: 1rem;
}

/* @link https://utopia.fyi/space/calculator?c=320,16,1.2,1240,24,1.25,10,4,&s=0.75|0.5|0.25,1.5|2|3|4|6|9,s-3xl|m-xl&g=s,l,xl,12 */

:root {
  --space-3xs: clamp(0.25rem, 0.2065rem + 0.2174vw, 0.375rem);
  --space-2xs: clamp(0.5rem, 0.413rem + 0.4348vw, 0.75rem);
  --space-xs: clamp(0.75rem, 0.6196rem + 0.6522vw, 1.125rem);
  --space-s: clamp(1rem, 0.8261rem + 0.8696vw, 1.5rem);
  --space-m: clamp(1.5rem, 1.2391rem + 1.3043vw, 2.25rem);
  --space-l: clamp(2rem, 1.6522rem + 1.7391vw, 3rem);
  --space-xl: clamp(3rem, 2.4783rem + 2.6087vw, 4.5rem);
  --space-2xl: clamp(4rem, 3.3043rem + 3.4783vw, 6rem);
  --space-3xl: clamp(6rem, 4.9565rem + 5.2174vw, 9rem);
  --space-4xl: clamp(9rem, 7.4348rem + 7.8261vw, 13.5rem);
  --space-5xl: clamp(12rem, 9.913rem + 10.4348vw, 18rem);
  --space-6xl: clamp(15rem, 12.3913rem + 13.0435vw, 22.5rem);

  /* One-up pairs */
  --space-3xs-2xs: clamp(0.25rem, 0.0761rem + 0.8696vw, 0.75rem);
  --space-2xs-xs: clamp(0.5rem, 0.2826rem + 1.087vw, 1.125rem);
  --space-xs-s: clamp(0.75rem, 0.4891rem + 1.3043vw, 1.5rem);
  --space-s-m: clamp(1rem, 0.5652rem + 2.1739vw, 2.25rem);
  --space-m-l: clamp(1.5rem, 0.9783rem + 2.6087vw, 3rem);
  --space-l-xl: clamp(2rem, 1.1304rem + 4.3478vw, 4.5rem);
  --space-xl-2xl: clamp(3rem, 1.9565rem + 5.2174vw, 6rem);
  --space-2xl-3xl: clamp(4rem, 2.2609rem + 8.6957vw, 9rem);
  --space-3xl-4xl: clamp(6rem, 3.3913rem + 13.0435vw, 13.5rem);
  --space-4xl-5xl: clamp(9rem, 5.8696rem + 15.6522vw, 18rem);
  --space-5xl-6xl: clamp(12rem, 8.3478rem + 18.2609vw, 22.5rem);

  /* Custom pairs */
  --space-s-3xl: clamp(1rem, -1.7826rem + 13.913vw, 9rem);
  --space-m-xl: clamp(1.5rem, 0.4565rem + 5.2174vw, 4.5rem);
  --space-2xl-6xl: clamp(4rem, -2.4348rem + 32.1739vw, 22.5rem);
  --space-l-6xl: clamp(2rem, -5.1304rem + 35.6522vw, 22.5rem);
}

:root {
  --size--4: clamp(0.4823rem, 0.4363rem + 0.2298vw, 0.6144rem);
  --size--3: clamp(0.5787rem, 0.5129rem + 0.3292vw, 0.768rem);
  --size--2: clamp(0.6944rem, 0.6021rem + 0.4618vw, 0.96rem);
  --size--1: clamp(0.8333rem, 0.7058rem + 0.6377vw, 1.2rem);
  --size-0: clamp(1rem, 0.8261rem + 0.8696vw, 1.5rem);
  --size-1: clamp(1.2rem, 0.9652rem + 1.1739vw, 1.875rem);
  --size-2: clamp(1.44rem, 1.1257rem + 1.5717vw, 2.3438rem);
  --size-3: clamp(1.728rem, 1.31rem + 2.0899vw, 2.9297rem);
  --size-4: clamp(2.0736rem, 1.5211rem + 2.7626vw, 3.6621rem);
  --size-5: clamp(2.4883rem, 1.7616rem + 3.6336vw, 4.5776rem);
  --size-6: clamp(2.986rem, 2.0343rem + 4.7584vw, 5.722rem);
  --size-7: clamp(3.5832rem, 2.3417rem + 6.2076vw, 7.1526rem);
  --size-8: clamp(4.2998rem, 2.6856rem + 8.0711vw, 8.9407rem);
  --size-9: clamp(5.1598rem, 3.0672rem + 10.4628vw, 11.1759rem);
  --size-10: clamp(6.1917rem, 3.4863rem + 13.5271vw, 13.9698rem);
}

.size-10 {
  font-size: var(--size-10);
}
.size-9 {
  font-size: var(--size-9);
}
.size-8 {
  font-size: var(--size-8);
}
.size-7 {
  font-size: var(--size-7);
}
.size-6 {
  font-size: var(--size-6);
}
.size-5 {
  font-size: var(--size-5);
}
.size-4 {
  font-size: var(--size-4);
}
.size-3 {
  font-size: var(--size-3);
}
.size-2 {
  font-size: var(--size-2);
}

/* Typografie
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  text-decoration: none;
}
@font-face {
  font-family: "SF Compact Display";
  src: url("../font/SFCompactDisplay-Regular.woff2") format("woff2"),
    url("../font/SFCompactDisplay-Regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pitchfork";
  src: url("../font/Pitchfork.woff2") format("woff2"),
    url("../font/Pitchfork.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  /* font-display: swap; */
}

.band-detail-text,
p {
  font-family: "SF Compact Display";
}

h1,
h2,
h3,
h4,
h5,
h6,
.marquee-text,
.social-text,
.pitch-font {
  font-family: "Pitchfork";
  /* margin-top: 0; */
  /* margin-bottom: 2rem; */
  font-weight: normal;
  margin: 0;
  line-height: 1.2;
}

h1,
.fs-900 {
  font-size: var(--size-8);
}
h2,
.main-links,
.fs-800 {
  font-size: var(--size-6);
}
h3,
h5,
.marquee-text,
.fs-700 {
  font-size: var(--size-5);
}
h4,
.band-detail-text,
.sub-links,
.fs-600 {
  font-size: var(--size-3);
}
.band-links,
.fs-500 {
  font-size: var(--size-2);
}
h6,
.social-text,
.fs-400 {
  font-size: var(--size-0);
}

p {
  margin-top: 0;
}

/* Kleuren
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.bg-geel {
  background-color: var(--geel);
  color: var(--geelLight);
}

.bg-paars {
  background-color: var(--paars);
  color: var(--paarsLight);
}

.bg-geel-light {
  background-color: var(--geelLight);
  color: var(--geel);
}

.bg-paars-light {
  background-color: var(--paarsLight);
  color: var(--paars);
}

.paars {
  color: var(--paars);
}
.geel {
  color: var(--geel);
}
.paars-light {
  color: var(--paarsLight);
}
.geel-light {
  color: var(--geelLight);
}
.paars-dark {
  color: var(--paarsDark);
}
.geel-dark {
  color: var(--geelDark);
}

/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main-header {
  position: relative;
  padding: var(--space-5xl) 0 var(--space-2xl) 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-header.page-detail {
  min-height: 40vh;
}

.main-header video.header-video {
  z-index: -10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.main-header img.header-image {
  z-index: -15;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.main-header img.header-logo {
  width: 80vw;
}

.main-header h1 {
  margin: 40px 0 0 0;
}
.main-header h3 {
  margin: -8px 0 0 0;
}

.main-header .overlay {
  z-index: -5;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background: var(--paars);
  opacity: 0.6;
}

.main-header .header-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

/* Larger than mobile */
@media (min-width: 400px) {
  .main-header img.header-logo {
    width: 350px;
  }
}

/* Larger than phablet */
@media (min-width: 550px) {
  .main-header img.header-logo {
    width: 450px;
  }
}

/* Larger than tablet */
@media (min-width: 750px) {
  .main-header {
    min-height: 80vh;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .main-header {
    min-height: 80vh;
  }
  .main-header.band-detail {
    min-height: 50vh;
  }
  .main-header img.header-logo {
    width: 600px;
  }
}

/* Marquees (scrollende taglines)
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.marquee {
  --duration: 60s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: calc(var(--gap) / 3); /*var(--gap)*/
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: calc(var(--gap) / 3); /*var(--gap)*/
  min-width: 100%;
  height: 56px; /*80px*/
  animation: scroll var(--duration) linear infinite;
}

.marquee__group p {
  letter-spacing: 0.05rem;
  text-align: center;
  margin: 0;
}

.marquee__group img {
  max-width: clamp(10rem, 1rem + 28vmin, 20rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}

.marquee__group .marquee-text::before {
  content: "*";
  position: relative;
  left: calc((var(--gap) / 3) / -2); /*calc(var(--gap) / -2);*/
}

/* Verminderde beweging modus */
@media (prefers-reduced-motion: reduce) {
  .marquee__group {
    animation-play-state: paused;
  }
}

.marquee--reverse .marquee__group {
  animation-direction: reverse;
  animation-delay: calc(var(--duration) / -2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Larger than mobile */
@media (min-width: 400px) {
  .marquee {
    gap: calc(var(--gap) / 2.5);
  }
  .marquee__group {
    height: 64px;
    gap: calc(var(--gap) / 2.5);
  }
  .marquee__group .marquee-text::before {
    left: calc((var(--gap) / 2.5) / -2);
  }
}

/* Larger than phablet */
@media (min-width: 550px) {
  .marquee {
    gap: calc(var(--gap) / 2);
  }
  .marquee__group {
    height: 72px;
    gap: calc(var(--gap) / 2);
  }
  .marquee__group .marquee-text::before {
    left: calc((var(--gap) / 2) / -2);
  }
}

/* Larger than tablet */
@media (min-width: 750px) {
  .marquee {
    gap: var(--gap);
  }
  .marquee__group {
    height: 80px;
    gap: var(--gap);
  }
  .marquee__group .marquee-text::before {
    left: calc(var(--gap) / -2);
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}

/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.nav-toggle {
  font-size: var(--size-4);
  position: fixed;
  top: var(--space-xl);
  right: var(--space-2xl);
  z-index: 9000;
  padding: var(--space-s) var(--space-l);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  align-items: center;
  color: white;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: filter 750ms ease-out;
}

.nav-toggle[aria-expanded="false"] #close {
  display: none;
}
.nav-toggle[aria-expanded="true"] #hamburger {
  display: none;
}

.drop-shadow-geel {
  filter: drop-shadow(2px 2px 0px var(--geel));
}
.drop-shadow-geel-dark {
  filter: drop-shadow(2px 2px 0px var(--geelDark));
}

.drop-shadow-paars {
  filter: drop-shadow(2px 2px 0px var(--paars));
}
.drop-shadow-paars-dark {
  filter: drop-shadow(2px 2px 0px var(--paarsDark));
}

.spacer {
  height: 48px;
}

.view-more-button {
  padding: 24px 32px;
  color: var(--paarsLight);
  background-color: var(--paars);
}

.nav-toggle svg {
  fill: white;
  height: var(--space-l);
  display: flex;
}

@media (min-width: 750px) {
  .nav-toggle svg {
    height: var(--space-m);
  }
}

.primary-header {
  z-index: 1000;
  position: fixed;
  padding: var(--space-2xl) var(--space-2xl);
  width: 100vw;
}

.link-button {
  font-size: var(--size-3);
  /* background-color: var(--paars); */
  color: white;
  padding: var(--space-xs) var(--space-m);
  border: 6px white solid;
  transition: filter 750ms ease-out;
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--paarsLight);
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;

  padding: var(--space-m) var(--space-l-6xl) var(--space-4xl) var(--space-xl);

  transform: translateX(100%);
  transition: transform 350ms ease-out;
}
.navigation-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: min(100vw, 600px);
}
.navigation[data-visible="true"] {
  transform: translateX(0%);
}

.primary-navigation,
.secondary-navigation {
  line-height: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  font-size: clamp(2rem, 2vw, 15vh);
}
.primary-navigation {
  font-size: var(--size-6);
  --gap: 2rem;
}
.secondary-navigation {
  font-size: var(--size-4);
  --gap: 1.5rem;
  margin-top: var(--space-xl);
}

.primary-navigation a {
  color: var(--paars);
}
.secondary-navigation a {
  color: var(--paarsDark);
}

.social-links {
  margin-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
}

.social-links a svg {
  fill: var(--geelLight);
  width: 2em;
  height: 2em;
}

/* Blokken Basic
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@keyframes slide-fade-in {
  from {
    opacity: 0;
    transform: translateY(5vh);
  }
}

.block {
  text-align: center;
  padding: 80px 24px; /*160px 160px*/
  align-items: center;
}

.block.page {
  text-align: left;
}

.block.page p {
  font-size: var(--size-3);
}

.section-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.block .max-width {
  width: 100%;
  max-width: 1000px;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.block.band-detail-page {
  align-items: center;
  text-align: left;
}

.block.bg-geel-light {
  color: var(--geelDark);
}
.block.bg-paars-light {
  color: var(--paarsDark);
}

.block .band-detail {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}
.band-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.band-links a {
  color: var(--paarsDark);
  fill: var(--paarsDark);
}
.band-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.band-links a span {
  word-wrap: break-word;
}
.band-links a svg {
  width: 24px;
  height: 24px;
}

section .section-grid,
section h1 {
  view-timeline-name: --item-timeline;
  animation: slide-fade-in both;
  animation-timeline: --item-timeline;
  animation-range: entry 20% contain 50%;
}

.section-grid {
  margin: 24px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 80px;
}



.bg-geel-light .section-grid-item {
  color: var(--geelDark);
}

.bg-paars-light .section-grid-item {
  color: var(--paarsDark);
}

/* Smaller than desktop */
@media (max-width: 999px) {
  .bg-geel-light .section-grid .section-grid-item:nth-child(even) {
    color: #a38927;
  }
  .bg-paars-light .section-grid .section-grid-item:nth-child(even) {
    color: #8d3583;
  }
}

.section-grid-item {
  position: relative;
}

.section-grid-item .special-guest {
  padding: 8px 16px;
  font-size: var(--size-2);
  background-color: var(--paarsLight);
  position: absolute;
  color: var(--paars);

  bottom: -32px;
  right: -24px;
  rotate: -4deg;
}

.carousel-text .special-guest {
  padding: 8px 16px;
  font-size: var(--size-2);
  background-color: var(--paarsLight);
  position: absolute;
  color: var(--paars);

  bottom: 64px;
  right: 16px;
  rotate: -4deg;
}

.margin-bottom {
  margin-bottom: 24px;
}

@media (min-width: 750px) {
  .section-grid-item .special-guest {
    bottom: -40px;
    right: -48px;
    rotate: -4deg;
  }
  .carousel-text .special-guest {
    bottom: 72px;
    right: 24px;
    rotate: -4deg;
  }
}

.section-grid-item h2 span,
.white-box {
  background: linear-gradient(
    0deg,
    rgba(255, 0, 255, 0) 0%,
    rgba(255, 0, 255, 0) 0%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 0, 255, 0) 50%
  );
  padding: 0 1.5rem 0 1.5rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Larger than mobile */
@media (min-width: 400px) {
  .block {
    padding: 80px 32px;
  }
}

/* Larger than phablet */
@media (min-width: 550px) {
  .block {
    padding: 80px 40px;
  }
  .band-links a svg {
    width: 40px;
    height: 40px;
  }
  .band-links a {
    gap: 24px;
  }
}

/* Larger than tablet */
@media (min-width: 750px) {
  .block {
    padding: 120px 80px;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .block {
    padding: 120px 120px;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .block {
    padding: 160px 160px;
  }
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  align-items: center;
}

.hide-overflow {
  overflow: hidden;
}

/* Carousel
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.carousel-wrapper {
  margin: 60px 0 0 0; /*120px 0 0 0*/
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
}
.carousel {
  width: 100%;
  height: calc(
    (300px * cos(12deg)) + 300px * sin(12deg)
  ); /*calc((500px * cos(12deg)) + 500px * sin(12deg));*/
}

.flickity-viewport {
  overflow: visible;
}

.flickity-page-dots {
  bottom: 0; /*16px*/
}

.carousel-cell {
  --size: 300px; /*500px*/
  --rotation: 0deg;
  --translation: 0px;
  transform: rotate(var(--rotation)) translateY(var(--translation));

  width: var(--size);
  height: var(--size);
  margin-right: 32px; /*80px*/
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
  transition-duration: 0.5s;
}

.carousel-cell:hover {
  scale: 1.1;
}

.image-above-text .carousel-text {
  height: 80px; /*120px*/
  width: 100%;
  padding: 0 24px; /*0 40px*/
  display: flex;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
}

.image-under-text .carousel-text {
  background-color: white;
  padding: 8px 16px 8px 8px; /*8px 24px 8px 16px*/
  position: absolute;
  bottom: 16px; /*40px*/
  left: 16px; /*40px*/
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px; /*16px*/
}

.news-text {
  right: 16px;
}

.image-under-text .carousel-text img {
  width: 24px; /*40px*/
}

.image-above-text .carousel-text h4 {
  line-height: 1;
}

.carousel-image {
  height: 100%;
}

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

/* Larger than mobile */
@media (min-width: 400px) {
  .carousel-wrapper {
    margin: 60px 0 0 0; /*120px 0 0 0*/
  }
  .carousel {
    height: calc((300px * cos(12deg)) + 300px * sin(12deg));
  }
  .carousel-cell {
    --size: 300px; /*500px*/
    margin-right: 32px;
  }
  .image-above-text .carousel-text {
    height: 100px; /*120px*/
    padding: 0 24px; /*0 40px*/
  }
  .flickity-page-dots {
    bottom: 0; /*16px*/
  }

  .image-under-text .carousel-text img {
    width: 24px;
  }
  .image-under-text .carousel-text {
    padding: 8px 16px 8px 8px; /*8px 24px 8px 16px*/
    bottom: 16px; /*40px*/
    left: 16px; /*40px*/
    gap: 8px; /*16px*/
  }
}

/* Larger than phablet */
@media (min-width: 550px) {
  .carousel-wrapper {
    margin: 80px 0 0 0; /*120px 0 0 0*/
  }
  .carousel {
    height: calc((350px * cos(12deg)) + 350px * sin(12deg));
  }
  .carousel-cell {
    --size: 350px; /*500px*/
    margin-right: 48px;
  }
  .image-above-text .carousel-text {
    height: 100px; /*120px*/
    padding: 0 32px; /*0 40px*/
  }
  .flickity-page-dots {
    bottom: 0; /*16px*/
  }

  .image-under-text .carousel-text img {
    width: 32px;
  }
  .image-under-text .carousel-text {
    padding: 8px 16px 8px 16px; /*8px 24px 8px 16px*/
    bottom: 24px; /*40px*/
    left: 24px; /*40px*/
    gap: 8px; /*16px*/
  }

  .news-text {
    right: 24px;
  }
}

/* Larger than tablet */
@media (min-width: 750px) {
  .carousel-wrapper {
    margin: 80px 0 0 0; /*120px 0 0 0*/
  }
  .carousel {
    height: calc((350px * cos(12deg)) + 350px * sin(12deg));
  }
  .carousel-cell {
    --size: 350px; /*500px*/
    margin-right: 48px;
  }
  .image-above-text .carousel-text {
    height: 100px; /*120px*/
    padding: 0 32px; /*0 40px*/
  }
  .flickity-page-dots {
    bottom: 0; /*16px*/
  }

  .image-under-text .carousel-text img {
    width: 32px;
  }
  .image-under-text .carousel-text {
    padding: 8px 16px 8px 16px; /*8px 24px 8px 16px*/
    bottom: 24px; /*40px*/
    left: 24px; /*40px*/
    gap: 16px; /*16px*/
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .carousel-wrapper {
    margin: 100px 0 0 0; /*120px 0 0 0*/
  }
  .carousel {
    height: calc((400px * cos(12deg)) + 400px * sin(12deg));
  }
  .carousel-cell {
    --size: 400px; /*500px*/
    margin-right: 64px;
  }
  .image-above-text .carousel-text {
    height: 120px; /*120px*/
    padding: 0 32px; /*0 40px*/
  }
  .flickity-page-dots {
    bottom: 0; /*16px*/
  }

  .image-under-text .carousel-text img {
    width: 32px;
  }
  .image-under-text .carousel-text {
    padding: 8px 24px 8px 16px; /*8px 24px 8px 16px*/
    bottom: 32px; /*40px*/
    left: 32px; /*40px*/
    gap: 12px; /*16px*/
  }
  .news-text {
    right: 32px;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .carousel-wrapper {
    margin: 120px 0 0 0; /*120px 0 0 0*/
  }
  .carousel {
    height: calc((500px * cos(12deg)) + 500px * sin(12deg));
  }
  .carousel-cell {
    --size: 500px; /*500px*/
    margin-right: 80px;
  }
  .image-above-text .carousel-text {
    height: 120px; /*120px*/
    padding: 0 40px; /*0 40px*/
  }

  .image-under-text .carousel-text img {
    width: 40px;
  }
  .image-under-text .carousel-text {
    padding: 8px 24px 8px 16px; /*8px 24px 8px 16px*/
    bottom: 40px; /*40px*/
    left: 40px; /*40px*/
    gap: 16px; /*16px*/
  }
  .news-text {
    right: 40px;
  }
}

/* Sponsors
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.section-sponsors {
}

.hoofdsponsors {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); /*1fr 1fr 1fr*/
  gap: var(--space-m);
}

.hoofdsponsors.sponsor-page {
  grid-template-columns: minmax(0, 1fr);
}

.hoofdsponsor-item {
  aspect-ratio: 1/ 1;
  background-color: white;
  padding: 8px; /*40px*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-sponsors .marquee .marquee__group {
  margin-top: 8px; /*40px*/
  height: 80px; /*250px*/
}

.sponsor-item {
  aspect-ratio: 1/ 1;
  width: 80px; /*250px*/
  height: 80px; /*250px*/
  background-color: white;
  padding: 8px; /*40px*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.hoofdsponsor-item img,
.sponsor-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* FADE EFFECT MARQUEE */
.fadeout-horizontal {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5rem,
    black calc(100% - 5rem),
    transparent
  );
}

.sponsors {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-m);
  margin-top: var(--space-m);
}

.sponsors .sponsor-item {
  width: auto;
  height: auto;
  aspect-ratio: 1;
}

/* Larger than mobile */
@media (min-width: 400px) {
  .hoofdsponsors {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); /*1fr 1fr 1fr*/
  }
  .hoofdsponsor-item {
    padding: 8px; /*40px*/
  }
  .section-sponsors .marquee .marquee__group {
    margin-top: 8px; /*40px*/
    height: 80px; /*250px*/
  }
  .sponsor-item {
    width: 80px; /*250px*/
    height: 80px; /*250px*/
    padding: 8px; /*40px*/
  }
  .fadeout-horizontal {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10rem,
      black calc(100% - 10rem),
      transparent
    );
  }
  
}

/* Larger than phablet */
@media (min-width: 550px) {
  .hoofdsponsors {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); /*1fr 1fr 1fr*/
  }
  .hoofdsponsor-item {
    padding: 16px; /*40px*/
  }
  .section-sponsors .marquee .marquee__group {
    margin-top: 16px; /*40px*/
    height: 120px; /*250px*/
  }
  .sponsor-item {
    width: 120px; /*250px*/
    height: 120px; /*250px*/
    padding: 16px; /*40px*/
  }
  .fadeout-horizontal {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 15rem,
      black calc(100% - 15rem),
      transparent
    );
  }
  
}

/* Larger than tablet */
@media (min-width: 750px) {
  .hoofdsponsors {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); /*1fr 1fr 1fr*/
  }
  .hoofdsponsor-item {
    padding: 24px; /*40px*/
  }
  .section-sponsors .marquee .marquee__group {
    margin-top: 24px; /*40px*/
    height: 160px; /*250px*/
  }
  .sponsor-item {
    width: 160px; /*250px*/
    height: 160px; /*250px*/
    padding: 24px; /*40px*/
  }
  .fadeout-horizontal {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10rem,
      black calc(100% - 10rem),
      transparent
    );
  }
  
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .hoofdsponsors {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); /*1fr 1fr 1fr*/
  }
  .hoofdsponsor-item {
    padding: 32px; /*40px*/
  }
  .section-sponsors .marquee .marquee__group {
    margin-top: 24px; /*40px*/
    height: 160px; /*250px*/
  }
  .sponsor-item {
    width: 160px; /*250px*/
    height: 160px; /*250px*/
    padding: 24px; /*40px*/
  }
  .fadeout-horizontal {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 15rem,
      black calc(100% - 15rem),
      transparent
    );
  }
  .hoofdsponsors.sponsor-page {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
  .sponsors {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .hoofdsponsors {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); /*1fr 1fr 1fr*/
  }
  .hoofdsponsor-item {
    padding: 24px; /*40px*/
  }
  .section-sponsors .marquee .marquee__group {
    margin-top: 24px; /*40px*/
    height: 220px; /*250px*/
  }
  .sponsor-item {
    width: 220px; /*250px*/
    height: 220px; /*250px*/
    padding: 24px; /*40px*/
  }
  .fadeout-horizontal {
    mask-image: linear-gradient(
      to right,
      transparent,
      black 25rem,
      black calc(100% - 25rem),
      transparent
    );
  }

  .hoofdsponsors.sponsor-page {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
  .sponsors {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* Full Size Image */

.full-screen-image {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 2rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.full-screen-image:target {
  display: block;
}

.full-screen-image img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: contain;
}

/* Responsive classes */

/* Smaller than mobile */
@media (max-width: 399px) {
  .hide-phone-down {
    display: none;
  }
}

/* Smaller than phablet */
@media (max-width: 549px) {
  .hide-phablet-down {
    display: none;
  }
}

/* Smaller than tablet */
@media (max-width: 749px) {
  .hide-tablet-down {
    display: none;
  }
}

/* Smaller than desktop */
@media (max-width: 999px) {
  .hide-desktop-down {
    display: none;
  }
}

/* Smaller than Desktop HD */
@media (max-width: 1199px) {
  .hide-desktophd-down {
    display: none;
  }
}

/* Larger than mobile */
@media (min-width: 400px) {
  .hide-phone-up {
    display: none;
  }
}

/* Larger than phablet */
@media (min-width: 550px) {
  .hide-phablet-up {
    display: none;
  }
}

/* Larger than tablet */
@media (min-width: 750px) {
  .hide-tablet-up {
    display: none;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .hide-desktop-up {
    display: none;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .hide-desktophd-up {
    display: none;
  }
}
