@charset "UTF-8";
/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Reset */
/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

*, *::before, *::after {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  user-select: none;
}

button, textarea, input, select, a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

i {
  font-style: unset;
}

b {
  font-weight: unset;
}

a {
  text-decoration: none;
}

/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Roots */
/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --Monument: "Monument Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --blu: 18px;
  --line: calc(var(--blu) * 0.1);
  --margins: calc(var(--blu) * 1);
  --headerLarge: calc(var(--h1-lh) * 1.5);
  --headerSmall: calc(var(--h3-lh) * 1.5);
  --footerSmall: calc(var(--p-lh) * 1.5);
  --h1-lh: calc(var(--blu) * 1.5);
  --h1-fs: calc(var(--h1-lh) * 0.88);
  --h1-ad: calc(0px - (var(--h1-lh) * 0.06));
  --h2-lh: calc(var(--blu) * 1.5);
  --h2-fs: calc(var(--h2-lh) * 0.88);
  --h2-ad: calc(0px - (var(--h2-lh) * 0.06));
  --h3-lh: calc(var(--blu) * 1.25);
  --h3-fs: calc(var(--h3-lh) * 0.88);
  --h3-ad: calc(0px - (var(--h3-lh) * 0.06));
  --p-lh: calc(var(--blu) * 1);
  --p-fs: calc(var(--p-lh) * 0.88);
}

/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Global */
/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
.lineTop {
  border-top: solid var(--line) black;
}

.lineBottom {
  border-bottom: solid var(--line) black;
}

.innerLineTop {
  position: relative;
}
.innerLineTop::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: var(--line);
  width: 100%;
  background: black;
}

.padding {
  padding: var(--margins);
}

.introPadding {
  padding-bottom: calc(var(--blu) * 10);
  padding-top: calc(var(--headerLarge) + var(--margins));
}

.flex {
  display: flex;
  flex-direction: column;
}
.flex.center {
  align-items: center;
}

body:not(.loaderOpen) #loader {
  opacity: 0;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
  transition-property: opacity;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
#loader img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .sectionTitle {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
}
header::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  transform: translateY(-100%);
  z-index: 900;
}

body.smallHeader header .sectionTitle {
  height: var(--headerSmall);
  padding-top: calc(var(--h3-lh) * 0.28);
}
body.smallHeader header .sectionTitle * {
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
}

.newsGridContainer {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.newsGridContainer .gridItem img {
  display: block;
  width: 100%;
}
.newsGridContainer .gridItem .iframeContainer {
  --maxWidth: 100%;
  position: relative;
  width: var(--maxWidth);
  padding-top: calc(var(--maxWidth) / 16 * 9);
  overflow: hidden;
}
.newsGridContainer .gridItem .iframeContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100.5%;
  height: 100.5%;
}
.newsGridContainer .gridItem.width100 {
  grid-column: span 1;
}

main {
  padding-bottom: calc(var(--footerSmall));
}

.sectionTitle,
.subSectionTitle,
.microSectionTitle {
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background: white;
  white-space: nowrap;
  overflow: hidden;
}

.sectionTitle {
  height: var(--headerLarge);
  padding-top: calc(var(--h1-lh) * 0.28);
}

.subSectionTitle {
  height: calc(var(--h2-lh) * 1.5);
  padding-top: calc(var(--h2-lh) * 0.28);
}

.microSectionTitle {
  height: calc(var(--h3-lh) * 1.45);
  padding-top: calc(var(--h3-lh) * 0.28);
  opacity: 1 !important;
}
.microSectionTitle .arrow {
  position: absolute;
  top: calc(var(--h3-lh) * 0.2);
  right: var(--margins);
  opacity: 0.5;
}

.subSection:first-child .subSectionTitle {
  border-top: none;
}

