@charset "UTF-8";
body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom--loading::before, .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}

.batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}

/* doc
---
title: z-index
name: nn-z-index
category: functions
---

Because z-indices can get tricky we manage them in the theme.scss globally.

Always use this mixin to set set a z-index.

Read the Best Practice to get an full documentation:
https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

## Live Template abbreviations
---
-z

## Parameters
---
@parameter $element = Name of the element (normally this will be the module name for the main stack)
@parameter $list = Name of the list (default $z-indices). Must be only set for stack context
@parameter $min = Set a minimum z-index which will be added to the list.

## Dependencies
---
$z-indices variable in the theme.scss

## Example
---

```html_example

// In the SASS theme file

$z-indices: slider, modal, dialog, navigation;

// In the SASS module file

.modal {
    &__base {
        position: absolute;
        z-index: nn-z-index(modal);
    }
}
```

## Source
---
http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
*/
/*
* Mixin used to create the arrows for the menu items.
*/
/* doc
---
title: Clearfix
name: clearfix
category: mixins
---

Clears after floating element

Use this mixin only inside media queries where you can't use the
abstract/extends/utils/_clearfix version, which adds less code to css

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
<https://css-tricks.com/snippets/css/clear-fix/>
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

- https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
- https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

## Parameters
---
@param $font-type
@param $normalize

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

```html_example
.container {
  &__base {
    @include visible;

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/**
* Reverse container
*/
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-board:nth-child(odd) {
    background: var(--batcom-color-palette-6);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-board:nth-child(even) {
    background: var(--batcom-color-palette-7);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-board.batcom-imagelayout--right .cmp-teaser {
    flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-board.batcom-imagelayout--right .cmp-teaser__content {
    padding: 5% 0 0 5%;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-board .cmp-teaser {
    display: flex;
    justify-content: space-evenly;
  }
}
.batcom-teaser-corp-board .cmp-teaser__content {
  background: var(--batcom-color-palette-6);
  padding: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-board .cmp-teaser__content {
    background: transparent;
    width: 46%;
    padding: 5% 0 0 5%;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-board .cmp-teaser__content {
    width: 60%;
    padding: 5% 2% 0 0;
  }
}
.batcom-teaser-corp-board .cmp-teaser__title {
  background: var(--batcom-color-palette-1);
  color: var(--batcom-color-palette-1-inverted);
  display: inline-block;
  padding: 1px 8px;
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 400;
  order: 1;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-board .cmp-teaser__title {
    font-size: 1.6rem;
  }
}
.batcom-teaser-corp-board .cmp-teaser__pretitle {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
  order: 2;
}
.batcom-teaser-corp-board .cmp-teaser__description {
  overflow: visible;
  display: inline-block;
  margin: 10px 0 0;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.5;
  order: 3;
}
.batcom-teaser-corp-board .cmp-teaser__action-container {
  order: 4;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-board .cmp-teaser__image {
    width: 40%;
    align-self: flex-end;
  }
}
.batcom-teaser-corp-board .cmp-teaser__action-container .cmp-teaser__action-link {
  background-color: var(--batcom-color-palette-3);
  color: var(--batcom-color-palette-1);
  position: relative;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
  padding: 6px 30px 6px 10px;
}
.batcom-teaser-corp-board .cmp-teaser__action-container .cmp-teaser__action-link:hover {
  --batcom-button-text-hover: var(--batcom-color-palette-1);
  background-color: var(--batcom-color-palette-3);
  border: 0;
}
.batcom-teaser-corp-board .cmp-teaser__action-container .cmp-teaser__action-link::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 8px;
  right: 8px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/core/nav-arrow-01.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/core/nav-arrow-01.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--batcom-color-palette-1);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-board .cmp-teaser__action-container .cmp-teaser__action-link::after {
    top: 9px;
  }
}
.batcom-teaser-corp-board .cmp-image__image {
  height: 300px;
  width: auto;
  margin: 0 auto;
}

.batcom-teaser-offset {
  position: relative;
  margin-bottom: 255px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-offset {
    margin-bottom: 74px;
  }
}
.batcom-teaser-offset.batcom-space--smallBottom {
  margin-bottom: calc(255px + var(--batcom-layout-spacing-bottom-small-mobile));
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-offset.batcom-space--smallBottom {
    margin-bottom: calc(74px + var(--batcom-layout-spacing-bottom-small-desktop));
  }
}
.batcom-teaser-offset.batcom-space--largeBottom {
  margin-bottom: calc(255px + var(--batcom-layout-spacing-bottom-large-mobile));
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-offset.batcom-space--largeBottom {
    margin-bottom: calc(74px + var(--batcom-layout-spacing-bottom-large-desktop));
  }
}
.batcom-teaser-offset .cmp-teaser__image {
  height: 100%;
}
.batcom-teaser-offset .cmp-teaser__background {
  position: absolute;
  inset: 0;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-offset .cmp-teaser__background {
    opacity: 0.66;
  }
}
.batcom-teaser-offset .cmp-teaser__content {
  position: absolute;
  top: 255px;
  right: 8.5%;
  height: 100%;
  width: 83%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 36px 30px;
}
.batcom-teaser-offset .cmp-teaser__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0e2b63 30.479%, rgba(0, 0, 0, 0) 30.479%), linear-gradient(90deg, #004f9f 52.158%, rgba(0, 0, 0, 0) 52.158%), linear-gradient(90deg, #00b1eb 64.729%, rgba(0, 0, 0, 0) 64.729%), linear-gradient(90deg, #ef7d00 73.225%, rgba(0, 0, 0, 0) 73.225%), linear-gradient(90deg, #fb0 79.628%, rgba(0, 0, 0, 0) 79.629%), linear-gradient(90deg, #50af47 86.692%, rgba(0, 0, 0, 0) 86.692%), linear-gradient(90deg, #afca0b 92.03%, rgba(0, 0, 0, 0) 92.03%), linear-gradient(90deg, #5a328a 97.009%, rgba(0, 0, 0, 0) 97.009%), linear-gradient(90deg, #e72582 100%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-offset .cmp-teaser__content {
    top: 74px;
    right: 97px;
    width: 400px;
  }
}
.batcom-teaser-offset .cmp-teaser__description {
  margin: 0 0 44px;
}
.batcom-teaser-offset .cmp-teaser__content, .batcom-teaser-offset .cmp-teaser__title {
  color: var(--batcom-color-teaser-offset-text);
}
.batcom-teaser-offset .cmp-teaser__pretitle {
  font-size: var(--batcom-typography-small-size-mobile);
  line-height: var(--batcom-typography-small-line-height-mobile);
  font-weight: 400;
  flex-grow: 1;
  margin-top: 6px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-offset .cmp-teaser__pretitle {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-small-line-height-desktop);
    margin-top: 18px;
  }
}
.batcom-teaser-offset .cmp-teaser__title {
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: 400;
  margin: 32px 0;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-offset .cmp-teaser__title {
    font-size: var(--batcom-typography-h2-size-desktop);
    line-height: var(--batcom-typography-h2-line-height-desktop);
  }
}
.batcom-teaser-offset .cmp-teaser__description {
  font-size: var(--batcom-typography-small-size-mobile);
  line-height: var(--batcom-typography-small-line-height-mobile);
  font-weight: 300;
}
.batcom-teaser-offset .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-primary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-primary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover-inverted);
  display: inline-flex;
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family);
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: var(--batcom-layout-button-primary-border-radius);
  cursor: pointer;
  color: var(--batcom-button-text) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border);
  text-decoration: none !important; /* stylelint-disable-line */
  padding: 8px 20px;
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
  font-size: var(--batcom-typography-small-size-mobile);
  font-weight: 700;
  margin: 0;
  transition: 0.3s;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-offset .cmp-teaser__action-link {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-teaser-offset .cmp-teaser__action-link span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  .batcom-teaser-offset .cmp-teaser__action-link:hover {
    color: var(--batcom-button-text-hover) !important; /* stylelint-disable-line */
    background-color: var(--batcom-button-bg-hover);
    border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border-hover);
    text-decoration: none !important; /* stylelint-disable-line */
  }
  .batcom-teaser-offset .cmp-teaser__action-link:hover span {
    color: var(--batcom-button-text-hover);
  }
  .batcom-teaser-offset .cmp-teaser__action-link:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
