/*!***********************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../node_modules/postcss-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/stage/stage.scss ***!
  \***********************************************************************************************************************************************************************************************/
/** GLOBALS **/
/************
/** VARIABLES
/****************************************/
/* EASING */
/* Font settings */
/** GLOBALS **/
/************
/** DEFINITION OF OWN MIXINS
/****************************************/
@keyframes shineEffect {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
/** GLOBALS **/
/** GLOBALS **/
/** GLOBALS **/
.stage {
  --stage-background-color: var(--color-base-black);
  color: var(--stage-foreground-color, var(--color-content-base-1));
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.stage__container {
  grid-area: stage;
  position: relative;
  z-index: 1;
  align-content: flex-end;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  width: var(--grid-base);
}

.stage__content {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  pointer-events: auto;
  position: relative;
  top: 0;
  transform: translateY(0);
  will-change: transform;
  padding-left: 1.6vw;
  padding-right: 1.6vw;
  flex-basis: 93.8666666667vw;
  width: 93.8666666667vw;
  max-width: 93.8666666667vw;
}
@media only screen and (min-width: 768px) {
  .stage__content {
    padding-left: 1.3020833333vw;
    padding-right: 1.3020833333vw;
    flex-basis: 93.75vw;
    width: 93.75vw;
    max-width: 93.75vw;
  }
}
@media only screen and (min-width: 1440px) {
  .stage__content {
    padding-left: 1.1111111111vw;
    padding-right: 1.1111111111vw;
    flex-basis: 93.3333333333vw;
    width: 93.3333333333vw;
    max-width: 93.3333333333vw;
  }
}
@media only screen and (min-width: 1920px) {
  .stage__content {
    padding-left: 21.3333333333px;
    padding-right: 21.3333333333px;
    flex-basis: 1792px;
    width: 1792px;
    max-width: 1792px;
  }
}
.stage__content:not(:has(.stage__subline)) .stage__headline {
  padding-bottom: 8px;
}

.stage__actions {
  padding-block: 16px 0;
}
@media only screen and (min-width: 1024px) {
  .stage__actions {
    padding-block: 24px 0;
  }
}

.stage__headline {
  color: var(--color-content-base-2);
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  font-family: "Murecho", system-ui, Arial, sans-serif;
  font-weight: 700;
  line-height: 120%;
  font-size: 3.125rem;
  letter-spacing: -0.09375rem;
}
@media screen and (min-width: 768px) {
  .stage__headline {
    font-size: 4.375rem;
    letter-spacing: -0.13125rem;
  }
}
@media screen and (min-width: 1280px) {
  .stage__headline {
    font-size: 4.375rem;
    letter-spacing: -0.13125rem;
  }
}

.stage__topline {
  color: var(--color-content-base-3);
  font-family: "Aleo", system-ui, serif;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: 0.04875rem;
  text-transform: uppercase;
}
.stage__topline .red {
  color: blue;
}

.stage__subline {
  color: var(--color-content-base-6);
  font-family: "Murecho", system-ui, Arial, sans-serif;
  font-weight: 500;
  line-height: 120%;
  font-size: 1.25rem;
  letter-spacing: -0.025rem;
}
@media screen and (min-width: 768px) {
  .stage__subline {
    font-size: 1.5rem;
    letter-spacing: -0.03rem;
  }
}
@media screen and (min-width: 1280px) {
  .stage__subline {
    font-size: 1.5rem;
    letter-spacing: -0.03rem;
  }
}
@media only screen and (min-width: 1024px) {
  .stage__subline {
    padding-top: 16px;
  }
}

.stage-header {
  width: var(--content-width);
  margin-inline: auto;
  padding-top: calc(var(--siteheader-height) + 8px);
}