.sectionContentContainer,
.subSectionContentContainer,
.microSectionContentContainer {
  max-height: 0;
  overflow: hidden;
  transition-property: max-height;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.sectionContentContainer.open,
.subSectionContentContainer.open,
.microSectionContentContainer.open {
  max-height: none;
}

.forceOpen {
  pointer-events: none;
}
.forceOpen .sectionContentContainer,
.forceOpen .subSectionContentContainer,
.forceOpen .microSectionContentContainer {
  max-height: unset !important;
}

.gridContainer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--line);
  background: black;
}
.gridContainer.eventsGrid {
  grid-template-columns: repeat(1, 1fr);
}
.gridContainer.eventsGrid .gridItemLast {
  background: white;
  display: none;
}
.gridContainer .gridItem {
  background: white;
}
.gridContainer .gridItem h1, .gridContainer .gridItem .h1 {
  text-align: center;
}
.gridContainer .gridItem p, .gridContainer .gridItem .p {
  --max: calc(var(--blu) * 50);
  width: min(var(--max), 100%);
  max-width: var(--max);
}
.gridContainer .gridItem img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.gridContainer .gridItem .iframeContainer {
  --maxHeight: min(80vh, 100vw);
  position: relative;
  width: var(--maxHeight);
  padding-top: calc(var(--maxHeight) / 16 * 9);
  overflow: hidden;
}
.gridContainer .gridItem .iframeContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100.5%;
  height: 100.5%;
}
.gridContainer .gridItem.width100 {
  grid-column: span 2;
}
.gridContainer .gridItem.width50 {
  grid-column: span 2;
}
.gridContainer .gridItem.subTitle {
  min-height: calc(var(--h3-lh) * 1.45);
  padding-top: calc(var(--h3-lh) * 0.28);
  padding-bottom: calc(var(--h3-lh) * 0.17);
  text-align: center;
}
.gridContainer .gridItem.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gridContainer .subGrid {
  display: grid;
  grid-template-columns: 1fr;
}
.gridContainer .subGrid img {
  object-position: center right;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  background: white;
}
footer .footerRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-gap: var(--line);
  text-align: center;
  background: black;
  transition-property: max-height, min-height;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
footer .footerRow .footerItem {
  display: block;
  flex-direction: column;
  min-height: var(--footerSmall);
  justify-content: center;
  align-items: center;
  background: white;
  padding: calc(var(--p-lh) * 0.27) calc(var(--blu) * 0.3) calc(var(--p-lh) * 0.15);
  opacity: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
footer .footerRow .footerItem.link {
  cursor: pointer;
}
footer .footerRow:first-child {
  padding-right: calc(var(--blu) * 1.5 + var(--line));
}
footer .footerRow:not(.hidden) .footerItem.open {
  background: black;
  color: white;
}
footer .footerRow.hidden {
  max-height: 0;
}
footer .footerRow.hidden .footerItem:not(.open) {
  display: none;
}
footer .footerRow.hidden.open {
  max-height: calc(var(--blu) * 10);
}
footer #languageSwitch {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(var(--footerSmall) + var(--line));
  height: calc(var(--footerSmall) + var(--line));
  background: white;
  opacity: 1;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  border-top: solid var(--line) black;
  border-left: solid var(--line) black;
}
footer #languageSwitch:hover {
  color: white;
  background: black;
}

