@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter-Bold.ttf') format("truetype"), url('../fonts/Inter-ExtraBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter-ExtraLight.ttf') format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url('../fonts/Inter-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter-Black.ttf') format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter Custom;
  src: url('../fonts/Inter-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-v2: #1a1a1a;
  --primary: #eeae34;
  --grey-60: #999;
  --grey-10: #333;
  --grey-05: #262626;
  --grey-72: #b8b8b8;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  color: #333;
  font-family: Inter Custom, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

a {
  color: #fff;
  text-decoration: underline;
}

.n__body {
  background-color: var(--bg-v2);
  color: #fff;
  font-family: Ubuntu, Helvetica, sans-serif;
}

.nav {
  background-color: #000;
  justify-content: center;
  height: 100vh;
  min-height: 80px;
  display: flex;
  position: fixed;
  inset: 0%;
}

.nav.nav--social {
  background-color: var(--bg-v2);
  align-items: center;
  width: 100vw;
  height: 68px;
  min-height: 0;
  margin-top: 0;
  position: relative;
}

.nav.nav--main {
  background-color: var(--bg-v2);
  width: 100vw;
  height: auto;
  position: sticky;
  inset: 0 0 auto;
}

.nav__menu {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: static;
}

.nav__link {
  z-index: 0;
  color: #fff;
  text-align: center;
  min-width: 13%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
  text-decoration: none;
}

.nav__link:hover, .nav__link.w--current {
  color: var(--primary);
}

.nav__link.nav__link--sub {
  text-align: left;
  padding: 8px 12px;
  font-size: 16px;
  transition: transform .3s;
}

.nav__link.nav__link--sub:hover {
  transform: translate(6px);
}

.nav__link.nav__link--sub.timeline {
  display: none;
}

.nav__link.nav__link--chevron {
  text-align: right;
  cursor: pointer;
  padding-right: 8px;
}

.nav__link.nav__link--social {
  color: var(--grey-60);
  text-align: left;
  min-width: 0;
  transition: color .2s;
}

.nav__link.nav__link--social:hover {
  color: #fff;
}

.nav__container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  flex-direction: row-reverse;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 90vw;
  max-width: 1200px;
  height: 80px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
}

.nav__container.nav__container--social {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  height: auto;
  display: grid;
}

.nav__dropdown-innerlist {
  background-color: var(--grey-10);
  color: #fff;
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  margin-top: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 12px;
  display: flex;
  overflow: hidden;
}

.nav__dropdown-list {
  width: auto;
  margin-top: 0;
  margin-left: 0;
  padding: 0 10px 10px 8px;
  overflow: hidden;
}

.dropdownwrapper {
  height: 100%;
  padding-top: 0;
  display: block;
  position: relative;
}

.nav__dropdown-container {
  align-items: flex-start;
  width: auto;
  height: auto;
  margin-top: 0;
  margin-left: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: absolute;
  overflow: hidden;
}

.dropdownlink-container {
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-right: 8px;
  display: flex;
}

.nav__icon {
  transform: rotate(0);
}

.nav__social-icons {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-end;
  padding-right: 20px;
  display: flex;
}

.nav__social-icons.nav__social-icons--center {
  justify-content: center;
}

.nav__social-icon {
  opacity: .6;
  width: 22px;
  height: 22px;
  transition: opacity .2s;
}

.nav__social-icon:hover {
  opacity: 1;
}

.hero {
  background-color: #0000;
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  align-items: center;
  min-height: 710px;
  display: flex;
  position: relative;
}

