@charset "UTF-8";
/**
 * This file contains CSS-Variables for the Breakpoints
 */
/*
 * This File creates CSS-variables for the given Colors
 *
 * Output: --color-white: #fff;
 */
:root {
  --color-black: #222222;
  --color-beige-light: rgb(255, 251, 244);
  --color-beige-dark: #f2ece1;
  --color-purple: #922a7d;
  --color-purple-light: #eedae1;
  --color-purple-medium: #a46597;
  --color-purple-dark: #5f1651;
}

/*
 * This File creates CSS-variables for the given Colors
 *
 * Output: --z-index-navigation: 500;
 */
:root {
  --z-index-full-overlay: 600;
  --z-index-navigation: 500;
  --z-index-ankernavi: 450;
  --z-index-cookie-layer: 425;
  --z-index-overlay: 400;
}

:root {
  --module-spacing: 6.25rem;
}
@media screen and (min-width: 992px) {
  :root {
    --module-spacing: 12.5rem;
  }
}

/*
 * Basic settings for the whole document
 */
:root {
  font-size: 4vw;
  font-family: "Lato";
}
@media screen and (min-width: 360px) {
  :root {
    font-size: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  background-color: var(--color-beige-light);
}
body.no-body-scrolling {
  overflow: hidden;
}

img,
video {
  display: block;
  line-height: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

section:not(.no-loading-animation) {
  opacity: 0;
  transform: translateY(10rem);
  transition: 0.75s ease-out;
}
section:not(.no-loading-animation).loaded {
  opacity: 1;
  transform: translateY(0);
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.ttf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Heavy.ttf");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Semibold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-BlackItalic.ttf");
  font-weight: 900;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-HeavyItalic.ttf");
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Semibold.ttf");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
.content-width-l, .content-width-m, .content-width-s, .content-width-full {
  position: relative;
  width: calc(100vw - 2rem);
  margin-inline: auto;
  margin-block: var(--module-spacing);
}

/*
 * Kann für ein Modul mit Hintergrund verwendet werden.
 * erste Bild wird als Hintergrund verwendet.
 */
.content-width-full {
  width: 100vw;
  padding: 0.1px;
}
.content-width-full > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}
.content-width-full.--beige {
  background: var(--color-beige-dark);
}
.content-width-full .content-width-s,
.content-width-full .content-width-m,
.content-width-full .content-width-l {
  margin-block: calc(var(--module-spacing) / 2);
}

.content-width-s {
  max-width: 60rem;
}

.content-width-m {
  max-width: 69rem;
}

.content-width-l {
  max-width: 91rem;
}

/* --------------------
Aspect ratios for boxes with every content.
The first child will fit the container

Use: 
aspect-ratio--16x9 
optional kann die Klassen --contain vergeben werden
-------------------- */
.aspect-ratio, .aspect-ratio--pdf, .aspect-ratio--1x1, .aspect-ratio--4x3, .aspect-ratio--3x4, .aspect-ratio--3x2, .aspect-ratio--16x9, .aspect-ratio--2x1 {
  height: 0;
  overflow: hidden;
  padding-top: 75%;
  position: relative;
}
.aspect-ratio--2x1 {
  padding-top: 50%;
}
.aspect-ratio--16x9 {
  padding-top: 56.25%;
}
.aspect-ratio--3x2 {
  padding-top: 66.6666666667%;
}
.aspect-ratio--3x4 {
  padding-top: 133.3333333333%;
}
.aspect-ratio--4x3 {
  padding-top: 75%;
}
.aspect-ratio--1x1 {
  padding-top: 100%;
}
.aspect-ratio--pdf {
  padding-top: 123.75%;
}
.aspect-ratio > *, .aspect-ratio--2x1 > *, .aspect-ratio--16x9 > *, .aspect-ratio--3x2 > *, .aspect-ratio--3x4 > *, .aspect-ratio--4x3 > *, .aspect-ratio--1x1 > *, .aspect-ratio--pdf > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.aspect-ratio > img, .aspect-ratio--2x1 > img, .aspect-ratio--16x9 > img, .aspect-ratio--3x2 > img, .aspect-ratio--3x4 > img, .aspect-ratio--4x3 > img, .aspect-ratio--1x1 > img, .aspect-ratio--pdf > img {
  -o-object-fit: cover;
  object-fit: cover;
}
.aspect-ratio.--contain img, .--contain.aspect-ratio--2x1 img, .--contain.aspect-ratio--16x9 img, .--contain.aspect-ratio--3x2 img, .--contain.aspect-ratio--3x4 img, .--contain.aspect-ratio--4x3 img, .--contain.aspect-ratio--1x1 img, .--contain.aspect-ratio--pdf img {
  -o-object-fit: contain;
  object-fit: contain;
}

.blur, .image-text-circle::before, .members-grid__details, .teaser-centered__content, .infogrid__details, .infogrid__content .plus, .stage-nav__item, .ankernav__wrapper {
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.image-text-circle__wrapper, .members-grid__details, .members-grid__item, .teaser-centered, .text-image__image, .slider__item, .infogrid__item, .contact__image, .stage-nav__item {
  box-shadow: 0 3px 15px 0 rgba(23, 23, 23, 0.25);
}

.members-grid__item, .teaser-centered__content, .text-image__image, .infogrid__item {
  border-radius: 1.5rem;
}
@media screen and (min-width: 1240px) {
  .members-grid__item, .teaser-centered__content, .text-image__image, .infogrid__item {
    border-radius: 3rem;
  }
}

.infogrid__content .plus, .infogrid__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.rte {
  line-height: 1.5;
  font-size: 1rem;
}
.rte * {
  max-width: 56rem;
}
.rte h1 {
  font-size: 2.25rem;
}
@media screen and (min-width: 992px) {
  .rte h1 {
    font-size: 3rem;
  }
}
.rte h2 {
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .rte h2 {
    font-size: 2.5rem;
  }
}
.rte h3 {
  font-size: 1.75rem;
}
@media screen and (min-width: 992px) {
  .rte h3 {
    font-size: 2rem;
  }
}
.rte h4 {
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .rte h4 {
    font-size: 1.75rem;
  }
}
.rte h5 {
  font-size: 1.25rem;
}
@media screen and (min-width: 992px) {
  .rte h5 {
    font-size: 1.25rem;
  }
}
.rte h1,
.rte h2,
.rte h3,
.rte h4,
.rte h5 {
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.25;
}
.rte p {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.rte ul,
.rte ol {
  padding: 0;
  margin-inline: 0;
  margin-block: 1rem;
  list-style-position: outside;
  margin-left: 1rem;
}
.rte ul li,
.rte ol li {
  margin-bottom: 0.5em;
}
.rte a {
  color: var(--color-purple);
  font-weight: 900;
  text-decoration: none;
  transition: 0.25s;
  position: relative;
}
.rte a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.25s ease-in-out;
  background-color: currentColor;
}
.rte a:hover::after {
  transform: scaleX(1);
}

.link {
  color: var(--color-purple);
  font-weight: 900;
  position: relative;
}
.link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.25s ease-in-out;
  background-color: currentColor;
}
.link:hover::after {
  transform: scaleX(1);
}

.copy-text, .copy-text--center {
  font-weight: 400;
  font-size: 1rem;
  max-width: 48rem;
  margin-bottom: 1em;
  margin-top: 0;
  line-height: 1.5;
}
.copy-text--center {
  text-align: center;
  margin-inline: auto;
}

.heading, .heading--center, .heading--xl, .heading--l, .heading--m, .heading--s, .heading--xs {
  font-weight: 900;
  margin: 0;
  margin-bottom: 0.5em;
  width: 100%;
  text-align: center;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.heading--xs {
  font-size: 1.25rem;
  font-weight: 800;
}
@media screen and (min-width: 992px) {
  .heading--xs {
    font-size: 1.25rem;
  }
}
.heading--s {
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .heading--s {
    font-size: 2.25rem;
  }
}
.heading--m {
  font-size: 2.25rem;
}
@media screen and (min-width: 992px) {
  .heading--m {
    font-size: 3rem;
  }
}
.heading--l {
  font-size: 2.625rem;
}
@media screen and (min-width: 992px) {
  .heading--l {
    font-size: 4.5rem;
  }
}
.heading--xl {
  font-size: 3.25rem;
}
@media screen and (min-width: 992px) {
  .heading--xl {
    font-size: 6.25rem;
  }
}
.heading--center {
  text-align: center;
  margin-inline: auto;
}

.subheading {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 1rem 1rem;
  text-align: center;
}
.subheading::before, .subheading::after {
  content: "•";
  position: relative;
  top: -0.1rem;
}
.subheading::before {
  margin-right: 0.25rem;
}
.subheading::after {
  margin-left: 0.25rem;
}

:root {
  --consent-background: var(--color-purple);
  --consent-border-radius: 2.5rem;
  --consent-text-width: 60rem;
  --consent-color: var(--color-beige-light);
}

.consent {
  width: 100vw;
  position: fixed;
}
.consent__label {
  position: fixed;
  display: grid;
  place-items: center;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--consent-border-radius);
  background: var(--consent-background);
  box-shadow: 0 16px 24px 2px rgba(29, 17, 51, 0.04), 0 6px 32px 4px rgba(9, 32, 77, 0.12), 0 8px 12px -5px rgba(29, 17, 51, 0.12);
  opacity: 0.7;
  cursor: pointer;
}
.consent__label svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: white;
  pointer-events: none;
}
.consent__layer {
  display: flex;
  position: fixed;
  flex-direction: column;
  max-height: calc(100vh - 12rem);
  gap: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: calc(100vw - 2rem);
  color: var(--consent-color);
  background: var(--consent-background);
  box-shadow: 0 16px 24px 2px rgba(29, 17, 51, 0.04), 0 6px 32px 4px rgba(9, 32, 77, 0.12), 0 8px 12px -5px rgba(29, 17, 51, 0.12);
  border-radius: var(--consent-border-radius);
  padding: 1.5rem 1rem;
  transform: translateY(calc(100% + 5rem));
  transition: 0.25s;
  overflow: scroll;
  z-index: var(--z-index-cookie-layer);
}
.consent__layer.is-active {
  transform: none;
}
.consent__container {
  display: block;
  width: 100%;
  max-width: var(--consent-text-width);
  margin-inline: auto;
}
.consent__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.consent__settings {
  position: fixed;
  max-height: calc(100vh - 2rem);
  overflow: scroll;
  background: var(--consent-background);
  padding: 1.5rem 1rem;
  color: var(--consent-color);
  border-radius: var(--consent-border-radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: calc(100vw - 2rem);
  left: 1rem;
  bottom: 1rem;
  box-shadow: 0 16px 24px 2px rgba(29, 17, 51, 0.04), 0 6px 32px 4px rgba(9, 32, 77, 0.12), 0 8px 12px -5px rgba(29, 17, 51, 0.12);
  z-index: 910;
}
@media screen and (min-width: 992px) {
  .consent__settings {
    top: 50%;
    left: 50%;
    bottom: unset;
    transform: translate(-50%, -50%);
  }
}
.consent__options {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.consent__options > input {
  height: 1rem;
  cursor: pointer;
}
.consent__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(204, 204, 204, 0.3137254902);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 900;
}

.button, .button--outline-black, .button--beige, .button--purple {
  height: 2.625rem;
  width: -moz-min-content;
  width: min-content;
  min-width: 6.25rem;
  border: 2px solid;
  border-radius: 99rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  box-shadow: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.25s ease;
  text-decoration: none;
  line-height: 1 !important;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .button, .button--outline-black, .button--beige, .button--purple {
    height: 3rem;
    padding: 0.85rem 1.5rem;
  }
}
.button--arrow::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: var(--color-beige-light);
  -webkit-mask-image: url(/assets/icons/waw-icon-arrow-freigestellt-purple.svg);
  mask-image: url(/assets/icons/waw-icon-arrow-freigestellt-purple.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  top: 0.2em;
  margin-left: 0.5em;
  margin-right: -0.5em;
  transition: 0.25s ease;
  cursor: pointer;
}
.button--purple {
  background-color: var(--color-purple);
  border-color: var(--color-purple);
  color: var(--color-beige-light) !important;
}
@media (hover: hover) {
  .button--purple:hover {
    background-color: var(--color-purple-medium);
    border-color: var(--color-purple-medium);
  }
  .button--purple:active {
    background-color: var(--color-purple-dark);
    border-color: var(--color-purple-dark);
  }
}
.button--beige {
  background-color: var(--color-beige-dark);
  border-color: var(--color-beige-dark);
  color: var(--color-black);
}
@media (hover: hover) {
  .button--beige:hover {
    background-color: var(--color-black);
    color: var(--color-beige-dark);
    border-color: var(--color-black);
  }
}
.button--outline-black {
  background-color: unset;
  border-color: var(--color-black);
  color: var(--color-black);
}
@media (hover: hover) {
  .button--outline-black:hover, .button--outline-black:active {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-beige-light);
  }
}