.batcom-teaser-offset .cmp-teaser__action-link__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.batcom-teaser-offset .cmp-teaser__action-link__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
.batcom-teaser-offset .cmp-teaser__action-link__svg svg {
  height: 16px;
}
.batcom-container--primary-dark .batcom-teaser-offset .cmp-teaser__action-link, .batcom-container--secondary-dark .batcom-teaser-offset .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
}
.batcom-container--primary-dark .batcom-teaser-offset .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-teaser-offset .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
}
.batcom-teaser-offset .cmp-teaser__pretitle, .batcom-teaser-offset .cmp-teaser__title, .batcom-teaser-offset .cmp-teaser__description, .batcom-teaser-offset .cmp-teaser__action-container {
  position: relative;
  z-index: 0;
}
.batcom-teaser-offset .cmp-teaser--clickable {
  cursor: pointer;
}
.batcom-teaser-offset .cmp-image__image {
  min-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-offset .cmp-image__image {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.batcom-teaser-corp .cmp-teaser {
  position: relative;
  display: grid;
  grid-template-rows: 1fr minmax(50%, auto);
  max-height: 456px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp .cmp-teaser {
    max-height: 100%;
    grid-template-rows: 1fr minmax(50%, auto);
  }
  .batcom-hover-animation--default.batcom-teaser-corp .cmp-teaser {
    grid-template-rows: auto;
  }
}
.batcom-teaser-corp .cmp-teaser__image, .batcom-teaser-corp .cmp-teaser__content, .batcom-teaser-corp .cmp-teaser__background, .batcom-teaser-corp .cmp-teaser__title, .batcom-teaser-corp .cmp-teaser__description, .batcom-teaser-corp .cmp-teaser__action-container {
  grid-column: 1;
}
.batcom-teaser-corp .cmp-teaser__image {
  grid-row: 1/3;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp .cmp-teaser__image--mobile {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-teaser__image--mobile {
    display: none;
  }
}
.batcom-teaser-corp .cmp-teaser__image--desktop {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-teaser__image--desktop {
    display: block;
  }
}
.batcom-teaser-corp .cmp-teaser__content {
  width: 100%;
  min-height: 50%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  grid-row: 2/2;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp .cmp-teaser__content {
    grid-template-rows: auto 1fr auto;
    transition: grid-template-rows 300ms;
    min-height: 150px;
  }
  .batcom-hover-animation--default.batcom-teaser-corp .cmp-teaser__content {
    grid-template-rows: auto 0fr auto;
  }
}
.batcom-teaser-corp .cmp-teaser__content, .batcom-teaser-corp .cmp-teaser__title {
  color: var(--batcom-color-teaser-offset-text);
}
.batcom-teaser-corp .cmp-teaser__background {
  position: relative;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: background-color 300ms;
  grid-row: 1/4;
}
.batcom-teaser-corp .cmp-teaser__background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.66;
}
.batcom-teaser-corp .cmp-teaser__background::before {
  opacity: 0.66;
}
.batcom-hover-animation--default.batcom-teaser-corp .cmp-teaser__background::before {
  opacity: 0.44;
}

.batcom-teaser-corp .cmp-teaser__pretitle {
  font-size: var(--batcom-typography-x-small-size-mobile);
  font-weight: 400;
  display: block;
  position: absolute;
  color: var(--batcom-color-teaser-offset-text);
  top: 0;
  left: 0;
  padding: 6px 36px;
}
.batcom-teaser-corp .cmp-teaser__pretitle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.35;
}
.batcom-teaser-corp .cmp-teaser__pretitle::before {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.batcom-teaser-corp .cmp-teaser__title {
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: 400;
  margin-bottom: 0;
  grid-row: 1/2;
  padding: 30px 15px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp .cmp-teaser__title {
    font-size: 1rem;
    line-height: 1.1rem;
    padding: 28px 23px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-teaser__title {
    font-size: var(--batcom-typography-h4-size-desktop);
    line-height: var(--batcom-typography-h4-line-height-desktop);
    display: flex;
    align-items: flex-start;
    padding: 28px 40px;
  }
  .batcom-hover-animation--default.batcom-teaser-corp .cmp-teaser__title {
    padding-bottom: 20px;
  }
}
.batcom-teaser-corp .cmp-teaser__description {
  flex-grow: 1;
  font-size: var(--batcom-typography-small-size-mobile);
  line-height: var(--batcom-typography-small-line-height-mobile);
  font-weight: 300;
  grid-row: 2/3;
  padding: 0 15px;
  margin: 0 0 16px;
  overflow: visible;
  display: block;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp .cmp-teaser__description {
    font-size: 0.6875rem;
    line-height: 0.9625rem;
    padding: 0 23px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-teaser__description {
    font-size: var(--batcom-typography-small-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
    overflow: hidden;
    margin-bottom: 16px;
    opacity: 1;
    transition: opacity 300ms;
    padding: 0 40px;
  }
  .batcom-hover-animation--default.batcom-teaser-corp .cmp-teaser__description {
    margin: 0;
    opacity: 0;
  }
}
.batcom-teaser-corp .cmp-teaser__pretitle, .batcom-teaser-corp .cmp-teaser__title, .batcom-teaser-corp .cmp-teaser__description, .batcom-teaser-corp .cmp-teaser__action-container {
  z-index: 0;
}
.batcom-teaser-corp .cmp-teaser__action-container {
  grid-row: 3/4;
  align-self: end;
  padding: 0 15px 26px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp .cmp-teaser__action-container {
    padding: 0 23px 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-teaser__action-container {
    padding: 0 40px 30px;
  }
}
.batcom-teaser-corp .cmp-teaser__action-link {
  color: var(--batcom-color-teaser-offset-text);
  text-decoration: none;
  font-size: var(--batcom-typography-body-size-mobile);
  line-height: var(--batcom-typography-body-line-height-mobile);
  font-weight: 400;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp .cmp-teaser__action-link {
    font-size: 0.6875rem;
    line-height: 1.0313rem;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-teaser__action-link {
    font-size: var(--batcom-typography-body-size-desktop);
    line-height: var(--batcom-typography-body-line-height-desktop);
  }
}
.batcom-teaser-corp .cmp-teaser__action-link::after {
  content: " >";
}
.columncontrol--small-height .batcom-teaser-corp .cmp-teaser {
  min-height: var(--batcom-layout-column-control-small-height-mobile);
  aspect-ratio: initial;
}
@media only screen and (min-width: 768px) {
  .columncontrol--small-height .batcom-teaser-corp .cmp-teaser {
    min-height: var(--batcom-layout-column-control-small-height-desktop);
  }
}
.columncontrol--medium-height .batcom-teaser-corp .cmp-teaser {
  min-height: var(--batcom-layout-column-control-medium-height-mobile);
  aspect-ratio: initial;
}
@media only screen and (min-width: 768px) {
  .columncontrol--medium-height .batcom-teaser-corp .cmp-teaser {
    min-height: var(--batcom-layout-column-control-medium-height-desktop);
  }
}
.columncontrol--large-height .batcom-teaser-corp .cmp-teaser {
  min-height: var(--batcom-layout-column-control-large-height-mobile);
  aspect-ratio: initial;
}
@media only screen and (min-width: 768px) {
  .columncontrol--large-height .batcom-teaser-corp .cmp-teaser {
    min-height: var(--batcom-layout-column-control-large-height-desktop);
  }
}
.batcom-teaser-corp .cmp-teaser .cmp-teaser__action-link {
  padding: 0;
}
.batcom-teaser-corp .cmp-image {
  max-height: 456px;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp .cmp-image {
    aspect-ratio: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-image {
    max-height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-image::before {
    content: "";
    display: block;
    padding-top: 133.33%;
  }
}
.batcom-teaser-corp .cmp-image__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp .cmp-image__image {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 768px) {
  .batcom-hover-animation--default.batcom-teaser-corp--vertical:hover .cmp-teaser {
    grid-template-rows: 1fr minmax(50%, auto);
  }
}
@media only screen and (min-width: 768px) {
  .batcom-hover-animation--default.batcom-teaser-corp--vertical:hover .cmp-teaser__background::before {
    opacity: 0.66;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-hover-animation--default.batcom-teaser-corp--vertical:hover .cmp-teaser__content {
    grid-template-rows: auto 1fr auto;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-hover-animation--default.batcom-teaser-corp--vertical:hover .cmp-teaser__title {
    padding-bottom: 28px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-hover-animation--default.batcom-teaser-corp--vertical:hover .cmp-teaser__description {
    margin-bottom: 16px;
    opacity: 1;
  }
}

@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp--horizontal {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp--horizontal .cmp-teaser {
    aspect-ratio: 300/195;
    max-height: 100%;
    width: 100%;
    grid-template-columns: 1fr 48%;
    grid-template-rows: 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-imagelayout--right.batcom-teaser-corp--horizontal .cmp-teaser {
    grid-template-columns: 48% 1fr;
  }
}

@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp--horizontal .cmp-teaser__image {
    grid-column: 1/3;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp--horizontal .cmp-teaser__content {
    grid-row: 1/2;
    grid-column: 2/3;
    grid-template-rows: auto auto 52px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-imagelayout--right.batcom-teaser-corp--horizontal .cmp-teaser__content {
    grid-column: 1/2;
  }
}

@media only screen and (min-width: 1024px) {
  .batcom-imagelayout--right.batcom-teaser-corp--horizontal .cmp-teaser__pretitle {
    right: 0;
    left: auto;
  }
}

@media only screen and (min-width: 768px) {
  .batcom-teaser-corp--horizontal .cmp-teaser__title {
    flex-direction: column;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp--horizontal .cmp-teaser__title {
    font-size: var(--batcom-typography-h3-size-desktop);
    line-height: var(--batcom-typography-h3-line-height-desktop);
    align-self: end;
    padding: 24px 40px 8px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp--horizontal .cmp-teaser__description {
    margin-top: 16px;
    padding: 0 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp--horizontal .cmp-image__image {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp--horizontal .cmp-image::before {
    padding-top: 0;
  }
}

.batcom-teaser-corp-stage:not(.batcom-space--noBottomSpace, .batcom-space--smallBottom, .batcom-space--mediumBottom, .batcom-space--largeBottom) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 1023px) {
  .aem-Grid.aem-Grid--default--12 .batcom-teaser-corp-stage.aem-GridColumn--default--12 {
    width: 100vw;
    height: 650px;
    margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
    margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  }
}
.batcom-teaser-corp-stage .cmp-teaser {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 65% 1fr;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-stage .cmp-teaser {
    max-height: 532px;
    grid-template-columns: 56% 1fr;
  }
}
.batcom-teaser-corp-stage .cmp-teaser__image {
  grid-row: 1/3;
  grid-column: 1/3;
}
.batcom-teaser-corp-stage .cmp-teaser__content {
  display: flex;
  flex-direction: column;
  grid-column: 1/2;
  grid-row: 1/3;
  justify-content: flex-end;
  padding: 16px 16px 52px;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-stage .cmp-teaser__content {
    padding: 16px 16px 16px 40px;
    justify-content: center;
  }
}
.batcom-teaser-corp-stage .cmp-teaser__content, .batcom-teaser-corp-stage .cmp-teaser__title {
  color: var(--batcom-color-teaser-offset-text);
}
.batcom-teaser-corp-stage .cmp-teaser__background {
  position: absolute;
  inset: 0 18% 0 0;
  background: linear-gradient(to left, rgba(0, 44, 103, 0), rgb(0, 44, 103));
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-stage .cmp-teaser__background {
    inset: 0 25% 0 0;
  }
}
.batcom-teaser-corp-stage .cmp-teaser__pretitle {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: var(--batcom-typography-x-x-small-size-mobile);
  font-weight: 700;
  display: block;
  position: absolute;
  color: var(--batcom-color-teaser-offset-text);
  top: 0;
  left: 0;
  padding: 6px 36px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-stage .cmp-teaser__pretitle {
    font-size: var(--batcom-typography-x-small-size-mobile);
    font-weight: 400;
  }
}
.batcom-teaser-corp-stage .cmp-teaser__pretitle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.35;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-stage .cmp-teaser__pretitle::before {
    background-color: #fff;
    opacity: 0.2;
  }
}
.batcom-teaser-corp-stage .cmp-teaser__title {
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: 400;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-stage .cmp-teaser__title {
    font-size: var(--batcom-typography-h2-size-desktop);
    line-height: var(--batcom-typography-h2-line-height-desktop);
    margin-top: 80px;
  }
}
.batcom-teaser-corp-stage .cmp-teaser__description {
  font-size: var(--batcom-typography-small-size-mobile);
  line-height: var(--batcom-typography-small-line-height-mobile);
  font-weight: 300;
  overflow: visible;
  display: block;
  margin-top: 24px;
}
.batcom-teaser-corp-stage .cmp-teaser__title, .batcom-teaser-corp-stage .cmp-teaser__description {
  max-width: 368px;
}
.batcom-teaser-corp-stage .cmp-teaser__pretitle, .batcom-teaser-corp-stage .cmp-teaser__title, .batcom-teaser-corp-stage .cmp-teaser__description, .batcom-teaser-corp-stage .cmp-teaser__action-container {
  z-index: 0;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-stage .cmp-teaser__action-cotnainer {
    height: 80px;
  }
}
.batcom-teaser-corp-stage .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-primary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-primary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover-inverted);
  display: inline-flex;
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family);
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: var(--batcom-layout-button-primary-border-radius);
  cursor: pointer;
  color: var(--batcom-button-text) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border);
  text-decoration: none !important; /* stylelint-disable-line */
  padding: 8px 20px;
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
  font-size: var(--batcom-typography-small-size-mobile);
  font-weight: 400;
  margin-top: 38px;
  transition: 0.3s;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-stage .cmp-teaser__action-link {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-teaser-corp-stage .cmp-teaser__action-link span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  .batcom-teaser-corp-stage .cmp-teaser__action-link:hover {
    color: var(--batcom-button-text-hover) !important; /* stylelint-disable-line */
    background-color: var(--batcom-button-bg-hover);
    border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border-hover);
    text-decoration: none !important; /* stylelint-disable-line */
  }
  .batcom-teaser-corp-stage .cmp-teaser__action-link:hover span {
    color: var(--batcom-button-text-hover);
  }
  .batcom-teaser-corp-stage .cmp-teaser__action-link:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
.batcom-teaser-corp-stage .cmp-teaser__action-link__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.batcom-teaser-corp-stage .cmp-teaser__action-link__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
.batcom-teaser-corp-stage .cmp-teaser__action-link__svg svg {
  height: 16px;
}
.batcom-container--primary-dark .batcom-teaser-corp-stage .cmp-teaser__action-link, .batcom-container--secondary-dark .batcom-teaser-corp-stage .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
}
.batcom-container--primary-dark .batcom-teaser-corp-stage .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-teaser-corp-stage .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-stage .cmp-teaser__action-link {
    font-weight: 700;
  }
}
.batcom-teaser-corp-stage .cmp-image {
  height: 650px;
  width: 100%;
  aspect-ratio: 6/10;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-stage .cmp-image {
    max-height: 532px;
    height: auto;
    aspect-ratio: 100/42;
  }
}
.batcom-teaser-corp-stage .cmp-image__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-stage .cmp-image__image {
    -o-object-position: 65% 50%;
       object-position: 65% 50%;
  }
}

body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom--loading::before, .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}

.batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}

/* doc
---
title: z-index
name: nn-z-index
category: functions
---

Because z-indices can get tricky we manage them in the theme.scss globally.

Always use this mixin to set set a z-index.

Read the Best Practice to get an full documentation:
https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

## Live Template abbreviations
---
-z

## Parameters
---
@parameter $element = Name of the element (normally this will be the module name for the main stack)
@parameter $list = Name of the list (default $z-indices). Must be only set for stack context
@parameter $min = Set a minimum z-index which will be added to the list.

## Dependencies
---
$z-indices variable in the theme.scss

## Example
---

```html_example

// In the SASS theme file

$z-indices: slider, modal, dialog, navigation;

// In the SASS module file

.modal {
    &__base {
        position: absolute;
        z-index: nn-z-index(modal);
    }
}
```

## Source
---
http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
*/
/*
* Mixin used to create the arrows for the menu items.
*/
/* doc
---
title: Clearfix
name: clearfix
category: mixins
---

Clears after floating element

Use this mixin only inside media queries where you can't use the
abstract/extends/utils/_clearfix version, which adds less code to css

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
<https://css-tricks.com/snippets/css/clear-fix/>
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

- https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
- https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

## Parameters
---
@param $font-type
@param $normalize

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

```html_example
.container {
  &__base {
    @include visible;

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/**
* Reverse container
*/
.batcom-teaser-corp-header {
  position: relative;
  height: 367px;
  margin-top: 80px;
}
.batcom-evergreenpage .batcom-teaser-corp-header {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-header {
    height: 500px;
    margin-top: 0;
  }
}
.batcom-teaser-corp-header .cmp-teaser {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.batcom-teaser-corp-header .cmp-teaser__image {
  height: 100%;
  width: 100%;
  position: absolute;
}
.batcom-teaser-corp-header .cmp-teaser__background {
  position: absolute;
  inset: 0;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-header .cmp-teaser__background {
    opacity: 0.66;
  }
}
.batcom-teaser-corp-header .cmp-teaser__content {
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 30px 20px 48px;
  min-height: 158px;
  width: 83.3vw;
  margin-top: 20px;
}
.batcom-teaser-corp-header .cmp-teaser__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0e2b63 30.479%, rgba(0, 0, 0, 0) 30.479%), linear-gradient(90deg, #004f9f 52.158%, rgba(0, 0, 0, 0) 52.158%), linear-gradient(90deg, #00b1eb 64.729%, rgba(0, 0, 0, 0) 64.729%), linear-gradient(90deg, #ef7d00 73.225%, rgba(0, 0, 0, 0) 73.225%), linear-gradient(90deg, #fb0 79.628%, rgba(0, 0, 0, 0) 79.629%), linear-gradient(90deg, #50af47 86.692%, rgba(0, 0, 0, 0) 86.692%), linear-gradient(90deg, #afca0b 92.03%, rgba(0, 0, 0, 0) 92.03%), linear-gradient(90deg, #5a328a 97.009%, rgba(0, 0, 0, 0) 97.009%), linear-gradient(90deg, #e72582 100%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-header .cmp-teaser__content {
    min-height: 178px;
    padding: 48px 40px;
    width: 55.56vw;
    margin-top: 100px;
    margin-left: calc(5.56vw - var(--batcom-layout-content-left-right-margin) / 2);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-header .cmp-teaser__content {
    width: 45.9%;
    margin-top: 138px;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .batcom-teaser-corp-header .cmp-teaser__content {
    width: 50%;
  }
}
.batcom-teaser-corp-header .cmp-teaser__content, .batcom-teaser-corp-header .cmp-teaser__title {
  color: var(--batcom-color-teaser-offset-text);
}
.batcom-teaser-corp-header .cmp-teaser__pretitle {
  line-height: var(--batcom-typography-x-small-line-height-tablet);
  font-weight: 400;
  font-size: var(--batcom-typography-x-small-size-tablet);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0 0 8px;
}
@media only screen and (min-width: 480px) {
  .batcom-teaser-corp-header .cmp-teaser__pretitle {
    font-size: 1.125rem;
    line-height: 1.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-header .cmp-teaser__pretitle {
    font-size: 1.3125rem;
    line-height: 1.45rem;
    letter-spacing: 4.2px;
    text-transform: uppercase;
    padding: 0 0 8px;
  }
}
.batcom-teaser-corp-header .cmp-teaser__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-header .cmp-teaser__title {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 700;
  }
}
.batcom-teaser-corp-header .cmp-teaser__pretitle, .batcom-teaser-corp-header .cmp-teaser__title {
  position: relative;
  z-index: 0;
}
.batcom-teaser-corp-header .cmp-image {
  margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-header .cmp-image {
    margin-left: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
    margin-right: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
  }
}
@media screen and (min-width: 1360px) {
  .batcom-teaser-corp-header .cmp-image {
    margin-left: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
    margin-right: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
  }
}
.batcom-teaser-corp-header .cmp-image__image {
  height: 367px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-header .cmp-image__image {
    height: 500px;
    -o-object-position: 50%;
       object-position: 50%;
  }
}

.batcom-teaser-text-over-image {
  position: relative;
}
.batcom-teaser-text-over-image .cmp-teaser__image {
  margin-bottom: 0;
}
.batcom-teaser-text-over-image .cmp-teaser__content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 20px;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-text-over-image .cmp-teaser__content {
    padding: 32px;
  }
}
.batcom-teaser-text-over-image .cmp-teaser__description {
  -webkit-line-clamp: initial;
}
.batcom-teaser-text-over-image .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-primary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover);
  display: inline-flex;
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family);
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: var(--batcom-layout-button-primary-border-radius);
  cursor: pointer;
  color: var(--batcom-button-text) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border);
  text-decoration: none !important; /* stylelint-disable-line */
  padding: 8px 20px;
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family), sans-serif;
  letter-spacing: 0.063rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px 35px;
  padding: 10px 35px;
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-text-over-image .cmp-teaser__action-link {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-teaser-text-over-image .cmp-teaser__action-link span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  .batcom-teaser-text-over-image .cmp-teaser__action-link:hover {
    color: var(--batcom-button-text-hover) !important; /* stylelint-disable-line */
    background-color: var(--batcom-button-bg-hover);
    border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border-hover);
    text-decoration: none !important; /* stylelint-disable-line */
  }
  .batcom-teaser-text-over-image .cmp-teaser__action-link:hover span {
    color: var(--batcom-button-text-hover);
  }
  .batcom-teaser-text-over-image .cmp-teaser__action-link:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
.batcom-teaser-text-over-image .cmp-teaser__action-link__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.batcom-teaser-text-over-image .cmp-teaser__action-link__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
.batcom-teaser-text-over-image .cmp-teaser__action-link__svg svg {
  height: 16px;
}
.batcom-container--primary-dark .batcom-teaser-text-over-image .cmp-teaser__action-link, .batcom-container--secondary-dark .batcom-teaser-text-over-image .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
}
.batcom-container--primary-dark .batcom-teaser-text-over-image .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-teaser-text-over-image .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-text-over-image .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-tablet);
    line-height: var(--batcom-typography-button-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-text-over-image .cmp-teaser__action-link {
    font-size: var(--batcom-typography-button-size-desktop);
    line-height: var(--batcom-typography-button-line-height-desktop);
  }
}
@media only screen and (max-width: 767px) {
  .batcom-teaser-text-over-image .cmp-teaser__action-link {
    width: 100%;
  }
}
.batcom-teaser-text-over-image.batcom-text-color--dark .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark .batcom-teaser-text-over-image.batcom-text-color--dark .cmp-teaser__action-link, .batcom-container--secondary-dark .batcom-teaser-text-over-image.batcom-text-color--dark .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
}
.batcom-container--primary-dark .batcom-teaser-text-over-image.batcom-text-color--dark .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-teaser-text-over-image.batcom-text-color--dark .cmp-teaser__action-link .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
}
@media only screen and (max-width: 767px) {
  .batcom-columncontrol .batcom-teaser-text-over-image {
    margin-left: calc(var(--batcom-layout-content-left-right-margin) / 2 * -1);
    width: 100vw;
  }
}

