/*!******************************************************************************************************************************************************************************************************************!*\
  !*** 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!./areas/fullscreen-teaser/fullscreen-teaser.scss ***!
  \******************************************************************************************************************************************************************************************************************/
/** GLOBALS **/
/************
/** VARIABLES
/****************************************/
/*
$grids: (
    'default': $mobile_base,
    'switches': (
        $mobile_switch: $mobile_base,
        $tablet_switch: $tablet_base,
        $max_switch: $max_base
    ),
    'definitions': (
        $mobile_base: (
            'columns': 8,
            'column': 44,
            'gutter': 14,
            'fix': false
        ),
        $tablet_base: (
            'columns': 12,
            'column': 56,
            'gutter': 22,
            'fix': false
        ),
        $max_base: (
            'columns': 12,
            'column': 139,
            'gutter': 54,
            'fix': true
        )
    )
);
*/
/* EASING */
/* Font settings */
/************
/** COLOR VARIABLES
/****************************************/
/* **************************** */
/* Pimcore-editmode used colors */
/* **************************** */
/* **************************** */
/************
/** DEFINITION OF OWN MIXINS
/****************************************/
/* stylelint-disable */
.fullscreen-teaser {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .fullscreen-teaser {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  .fullscreen-teaser {
    margin-top: 104px;
  }
}
@media only screen and (min-width: 768px) {
  .fullscreen-teaser {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 1024px) {
  .fullscreen-teaser {
    margin-bottom: 104px;
  }
}
.fullscreen-teaser .cta__links {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .fullscreen-teaser .cta__links {
    justify-content: flex-start;
  }
}

.fullscreen-teaser__inner {
  margin-inline: auto;
  max-width: 1680px;
  display: grid;
  grid-template: "fullscreen-teaser";
}

.fullscreen-teaser__image {
  grid-area: fullscreen-teaser;
  margin-bottom: 40px;
}
.fullscreen-teaser__image img {
  background-color: lightgrey;
}
@media only screen and (min-width: 1024px) {
  .fullscreen-teaser__image {
    height: 550px;
  }
  .fullscreen-teaser__image img {
    aspect-ratio: initial;
    max-height: 550px;
  }
}

.fullscreen-teaser__container {
  display: grid;
  grid-area: fullscreen-teaser;
  z-index: 1;
  align-content: flex-end;
  width: var(--content-width);
  margin-inline: auto;
}
.fullscreen-teaser--align-right .fullscreen-teaser__container {
  justify-content: flex-end;
}

.fullscreen-teaser__content {
  background-color: var(--fullscreen-teaser-background-color, white);
  box-shadow: var(--box-shadow-l);
  border-radius: var(--border-radius-l);
  width: 90.1333333333vw;
  margin-top: 40px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .fullscreen-teaser__content {
    width: 55.46875vw;
    text-align: left;
    padding: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .fullscreen-teaser__content {
    margin-top: 80px;
    width: 40.8854166667vw;
    padding: 80px 40px;
  }
}
@media only screen and (min-width: 1680px) {
  .fullscreen-teaser__content {
    width: 684px;
  }
}

.fullscreen-teaser__headline {
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 400;
  line-height: 120%;
  font-size: 2.25rem;
  color: var(--fullscreen-teaser-headline-color);
}
@media only screen and (min-width: 768px) {
  .fullscreen-teaser__headline {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 1024px) {
  .fullscreen-teaser__headline {
    font-size: 3.75rem;
  }
}