.hero__text-wrapper {
  z-index: 1;
  width: 90vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.heading--l {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 52px;
  font-weight: 400;
  line-height: 64px;
}

.heading--grey {
  color: var(--grey-60);
}

.heading--underline {
  border-bottom: 4px solid #fff;
}

.hero__image {
  opacity: .72;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.n__btn {
  background-color: var(--primary);
  color: #000;
  text-align: center;
  border-radius: 100px;
  padding: 10px 28px;
  line-height: 24px;
  transition: transform .4s cubic-bezier(.68, -.55, .265, 1.55);
}

.n__btn:hover {
  transform: scale(1.05);
}

.n__btn.n__btn--grey {
  background-color: var(--grey-10);
  color: #fff;
}

.n__btn.n__btn--audio {
  cursor: pointer;
  display: inline-block;
  position: fixed;
  bottom: 25px;
  left: 25px;
}

.n__btn.n__btn--submit {
  width: 100%;
}

.n__btn-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  padding-top: 16px;
  display: flex;
}

.sponsors {
  z-index: 2;
  margin-top: 80px;
  position: relative;
}

.n__wrapper {
  width: 90vw;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.n__wrapper.is--supporters {
  margin-bottom: 64px;
}

.heading--m {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 400;
  line-height: 44px;
}

.heading--m.heading--left {
  text-align: left;
}

.heading--m.heading--left.heading--grey {
  color: var(--grey-60);
}

.heading--m.heading--left.is--team {
  margin-bottom: 64px;
  font-size: 44px;
  font-weight: 400;
}

.heading--m.heading--right {
  text-align: right;
}

.heading--m.heading--right.heading--timeline {
  position: sticky;
  top: 50vh;
}

.heading--m.heading--black {
  color: #000;
}

.partner__wrapper {
  width: 100%;
  height: 190px;
  position: relative;
  overflow: hidden;
}

.partner__track {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: center;
  display: flex;
  position: relative;
}

.marquee {
  color: #e9d7fe;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  font-size: 1.25rem;
  display: flex;
  position: relative;
}

.track {
  grid-column-gap: 30px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.flex-horizontal {
  background-color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 120px;
  padding: 8px 32px;
  display: flex;
}

.media {
  width: 100vw;
  margin-top: 120px;
  overflow: hidden;
}

.media.media--ex {
  margin-bottom: 240px;
}

.media__top-wrapper {
  justify-content: space-between;
  display: flex;
}

.media__wrapper-control {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-wrap: wrap;
  display: flex;
}

.media__wrapper-slide-control {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-end;
  display: flex;
}

.media__arrow.media__arrow--left, .media__arrow.media__arrow--right {
  cursor: pointer;
}

.swiper.is-photos {
  margin-top: 64px;
}

.swiper-wrapper.is-photos {
  width: 100%;
  position: relative;
}

.swiper-slide.is-photos {
  border-radius: 1.2em;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}

.html-embed {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.concert {
  background-image: url('../images/GroupLogo.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 120px;
}

.concert.concert--ex {
  margin-bottom: 240px;
}

.concert__top-wrapper {
  justify-content: space-between;
  display: flex;
}

.concert__list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.concert__list.concert__list--ex {
  grid-template-columns: 1fr 1fr 1fr;
}

.concert__cms-item {
  background-color: var(--grey-10);
  border-radius: 12px;
  height: 100%;
  padding: 16px;
}

.concert__cms-item.concert__cms-item--more {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--grey-05);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.heading--s {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.heading--s.heading--left {
  text-align: left;
}

.heading--s.heading--black {
  color: #000;
  text-align: left;
}

.heading--xs {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
}

.heading--xs.heading--left {
  text-align: left;
  font-size: 20px;
  line-height: 28px;
}

.heading--xs.heading--left.heading--margin {
  margin-bottom: 42px;
}

.heading--xs.heading--black {
  color: var(--grey-60);
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}

.paragraph--s {
  color: var(--grey-60);
  line-height: 24px;
}

.paragraph--s.paragraph--projects {
  margin-top: 6px;
}

.paragraph--s.paragraph--rich {
  color: var(--grey-72);
  max-width: 690px;
  margin-top: 16px;
}

.paragraph--s.paragraph--ensemble {
  width: 52%;
}

.paragraph--s.paragraph--supporter {
  width: 52%;
  margin-top: 12px;
}

.paragraph--s.paragraph--margin {
  margin-top: 6px;
}

.concert__btn-wrapper {
  margin-top: 18px;
}

.concert__grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2fr auto;
  grid-auto-columns: 1fr;
  margin-top: 42px;
  display: grid;
}

.concert__modal {
  z-index: 99999999;
  background-color: #00000078;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: scroll;
}

.n__modal-content {
  color: #000;
  text-align: left;
  padding: 24px;
}

.concert__modal-information {
  text-align: left;
  margin-top: 7px;
}

.concert__model-map {
  margin-top: 34px;
}

.n__modal-container {
  z-index: 999;
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 60%;
  max-width: 620px;
  min-height: 160px;
  margin-top: 72px;
  margin-bottom: 72px;
  position: relative;
  inset: auto;
  overflow: scroll;
}

.concert__modal-overlay {
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.n__modal-close {
  float: right;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: 10px;
  position: static;
  inset: 3% 3% auto auto;
}

.image-6 {
  opacity: .39;
  width: 37px;
  height: 37px;
}

.paragraph--m {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  display: inline-block;
}

.paragraph--m.paragraph--margin {
  margin-top: 12px;
}

.news {
  background-image: url('../images/bg-3.svg'), url('../images/bg-2.svg');
  background-position: 100% 100%, 0 -20%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  padding-top: 120px;
  padding-bottom: 240px;
}

.news__top-wrapper {
  justify-content: space-between;
  margin-top: 32px;
  display: flex;
}

.news__grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.news__cms {
  margin-top: 42px;
}

.news__img-wrapper {
  background-image: url('../images/preview-empty.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
  width: 100%;
  height: 260px;
  margin-bottom: 16px;
}

.footer__grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "."
                 "."
                 / auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer__item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--grey-05);
  border-radius: 12px;
  flex-direction: column;
  padding: 16px;
  display: flex;
}

.footer__paragraph-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  padding-top: 16px;
  display: flex;
}

.paragraph--white {
  color: #fff;
}

.footer__link {
  color: var(--grey-60);
  text-decoration: none;
  transition: color .2s;
}

.footer__link:hover {
  color: #fff;
}

.footer__created {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 64px;
  display: flex;
}

.footer__logo {
  height: 18px;
  padding-bottom: 5px;
}

.tabs-nav-item {
  color: #fff;
  text-align: center;
  background-color: #0000;
  border-radius: 999em;
  flex: 1;
  padding: 1em 2em;
  transition: all .3s;
  position: relative;
}

.tabs-nav-item:hover {
  background-color: #525252;
}

.tabs-nav-item.w--current {
  color: #000;
  background-color: #0000;
  font-weight: 500;
}

.tabs__nav-text {
  z-index: 1;
  position: relative;
}

.tabs__content-wrapper {
  margin-top: 2em;
  overflow: visible;
}

.tab {
  margin-top: 42px;
}

.tabs__menu-underline-wrapper {
  border: 2px solid var(--grey-10);
  border-radius: 100px;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
  display: flex;
}

.tabs__nav-underline {
  z-index: 0;
  background-color: var(--primary);
  border-radius: 999em;
  flex: 0 auto;
  position: absolute;
  inset: 0 0% 0%;
}

.tabs__nav-item-underline {
  grid-column-gap: .5em;
  color: #ffffff80;
  text-align: center;
  background-color: #0000;
  border-radius: 999em;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 12px 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.tabs__nav-item-underline:hover {
  color: #fff;
  background-color: #0000;
}

.tabs__nav-item-underline.w--current {
  color: #fff;
  background-color: #0000;
  font-weight: 500;
}

.tabs__nav-item-underline.tabs__nav-item-underline--02.w--current {
  color: #000;
}

.tabs__nav-item-underline.tabs__nav-item-underline--01.w--current {
  color: #000;
  justify-content: center;
}

.tabs__nav-item-underline.tabs__nav-item-underline--03.w--current, .tabs__nav-item-underline.tabs__nav-item-underline--04.w--current {
  color: #000;
}

.media__grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project__main-image {
  background-image: url('../images/Auditivvokal_Industriemuseum_Chemnitz_04022025_L1000313-web.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 12px;
  width: 100%;
  height: 520px;
  margin-top: 14px;
  margin-bottom: 24px;
}

.empty__box {
  background-color: var(--grey-10);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 16px;
  display: flex;
}

.timeline__progress {
  z-index: -2;
  background-color: #414141;
  width: 8px;
  height: 100%;
  position: absolute;
}

.timeline__item {
  z-index: 2;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 180px 1fr;
  grid-auto-columns: 1fr;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  position: relative;
}

.timeline__component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.timeline__centre {
  justify-content: center;
  display: flex;
}

.timeline__overlay-fade-top {
  background-image: linear-gradient(to bottom, var(--bg-v2), #1a1a1a00);
  height: 80px;
  position: absolute;
  inset: 0% 0% auto;
}

.timeline__left {
  text-align: right;
  justify-content: flex-end;
  align-items: stretch;
}

.timeline__progress-bar {
  z-index: -1;
  background-color: #fff;
  background-image: linear-gradient(#eeae34, #eeae34);
  width: 8px;
  height: 50vh;
  position: fixed;
  inset: 0 auto 50vh;
}

.timeline__overlay-fade-bottom {
  background-image: linear-gradient(to top, var(--bg-v2), #1a1a1a00);
  height: 80px;
  position: absolute;
  inset: auto 0% 0%;
}

.timeline__image-wrapper {
  background-image: linear-gradient(138deg, #000, #0000 28%), url('../images/Image-Background.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  border-radius: 12px;
  overflow: hidden;
}

.timeline__circle {
  background-color: #fff;
  border-radius: 100%;
  width: 15px;
  min-width: 15px;
  max-width: 15px;
  height: 15px;
  min-height: 15px;
  max-height: 15px;
  position: sticky;
  top: 50vh;
  box-shadow: 0 0 0 8px #0a0a0a;
}

.section-timeline {
  z-index: -3;
  margin-bottom: 0;
  position: relative;
}

.timeline__cms-grid {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.timeline__top-wrapper {
  background-color: var(--bg-v2);
  justify-content: space-between;
  display: flex;
}

.timeline__margin-top {
  background-color: var(--bg-v2);
  padding-top: 120px;
}

.ensemble {
  min-height: 100vh;
  margin-top: 120px;
  margin-bottom: 240px;
}

.n__main-img {
  border-radius: 12px;
  margin-top: 24px;
}

.n__main-img.is--off {
  display: none;
}

.ensemble__text-wrapper {
  justify-content: flex-end;
  margin-top: 24px;
  margin-bottom: 48px;
  display: flex;
}

.ensemble__text-wrapper.is--off {
  display: none;
}

.ensemble__members-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ensemble__cms {
  margin-top: 24px;
}

.ensemble__img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50% 30%;
  background-size: cover;
  border-radius: 12px;
  width: 280px;
  height: 320px;
  margin-bottom: 12px;
}

.nav__lottie {
  width: 100%;
  height: 100%;
}

.nav__lottie-wrapper {
  height: 40%;
  min-height: 66px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav__lottie-placeholder {
  z-index: 10;
  width: 64px;
  height: 80px;
  padding-left: 2px;
  display: none;
  position: relative;
}

.nav__social-link {
  align-self: flex-start;
  text-decoration: none;
}

.team {
  min-height: 100vh;
  margin-top: 120px;
  margin-bottom: 240px;
}

.team__grid {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.team__item {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.team__sub-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.team__heading-wrapper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.team__img {
  border-radius: 12px;
  max-width: 420px;
}

.supporter {
  min-height: 100vh;
  margin-top: 120px;
  margin-bottom: 240px;
}

.supporter__grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 42px;
  display: grid;
}

.supporter__img {
  max-height: 100px;
}

.supporter__item-2 {
  background-color: #fff;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  display: flex;
}

.n__btn--text {
  display: inline;
}

.n__btn--wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.n__btn--image {
  height: 22px;
}

.productions {
  min-height: 100vh;
  margin-top: 120px;
  margin-bottom: 240px;
}

.productions__cms {
  margin-top: 42px;
}

.productions__grid {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-direction: column;
  display: flex;
}

.productions__item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.productions__quote {
  margin-top: 24px;
}

.contact {
  min-height: 80vh;
  margin-top: 120px;
}

.contact.contact--ex {
  min-height: auto;
  margin-bottom: 64px;
}

.contact__grid {
  grid-column-gap: 42px;
  grid-row-gap: 42px;
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.contact__field {
  color: #fff;
  background-color: #333;
  border: 0 solid #000;
  border-radius: 12px;
  min-width: 370px;
}

.contact__field.contact__field--message {
  min-height: 180px;
}

.contact__field.contact__field--white {
  color: #000;
  background-color: #ebebeb;
  align-self: center;
  min-width: 320px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 12px;
  line-height: 24px;
}

.n__form-success {
  background-color: #333;
  border-radius: 12px;
}

.n__form-success.n__form-success--white {
  background-color: #e6e6e6;
}

.n__form-error {
  background-color: #9e3030;
  border-radius: 12px;
}

.n__form-error.n__form-error--white {
  background-color: #ffb6b6;
}

.contact__icons {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  margin-top: 12px;
  padding-right: 20px;
  display: flex;
}

.contact__icons.contact__icons--ex {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.contact__icon {
  opacity: .6;
  width: 32px;
  height: 32px;
  transition: opacity .2s;
}

.contact__icon:hover {
  opacity: 1;
}

.contact__icon.contact__icon--ex {
  opacity: 1;
  transition-property: none;
}

.newsletter__modal {
  z-index: 9999;
  background-color: #00000078;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.newsletter__form-wrapper {
  margin-top: 32px;
}

.newsletter__form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav__overlay {
  z-index: 0;
  background-color: #0006;
  display: none;
  position: fixed;
  inset: 0%;
}

.nav__lottie-placeholder-wrapper {
  z-index: 10;
  width: 64px;
  height: 80px;
  padding-left: 2px;
  display: block;
  position: relative;
}

.text-span {
  color: var(--grey-60);
}

.social {
  margin-top: 32px;
  margin-bottom: 32px;
}

.nav__social-wrapper {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  opacity: .6;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.nav__social-wrapper:hover {
  opacity: 1;
}

.n--social-media {
  margin-top: 24px;
}

.background-video {
  z-index: 0;
  background-image: linear-gradient(to bottom, transparent 59%, var(--bg-v2));
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.div-block {
  background-image: linear-gradient(to bottom, transparent 62%, var(--bg-v2));
  height: 100%;
}

.slider {
  opacity: .6;
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.slide._2 {
  background-image: linear-gradient(to bottom, transparent 66%, var(--bg-v2)), url('../images/diashopw-02.webp');
}

.slide._3 {
  background-image: linear-gradient(to bottom, transparent 66%, var(--bg-v2)), url('../images/diashopw-03.webp');
}

.slide._4 {
  background-image: linear-gradient(to bottom, transparent 66%, var(--bg-v2)), url('../images/diashopw-04.webp');
}

.slide._5 {
  background-image: linear-gradient(to bottom, transparent 66%, var(--bg-v2)), url('../images/diashopw-05.webp');
}

.slide._6 {
  background-image: linear-gradient(to bottom, transparent 66%, var(--bg-v2)), url('../images/diashopw-06.webp');
}

.slide._7 {
  background-image: linear-gradient(to bottom, transparent 66%, var(--bg-v2)), url('../images/diashopw-07.webp');
}

.left-arrow, .right-arrow, .slide-nav {
  display: none;
}

.mask {
  background-image: linear-gradient(#00000080, #00000080);
}

.thumbnail {
  border-radius: 4px;
  width: 55px;
  height: 55px;
  margin-right: 10px;
}

.main-media-player {
  z-index: 999;
  background-color: var(--primary);
  -webkit-backdrop-filter: saturate(200%) blur(15px);
  backdrop-filter: saturate(200%) blur(15px);
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  margin-right: 24px;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  position: fixed;
  inset: auto auto 24px 24px;
}

.previous-song-icon {
  cursor: pointer;
  width: 22px;
  height: 22px;
}

.progress-bar {
  background-color: #fff;
  width: 50%;
  height: 3px;
  position: relative;
}

.progress-bar-background {
  background-color: #f0f0f00f;
}

.progress-bar-wrapper {
  cursor: pointer;
  flex: 1;
  height: 3px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 10px;
  padding-bottom: 13px;
}

.media-player-bar-wrapper {
  color: #ffffff73;
  flex: 1;
  align-items: center;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.media-player-exit-icon {
  cursor: pointer;
  width: 14px;
  height: 14px;
  display: none;
}

.media-player-play-button {
  width: 36px;
  height: 36px;
}

.volume-bar-wrapper {
  background-color: #f0f0f00f;
  width: 100px;
  height: 3px;
}

.media-player-controls-wrapper {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.volume-toggle {
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}

.pause-button-icon {
  cursor: pointer;
  width: 28px;
  height: 28px;
}

.media-player-control-wrapper {
  grid-column-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.title {
  color: #fff;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.title.truncate {
  color: #000000f2;
}

.volume-bar {
  background-color: #fff;
  width: 50%;
  height: 3px;
}

.genre {
  color: #000;
  font-size: 14px;
  line-height: 1;
}

.media-player-wrapper {
  grid-column-gap: 8px;
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.play-button-icon {
  cursor: pointer;
  width: 28px;
  height: 28px;
}

.media-player {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  place-content: center start;
  place-items: center start;
  width: 100%;
  height: auto;
  display: grid;
}

.elapsed {
  color: #00000073;
  flex-direction: row;
  align-self: center;
  align-items: center;
  display: flex;
}

.next-song-icon {
  cursor: pointer;
  align-self: center;
  width: 22px;
  height: 22px;
}

.true-progress-head {
  background-color: #fff;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  position: absolute;
  inset: -3px 0% auto auto;
}

.media-player-pause-button {
  background-color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-left: 30px;
  margin-right: 30px;
  display: flex;
}

.media-player-volume-wrapper {
  align-items: center;
  margin-right: 20px;
  display: none;
}

.media-player-song {
  flex-direction: column;
  flex: 1;
  align-items: center;
  width: 100%;
  display: flex;
}

.media-player-content-wrapper {
  flex: 1;
  align-items: center;
  display: flex;
}

.true-media-player-track {
  display: block;
}

.track-song {
  display: none;
}

.news__img {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 260px;
  margin-bottom: 16px;
}

.slide__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.overlay-slide {
  z-index: 1;
  background-image: linear-gradient(to bottom, #1a1a1a00 71%, var(--bg-v2));
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0%;
}

.div-block-2 {
  z-index: 0;
  position: static;
}

.text-rich-text {
  margin-top: 18px;
}

.text-rich-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text figcaption {
  opacity: .8;
  text-align: left;
  border-left: 2px solid #000;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.text-rich-text h5 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.text-rich-text-2 h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text-2 figcaption {
  opacity: .8;
  text-align: left;
  border-left: 2px solid #000;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.text-rich-text-2 h4 {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.text-rich-text-2 h5 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text-2 a {
  text-decoration: underline;
}

.text-rich-text-2 h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text-2 p {
  margin-bottom: 1rem;
}

.text-rich-text-2 h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-rich-text-2 blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text-2 h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.cookie-consent {
  z-index: 12;
}

.cc-prefs_component {
  z-index: 997;
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 32px;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-prefs2_submit {
  text-align: center;
  background-color: #000;
  margin-top: 12px;
  padding: 12px 20px;
  font-weight: 700;
}

.fs-cc-banner2_container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs2_content {
  color: #000;
  background-color: #fff;
  border-radius: 12px;
  height: 100%;
  padding: 40px 32px;
}

.fs-cc-prefs2_button {
  text-align: center;
  background-color: #89c4e1;
  border: 1px solid #89c4e1;
  padding: 12px 20px;
  font-weight: 700;
}

.fs-cc-prefs2_button.fs-cc-button-alt {
  color: #89c4e1;
  background-color: #fff;
  border-color: #89c4e1;
  margin-bottom: 12px;
}

.fs-cc-prefs2_form-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.fs-cc-banner2_buttons-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 16px;
  display: flex;
}

.fs-cc-prefs2_option {
  border-bottom: 1px solid #c0c0c04d;
  padding-top: 16px;
  padding-bottom: 16px;
}

.fs-cc-prefs2_title {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs2_checkbox {
  z-index: 1;
  border-width: 2px;
  border-color: var(--primary);
  cursor: pointer;
  background-color: #fff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs2_checkbox.w--redirected-checked {
  border-color: var(--primary);
  background-color: var(--primary);
  background-size: auto;
}

.fs-cc-manager2_button {
  background-color: var(--primary);
  color: #000;
  cursor: pointer;
  border-radius: 50%;
  flex-direction: column;
  width: 48px;
  padding: 8px;
  transition: opacity .2s;
  display: flex;
}

.fs-cc-manager2_button:hover {
  opacity: .7;
}

.fs-cc-prefs2_checkbox-field {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  padding: 2px;
  display: flex;
  position: relative;
}

.fs-cc-prefs2_form {
  color: #fff;
  background-color: #333;
  width: 100%;
  max-width: 400px;
  max-height: 85vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-banner2_button {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  flex: 1;
  min-width: 120px;
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px 20px;
  font-weight: 700;
}

.fs-cc-banner2_button.fs-cc-button-alt {
  color: #fff9;
  background-color: #fff6;
}

.cc-banner_component {
  z-index: 999;
  color: #fff;
  background-color: #000;
  border-radius: 12px;
  width: 450px;
  padding: 30px;
  display: none;
  position: fixed;
  inset: auto 24px 24px auto;
}

.fs-cc-prefs2_label {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 700;
}

.fs-cc-prefs2_checkbox-label {
  display: none;
}

.cc-manager_component {
  z-index: 999;
  width: 48px;
  height: 48px;
  display: none;
  position: fixed;
  top: auto;
  bottom: 24px;
  right: 24px;
}

.fs-cc-prefs2_buttons-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 16px;
  display: flex;
}

.fs-cc-prefs2_space-small {
  margin-bottom: 12px;
}

.fs-cc-banner2_text {
  font-size: 15px;
}

.fs-cc-prefs2_close {
  background-color: var(--primary);
  color: #000;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px;
  font-size: 20px;
  text-decoration: none;
  position: absolute;
  inset: 0 0 auto auto;
  box-shadow: -1px 1px 4px #3333331a;
}

.fs-cc-preferences2_close-icon {
  color: #fff;
  width: 24px;
  height: 24px;
}

.fs-cc-prefs2_overlay {
  z-index: -1;
  background-color: #00000059;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-banner2_text-link {
  color: #fff;
  border-bottom: 2px solid #fff;
  font-weight: 400;
  text-decoration: none;
}

.donate__box {
  margin-top: 24px;
}

.donate__modal {
  z-index: 9999;
  background-color: #00000078;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.header-flex {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .nav__menu {
    background-color: #000;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .nav__link {
    text-align: left;
  }

  .nav__link.nav__link--chevron {
    text-align: left;
    min-width: 0;
  }

  .nav__link.nav__link--social {
    padding-left: 0;
  }

  .nav__container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template: "Area Area-2"
    / 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    display: grid;
  }

  .nav__dropdown-innerlist {
    box-shadow: none;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    padding-right: 0;
  }

  .nav__dropdown-list {
    box-shadow: none;
    color: #0000;
    margin-top: 0;
    margin-left: 0;
    padding: 5px 8px;
  }

  .dropdownwrapper {
    height: auto;
  }

  .nav__dropdown-container {
    color: #000;
    margin-left: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
  }

  .dropdownlink-container {
    justify-content: flex-start;
    align-items: stretch;
    padding-right: 0;
    display: flex;
  }

  .nav__social-icons {
    padding-right: 0;
  }

  .nav__burger {
    background-color: #fff;
    width: 28px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav__burger.nav__burger-2 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .menu-button {
    padding-right: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .hero__image {
    width: auto;
    height: 100%;
  }

  .paragraph--s.paragraph--ensemble {
    width: 64%;
  }

  .paragraph--s.paragraph--supporter {
    width: 82%;
  }

  .news__top-wrapper {
    align-items: center;
  }

  .news__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template: "Area Area-2"
                   "Area-3 Area-4"
                   "Area-5 Area-6"
                   / auto auto;
    grid-auto-flow: row;
  }

  .media__grid, .ensemble__members-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team__grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .team__item {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .productions__grid {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .productions__item {
    grid-template-columns: 1fr;
  }

  .contact__icons {
    padding-right: 0;
  }

  .newsletter__form {
    flex-wrap: wrap;
  }

  .link-block {
    display: none;
  }

  .nav__overlay {
    opacity: 0;
    top: 200px;
  }

  .main-media-player {
    padding-left: 20px;
    padding-right: 20px;
  }

  .progress-bar-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .media-player-bar-wrapper {
    position: absolute;
    inset: 0% 0% auto;
  }

  .duration, .elapsed, .media-player-volume-wrapper {
    display: none;
  }

  .header-flex {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

@media screen and (max-width: 767px) {
  .nav.nav--social {
    height: 90px;
  }

  .nav__dropdown-innerlist {
    max-width: 100%;
  }

  .nav__dropdown-container {
    display: none;
  }

  .heading--l {
    font-size: 42px;
    line-height: 52px;
  }

  .hero__image {
    opacity: .39;
    height: 82%;
  }

  .heading--m {
    font-size: 32px;
    line-height: 42px;
  }

  .heading--m.heading--right.heading--timeline {
    font-size: 24px;
    line-height: 32px;
  }

  .media.media--ex {
    margin-top: 64px;
  }

  .swiper.is-photos {
    padding-left: 9%;
    padding-right: 9%;
  }

  .concert__list.concert__list--ex {
    grid-template-columns: 1fr;
  }

  .concert__cms-item.concert__cms-item--more {
    display: none;
  }

  .heading--s.heading--left {
    font-size: 21px;
    line-height: 28px;
  }

  .paragraph--s.paragraph--ensemble, .paragraph--s.paragraph--supporter {
    width: 100%;
  }

  .concert__grid {
    grid-template-columns: auto;
  }

  .concert__modal {
    align-items: flex-start;
    height: auto;
    min-height: 100vh;
    display: none;
    overflow: scroll;
  }

  .n__modal-container {
    width: 90vw;
    margin-top: 30px;
    overflow: scroll;
  }

  .n__modal-close {
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 10px;
  }

  .news__grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: auto;
  }

  .footer__paragraph-wrapper {
    flex-wrap: wrap;
  }

  .media__grid {
    grid-template-columns: 1fr;
  }

  .timeline__progress {
    left: 6px;
  }

  .timeline__item {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 150px 1fr;
    width: 100%;
  }

  .timeline__centre {
    justify-content: flex-start;
  }

  .timeline__left {
    text-align: left;
  }

  .timeline__progress-bar {
    background-color: #fff;
  }

  .timeline__circle {
    margin-left: 2px;
  }

  .ensemble__members-grid {
    grid-template-columns: 1fr;
  }

  .team__heading-wrapper {
    flex-wrap: wrap;
  }

  .team__img {
    width: 100%;
  }

  .supporter__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact__field {
    width: 90vw;
    min-width: 100%;
  }

  .contact__field.contact__field--white {
    width: 100%;
    min-width: 0;
  }

  .newsletter__modal {
    align-items: flex-start;
    height: auto;
    min-height: 100vh;
    overflow: scroll;
  }

  .slider {
    height: 80vh;
  }

  .progress-bar-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .media-player-play-button {
    margin-left: 15px;
    margin-right: 15px;
  }

  .media-player-control-wrapper {
    margin-bottom: 0;
  }

  .media-player {
    flex-wrap: wrap;
    display: flex;
  }

  .media-player-pause-button {
    margin-left: 15px;
    margin-right: 15px;
  }

  .overlay-slide {
    height: 80vh;
  }

  .text-rich-text figure, .text-rich-text-2 figure {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .fs-cc-banner2_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-banner2_buttons-wrapper {
    margin-top: 12px;
  }

  .fs-cc-prefs2_title {
    font-size: 20px;
  }

  .fs-cc-banner2_button {
    margin-left: 0;
    margin-right: 8px;
  }

  .fs-cc-banner2_text-link {
    margin-right: 8px;
  }

  .donate__modal {
    align-items: flex-start;
    height: auto;
    min-height: 100vh;
    overflow: scroll;
  }

  .header-flex {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  .nav.nav--social {
    height: 125px;
  }

  .nav__container.nav__container--social {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-self: auto;
    align-items: flex-start;
    display: block;
  }

  .nav__social-icons {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .nav__social-icon {
    display: block;
  }

  .hero {
    background-position: 0 0, 0 0, 100% 70%;
    background-size: auto, auto, auto 40%;
    align-items: flex-start;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .heading--l {
    font-size: 34px;
    line-height: 44px;
  }

  .heading--underline {
    border-bottom-width: 2px;
  }

  .n__btn {
    padding: 9px 24px;
  }

  .n__btn.n__btn--audio {
    z-index: 10;
  }

  .n__btn-wrapper {
    flex-wrap: wrap;
  }

  .heading--m.heading--right.heading--timeline {
    text-align: left;
    position: static;
  }

  .flex-horizontal {
    width: 190px;
  }

  .media__wrapper-control {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap-reverse;
    justify-content: flex-end;
  }

  .concert__top-wrapper {
    align-items: center;
  }

  .concert__list {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .concert__modal {
    height: 100vh;
    top: 0%;
    overflow: scroll;
  }

  .n__modal-container {
    object-fit: fill;
    width: 90%;
    margin-top: 64px;
    margin-bottom: 64px;
    position: relative;
    top: auto;
    overflow: scroll;
  }

  .n__modal-close {
    float: right;
    clear: none;
    position: static;
  }

  .news {
    background-position: 100% 100%, 0 10%;
  }

  .news.news--ex {
    background-image: none;
    padding-top: 64px;
  }

  .tabs__menu-underline-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-radius: 20px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: .8em 1em 1em;
    display: flex;
  }

  .tabs__menu-underline-wrapper.tabs__grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .tabs__nav-item-underline {
    grid-row-gap: .5em;
    flex-direction: column;
  }

  .timeline__item {
    grid-template-columns: 1fr;
  }

  .timeline__centre {
    justify-content: flex-start;
  }

  .timeline__left, .timeline__right {
    margin-left: 42px;
  }

  .ensemble.ensemble--ex {
    margin-top: 64px;
  }

  .ensemble__img {
    width: 100%;
    height: 340px;
  }

  .team.team--ex, .supporter.supporter--ex {
    margin-top: 64px;
  }

  .supporter__grid {
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
  }

  .supporter__item-2 {
    width: 190px;
  }

  .productions.productions--ex, .contact.contact--ex {
    margin-top: 64px;
  }

  .contact__icons {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .contact__icon {
    display: block;
  }

  .newsletter__modal {
    height: 100vh;
    top: 0%;
    overflow: scroll;
  }

  .title.truncate, .genre {
    line-height: 1.2;
  }

  .container {
    flex-wrap: wrap;
    width: auto;
  }

  .cc-prefs_component {
    padding: 24px;
  }

  .fs-cc-prefs2_submit {
    margin-top: 8px;
  }

  .fs-cc-prefs2_content {
    padding: 24px;
  }

  .fs-cc-prefs2_button.fs-cc-button-alt {
    margin-bottom: 8px;
  }

  .fs-cc-prefs2_title {
    font-size: 18px;
  }

  .cc-banner_component {
    z-index: 9999;
    width: auto;
    padding: 12px;
    display: flex;
    left: 24px;
  }

  .fs-cc-prefs2_label {
    font-size: 14px;
  }

  .fs-cc-prefs2_close {
    padding: 8px;
  }

  .donate__modal {
    height: 100vh;
    top: 0%;
    overflow: scroll;
  }

  .mobil-hidden {
    display: none;
  }
}

#w-node-_9b344ca3-b81d-3542-a311-0f3ad342fabe-4abb1089, #w-node-c9920a25-6f7a-c42b-3640-27695469dbf6-4abb1089, #w-node-d09ca456-4fc2-4009-a32b-c48e198eb831-198eb82e, #w-node-d09ca456-4fc2-4009-a32b-c48e198eb868-198eb82e, #w-node-d09ca456-4fc2-4009-a32b-c48e198eb83b-198eb82e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a8f8e7c-303c-5c0c-b9a7-38d3b3c9a9f5-12321cda, #w-node-_2491ca28-83a2-919f-286f-7bba12321cf4-12321cda {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
}

#w-node-_2491ca28-83a2-919f-286f-7bba12321cf6-12321cda {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_85c35610-d48f-ebec-80f3-81d0dcae7d68-dcae7d66 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
}

#w-node-_85c35610-d48f-ebec-80f3-81d0dcae7d6a-dcae7d66, #w-node-e9814857-6eae-199c-5fdb-16c45d98c606-3f21f4ba {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-ffa743f4-3e2b-ce47-ea39-ee8b97b110ac-3f21f4ba {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_17379a5d-79cc-dd56-36f5-e95ac019adea-70be7a9f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_3975e2ac-a526-2a52-f4a3-d1e3e8a45166-70be7a9f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-d09ca456-4fc2-4009-a32b-c48e198eb831-198eb82e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d09ca456-4fc2-4009-a32b-c48e198eb868-198eb82e {
    grid-area: Area-4;
  }

  #w-node-d09ca456-4fc2-4009-a32b-c48e198eb845-198eb82e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d09ca456-4fc2-4009-a32b-c48e198eb83b-198eb82e {
    grid-area: Area-3;
  }

  #w-node-_2743fbf4-2102-8745-8659-e672da2c7d4a-da2c7d2c, #w-node-a161a95a-f49f-9905-8be5-50e0e25b14fe-e25b14df {
    place-self: center end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-d09ca456-4fc2-4009-a32b-c48e198eb868-198eb82e, #w-node-d09ca456-4fc2-4009-a32b-c48e198eb83b-198eb82e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-bcdd6cbf-1607-84ba-77b9-90c9e7210524-f01806c2 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_64c689e0-9d38-9ee3-4fb6-d42c90700ae3-f01806c2 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_26325bde-b51f-86cd-f973-0e8b80b6ef57-f01806c2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_2491ca28-83a2-919f-286f-7bba12321cf4-12321cda, #w-node-_85c35610-d48f-ebec-80f3-81d0dcae7d68-dcae7d66 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter-Bold.ttf') format('truetype'), url('../fonts/Inter-ExtraBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter Custom';
  src: url('../fonts/Inter-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}