body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}

@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.batcom--loading::before, .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}

.batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}

/* doc
---
title: z-index
name: nn-z-index
category: functions
---

Because z-indices can get tricky we manage them in the theme.scss globally.

Always use this mixin to set set a z-index.

Read the Best Practice to get an full documentation:
https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

## Live Template abbreviations
---
-z

## Parameters
---
@parameter $element = Name of the element (normally this will be the module name for the main stack)
@parameter $list = Name of the list (default $z-indices). Must be only set for stack context
@parameter $min = Set a minimum z-index which will be added to the list.

## Dependencies
---
$z-indices variable in the theme.scss

## Example
---

```html_example

// In the SASS theme file

$z-indices: slider, modal, dialog, navigation;

// In the SASS module file

.modal {
    &__base {
        position: absolute;
        z-index: nn-z-index(modal);
    }
}
```

## Source
---
http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
*/
/*
* Mixin used to create the arrows for the menu items.
*/
/* doc
---
title: Clearfix
name: clearfix
category: mixins
---

Clears after floating element

Use this mixin only inside media queries where you can't use the
abstract/extends/utils/_clearfix version, which adds less code to css

## Live Template abbreviations
---

## Example
---

```html_example
@include clearfix;
```

## Source
---
<https://css-tricks.com/snippets/css/clear-fix/>
*/
/* doc
---
title: Component Normalize / item Normalize
name: font
category: mixins
---
Use this mixing to regular AEM wrappers and normalization.
*/
/* stylelint-disable max-nesting-depth */
/* stylelint-disable media-feature-name-no-vendor-prefix */
/* doc
---
title: Font
name: font
category: mixins
---

Use this mixing to add fonts and normalization.

Documentation:

- https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
- https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

## Parameters
---
@param $font-type
@param $normalize

## Dependencies
---
/abstract/functions/nn-px-to-em
/abstract/functions/nn-px-to-rem
/abstract/functions/nn-px-to-unitless
/abstract/mixins/font-icon
*/
/*
* This mixin is used to style headings of any level in a responsive way.
* It uses the variables defined in the typography map to style the headings so
* the levels it can effectively style are 1 to 6.
* It also styles the use of spans and links inside the headings.
*
* @param {number} $level - The heading level to style.
* @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
*/
/* doc
---
title: Visibility
name: visibility
category: mixins
---

Mixin to add visibility to control to elements

---

## Example
---

```html_example
.container {
  &__base {
    @include visible;

    @include breakpoint($b-01) {
      @include hidden;
    }
  }
}
```
*/
/*
lt0 = (default) 1 column at a 100%
lt1 = 2 columns (50%, 50%)
lt2 = 2 columns (33%, 66%)
lt3 = 2 columns (66%, 33%)
lt4 = 3 columns (33%, 33%, 33%)
lt5 = 4 columns (25%, 25%, 25%, 25%)

## Parameters
@parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
*/
/**
* Reverse container
*/
.batcom-teaser-corp-level3,
.batcom-teaser-corp-level4 {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-level3 .cmp-teaser,
  .batcom-teaser-corp-level4 .cmp-teaser {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
  }
}
.batcom-teaser-corp-level3 .cmp-teaser__image,
.batcom-teaser-corp-level4 .cmp-teaser__image {
  position: absolute;
  height: 100%;
  width: 100%;
}
.batcom-teaser-corp-level3 .cmp-teaser__background,
.batcom-teaser-corp-level4 .cmp-teaser__background {
  position: absolute;
  inset: 0;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-level3 .cmp-teaser__background,
  .batcom-teaser-corp-level4 .cmp-teaser__background {
    opacity: 0.44;
  }
}
.batcom-teaser-corp-level3 .cmp-teaser__content,
.batcom-teaser-corp-level4 .cmp-teaser__content {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  min-height: 188px;
  box-sizing: border-box;
  padding: 55px 4.16vw 75px;
  margin: 0 5.5vw 40px;
  width: calc(100% - 11vw);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-level3 .cmp-teaser__content,
  .batcom-teaser-corp-level4 .cmp-teaser__content {
    bottom: auto;
    width: 53.125%;
    min-height: 220px;
    padding: 55px 60px 75px;
    margin: 0;
    margin-inline-start: 5.5vw;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-level3 .cmp-teaser__content,
  .batcom-teaser-corp-level4 .cmp-teaser__content {
    padding: 55px 80px 75px;
  }
}
@media only screen and (min-width: 1280px) {
  .batcom-teaser-corp-level3 .cmp-teaser__content,
  .batcom-teaser-corp-level4 .cmp-teaser__content {
    margin-left: 80px;
  }
}
.batcom-teaser-corp-level3 .cmp-teaser__content::after,
.batcom-teaser-corp-level4 .cmp-teaser__content::after {
  content: "";
  position: absolute;
  display: block;
  width: 68%;
  border-bottom: 1px solid var(--batcom-color-palette-1-inverted);
  bottom: 36px;
}
.batcom-teaser-corp-level3 .cmp-teaser__content, .batcom-teaser-corp-level3 .cmp-teaser__title, .batcom-teaser-corp-level3 .cmp-teaser__description,
.batcom-teaser-corp-level4 .cmp-teaser__content,
.batcom-teaser-corp-level4 .cmp-teaser__title,
.batcom-teaser-corp-level4 .cmp-teaser__description {
  color: var(--batcom-color-teaser-offset-text);
}
.batcom-teaser-corp-level3 .cmp-teaser__title,
.batcom-teaser-corp-level4 .cmp-teaser__title {
  line-height: var(--batcom-typography-small-line-height-mobile);
  font-weight: bold;
  font-size: 22px;
  padding: 0 0 8px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-level3 .cmp-teaser__title,
  .batcom-teaser-corp-level4 .cmp-teaser__title {
    font-size: 32px;
    line-height: 120%;
    font-weight: bold;
  }
}
.batcom-teaser-corp-level3 .cmp-teaser__description,
.batcom-teaser-corp-level4 .cmp-teaser__description {
  height: initial;
  overflow: initial;
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  line-height: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 110%;
}
.batcom-teaser-corp-level3 .cmp-teaser__title, .batcom-teaser-corp-level3 .cmp-teaser__description,
.batcom-teaser-corp-level4 .cmp-teaser__title,
.batcom-teaser-corp-level4 .cmp-teaser__description {
  position: relative;
  z-index: 0;
}
.batcom-teaser-corp-level3 .cmp-image,
.batcom-teaser-corp-level4 .cmp-image {
  height: 100%;
}
.batcom-teaser-corp-level3 .cmp-image::after,
.batcom-teaser-corp-level4 .cmp-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0e2b63 30.479%, rgba(0, 0, 0, 0) 30.479%), linear-gradient(90deg, #004f9f 52.158%, rgba(0, 0, 0, 0) 52.158%), linear-gradient(90deg, #00b1eb 64.729%, rgba(0, 0, 0, 0) 64.729%), linear-gradient(90deg, #ef7d00 73.225%, rgba(0, 0, 0, 0) 73.225%), linear-gradient(90deg, #fb0 79.628%, rgba(0, 0, 0, 0) 79.629%), linear-gradient(90deg, #50af47 86.692%, rgba(0, 0, 0, 0) 86.692%), linear-gradient(90deg, #afca0b 92.03%, rgba(0, 0, 0, 0) 92.03%), linear-gradient(90deg, #5a328a 97.009%, rgba(0, 0, 0, 0) 97.009%), linear-gradient(90deg, #e72582 100%, rgba(0, 0, 0, 0) 100%);
}
.batcom-teaser-corp-level3 .cmp-image__image,
.batcom-teaser-corp-level4 .cmp-image__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-level3 .cmp-image__image,
  .batcom-teaser-corp-level4 .cmp-image__image {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.batcom-teaser-corp-level3,
.batcom-teaser-corp-level3 .cmp-teaser__image {
  height: 462px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-level3,
  .batcom-teaser-corp-level3 .cmp-teaser__image {
    height: 500px;
  }
}

.batcom-teaser-corp-level4,
.batcom-teaser-corp-level4 .cmp-teaser__image {
  height: 377px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-level4,
  .batcom-teaser-corp-level4 .cmp-teaser__image {
    height: 357px;
  }
}

.batcom-teaser-corp-news {
  position: relative;
  margin-top: 80px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-news {
    margin-bottom: calc(100px + var(--batcom-layout-spacing-between-components-tablet));
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-news {
    margin-top: 0;
  }
}
.batcom-teaser-corp-news.batcom-space--noBottomSpace {
  z-index: 1;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-news.batcom-space--noBottomSpace {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-news.batcom-space--smallBottom {
    margin-bottom: calc(100px + var(--batcom-layout-spacing-bottom-small-desktop));
  }
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-news.batcom-space--largeBottom {
    margin-bottom: calc(100px + var(--batcom-layout-spacing-bottom-large-desktop));
  }
}
.batcom-teaser-corp-news .cmp-teaser__image {
  height: 100%;
}
.batcom-teaser-corp-news .cmp-teaser__image::after {
  margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200px;
  display: block;
  background: linear-gradient(to bottom, rgba(14, 43, 99, 0.95), rgba(14, 43, 99, 0));
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-news .cmp-teaser__image::after {
    margin-left: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
    margin-right: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
  }
}
@media screen and (min-width: 1360px) {
  .batcom-teaser-corp-news .cmp-teaser__image::after {
    margin-left: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
    margin-right: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
  }
}
.batcom-teaser-corp-news .cmp-teaser__background {
  position: absolute;
  inset: 0;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.44;
}
.batcom-teaser-corp-news .cmp-teaser__content {
  position: absolute;
  top: 116px;
  width: 83.33vw;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 30px 30px 28px;
  display: flex;
  flex-wrap: wrap;
}
.batcom-teaser-corp-news .cmp-teaser__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0e2b63 30.479%, rgba(0, 0, 0, 0) 30.479%), linear-gradient(90deg, #004f9f 52.158%, rgba(0, 0, 0, 0) 52.158%), linear-gradient(90deg, #00b1eb 64.729%, rgba(0, 0, 0, 0) 64.729%), linear-gradient(90deg, #ef7d00 73.225%, rgba(0, 0, 0, 0) 73.225%), linear-gradient(90deg, #fb0 79.628%, rgba(0, 0, 0, 0) 79.629%), linear-gradient(90deg, #50af47 86.692%, rgba(0, 0, 0, 0) 86.692%), linear-gradient(90deg, #afca0b 92.03%, rgba(0, 0, 0, 0) 92.03%), linear-gradient(90deg, #5a328a 97.009%, rgba(0, 0, 0, 0) 97.009%), linear-gradient(90deg, #e72582 100%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-news .cmp-teaser__content {
    top: 200px;
    width: 66.6666666667%;
    padding: 48px 24px;
    height: 300px;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-news .cmp-teaser__content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.batcom-teaser-corp-news .cmp-teaser__content, .batcom-teaser-corp-news .cmp-teaser__description .batcom-teaser-corp-news .cmp-teaser__title {
  --batcom-color-heading-h2: white;
  color: white;
}
.batcom-teaser-corp-news .cmp-teaser__pretitle, .batcom-teaser-corp-news .cmp-teaser__description {
  flex-grow: 1;
  font-size: 0.688rem;
  line-height: 0.963rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-news .cmp-teaser__pretitle, .batcom-teaser-corp-news .cmp-teaser__description {
    font-size: 0.75rem;
    line-height: 1.05rem;
    letter-spacing: 0.2em;
    margin-bottom: 0;
  }
}
.batcom-teaser-corp-news .cmp-teaser__description {
  margin-top: 0;
  text-align: right;
}
.batcom-teaser-corp-news .cmp-teaser__title {
  height: initial;
  overflow: initial;
  display: block;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  line-height: inherit;
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  font-weight: 700;
  margin: 20px 0 10px;
  width: 100%;
  order: 1;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-news .cmp-teaser__title {
    font-size: var(--batcom-typography-h2-size-desktop);
    line-height: var(--batcom-typography-h2-line-height-desktop);
    margin: 42px 0;
  }
}
.batcom-teaser-corp-news .cmp-teaser__pretitle, .batcom-teaser-corp-news .cmp-teaser__title, .batcom-teaser-corp-news .cmp-teaser__description {
  position: relative;
  z-index: 0;
}
.batcom-teaser-corp-news .cmp-image {
  margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-news .cmp-image {
    margin-left: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
    margin-right: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
  }
}
@media screen and (min-width: 1360px) {
  .batcom-teaser-corp-news .cmp-image {
    margin-left: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
    margin-right: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
  }
}
.batcom-teaser-corp-news .cmp-image__image {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-news .cmp-image__image {
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}

.batcom-teaser-corp-curtain {
  position: relative;
}
.batcom-teaser-corp-curtain .cmp-teaser__image {
  height: 100%;
}
.batcom-teaser-corp-curtain .cmp-teaser__background {
  position: absolute;
  inset: 0;
  background-color: var(--batcom-color-teaser-offset-bg);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-curtain .cmp-teaser__background {
    opacity: 0.66;
  }
}
.batcom-teaser-corp-curtain .cmp-teaser__content {
  bottom: 120px;
  width: 83.33vw;
  padding: 82px 5.56vw 69px;
  left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2 + 8.33vw);
  position: absolute;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.batcom-teaser-corp-curtain .cmp-teaser__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0e2b63 30.479%, rgba(0, 0, 0, 0) 30.479%), linear-gradient(90deg, #004f9f 52.158%, rgba(0, 0, 0, 0) 52.158%), linear-gradient(90deg, #00b1eb 64.729%, rgba(0, 0, 0, 0) 64.729%), linear-gradient(90deg, #ef7d00 73.225%, rgba(0, 0, 0, 0) 73.225%), linear-gradient(90deg, #fb0 79.628%, rgba(0, 0, 0, 0) 79.629%), linear-gradient(90deg, #50af47 86.692%, rgba(0, 0, 0, 0) 86.692%), linear-gradient(90deg, #afca0b 92.03%, rgba(0, 0, 0, 0) 92.03%), linear-gradient(90deg, #5a328a 97.009%, rgba(0, 0, 0, 0) 97.009%), linear-gradient(90deg, #e72582 100%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-curtain .cmp-teaser__content {
    width: 47.22vw;
    left: calc(11.11vw - var(--batcom-layout-content-left-right-margin) / 2);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-curtain .cmp-teaser__content {
    padding-top: 90px;
    left: calc(11.11vw - (var(--batcom-layout-content-left-right-margin)));
  }
}
@media screen and (min-width: 1360px) {
  .batcom-teaser-corp-curtain .cmp-teaser__content {
    left: calc(11.11vw + (var(--batcom-layout-content-max-width) - 100vw) / 2);
  }
}
@media screen and (min-width: 1440px) {
  .batcom-teaser-corp-curtain .cmp-teaser__content {
    left: calc(11.11vw + (var(--batcom-layout-content-max-width) - 100vw) / 2 + (100vw - 1440px) / 2);
  }
}
.batcom-teaser-corp-curtain .cmp-teaser__content, .batcom-teaser-corp-curtain .cmp-teaser__title {
  color: var(--batcom-color-teaser-offset-text);
}
.batcom-teaser-corp-curtain .cmp-teaser__title p {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-corp-curtain .cmp-teaser__title p {
    font-size: 38px;
  }
}
.batcom-teaser-corp-curtain .cmp-teaser__pretitle, .batcom-teaser-corp-curtain .cmp-teaser__title {
  position: relative;
  z-index: 0;
}
.batcom-teaser-corp-curtain .cmp-teaser__title, .batcom-teaser-corp-curtain .cmp-teaser__description {
  z-index: 1;
}
.batcom-teaser-corp-curtain .cmp-teaser__title h1,
.batcom-teaser-corp-curtain .cmp-teaser__title h2,
.batcom-teaser-corp-curtain .cmp-teaser__title h3,
.batcom-teaser-corp-curtain .cmp-teaser__title h4,
.batcom-teaser-corp-curtain .cmp-teaser__title h5,
.batcom-teaser-corp-curtain .cmp-teaser__title h6, .batcom-teaser-corp-curtain .cmp-teaser__description h1,
.batcom-teaser-corp-curtain .cmp-teaser__description h2,
.batcom-teaser-corp-curtain .cmp-teaser__description h3,
.batcom-teaser-corp-curtain .cmp-teaser__description h4,
.batcom-teaser-corp-curtain .cmp-teaser__description h5,
.batcom-teaser-corp-curtain .cmp-teaser__description h6 {
  color: #fff;
}
.batcom-teaser-corp-curtain .cmp-teaser__title p, .batcom-teaser-corp-curtain .cmp-teaser__description p {
  color: #fff;
}
.batcom-teaser-corp-curtain .cmp-teaser__description {
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.925rem;
}
.batcom-teaser-corp-curtain .cmp-image {
  margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-corp-curtain .cmp-image {
    margin-left: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
    margin-right: calc(-1 * (var(--batcom-layout-content-left-right-margin)));
  }
}
@media screen and (min-width: 1360px) {
  .batcom-teaser-corp-curtain .cmp-image {
    margin-left: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
    margin-right: calc(-1 * (100vw - var(--batcom-layout-content-max-width)) / 2);
  }
}
@media (pointer: fine) {
  .batcom-teaser-corp-curtain .cmp-image {
    height: 100vh;
    background: #fff url("") no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
  }
  .batcom-teaser-corp-curtain--fixed.batcom-teaser-corp-curtain .cmp-image {
    background-attachment: scroll;
  }
}
.batcom-teaser-corp-curtain .cmp-image__image {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media (pointer: fine) {
  .batcom-teaser-corp-curtain .cmp-image__image {
    display: none;
  }
}

.batcom-teaser-horizontal--with-margin {
  --teaser-horizontal-margin-content-width: 612px;
}
.batcom-teaser-horizontal--with-margin .cmp-teaser__image.cmp-teaser__image--desktop {
  max-width: var(--teaser-horizontal-margin-content-width);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-horizontal--with-margin .cmp-teaser__image + .cmp-teaser__content {
    padding: 0 calc(var(--batcom-layout-content-left-right-margin) / 2);
    width: 50%;
    flex-basis: initial;
  }
}
@media only screen and (min-width: 1280px) {
  .batcom-teaser-horizontal--with-margin .cmp-teaser__image + .cmp-teaser__content {
    width: calc(100% - var(--teaser-horizontal-margin-content-width));
    max-width: calc(50vw + 0.5 * var(--batcom-layout-content-max-width) - var(--teaser-horizontal-margin-content-width));
    padding-left: 138px;
  }
}
@media only screen and (max-width: 1023px) {
  .batcom-teaser-horizontal--with-margin .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-link {
    padding: 12px 35px;
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .batcom-teaser-horizontal--with-margin .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__action-container {
    margin-bottom: 48px;
  }
}
@media only screen and (min-width: 1280px) {
  .batcom-teaser-horizontal--with-margin .cmp-teaser__image:where(:not(.cmp-teaser__image--desktop, .cmp-teaser__image--mobile)) + .cmp-teaser__content {
    max-width: calc(0.5 * var(--batcom-layout-content-max-width));
  }
  .batcom-teaser-horizontal--with-margin:where(:not(.batcom-imagelayout--right)) .cmp-teaser__image:where(:not(.cmp-teaser__image--desktop, .cmp-teaser__image--mobile)) + .cmp-teaser__content {
    padding-left: 138px;
    padding-right: 0;
  }
  .batcom-teaser-horizontal--with-margin:where(:not(.batcom-imagelayout--right)) .cmp-teaser__image + .cmp-teaser__content {
    padding-right: 0;
  }
  .batcom-teaser-horizontal--with-margin.batcom-imagelayout--right .cmp-teaser__image:where(:not(.cmp-teaser__image--desktop, .cmp-teaser__image--mobile)) + .cmp-teaser__content {
    padding-left: 0;
    padding-right: 138px;
  }
  .batcom-teaser-horizontal--with-margin.batcom-imagelayout--right .cmp-teaser__image + .cmp-teaser__content {
    padding-left: 0;
  }
}

body .batcom-teaser-meganav-desktop .cmp-teaser {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  height: 100%;
}
body .batcom-teaser-meganav-desktop .cmp-teaser__content {
  padding: 10px 10px 0;
}
body .batcom-teaser-meganav-desktop .cmp-teaser__title {
  margin-bottom: 10px;
}
body .batcom-teaser-meganav-desktop .cmp-teaser__title > *, body .batcom-teaser-meganav-desktop .cmp-teaser__title-link > *, body .batcom-teaser-meganav-desktop .cmp-teaser__description > * {
  height: auto;
  overflow: hidden;
  display: -webkit-box; /* stylelint-disable-line */
  -webkit-line-clamp: 1; /* stylelint-disable-line */
  -webkit-box-orient: vertical; /* stylelint-disable-line */
}
body .batcom-teaser-meganav-desktop .cmp-teaser__title, body .batcom-teaser-meganav-desktop .cmp-teaser__title > * {
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 500;
  font-family: var(--batcom-font-face-4-name);
}
body .batcom-teaser-meganav-desktop .cmp-teaser__description > * {
  -webkit-line-clamp: 3; /* stylelint-disable-line */
  height: -moz-max-content;
  height: max-content;
}
body .batcom-teaser-meganav-desktop .cmp-teaser__description p, body .batcom-teaser-meganav-desktop .cmp-teaser__description span {
  font-size: 0.75rem;
  line-height: 1.375rem;
  font-weight: 325;
  font-family: var(--batcom-font-face-1-name);
}
body .batcom-teaser-meganav-desktop .cmp-teaser__description a {
  font-size: 0.75rem;
  line-height: 1.375rem;
  font-weight: 400;
  font-family: var(--batcom-font-face-3-name);
}
body .batcom-teaser-meganav-desktop .cmp-teaser__action-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px 0;
}
body .batcom-teaser-meganav-desktop .cmp-teaser__action-link {
  margin-top: 0;
  font-family: var(--batcom-typography-button-family);
  font-size: var(--batcom-typography-button-size-desktop);
  font-weight: var(--batcom-typography-button-weight);
  line-height: 1.375rem;
}
body .batcom-teaser-meganav-desktop .cmp-teaser__action-link:hover {
  text-decoration: none;
}
body .batcom-teaser-meganav-canada .cmp-teaser {
  grid-template-columns: 1fr;
  position: relative;
  height: auto;
}
body .batcom-teaser-meganav-canada .cmp-teaser__image {
  display: none;
}
body .batcom-teaser-meganav-canada .cmp-teaser__description {
  margin-bottom: 55px;
}
body .batcom-teaser-meganav-canada .cmp-teaser__description > * {
  display: block;
  -webkit-line-clamp: unset; /* stylelint-disable-line */
  -webkit-box-orient: unset; /* stylelint-disable-line */
}
body .batcom-teaser-meganav-canada .cmp-teaser__description p, body .batcom-teaser-meganav-canada .cmp-teaser__description span {
  font-size: 0.75rem;
  color: #1d1d1b;
}
body .batcom-teaser-meganav-canada .cmp-teaser__description a {
  text-transform: none;
  font-weight: 325;
  font-family: var(--batcom-font-face-1-name);
  color: #1d1d1b;
}
body .batcom-teaser-meganav-canada .cmp-teaser__description a:hover {
  text-decoration: none;
}
body .batcom-teaser-meganav-canada .cmp-teaser__action-container {
  position: absolute;
  bottom: 5px;
}
body .batcom-teaser-meganav-canada .cmp-teaser__action-link {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #1d1d1b;
  font-weight: 500;
  font-family: var(--batcom-font-face-4-name);
}
body .batcom-teaser-meganav-canada .cmp-teaser__action-link::after {
  content: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-black.svg");
  display: inline-block;
  transform: translateY(1px);
  margin-left: 15px;
}
body .batcom-teaser-meganav-canada .cmp-teaser__action-link:hover::after {
  animation: bounce-icon 2s infinite ease-in-out;
}
body .batcom-teaser-meganav-promo .cmp-teaser__image + .cmp-teaser__content {
  padding: 20px;
  width: 100%;
}
body .batcom-teaser-meganav-promo .cmp-teaser__title {
  margin-bottom: 0;
}
body .batcom-teaser-meganav-promo .cmp-teaser__action-container {
  display: flex;
  flex-direction: column;
}

@keyframes bounce-icon {
  0% {
    transform: translate(0, 1px);
  }
  50% {
    transform: translate(5px, 1px);
  }
  100% {
    transform: translate(0, 1px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .batcom-teaser-stage-aligned {
    --batcom-typography-button-size-tablet: 0.64rem;
  }
}
body .batcom-teaser-stage-aligned .cmp-teaser__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 60%;
  box-sizing: border-box;
  padding: 24px 0 24px 40px;
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-stage-aligned .cmp-teaser__action-container {
    flex-grow: 1;
    align-items: flex-end;
    display: flex;
  }
}
@media only screen and (min-width: 768px) {
  body .batcom-teaser-stage-aligned .cmp-teaser__image + .cmp-teaser__content {
    padding: 10px 0 10px 10px;
  }
}
@media only screen and (min-width: 1680px) {
  body .batcom-teaser-stage-aligned .cmp-teaser__image + .cmp-teaser__content {
    padding: 24px 0 24px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .batcom-teaser-stage-aligned .cmp-teaser__image + .cmp-teaser__content .cmp-teaser__description * {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 767px) {
  body .batcom-teaser-horizontal--text-image-inline .cmp-teaser__content {
    text-align: center;
  }
}
body .batcom-teaser-horizontal--text-image-inline .cmp-teaser__title {
  margin-bottom: 0;
}
body .batcom-teaser-horizontal--text-image-inline .cmp-teaser {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  body .batcom-teaser-horizontal--text-image-inline .cmp-teaser {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-teaser-horizontal--text-image-inline .cmp-teaser__content {
    order: -1;
    margin-block-end: 2.75rem;
  }
}
@media only screen and (max-width: 767px) {
  body .batcom-teaser-horizontal--text-image-inline .cmp-teaser__pretitle {
    display: none;
  }
}

body .teaser-background-image .cmp-teaser {
  position: relative;
}
body .teaser-background-image .cmp-teaser__image {
  position: relative;
}
body .teaser-background-image .cmp-teaser__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 60%;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .teaser-background-image .cmp-teaser__content {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  body .teaser-background-image .cmp-teaser__content {
    padding: 32px 0 32px 32px;
  }
}
body .teaser-background-image .cmp-teaser__description {
  margin-top: calc((1vw - 3px) * 20);
}
@media only screen and (min-width: 768px) {
  body .teaser-background-image .cmp-teaser__description {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  body .teaser-background-image .cmp-teaser__description {
    margin-top: calc((1vw - 11px) * 10);
  }
}
@media only screen and (min-width: 1280px) {
  body .teaser-background-image .cmp-teaser__description {
    margin-top: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .teaser-background-image .cmp-teaser__description * {
    font-size: 1rem;
  }
}
body .teaser-background-image .cmp-teaser__description .small {
  line-height: 1;
  margin-bottom: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .teaser-background-image .cmp-teaser__description .small {
    margin-bottom: 4px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .teaser-background-image .cmp-teaser__description .small * {
    font-size: 0.65rem;
    line-height: 1;
  }
}

.batcom-text-color--light .cmp-teaser__pretitle, .batcom-text-color--light .cmp-teaser__description, .batcom-text-color--light .cmp-teaser__description a, .batcom-text-color--light .cmp-teaser__description h1, .batcom-text-color--light .cmp-teaser__description h2, .batcom-text-color--light .cmp-teaser__description h3, .batcom-text-color--light .cmp-teaser__description h4, .batcom-text-color--light .cmp-teaser__description h5, .batcom-text-color--light .cmp-teaser__description h6, .batcom-text-color--light .cmp-teaser__title, .batcom-text-color--light .cmp-teaser__title-link, .batcom-text-color--light .cmp-teaser__action-link {
  color: var(--batcom-color-body-text-inverted);
}
.batcom-text-color--dark .cmp-teaser__pretitle, .batcom-text-color--dark .cmp-teaser__description, .batcom-text-color--dark .cmp-teaser__description a, .batcom-text-color--dark .cmp-teaser__description h1, .batcom-text-color--dark .cmp-teaser__description h2, .batcom-text-color--dark .cmp-teaser__description h3, .batcom-text-color--dark .cmp-teaser__description h4, .batcom-text-color--dark .cmp-teaser__description h5, .batcom-text-color--dark .cmp-teaser__description h6, .batcom-text-color--dark .cmp-teaser__title, .batcom-text-color--dark .cmp-teaser__title-link, .batcom-text-color--dark .cmp-teaser__action-link {
  color: var(--batcom-color-body-text);
}
.cmp-teaser .h1-style {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h1);
  font-weight: var(--batcom-typography-h1-weight);
}
.cmp-teaser .h1-style span {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: var(--batcom-typography-h1-weight);
}
.cmp-teaser .h1-style a {
  font-family: var(--batcom-typography-h1-family);
  font-size: var(--batcom-typography-h1-size-mobile);
  line-height: var(--batcom-typography-h1-line-height-mobile);
  font-weight: var(--batcom-typography-h1-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.cmp-teaser .h1-style a:hover, .cmp-teaser .h1-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .cmp-teaser .h1-style {
    --batcom-typography-h1-size-mobile: var(--batcom-typography-h1-size-tablet);
    --batcom-typography-h1-line-height-mobile: var(--batcom-typography-h1-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-teaser .h1-style {
    --batcom-typography-h1-size-mobile: var(--batcom-typography-h1-size-desktop);
    --batcom-typography-h1-line-height-mobile: var(--batcom-typography-h1-line-height-desktop);
  }
}
.batcom-container--primary-dark .cmp-teaser .h1-style, .batcom-container--secondary-dark .cmp-teaser .h1-style {
  color: var(--batcom-color-heading-h1-inverted);
}
.cmp-teaser .h2-style {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h2);
  font-weight: var(--batcom-typography-h2-weight);
}
.cmp-teaser .h2-style span {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  font-weight: var(--batcom-typography-h2-weight);
}
.cmp-teaser .h2-style a {
  font-family: var(--batcom-typography-h2-family);
  font-size: var(--batcom-typography-h2-size-mobile);
  line-height: var(--batcom-typography-h2-line-height-mobile);
  font-weight: var(--batcom-typography-h2-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.cmp-teaser .h2-style a:hover, .cmp-teaser .h2-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .cmp-teaser .h2-style {
    --batcom-typography-h2-size-mobile: var(--batcom-typography-h2-size-tablet);
    --batcom-typography-h2-line-height-mobile: var(--batcom-typography-h2-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-teaser .h2-style {
    --batcom-typography-h2-size-mobile: var(--batcom-typography-h2-size-desktop);
    --batcom-typography-h2-line-height-mobile: var(--batcom-typography-h2-line-height-desktop);
  }
}
.batcom-container--primary-dark .cmp-teaser .h2-style, .batcom-container--secondary-dark .cmp-teaser .h2-style {
  color: var(--batcom-color-heading-h2-inverted);
}
.cmp-teaser .h3-style {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h3);
  font-weight: var(--batcom-typography-h3-weight);
}
.cmp-teaser .h3-style span {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  font-weight: var(--batcom-typography-h3-weight);
}
.cmp-teaser .h3-style a {
  font-family: var(--batcom-typography-h3-family);
  font-size: var(--batcom-typography-h3-size-mobile);
  line-height: var(--batcom-typography-h3-line-height-mobile);
  font-weight: var(--batcom-typography-h3-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.cmp-teaser .h3-style a:hover, .cmp-teaser .h3-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .cmp-teaser .h3-style {
    --batcom-typography-h3-size-mobile: var(--batcom-typography-h3-size-tablet);
    --batcom-typography-h3-line-height-mobile: var(--batcom-typography-h3-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-teaser .h3-style {
    --batcom-typography-h3-size-mobile: var(--batcom-typography-h3-size-desktop);
    --batcom-typography-h3-line-height-mobile: var(--batcom-typography-h3-line-height-desktop);
  }
}
.batcom-container--primary-dark .cmp-teaser .h3-style, .batcom-container--secondary-dark .cmp-teaser .h3-style {
  color: var(--batcom-color-heading-h3-inverted);
}
.cmp-teaser .h4-style {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  word-break: break-word;
  color: var(--batcom-color-heading-h4);
  font-weight: var(--batcom-typography-h4-weight);
}
.cmp-teaser .h4-style span {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: var(--batcom-typography-h4-weight);
}
.cmp-teaser .h4-style a {
  font-family: var(--batcom-typography-h4-family);
  font-size: var(--batcom-typography-h4-size-mobile);
  line-height: var(--batcom-typography-h4-line-height-mobile);
  font-weight: var(--batcom-typography-h4-weight);
  text-decoration: none;
  color: var(--batcom-color-anchor-default);
}
.cmp-teaser .h4-style a:hover, .cmp-teaser .h4-style a:focus {
  color: var(--batcom-color-anchor-hover);
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .cmp-teaser .h4-style {
    --batcom-typography-h4-size-mobile: var(--batcom-typography-h4-size-tablet);
    --batcom-typography-h4-line-height-mobile: var(--batcom-typography-h4-line-height-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-teaser .h4-style {
    --batcom-typography-h4-size-mobile: var(--batcom-typography-h4-size-desktop);
    --batcom-typography-h4-line-height-mobile: var(--batcom-typography-h4-line-height-desktop);
  }
}
.batcom-container--primary-dark .cmp-teaser .h4-style, .batcom-container--secondary-dark .cmp-teaser .h4-style {
  color: var(--batcom-color-heading-h4-inverted);
}
.cmp-teaser__pretitle {
  margin-bottom: 8px;
  font-size: var(--batcom-typography-h6-size-mobile);
  line-height: var(--batcom-typography-h6-line-height-mobile);
  font-weight: var(--batcom-typography-h6-weight);
}
@media only screen and (min-width: 1024px) {
  .cmp-teaser__pretitle {
    --batcom-typography-h6-size-mobile: var(--batcom-typography-h6-size-desktop);
    --batcom-typography-h6-line-height-mobile: var(--batcom-typography-h6-line-height-desktop);
  }
}
.cmp-teaser__description {
  /* doc
  ---
  title: z-index
  name: nn-z-index
  category: functions
  ---

  Because z-indices can get tricky we manage them in the theme.scss globally.

  Always use this mixin to set set a z-index.

  Read the Best Practice to get an full documentation:
  https://projects.netcentric.biz/wiki/display/FRONTEND/z-index+management+with+SCSS

  ## Live Template abbreviations
  ---
  -z

  ## Parameters
  ---
  @parameter $element = Name of the element (normally this will be the module name for the main stack)
  @parameter $list = Name of the list (default $z-indices). Must be only set for stack context
  @parameter $min = Set a minimum z-index which will be added to the list.

  ## Dependencies
  ---
  $z-indices variable in the theme.scss

  ## Example
  ---

  ```html_example

  // In the SASS theme file

  $z-indices: slider, modal, dialog, navigation;

  // In the SASS module file

  .modal {
      &__base {
          position: absolute;
          z-index: nn-z-index(modal);
      }
  }
  ```

  ## Source
  ---
  http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/
  */
  /*
  * Mixin used to create the arrows for the menu items.
  */
  /* doc
  ---
  title: Clearfix
  name: clearfix
  category: mixins
  ---

  Clears after floating element

  Use this mixin only inside media queries where you can't use the
  abstract/extends/utils/_clearfix version, which adds less code to css

  ## Live Template abbreviations
  ---

  ## Example
  ---

  ```html_example
  @include clearfix;
  ```

  ## Source
  ---
  <https://css-tricks.com/snippets/css/clear-fix/>
  */
  /* doc
  ---
  title: Component Normalize / item Normalize
  name: font
  category: mixins
  ---
  Use this mixing to regular AEM wrappers and normalization.
  */
  /* stylelint-disable max-nesting-depth */
  /* stylelint-disable media-feature-name-no-vendor-prefix */
  /* doc
  ---
  title: Font
  name: font
  category: mixins
  ---

  Use this mixing to add fonts and normalization.

  Documentation:

  - https://projects.netcentric.biz/wiki/display/FRONTEND/CSS+-+Font+Normalization
  - https://projects.netcentric.biz/wiki/display/FRONTEND/SCSS+-+Font+management

  ## Parameters
  ---
  @param $font-type
  @param $normalize

  ## Dependencies
  ---
  /abstract/functions/nn-px-to-em
  /abstract/functions/nn-px-to-rem
  /abstract/functions/nn-px-to-unitless
  /abstract/mixins/font-icon
  */
  /*
  * This mixin is used to style headings of any level in a responsive way.
  * It uses the variables defined in the typography map to style the headings so
  * the levels it can effectively style are 1 to 6.
  * It also styles the use of spans and links inside the headings.
  *
  * @param {number} $level - The heading level to style.
  * @param {string} $weight - The font weight to use for the heading. By default it uses the weight defined in the typography map.
  */
  /* doc
  ---
  title: Visibility
  name: visibility
  category: mixins
  ---

  Mixin to add visibility to control to elements

  ---

  ## Example
  ---

  ```html_example
  .container {
    &__base {
      @include visible;

      @include breakpoint($b-01) {
        @include hidden;
      }
    }
  }
  ```
  */
  /*
  lt0 = (default) 1 column at a 100%
  lt1 = 2 columns (50%, 50%)
  lt2 = 2 columns (33%, 66%)
  lt3 = 2 columns (66%, 33%)
  lt4 = 3 columns (33%, 33%, 33%)
  lt5 = 4 columns (25%, 25%, 25%, 25%)

  ## Parameters
  @parameter $layout-type = lt0 | lt1 | lt2 | lt3 | lt4 | lt5
  */
  /**
  * Reverse container
  */
  margin-top: 16px;
}
.cmp-teaser__description body.noScroll {
  overflow: hidden;
  position: fixed;
  inset: 0;
}
@keyframes dot-animation {
  0% {
    background-color: rgba(29, 29, 27, 0.4);
  }
  50% {
    background-color: rgba(29, 29, 27, 0.7);
  }
  100% {
    background-color: #1D1D1B;
  }
}
.cmp-teaser__description .batcom--loading {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  background-color: grey;
  animation: dot-animation 1.2s infinite;
  animation-delay: 0.8s;
  border-radius: 50%;
}
.cmp-teaser__description .batcom--loading::before, .cmp-teaser__description .batcom--loading::after {
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #1D1D1B;
  animation: dot-animation 1.2s infinite;
}
.cmp-teaser__description .batcom--loading::before {
  animation-delay: 0.4s;
  left: -20px;
}
.cmp-teaser__description .batcom--loading::after {
  animation-delay: 1.2s;
  right: -20px;
}
.cmp-teaser__description .batcom-overlay__shorthand {
  position: relative;
  z-index: 0;
}
.cmp-teaser__description li {
  position: relative;
  padding: 4px 0 4px 23px;
  text-indent: -23px;
}
.cmp-teaser__description ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-block: 0 0;
}
.cmp-teaser__description ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet);
}
.batcom-container--primary-dark .cmp-teaser__description ul li::marker, .batcom-container--secondary-dark .cmp-teaser__description ul li::marker {
  color: var(--batcom-color-miscellaneous-li-bullet-inverted);
}
.cmp-teaser__description ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-block: 0 0;
}
.cmp-teaser__description ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number);
}
.batcom-container--primary-dark .cmp-teaser__description ol li::marker, .batcom-container--secondary-dark .cmp-teaser__description ol li::marker {
  color: var(--batcom-color-miscellaneous-li-number-inverted);
}
.cmp-teaser__description ol li ol li {
  text-indent: -18px;
}
.cmp-teaser__description ul:has(li .bullet-icon) {
  list-style-type: "→ ";
}
@media only screen and (max-width: 767px) {
  .cmp-teaser__description {
    height: auto;
    overflow: hidden;
    display: -webkit-box; /* stylelint-disable-line */
    -webkit-line-clamp: 2; /* stylelint-disable-line */
    -webkit-box-orient: vertical; /* stylelint-disable-line */
  }
}
@media only screen and (max-width: 479px) {
  .batcom-teaser-stage .cmp-teaser__description {
    height: auto;
    overflow: hidden;
    display: -webkit-box; /* stylelint-disable-line */
    -webkit-line-clamp: 1; /* stylelint-disable-line */
    -webkit-box-orient: vertical; /* stylelint-disable-line */
  }
}
.cmp-teaser__description h1,
.cmp-teaser__description h2,
.cmp-teaser__description h3,
.cmp-teaser__description h4,
.cmp-teaser__description h5,
.cmp-teaser__description h6,
.cmp-teaser__description a,
.cmp-teaser__description blockquote,
.cmp-teaser__description small,
.cmp-teaser__description pre {
  margin-top: 16px;
}
.cmp-teaser__title .color-1, .cmp-teaser__description .color-1 {
  color: var(--batcom-color-palette-1);
}
.cmp-teaser__title .color-2, .cmp-teaser__description .color-2 {
  color: var(--batcom-color-palette-2);
}
.cmp-teaser__title .color-3, .cmp-teaser__description .color-3 {
  color: var(--batcom-color-palette-3);
}
.cmp-teaser__title .color-4, .cmp-teaser__description .color-4 {
  color: var(--batcom-color-palette-4);
}
.cmp-teaser__title .color-5, .cmp-teaser__description .color-5 {
  color: var(--batcom-color-palette-5);
}
.cmp-teaser__title .color-6, .cmp-teaser__description .color-6 {
  color: var(--batcom-color-palette-6);
}
.cmp-teaser__title .color-7, .cmp-teaser__description .color-7 {
  color: var(--batcom-color-palette-7);
}
.cmp-teaser__title .color-8, .cmp-teaser__description .color-8 {
  color: var(--batcom-color-palette-8);
}
.cmp-teaser__title .color-9, .cmp-teaser__description .color-9 {
  color: var(--batcom-color-palette-9);
}
.cmp-teaser .cmp-image__title {
  display: none;
}
.cmp-teaser__action-link {
  display: inline-block;
  margin-top: 24px;
}
body .batcom-teaser .cmp-teaser__action-link {
  font-weight: var(--batcom-typography-button-weight);
}
.cmp-teaser__action-link:not(:last-of-type) {
  margin-bottom: 8px;
}
.cmp-teaser__link {
  text-decoration: none;
}
.cmp-teaser__link .cmp-teaser__pretitle,
.cmp-teaser__link .cmp-teaser__description {
  color: var(--batcom-color-body-text);
}
.batcom-text-color--light .cmp-teaser__link .cmp-teaser__pretitle,
.batcom-text-color--light .cmp-teaser__link .cmp-teaser__description {
  color: var(--batcom-color-body-text-inverted);
}
.batcom-text-color--dark .cmp-teaser__link .cmp-teaser__pretitle,
.batcom-text-color--dark .cmp-teaser__link .cmp-teaser__description {
  color: var(--batcom-color-body-text);
}
.cmp-teaser__link:hover {
  text-decoration: none;
}
.cmp-list .cmp-teaser__image {
  margin-bottom: 16px;
}

.batcom-teaser-stage {
  max-width: 1280px;
}
.batcom-teaser-stage .cmp-teaser {
  position: relative;
  overflow: hidden;
}
.batcom-teaser-stage .cmp-teaser__image {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media only screen and (max-width: 479px) {
  .batcom-teaser-stage .cmp-teaser__image .cmp-image {
    position: relative;
    transform: none;
    top: revert; /* stylelint-disable-line */
  }
}
.batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: calc(var(--batcom-layout-content-left-right-margin) / 2);
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content {
    padding: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 479px) {
  .batcom-teaser-stage .cmp-teaser__image + .cmp-teaser__content > .cmp-teaser__action-container {
    margin-top: auto;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);
  }
}
.batcom-teaser-stage .cmp-teaser__content {
  position: relative;
}
@media only screen and (max-width: 479px) {
  .batcom-teaser-stage .cmp-teaser__acton-container {
    margin-top: auto;
  }
}
.batcom-teaser-stage .cmp-teaser__action-link {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-primary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover);
  display: inline-flex;
  font-size: var(--batcom-typography-button-size-mobile);
  line-height: var(--batcom-typography-button-line-height-mobile);
  font-family: var(--batcom-typography-button-family);
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: var(--batcom-layout-button-primary-border-radius);
  cursor: pointer;
  color: var(--batcom-button-text) !important; /* stylelint-disable-line */
  background-color: var(--batcom-button-bg);
  border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border);
  text-decoration: none !important; /* stylelint-disable-line */
  padding: 8px 20px;
  position: relative;
  width: auto;
  padding-left: calc(var(--batcom-layout-content-left-right-margin) / 2);
  padding-right: calc(var(--batcom-layout-content-left-right-margin) / 2);
  transition: 0.3s;
}
@media only screen and (max-width: 479px) {
  .batcom-teaser-stage .cmp-teaser__action-link {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-teaser-stage .cmp-teaser__action-link {
    --batcom-typography-button-size-mobile: var(--batcom-typography-button-size-desktop);
    --batcom-typography-button-line-height-mobile: var(--batcom-typography-button-line-height-desktop);
  }
}
.batcom-teaser-stage .cmp-teaser__action-link span {
  color: var(--batcom-button-text);
}
@media (hover: hover) {
  .batcom-teaser-stage .cmp-teaser__action-link:hover {
    color: var(--batcom-button-text-hover) !important; /* stylelint-disable-line */
    background-color: var(--batcom-button-bg-hover);
    border: var(--batcom-layout-button-border-width) solid var(--batcom-button-border-hover);
    text-decoration: none !important; /* stylelint-disable-line */
  }
  .batcom-teaser-stage .cmp-teaser__action-link:hover span {
    color: var(--batcom-button-text-hover);
  }
  .batcom-teaser-stage .cmp-teaser__action-link:hover .cmp-button__svg :is(svg, g, path) {
    fill: var(--batcom-button-icon-hover);
  }
}
.batcom-teaser-stage .cmp-teaser__action-link__text + .cmp-button__svg {
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.batcom-teaser-stage .cmp-teaser__action-link__svg :is(svg, g, path) {
  fill: var(--batcom-button-icon);
  filter: none;
}
.batcom-teaser-stage .cmp-teaser__action-link__svg svg {
  height: 16px;
}
.batcom-teaser-stage .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
  margin-right: calc(var(--batcom-layout-content-left-right-margin) / 2);
  padding-right: 40px;
}
.batcom-container--primary-dark .batcom-teaser-stage .cmp-teaser__action-link:first-child, .batcom-container--secondary-dark .batcom-teaser-stage .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-primary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-primary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover-inverted);
}
.batcom-container--primary-dark .batcom-teaser-stage .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-teaser-stage .cmp-teaser__action-link:first-child .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-primary-text-hover-inverted);
}
.batcom-teaser-stage .cmp-teaser__action-link:first-child::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 15px;
  height: 12px;
  -webkit-mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
          mask-image: url("../../../../../../etc.clientlibs/batcom/base/clientlibs/publish/resources/icons/arrow-right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--batcom-color-button-primary-text);
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-stage .cmp-teaser__action-link:first-child {
    margin-bottom: 20px;
  }
}
.batcom-teaser-stage .cmp-teaser__action-link:first-child:hover::after {
  background-color: var(--batcom-color-button-primary-text-hover);
}
.batcom-container--primary-dark .batcom-teaser-stage .cmp-teaser__action-link:first-child::after, .batcom-container--secondary-dark .batcom-teaser-stage .cmp-teaser__action-link:first-child::after {
  background-color: var(--batcom-color-button-primary-text-inverted);
}
.batcom-container--primary-dark .batcom-teaser-stage .cmp-teaser__action-link:first-child:hover::after, .batcom-container--secondary-dark .batcom-teaser-stage .cmp-teaser__action-link:first-child:hover::after {
  background-color: var(--batcom-color-button-primary-text);
}
.batcom-teaser-stage .cmp-teaser__action-link:nth-child(2) {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}
.batcom-container--primary-dark .batcom-teaser-stage .cmp-teaser__action-link:nth-child(2), .batcom-container--secondary-dark .batcom-teaser-stage .cmp-teaser__action-link:nth-child(2) {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
}
.batcom-container--primary-dark .batcom-teaser-stage .cmp-teaser__action-link:nth-child(2) .cmp-button__svg :is(svg, g, path), .batcom-container--secondary-dark .batcom-teaser-stage .cmp-teaser__action-link:nth-child(2) .cmp-button__svg :is(svg, g, path) {
  --batcom-button-icon: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover-inverted);
}
@media only screen and (max-width: 767px) {
  .batcom-teaser-stage .cmp-teaser__action-link:nth-child(2) {
    margin-left: 0;
    margin-top: 0;
    text-align: center;
  }
}
.batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-primary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-primary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-primary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover-inverted);
}
.batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child::after {
  background-color: var(--batcom-color-button-primary-text-inverted);
}
.batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:first-child:hover::after {
  background-color: var(--batcom-color-button-primary-text);
}
.batcom-teaser-stage.batcom-text-color--light .cmp-teaser__action-link:nth-child(2) {
  --batcom-button-text: var(--batcom-color-button-secondary-text-inverted);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover-inverted);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg-inverted);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover-inverted);
  --batcom-button-border: var(--batcom-color-button-secondary-border-inverted);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover-inverted);
}
.batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child {
  --batcom-button-text: var(--batcom-color-button-primary-text);
  --batcom-button-text-hover: var(--batcom-color-button-primary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-primary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-primary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-primary-border);
  --batcom-button-border-hover: var(--batcom-color-button-primary-border-hover);
}
.batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child::after {
  background-color: var(--batcom-color-button-primary-text);
}
.batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:first-child:hover::after {
  background-color: var(--batcom-color-button-primary-text-inverted);
}
.batcom-teaser-stage.batcom-text-color--dark .cmp-teaser__action-link:nth-child(2) {
  --batcom-button-text: var(--batcom-color-button-secondary-text);
  --batcom-button-text-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-button-bg: var(--batcom-color-button-secondary-bg);
  --batcom-button-bg-hover: var(--batcom-color-button-secondary-bg-hover);
  --batcom-button-border: var(--batcom-color-button-secondary-border);
  --batcom-button-border-hover: var(--batcom-color-button-secondary-border-hover);
  --batcom-button-icon: var(--batcom-color-button-secondary-text);
  --batcom-button-icon-hover: var(--batcom-color-button-secondary-text-hover);
  --batcom-layout-button-primary-border-radius: var(--batcom-layout-button-secondary-border-radius);
}

.batcom-teaser-vertical .cmp-teaser__image {
  margin-bottom: 16px;
}

.batcom-teaser-text .cmp-teaser__image {
  margin-bottom: 16px;
}

.batcom-teaser-horizontal {
  width: 100%;
}
.batcom-teaser-horizontal .cmp-teaser {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-horizontal .cmp-teaser {
    display: flex;
    flex-direction: row;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-imagelayout--right.batcom-teaser-horizontal .cmp-teaser {
    flex-direction: row-reverse;
  }
}

@media only screen and (max-width: 767px) {
  .batcom-teaser-horizontal .cmp-teaser__action-link {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-horizontal .cmp-teaser__image {
    width: 50%;
    float: left;
  }
}
.batcom-teaser-horizontal .cmp-teaser__image + .cmp-teaser__content {
  flex-basis: 50%;
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-horizontal .cmp-teaser__image + .cmp-teaser__content {
    padding: 0 calc(var(--batcom-layout-content-left-right-margin) / 2);
  }
}
.batcom-teaser-horizontal .cmp-teaser__content {
  flex-basis: 100%;
}
@media only screen and (max-width: 767px) {
  .batcom-teaser-horizontal .cmp-teaser__link .cmp-teaser__image {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .batcom-teaser-horizontal .cmp-teaser__link .cmp-teaser__image {
    margin-right: calc(var(--batcom-layout-content-left-right-margin) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .batcom-teaser-horizontal:not(.batcom-imagelayout--right) .cmp-teaser {
    flex-direction: row;
  }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3NyYy9tYWluL2pjcl9yb290L2FwcHMvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRlYXNlci9iYXRjb20tdGVhc2VyLmJ1bmRsZS5jc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX2JvZHlfbm9zY3JvbGwuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fbG9hZGluZy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19vdmVybGF5X3Nob3J0aGFuZC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvZnVuY3Rpb25zL19ubi16LWluZGV4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2Fycm93LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NsZWFyZml4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbXBvbmVudC1ub3JtYWxpemUuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fZm9udC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19oZWFkaW5ncy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL192aXNpYmlsaXR5LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbHVtbmNvbnRyb2wuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fcmV2ZXJzZS1jb250YWluZXIuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fbWVkaWFxdWVyaWVzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tdGVhc2VyL190ZWFzZXItY29ycC1ib2FyZC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRlYXNlci9fdGVhc2VyLWNvcnAtb2Zmc2V0LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2JvcmRlcnMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYnV0dG9ucy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRlYXNlci9fdGVhc2VyLWNvcnAuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS10ZWFzZXIvX3RlYXNlci1jb3JwLXN0YWdlLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tdGVhc2VyL190ZWFzZXItY29ycC1oZWFkZXIuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS10ZWFzZXIvX3RlYXNlci10ZXh0LW92ZXItaW1hZ2Uuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS10ZWFzZXIvX3RlYXNlci1jb3JwLWxldmVscy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19saW5lLWNsYW1wLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tdGVhc2VyL190ZWFzZXItY29ycC1uZXdzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tdGVhc2VyL190ZWFzZXItY29ycC1jdXJ0YWluLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tdGVhc2VyL190ZWFzZXItaG9yaXpvbnRhbC13aXRoLW1hcmdpbi5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRlYXNlci9fdGVhc2VyLW1lZ2FuYXYuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS10ZWFzZXIvX3Rlc2FzZXItc3RhZ2UtYWxpZ25lZC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRlYXNlci9fdGVhc2VyLXRleHQtYW5kLWltYWdlLWlubGluZS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLXRlYXNlci9fdGVhc2VyLWltYWdlLWJhY2tncm91bmQuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS10ZWFzZXIvYmF0Y29tLXRlYXNlci5jbGllbnRsaWJzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvdGhlbWUvZ2xvYmFsc3R5bGVzL2dsb2JhbC1saXN0LWVsZW1lbnRzLXN0eWxlcy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL3RoZW1lL2dsb2JhbHN0eWxlcy9nbG9iYWwtY29sb3JzLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsZ0JBQWdCO0FDTWhCO0VBQ0UsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsUUFBQTtBREpGOztBRUNBO0VBQ0U7SUFDRSx1Q0FBQTtFRkVGO0VFQ0E7SUFDRSx1Q0FBQTtFRkNGO0VFRUE7SUFDRSx5QkFBQTtFRkFGO0FBQ0Y7QUVHQTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0Esc0NBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0FGREY7QUVHRTtFQUVFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHlCQUFBO0VBQ0Esc0NBQUE7QUZGSjtBRUtFO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0FGSEo7QUVNRTtFQUNFLHFCQUFBO0VBQ0EsWUFBQTtBRkpKOztBRzNDQTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBSDhDRjs7QUlsREE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Ozs7OztDQUFBO0FDQUEsd0NBQUE7QUFDQSwwREFBQTtBQUVBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNIQTs7Ozs7Ozs7Q0FBQTtB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 */