/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Typo */
/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ABC Monument Grotesk // Regular */
@font-face {
  font-family: "Monument Grotesk";
  src: url("/site/templates/styles/fonts/ABCMonumentGrotesk-Regular.woff2") format("woff2"), url("/site/templates/styles/fonts/ABCMonumentGrotesk-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Monument Grotesk";
  src: url("/site/templates/styles/fonts/ABCMonumentGrotesk-Bold.woff2") format("woff2"), url("/site/templates/styles/fonts/ABCMonumentGrotesk-Bold.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
html {
  font-family: var(--Monument);
  font-weight: 400;
  font-size: var(--p-fs);
  line-height: var(--p-lh);
}

*, *::before, *::after {
  font-family: var(--Monument);
  font-weight: 400;
}

h1, .h1 {
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  text-transform: uppercase;
}
h1 p, .h1 p {
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  text-transform: uppercase;
}
h1.adjust, .h1.adjust {
  margin-top: var(--h1-ad);
}

h2, .h2 {
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
}
h2 p, .h2 p {
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
}
h2.adjust, .h2.adjust {
  margin-top: var(--h2-ad);
}

h3, .h3 {
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
}
h3 p, .h3 p {
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
}
h3.adjust, .h3.adjust {
  margin-top: var(--h3-ad);
}

strong {
  font-weight: 500;
}

ul:not(:last-child) {
  padding-bottom: var(--p-lh);
}

p.paragraphPadding:not(:last-child),
.p.paragraphPadding:not(:last-child),
.paragraphPadding .p:not(:last-child),
.paragraphPadding p:not(:last-child) {
  padding-bottom: var(--p-lh);
}

h1.paragraphPadding:not(:last-child),
.h1.paragraphPadding:not(:last-child),
.paragraphPadding .h1:not(:last-child),
.paragraphPadding h1:not(:last-child) {
  padding-bottom: var(--p-lh);
}

h2.paragraphPadding:not(:last-child),
.h2.paragraphPadding:not(:last-child),
.paragraphPadding .h2:not(:last-child),
.paragraphPadding h2:not(:last-child) {
  padding-bottom: var(--p-lh);
}

h3.paragraphPadding:not(:last-child),
.h3.paragraphPadding:not(:last-child),
.paragraphPadding .h3:not(:last-child),
.paragraphPadding h3:not(:last-child) {
  padding-bottom: var(--p-lh);
}

.adjust h1, .adjust .h1 {
  margin-top: var(--h1-ad);
}
.adjust h2, .adjust .h2 {
  margin-top: var(--h2-ad);
}
.adjust h3, .adjust .h3 {
  margin-top: var(--h3-ad);
}

a {
  text-decoration: none;
  color: inherit;
  opacity: 0.5;
}
a:hover, a:active, a:focus {
  opacity: 1;
}
a.gridItem {
  opacity: 1;
}

@media all and (max-width: 35em) {
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* 01 / Mobile */
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  :root {
    --media: _01_Mobile;
  }
}
@media all and (min-width: 35em) {
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* 02 / Tablet */
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  :root {
    --media: _02_Tablet;
    --blu: 21px;
    --h1-lh: calc(var(--blu) * 2.5);
    --h2-lh: calc(var(--blu) * 2);
    --h3-lh: calc(var(--blu) * 1.5);
  }
  .newsGridContainer {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsGridContainer .gridItem.width100 {
    grid-column: span 2;
  }
  .gridContainer.eventsGrid .gridItemLast:nth-child(2n) {
    display: unset;
  }
  .gridContainer .gridItem img {
    max-height: 50vh;
  }
  .gridContainer .gridItem.width50 {
    grid-column: span 1;
  }
  .gridContainer .subGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (min-width: 55em) {
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* 03 / Tablet-Laptop */
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  :root {
    --media: _03_Tablet_Laptop;
    --blu: 24px;
  }
  a.gridItem * {
    transition-property: letter-spacing;
    transition-timing-function: ease;
    transition-duration: 0.2s;
  }
  a.gridItem:hover *:not(p, .p) {
    letter-spacing: 0.025em;
  }
  .newsGridContainer {
    grid-template-columns: repeat(3, 1fr);
  }
  .newsGridContainer .gridItem.width100 {
    grid-column: span 3;
  }
  .sectionTitle,
  .subSectionTitle,
  .microSectionTitle {
    transition-property: letter-spacing;
    transition-timing-function: ease;
    transition-duration: 0.2s;
  }
  .sectionTitle:hover,
  .subSectionTitle:hover,
  .microSectionTitle:hover {
    letter-spacing: 0.1em;
  }
  footer .footerRow .footerItem.link {
    transition-property: letter-spacing;
    transition-timing-function: ease;
    transition-duration: 0.2s;
  }
  footer .footerRow .footerItem.link:hover {
    letter-spacing: 0.075em;
  }
}
@media all and (min-width: 75em) {
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* 04 / Laptop */
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  :root {
    --media: _04_Laptop;
    --blu: 27px;
    --h1-lh: calc(var(--blu) * 3.5);
    --h2-lh: calc(var(--blu) * 2.5);
    --h3-lh: calc(var(--blu) * 2);
  }
  .gridContainer.eventsGrid .gridItemLast:nth-child(2n) {
    display: none;
    grid-column: unset;
  }
  .gridContainer.eventsGrid .gridItemLast:nth-child(3n) {
    display: unset;
    grid-column: unset;
  }
  .gridContainer.eventsGrid .gridItemLast:nth-child(3n+2) {
    display: unset;
    grid-column: span 2;
  }
  .gridContainer .gridItem.width100.singleText {
    padding-left: 50%;
  }
}
@media all and (min-width: 120em) {
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* 05 / Desktop */
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  :root {
    --media: _05_Desktop;
    --blu: 30px;
    --h1-lh: calc(var(--blu) * 4);
    --h2-lh: calc(var(--blu) * 3);
    --h3-lh: calc(var(--blu) * 2);
  }
  .newsGridContainer {
    grid-template-columns: repeat(4, 1fr);
  }
  .newsGridContainer .gridItem.width100 {
    grid-column: span 4;
  }
}
@supports (-webkit-hyphens: none) {
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
  /* 00 / Safari Only */
  /* –––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––– */
}

/*# sourceMappingURL=main-compiled.css.map */