.button-plus,
.button-x {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-purple);
  -webkit-mask-image: url(/assets/icons/waw-icon-plus-beige.svg);
  mask-image: url(/assets/icons/waw-icon-plus-beige.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: 0.25s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .button-plus:hover,
.button-x:hover {
    background-color: var(--color-purple-medium);
  }
  .button-plus:active,
.button-x:active {
    background-color: var(--color-purple-dark);
  }
}

.button-x {
  transform: rotate(45deg);
}

.anchor-target {
  position: relative;
  display: block;
  height: 0;
  top: calc(-10rem - var(--module-spacing) / 2);
}
@media screen and (min-width: 992px) {
  .anchor-target {
    top: calc(-13.25rem - var(--module-spacing) / 2);
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
}
.overlay.is-active {
  display: flex;
}

.modal-content {
  width: 100%;
  height: 100%;
}
.modal-content img {
  margin-top: 6rem;
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: var(--z-index-navigation);
  background-color: rgba(255, 251, 244, 0.9);
  box-shadow: 0 5px 34px 0 rgba(23, 23, 23, 0.1);
  overflow-x: hidden;
}
@media screen and (min-width: 992px) {
  .header {
    height: 8.25rem;
  }
}
.header__nav-wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1.125rem;
}
@media screen and (min-width: 992px) {
  .header__nav-wrapper {
    justify-content: unset;
    width: calc(100vw - 2rem);
    padding: 0;
    display: grid;
    grid-template-columns: auto auto 1fr;
    max-width: 1720px;
    margin-inline: auto;
  }
}
.header__logo {
  display: block;
  height: 3rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 992px) {
  .header__logo {
    height: 4.5rem;
  }
}
.header__logo > img {
  height: 100%;
}
.header__logo2 {
  display: none;
}
@media screen and (min-width: 1240px) {
  .header__logo2 {
    display: block;
    height: 4rem;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 1.75rem;
    padding-top: 0.5rem;
  }
}
.header__logo2 > img {
  height: 100%;
}
.header__mobile-menu {
  height: 3rem;
  width: 3rem;
  background-color: var(--color-purple);
  border-radius: 50%;
  position: relative;
}
.header__mobile-menu::before {
  content: "";
  position: absolute;
  top: 1.125rem;
  left: 0.75rem;
  width: 1.5rem;
  height: 3px;
  background-color: var(--color-beige-light);
  border-radius: 200rem;
  transition-duration: 0.25s;
}
.header__mobile-menu::after {
  content: "";
  position: absolute;
  bottom: 1.125rem;
  left: 0.75rem;
  width: 1.5rem;
  height: 3px;
  background-color: var(--color-beige-light);
  border-radius: 200rem;
  border-radius: 200rem;
  transition-duration: 0.25s;
}
@media (min-width: 992px) {
  .header__mobile-menu {
    display: none;
  }
}
.header__mobile-menu.is-active::before {
  top: 1.4rem;
  transform: rotate(45deg);
}
.header__mobile-menu.is-active::after {
  bottom: 1.4rem;
  transform: rotate(-45deg);
}
.header__nav {
  display: none;
}
.header__nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__nav li {
  list-style: none;
  margin-bottom: 2rem;
}
.header__nav li:first-child {
  margin-top: 3rem;
}
.header__nav li:last-child {
  margin-bottom: 3rem;
}
.header__nav li a {
  display: block;
  color: var(--color-black);
  text-decoration: none;
  font-weight: 900;
  margin-right: 0;
  font-size: 1.875rem;
}
.header__nav li a.is-active {
  color: var(--color-purple);
}
.header__nav.is-active {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  position: fixed;
  z-index: -1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 251, 244, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-top: 5rem;
  padding-bottom: 3.5rem;
  overflow: scroll;
}
@media (min-width: 992px) {
  .header__nav {
    display: block;
    margin-left: 1.75rem;
  }
  .header__nav ul {
    padding: 0;
    flex-direction: row;
    justify-content: center;
    pointer-events: none;
  }
  .header__nav ul:hover li:not(:hover) {
    opacity: 0.5;
  }
  .header__nav li {
    margin: 0;
    margin-left: 1.5rem;
    pointer-events: all;
    transition: 0.25s;
  }
  .header__nav li:first-child {
    margin-top: unset;
    margin-left: 0;
  }
  .header__nav li:last-child {
    margin-bottom: unset;
  }
}
@media screen and (min-width: 992px) and (min-width: 1600px) {
  .header__nav li {
    margin-left: 2.5rem;
  }
}
@media (min-width: 992px) {
  .header__nav li a {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0;
    padding: 0.5rem;
    white-space: nowrap;
    transition: 0.25s;
    color: var(--color-black);
  }
  .header__nav li a.is-active {
    color: var(--color-purple);
    font-weight: 900;
  }
}
.header__social {
  display: flex;
  justify-content: center;
}
.header__social a {
  height: 3rem;
  margin-right: 1.25rem;
}
.header__social a:last-child {
  margin-right: unset;
}
@media (min-width: 992px) {
  .header__social {
    display: none;
  }
}

.ankernav {
  opacity: 0;
  position: fixed;
  width: 100%;
  top: 2.5rem;
  z-index: var(--z-index-ankernavi);
  transition: all 0.25s ease;
  pointer-events: none;
}
.ankernav.is-active {
  opacity: 1;
  top: 5rem;
  height: 5rem !important;
  pointer-events: all;
}
@media screen and (min-width: 992px) {
  .ankernav.is-active {
    top: 8.25rem;
  }
}
.ankernav__wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scroll-behavior: smooth;
  background-color: rgba(242, 236, 225, 0.9);
  box-shadow: 0 5px 10px 0 rgba(23, 23, 23, 0.15);
  padding: 1.5rem 1rem 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ankernav__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 544px) {
  .ankernav__wrapper {
    justify-content: center;
  }
}
@media screen and (min-width: 992px) {
  .ankernav__wrapper {
    pointer-events: none;
  }
}
@media (hover: hover) {
  .ankernav__wrapper:hover a:not(:hover) {
    opacity: 0.5;
  }
}
.ankernav__wrapper a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-black);
  margin-right: 2rem;
  padding: 0.5rem;
  pointer-events: all;
  white-space: nowrap;
}
.ankernav__wrapper a:last-child {
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .ankernav__wrapper a {
    margin-right: 5rem;
  }
}
@media screen and (min-width: 1600px) {
  .ankernav__wrapper a {
    margin-right: 8.75rem;
  }
}
@media (hover: hover) {
  .ankernav__wrapper a:hover {
    color: var(--color-black);
  }
}
.ankernav__wrapper a.is-active {
  color: var(--color-purple);
  font-weight: 900;
}

.stage-nav {
  position: relative;
  top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .stage-nav {
    top: -3rem;
    margin-bottom: -3rem;
    padding-bottom: 0;
  }
}
@media (min-width: 1240px) {
  .stage-nav {
    top: -4rem;
    margin-bottom: -4rem;
  }
}
@media (min-width: 1440px) {
  .stage-nav {
    top: -5rem;
    margin-bottom: -5rem;
  }
}
.stage-nav__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  width: calc(100vw - 2rem);
  margin-inline: auto;
}
@media (min-width: 992px) {
  .stage-nav__wrapper {
    gap: 1.25rem;
    display: flex;
    justify-content: center;
    width: calc(100vw - 14rem);
  }
}
@media (min-width: 1440px) {
  .stage-nav__wrapper {
    width: calc(100vw - 2rem);
    max-width: 91rem;
  }
}
.stage-nav__item {
  flex-grow: 1;
  margin-bottom: 0.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 251, 244, 0.6);
  transition: 0.5s;
}
@media (hover: hover) {
  .stage-nav__item:hover {
    background-color: var(--color-beige-light);
  }
  .stage-nav__item:hover .stage-nav__content {
    color: var(--color-purple);
  }
}
@media screen and (min-width: 992px) {
  .stage-nav__item {
    margin-bottom: 1rem;
    border-radius: 2rem;
    width: 100px;
    max-width: 30rem;
    flex-grow: 1;
  }
}
@media (min-width: 1440px) {
  .stage-nav__item {
    border-radius: 3rem;
  }
}
.stage-nav .anchor-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.stage-nav__content {
  margin-bottom: 0.625rem;
  margin-top: 1.125rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-black);
  transition: 0.25s;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .stage-nav__content {
    margin-bottom: 0.75rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1440px) {
  .stage-nav__content {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
  }
}
.stage-nav__arrow {
  height: 1.5rem;
  width: 1.5rem;
  margin-bottom: 1rem;
  background-color: var(--color-purple);
  -webkit-mask-image: url(../../assets/icons/waw-icon-arrow-purple.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-image: url(../../assets/icons/waw-icon-arrow-purple.svg);
  transform: rotate(90deg);
}
@media (min-width: 992px) {
  .stage-nav__arrow {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .stage-nav__arrow {
    height: 2.25rem;
    width: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

.contact {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 992px) {
  .contact {
    gap: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.contact__image {
  margin-inline: -1rem;
}
@media screen and (min-width: 992px) {
  .contact__image {
    border-radius: 3rem;
    margin-inline: 0;
  }
}
@media screen and (min-width: 992px) {
  .contact__content {
    padding-left: 3rem;
  }
}
.contact__content h3 {
  text-align: left;
}
.contact__content p {
  max-width: 20rem;
}
.contact__icons {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 0.5rem;
  margin-top: 2rem;
}
.contact__icons i {
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  background-color: var(--color-purple);
  position: relative;
  bottom: 0.5rem;
}
.contact__icons i.location {
  -webkit-mask-image: url(/assets/icons/waw-icon-location-purple.svg);
  mask-image: url(/assets/icons/waw-icon-location-purple.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.contact__icons i.mail {
  -webkit-mask-image: url(/assets/icons/waw-icon-mail-purple.svg);
  mask-image: url(/assets/icons/waw-icon-mail-purple.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.contact__icons i.phone {
  -webkit-mask-image: url(/assets/icons/waw-icon-phone-purple.svg);
  mask-image: url(/assets/icons/waw-icon-phone-purple.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.infogrid {
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 992px) {
  .infogrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.infogrid__item img {
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .infogrid__item {
    padding-top: 100%;
  }
  .infogrid__item:hover .infogrid__details {
    opacity: 1;
    top: 0;
  }
  .infogrid__item:hover .infogrid__details .rte {
    top: 0;
  }
}
.infogrid__content {
  color: var(--color-beige-light);
  padding: 1.5rem;
  text-align: center;
}
.infogrid__content .plus {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 251, 244, 0.85);
  border-radius: 5rem;
  mask-image: url(/assets/icons/waw-icon-plus-beige.svg);
  -webkit-mask-image: url(/assets/icons/waw-icon-plus-beige.svg);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}
@media screen and (min-width: 992px) {
  .infogrid__content .plus {
    width: 4rem;
    height: 4rem;
  }
}
.infogrid__details {
  opacity: 0;
  background-color: rgba(255, 251, 244, 0.85);
  padding: 1rem 1rem;
  transition: 0.45s ease;
  overflow: hidden;
  pointer-events: none;
  z-index: var(--z-index-full-overlay);
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .infogrid__details {
    padding: 4rem 3rem;
    pointer-events: all;
    z-index: 1;
  }
}
.infogrid__details.is-active {
  opacity: 1;
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  pointer-events: all;
}
.infogrid__details .button-x {
  position: fixed;
  right: 2rem;
  top: 2rem;
}
@media screen and (min-width: 992px) {
  .infogrid__details .button-x {
    display: none;
  }
}
.infogrid__details .rte {
  position: relative;
  transition: 0.45s ease;
  top: 5rem;
}
@media screen and (min-width: 992px) {
  .infogrid__details .rte {
    top: 4rem;
  }
}

.footer {
  position: relative;
  -webkit-clip-path: circle(300vw at 50% 300vw);
  clip-path: circle(300vw at 50% 300vw);
  background-color: var(--color-purple);
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: 5rem;
}
.footer::before {
  content: "";
  position: absolute;
  background-color: var(--color-beige-dark);
  width: 100%;
  -webkit-clip-path: circle(300vw at 50% 300vw);
  clip-path: circle(300vw at 50% 300vw);
  height: 100%;
  z-index: -1;
  top: 6px;
}
@media screen and (min-width: 992px) {
  .footer {
    -webkit-clip-path: circle(400vw at 50% 400vw);
    clip-path: circle(400vw at 50% 400vw);
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
  .footer::before {
    -webkit-clip-path: circle(400vw at 50% 400vw);
    clip-path: circle(400vw at 50% 400vw);
  }
}
.footer__wrapper {
  width: calc(100vw - 2rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  row-gap: 3rem;
  grid-template-areas: "logo logo" "nav-left nav-right" "social social";
}
.footer__wrapper:last-child {
  grid-area: social;
}
@media screen and (min-width: 992px) {
  .footer__wrapper {
    max-width: 1190px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
  }
}
.footer__logo {
  grid-area: logo;
}
.footer__logo a {
  display: block;
  height: 3.5rem;
}
.footer__logo a > img {
  height: 100%;
}
@media screen and (min-width: 992px) {
  .footer__logo a {
    height: 4rem;
  }
}
.footer__navitem {
  margin-left: 0.5rem;
}
@media screen and (min-width: 992px) {
  .footer__navitem {
    margin-left: 0;
  }
}
.footer__navitem ul {
  list-style-type: none;
  padding: 0;
}
.footer__navitem a {
  display: block;
  text-decoration: none;
  color: var(--color-black);
  margin-bottom: 1rem;
  transition: 0.25s;
}
.footer__navitem a:hover {
  color: var(--color-purple);
}
.footer #col-left {
  grid-area: nav-left;
}
.footer #col-right {
  grid-area: nav-right;
  margin-left: 0;
}
.footer__heading {
  font-weight: 900;
  color: var(--color-black);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
@media screen and (min-width: 992px) {
  .footer__heading {
    margin: 0 0 1.75rem;
  }
}
.footer__social {
  display: flex;
}
.footer__social a {
  height: 3rem;
  margin-right: 0.75rem;
}
.footer__social a:last-child {
  margin-right: unset;
}

.slider {
  position: relative;
}
.slider__wrapper {
  margin-inline: -1rem;
}
.slider__item {
  margin-inline: 1rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
}
@media screen and (min-width: 992px) {
  .slider__item {
    border-radius: 2.25rem;
  }
}
.slider__item .button, .slider__item .button--purple, .slider__item .button--beige, .slider__item .button--outline-black {
  display: inline-block;
  margin-top: 1rem;
}
.slider__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.slider__content {
  padding: 2rem 2rem 3rem;
  background: rgba(242, 236, 225, 0.7333333333);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}
.slider__date {
  line-height: 1.5;
  display: block;
  font-size: 1.25rem;
  color: var(--color-purple);
  margin-bottom: 0.25em;
}
.slider__headline {
  line-height: 1.5;
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5em;
}
.slider__navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.75rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
}
@media (min-width: 1240px) {
  .slider__navigation {
    width: 79rem;
    left: -5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 1440px) {
  .slider__navigation {
    width: 81rem;
    left: -6rem;
  }
}
.slider__arrow-prev {
  margin: 1rem;
  margin-left: unset;
  height: 2.25rem;
  width: 2.25rem;
  transform: rotate(180deg);
  background-color: var(--color-purple);
  -webkit-mask-image: url(../../assets/icons/waw-icon-arrow-purple.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-image: url(../../assets/icons/waw-icon-arrow-purple.svg);
}
@media (min-width: 992px) {
  .slider__arrow-prev {
    margin: 1rem;
    height: 3rem;
    width: 3rem;
  }
}
.slider__arrow-next {
  margin: 1rem;
  margin-right: unset;
  height: 2.25rem;
  width: 2.25rem;
  background-color: var(--color-purple);
  -webkit-mask-image: url(../../assets/icons/waw-icon-arrow-purple.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  mask-image: url(../../assets/icons/waw-icon-arrow-purple.svg);
}
@media (min-width: 992px) {
  .slider__arrow-next {
    margin: 1rem;
    height: 3rem;
    width: 3rem;
  }
}
.slider .slick-dots {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
@media (min-width: 992px) {
  .slider .slick-dots {
    margin-top: 1.75rem;
  }
}
.slider .slick-dots li {
  height: 0.75rem;
  width: 0.75rem;
  border: 2px solid;
  border-color: var(--color-purple);
  border-radius: 50%;
  margin-right: 0.5rem;
}
@media (min-width: 992px) {
  .slider .slick-dots li {
    margin-right: 0.75rem;
    height: 1rem;
    width: 1rem;
  }
}
.slider .slick-dots li:last-child {
  margin-right: 0;
}
.slider .slick-dots li.slick-active {
  height: 0.75rem;
  width: 0.75rem;
  background-color: var(--color-purple);
  border-radius: 50%;
}
@media (min-width: 992px) {
  .slider .slick-dots li.slick-active {
    height: 1rem;
    width: 1rem;
  }
}
.slider .slick-dots button {
  visibility: hidden;
}

.headline {
  position: relative;
  margin-bottom: calc(0rem - var(--module-spacing) / 2);
  height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-purple);
}
.headline .heading, .headline .heading--xs, .headline .heading--s, .headline .heading--m, .headline .heading--l, .headline .heading--xl, .headline .heading--center {
  text-transform: uppercase;
  margin: 0;
}
.headline::before {
  content: "";
  position: absolute;
  display: block;
  width: 11rem;
  height: 11rem;
  background-color: var(--color-purple-light);
  top: 0;
  left: calc(50% - 5.5rem);
  z-index: -1;
  border-radius: 50%;
}

.text-image {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 992px) {
  .text-image {
    gap: 6rem;
  }
}
.text-image__item {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "image" "text";
}
@media screen and (min-width: 992px) {
  .text-image__item {
    grid-template-columns: 1fr 0 1fr;
    gap: 4rem;
    grid-template-rows: auto;
    grid-template-areas: "text text image";
  }
  .text-image__item.reverse {
    grid-template-areas: "image text text";
  }
}
.text-image__image {
  grid-area: image;
}
.text-image__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image__text span {
  text-align: left;
}
.text-image .subheading {
  color: var(--color-purple);
}

.highlighted-text {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 992px) {
  .highlighted-text {
    gap: 3rem;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 2fr;
  }
}
.highlighted-text .heading--l {
  color: var(--color-purple);
}

.textblock {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 992px) {
  .textblock {
    gap: 3rem;
    grid-template-columns: 1fr 3fr;
    place-items: center;
  }
}
.textblock__heading {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-right: 3rem;
}
.textblock__heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  transform: translate(0, -50%);
  background-color: var(--color-beige-dark);
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .textblock__heading::after {
    right: -3rem;
    width: 10rem;
    height: 10rem;
  }
}

.teaser-centered {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  .teaser-centered {
    padding: 0;
  }
}
.teaser-centered__content {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-block: 6.25rem;
  background-color: rgba(242, 236, 225, 0.7333333333);
}
@media screen and (min-width: 992px) {
  .teaser-centered__content {
    padding-inline: 1rem;
    padding-block: 12.5rem;
    -webkit-clip-path: circle(28rem at 50% 50%);
    clip-path: circle(28rem at 50% 50%);
  }
}
.teaser-centered .heading, .teaser-centered .heading--xs, .teaser-centered .heading--s, .teaser-centered .heading--m, .teaser-centered .heading--l, .teaser-centered .heading--xl, .teaser-centered .heading--center {
  color: var(--color-purple);
}
.teaser-centered__text {
  width: calc(100vw - 4rem);
  max-width: 37rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.stage {
  position: relative;
  height: 30rem;
}
@media screen and (min-width: 1240px) {
  .stage {
    height: 40rem;
  }
}
.stage__content {
  height: 100%;
  -webkit-clip-path: circle(50rem at 50% -20rem);
  clip-path: circle(50rem at 50% -20rem);
}
@media screen and (min-width: 544px) {
  .stage__content {
    -webkit-clip-path: circle(100rem at 50% -70rem);
    clip-path: circle(100rem at 50% -70rem);
  }
}
@media screen and (min-width: 768px) {
  .stage__content {
    -webkit-clip-path: circle(140rem at 50% -110rem);
    clip-path: circle(140rem at 50% -110rem);
  }
}
@media screen and (min-width: 992px) {
  .stage__content {
    -webkit-clip-path: circle(180rem at 50% -150rem);
    clip-path: circle(180rem at 50% -150rem);
  }
}
@media screen and (min-width: 1240px) {
  .stage__content {
    -webkit-clip-path: circle(340rem at 50% -300rem);
    clip-path: circle(340rem at 50% -300rem);
  }
}
@media screen and (min-width: 1440px) {
  .stage__content {
    -webkit-clip-path: circle(400rem at 50% -360rem);
    clip-path: circle(400rem at 50% -360rem);
  }
}
@media screen and (min-width: 1600px) {
  .stage__content {
    -webkit-clip-path: circle(760rem at 50% -720rem);
    clip-path: circle(760rem at 50% -720rem);
  }
}
.stage .image-container {
  display: block;
  width: 100%;
  height: 100%;
}
.stage .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.stage .slick-track, .stage .slick-slider, .stage .slick-list {
  position: relative;
  height: 100%;
}
.stage__border {
  position: absolute;
  background-color: var(--color-purple);
  width: 100%;
  height: 100%;
  z-index: -2;
  top: 6px;
  -webkit-clip-path: circle(50rem at 50% -20rem);
  clip-path: circle(50rem at 50% -20rem);
}
@media screen and (min-width: 544px) {
  .stage__border {
    -webkit-clip-path: circle(100rem at 50% -70rem);
    clip-path: circle(100rem at 50% -70rem);
  }
}
@media screen and (min-width: 768px) {
  .stage__border {
    -webkit-clip-path: circle(140rem at 50% -110rem);
    clip-path: circle(140rem at 50% -110rem);
  }
}
@media screen and (min-width: 992px) {
  .stage__border {
    -webkit-clip-path: circle(180rem at 50% -150rem);
    clip-path: circle(180rem at 50% -150rem);
  }
}
@media screen and (min-width: 1240px) {
  .stage__border {
    -webkit-clip-path: circle(340rem at 50% -300rem);
    clip-path: circle(340rem at 50% -300rem);
  }
}
@media screen and (min-width: 1440px) {
  .stage__border {
    -webkit-clip-path: circle(400rem at 50% -360rem);
    clip-path: circle(400rem at 50% -360rem);
  }
}
@media screen and (min-width: 1600px) {
  .stage__border {
    -webkit-clip-path: circle(760rem at 50% -720rem);
    clip-path: circle(760rem at 50% -720rem);
  }
}
.stage__slider-navigation {
  position: absolute;
  bottom: 2.5rem;
  transform: translateY(-50%);
  height: 2.25rem;
  padding: 0 0.5rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .stage__slider-navigation {
    top: 50%;
    transform: translateY(-50%);
    height: 3rem;
    padding: 0 5rem;
  }
}
.stage__slider-navigation .prev {
  margin: 0.5rem;
  height: 2.25rem;
  width: 2.25rem;
  transform: rotate(180deg);
}
@media screen and (min-width: 992px) {
  .stage__slider-navigation .prev {
    height: 3rem;
    width: 3rem;
  }
}
.stage__slider-navigation .next {
  margin: 0.5rem;
  height: 2.25rem;
  width: 2.25rem;
}
@media screen and (min-width: 992px) {
  .stage__slider-navigation .next {
    margin: 1rem;
    height: 3rem;
    width: 3rem;
  }
}
.stage .heading, .stage .heading--xs, .stage .heading--s, .stage .heading--m, .stage .heading--l, .stage .heading--xl, .stage .heading--center {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-beige-light);
  text-transform: uppercase;
  padding: 0 1rem;
}

.members-grid {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .members-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.members-grid__item {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .members-grid__item:nth-child(2n) .members-grid__details {
    left: calc(-100% - 1rem);
  }
}
@media screen and (min-width: 992px) {
  .members-grid__item {
    border-radius: 3rem;
  }
  .members-grid__item:nth-child(3n-2) .members-grid__details {
    left: 0;
  }
  .members-grid__item:nth-child(3n-1) .members-grid__details {
    left: calc(-100% - 1rem);
  }
  .members-grid__item:nth-child(3n) .members-grid__details {
    left: calc(-200% - 2rem);
  }
}
.members-grid__content {
  padding: 2.5rem 3rem 1.5rem;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 2rem;
}
.members-grid__content img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.members-grid__details {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "image" "facts" "text";
  top: 3rem;
  background-color: rgba(242, 236, 225, 0.7);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  width: 100%;
  gap: 2rem;
  left: 0;
  padding: 1rem;
  padding-bottom: 2rem;
  transition: 0.4s;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  overflow: scroll;
  z-index: var(--z-index-full-overlay);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .members-grid__details {
    padding: 2rem;
    padding-bottom: 1.5rem;
    gap: 3rem;
    position: absolute;
    width: calc(200% + 1rem);
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 1.5rem;
    z-index: var(--z-index-overlay);
  }
}
@media screen and (min-width: 992px) {
  .members-grid__details {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "icon text" "facts text" "button button";
    width: calc(300% + 2rem);
    border-radius: 3rem;
    overflow: auto;
  }
}
.members-grid__details.is-active {
  top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.members-grid__details .img {
  margin-top: 6rem;
}
.members-grid__details .button-x {
  position: fixed;
  top: 2rem;
  right: 2rem;
}
@media screen and (min-width: 992px) {
  .members-grid__details .button-x {
    position: relative;
    top: 0;
    right: 0;
    grid-area: button;
    place-self: center;
  }
}
.members-grid img {
  place-self: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .members-grid img {
    place-self: left;
  }
}
.members-grid__facts {
  font-weight: 900;
  grid-area: facts;
  place-self: center;
}
@media screen and (min-width: 768px) {
  .members-grid__facts {
    place-self: start;
  }
}
.members-grid__text {
  grid-area: text;
  height: -moz-fit-content;
  height: fit-content;
}

.quote {
  position: relative;
  min-height: 23.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .quote p {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 992px) {
  .quote p {
    font-size: 3rem;
  }
}
.quote::before {
  content: "";
  width: 23.5rem;
  height: 23.5rem;
  max-width: calc(100vw - 4rem);
  max-height: calc(100vw - 4rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-beige-dark);
  border-radius: 50%;
  z-index: -1;
}

.file-grid {
  display: grid;
  justify-items: center;
  row-gap: 3rem;
  margin: 0 4rem;
}
@media screen and (min-width: 768px) {
  .file-grid {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    justify-items: stretch;
  }
}
@media screen and (min-width: 992px) {
  .file-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 6rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
}
.file-grid__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 992px) {
  .file-grid__item:hover .file-grid__details {
    opacity: 1;
    pointer-events: all;
  }
}
.file-grid__image {
  border-radius: 1.25rem;
  overflow: hidden;
}
.file-grid__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 992px) {
  .file-grid__image {
    border-radius: 2rem;
  }
}
.file-grid__details {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .file-grid__details {
    background-color: rgba(255, 251, 244, 0.85);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: 0.45s ease;
  }
  .file-grid__details .file-grid__button-close {
    display: none;
  }
  .file-grid__details .heading, .file-grid__details .heading--xs, .file-grid__details .heading--s, .file-grid__details .heading--m, .file-grid__details .heading--l, .file-grid__details .heading--xl, .file-grid__details .heading--center {
    display: none;
  }
  .file-grid__details .button-x {
    display: none;
  }
}
.file-grid__details.is-active {
  opacity: 1;
  pointer-events: all;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: var(--z-index-full-overlay);
  border-radius: 1.25rem;
  background-color: rgba(255, 251, 244, 0.85);
  padding: 0 1rem;
}
.file-grid__details.is-active .heading, .file-grid__details.is-active .heading--xs, .file-grid__details.is-active .heading--s, .file-grid__details.is-active .heading--m, .file-grid__details.is-active .heading--l, .file-grid__details.is-active .heading--xl, .file-grid__details.is-active .heading--center {
  margin-top: 6rem;
  line-height: 1.2;
  text-align: left;
}
.file-grid__details.is-active .button-x {
  width: 3rem;
  height: 3rem;
  top: 2rem;
  right: 2rem;
  position: fixed;
}
.file-grid .heading, .file-grid .heading--xs, .file-grid .heading--s, .file-grid .heading--m, .file-grid .heading--l, .file-grid .heading--xl, .file-grid .heading--center {
  margin-top: 1.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .file-grid .heading, .file-grid .heading--xs, .file-grid .heading--s, .file-grid .heading--m, .file-grid .heading--l, .file-grid .heading--xl, .file-grid .heading--center {
    text-align: center;
    margin-inline: auto;
  }
}
.file-grid .button-plus {
  width: 2rem;
  height: 2rem;
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
}
@media screen and (min-width: 992px) {
  .file-grid .button-plus {
    display: none;
  }
}

.image-text-circle {
  display: grid;
}
@media screen and (min-width: 992px) {
  .image-text-circle {
    grid-template-columns: repeat(2, 1fr);
  }
}
.image-text-circle__wrapper {
  overflow: hidden;
}
.image-text-circle__wrapper img {
  z-index: -2;
}
.image-text-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4rem;
  background-color: rgba(255, 251, 244, 0.75);
  -webkit-clip-path: circle(100vw at 0 50%);
  clip-path: circle(100vw at 0 50%);
  width: 100vw;
  height: calc(100% + var(--module-spacing) + 1px);
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (min-width: 992px) {
  .image-text-circle::before {
    left: calc(50% - 40rem);
    width: 109rem;
    height: 109rem;
    transform: translate(calc(-100% + 40rem), -50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
  }
}
.image-text-circle__content {
  z-index: 1;
  padding-right: 5rem;
}
.image-text-circle__heading {
  color: var(--color-purple);
}