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-container--border-radius-small {
  border-radius: 4px;
}
.batcom-container--border-radius-medium {
  border-radius: 16px;
}
.batcom-container--border-radius-large {
  border-radius: 30px;
}

.batcom-container--padding-large,
.batcom-container--padding-large.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--primary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: 1.875rem;
}

.batcom-container--children-horizontal-scroll > .cmp-container, .batcom-container--children-horizontal-hidden-scroll > .cmp-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser), .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon),
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser), .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon),
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul {
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
  flex-flow: row nowrap;
  cursor: pointer;
  justify-content: flex-start;
}
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser)::-webkit-scrollbar, .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon)::-webkit-scrollbar,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul::-webkit-scrollbar,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul::-webkit-scrollbar, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser)::-webkit-scrollbar, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon)::-webkit-scrollbar,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul::-webkit-scrollbar,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul::-webkit-scrollbar {
  display: none;
}
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser).justify-content-center, .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon).justify-content-center,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul.justify-content-center,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul.justify-content-center, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser).justify-content-center, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon).justify-content-center,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul.justify-content-center,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul.justify-content-center {
  justify-content: center;
}
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div, .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li, .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div, .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > div,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > li, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > div,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > li {
  flex: 0 0 auto;
  width: auto;
  padding: 6px;
  cursor: pointer;
}
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div a:focus-visible, .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li a:focus-visible, .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div a:focus-visible, .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li a:focus-visible,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div a:focus-visible,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li a:focus-visible,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > div a:focus-visible,
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > li a:focus-visible, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div a:focus-visible, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li a:focus-visible, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div a:focus-visible, .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li a:focus-visible,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div a:focus-visible,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li a:focus-visible,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > div a:focus-visible,
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > li a:focus-visible {
  outline-offset: 1px;
}
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div:not(:first-child), .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li:not(:first-child), .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div:not(:first-child), .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li:not(:first-child),
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div:not(:first-child),
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li:not(:first-child),
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > div:not(:first-child),
.batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > li:not(:first-child), .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div:not(:first-child), .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li:not(:first-child), .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div:not(:first-child), .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li:not(:first-child),
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div:not(:first-child),
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li:not(:first-child),
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > div:not(:first-child),
.batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > li:not(:first-child) {
  margin-left: 50px;
}
.batcom-container--children-horizontal-scroll .scrollbar, .batcom-container--children-horizontal-hidden-scroll .scrollbar {
  width: 100%;
  height: 3px;
  background: var(--batcom-color-container-scrollbar-bg);
  position: relative;
  border-radius: 4px;
  display: none;
}
.batcom-container--children-horizontal-scroll .scrollbar--visible, .batcom-container--children-horizontal-hidden-scroll .scrollbar--visible {
  display: block;
}
.batcom-container--children-horizontal-scroll .thumb, .batcom-container--children-horizontal-hidden-scroll .thumb {
  height: 100%;
  background: var(--batcom-color-container-scrollbar);
  border-radius: 4px;
  position: absolute;
  left: 0;
  cursor: pointer;
}
.batcom-container--children-horizontal-hidden-scroll .scrollbar--visible {
  display: none;
}

.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser), .cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon),
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul,
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul, .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser), .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon),
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul,
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul {
  overflow-x: visible;
  display: block;
}
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div, .cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li, .cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div, .cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li,
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div,
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li,
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > div,
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > li, .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div, .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li, .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div, .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li,
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div,
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li,
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > div,
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > li {
  width: 100%;
  padding: 0;
  cursor: unset;
}
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div:not(:first-child), .cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li:not(:first-child), .cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div:not(:first-child), .cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li:not(:first-child),
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div:not(:first-child),
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li:not(:first-child),
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > div:not(:first-child),
.cq-Editable-dom .batcom-container--children-horizontal-scroll > .cmp-container > .aem-Grid .batcom-list ul > li:not(:first-child), .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > div:not(:first-child), .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-teaser) > li:not(:first-child), .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > div:not(:first-child), .cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid:has(.batcom-icon) > li:not(:first-child),
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > div:not(:first-child),
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-linklist ul > li:not(:first-child),
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > div:not(:first-child),
.cq-Editable-dom .batcom-container--children-horizontal-hidden-scroll > .cmp-container > .aem-Grid .batcom-list ul > li:not(:first-child) {
  margin-left: 0;
}

.batcom-container {
  --batcom-layout-container-padding: var(--batcom-layout-container-padding-mobile);
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .batcom-container {
    --batcom-layout-container-padding: var(--batcom-layout-container-padding-desktop);
  }
}
.batcom-container--primary-light {
  background-color: var(--batcom-color-container-primary-light-bg);
}
.batcom-container--primary-dark {
  background-color: var(--batcom-color-container-primary-dark-bg);
}
.batcom-container--secondary-light {
  background-color: var(--batcom-color-container-secondary-light-bg);
}
.batcom-container--secondary-dark {
  background-color: var(--batcom-color-container-secondary-dark-bg);
}
.batcom-container--tertiary-light {
  background-color: var(--batcom-color-container-tertiary-light-bg);
}
.batcom-container--tertiary-dark {
  background-color: var(--batcom-color-container-tertiary-dark-bg);
}
.batcom-container--white {
  background-color: #fff;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--primary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--primary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--secondary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--secondary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--tertiary-light:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--tertiary-dark:where(:not(.batcom-container--background-full-page-width)) {
  padding: var(--batcom-layout-container-padding);
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
  padding: var(--batcom-layout-container-padding);
  margin-left: calc(-0.5 * var(--batcom-layout-content-left-right-margin));
  width: 100vw;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
    margin-left: calc(50% - 50vw);
    padding: var(--batcom-layout-container-padding) calc(50vw - var(--batcom-layout-content-max-width) / 2);
  }
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width:not(.batcom-container--noSpacing) > .cmp-container, .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width > .cmp-container {
    width: calc(100vw - var(--batcom-layout-content-left-right-margin) * 2);
    max-width: var(--batcom-layout-content-max-width);
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1023px) {
  .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width {
    padding-right: calc(0.5 * var(--batcom-layout-content-left-right-margin));
    padding-left: calc(0.5 * var(--batcom-layout-content-left-right-margin));
  }
  .blog-article .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--background-full-page-width .batcom-container--narrow-page-width {
    margin: calc(var(--batcom-layout-container-padding) * -1);
    width: 100vw;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--full-page-width {
  padding: var(--batcom-layout-container-padding);
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--full-width-no-padding {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
  --batcom-layout-narrow-max-width: 883px;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
    width: var(--batcom-layout-narrow-max-width);
    padding: 62px 107px;
    margin-left: calc(50% - var(--batcom-layout-narrow-max-width) * 0.5);
    margin-top: -200px;
  }
}
@media only screen and (max-width: 1023px) {
  .blog-article .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--narrow-page-width {
    width: calc(100% + var(--batcom-layout-content-left-right-margin));
    margin: calc(-0.5 * var(--batcom-layout-content-left-right-margin));
    padding: 0 var(--batcom-layout-container-padding);
  }
}
@media only screen and (max-width: 767px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing.batcom-container--full-page-width {
    padding-top: 0;
    padding-bottom: 0;
  }
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing:not(.batcom-container--full-page-width) {
    padding: 0;
  }
  .cmp-experiencefragment--header .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing {
    padding: 0 calc(0.5 * var(--batcom-layout-content-left-right-margin));
  }
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing {
    padding: 0;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing:not(.batcom-container--background-full-page-width) > .cmp-container {
  max-width: 100%;
  width: auto;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noSpacing.batcom-sticky > .cmp-container {
  width: 100%;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--noVerticalSpacing {
  padding-top: 0;
  padding-bottom: 0;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-container--moreVerticalSpacing {
  padding-top: var(--batcom-layout-container-top-padding);
}
@media only screen and (min-width: 768px) {
  .batcom-container--half-float.batcom-container {
    margin-top: calc(var(--batcom-layout-container-float-distance-tablet) * -1);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container--half-float.batcom-container {
    margin-top: calc(var(--batcom-layout-container-float-distance-desktop) * -1);
  }
}
.batcom-container--titled {
  height: 370px;
}
@media only screen and (min-width: 768px) {
  .batcom-container--titled {
    height: 350px;
  }
}
.batcom-container--titled.batcom-rainbow-border::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-container--titled > .cmp-container {
  padding: 0 5.6vw;
  display: flex;
  height: 100%;
  align-items: flex-end;
}
@media only screen and (min-width: 768px) {
  .batcom-container--titled > .cmp-container {
    align-items: center;
  }
}
.batcom-container--titled > .cmp-container > .aem-Grid {
  margin: 55px 0 16px;
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky {
  position: fixed;
  z-index: 4;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky {
    inset: auto 0;
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
  top: 0;
  height: var(--batcom-layout-container-sticky-height-top-mobile);
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
    height: var(--batcom-layout-container-sticky-height-top-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-top {
    height: var(--batcom-layout-container-sticky-height-top-desktop);
  }
}
.batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
  bottom: 0;
  height: var(--batcom-layout-container-sticky-height-bottom-mobile);
}
@media only screen and (min-width: 768px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
    height: var(--batcom-layout-container-sticky-height-bottom-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  .batcom-container.aem-GridColumn.container.responsivegrid.batcom-sticky-bottom {
    height: var(--batcom-layout-container-sticky-height-bottom-desktop);
  }
}
.batcom-container--border-radius {
  border-radius: var(--batcom-layout-container-round-corners-border-radius);
  overflow: hidden;
}
.batcom-container--gradient-1 {
  background: var(--batcom-color-container-gradient-bg-1);
}
.batcom-container--gradient-2 {
  background: var(--batcom-color-container-gradient-bg-2);
}
.batcom-container--gradient-3 {
  background: var(--batcom-color-container-gradient-bg-3);
}
.batcom-container--children-inline > .cmp-container > .aem-Grid {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 5px 0;
  gap: 5px;
}
.batcom-container--height-full {
  height: 100%;
}
.batcom-container--height-full > .cmp-container {
  height: 100%;
}
.batcom-container--height-full > .cmp-container > .aem-Grid {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.batcom-container--height-full > .cmp-container > .aem-Grid::before, .batcom-container--height-full > .cmp-container > .aem-Grid::after {
  content: none;
}
.batcom-container--blurry {
  filter: blur(0.7rem);
}
.batcom-container:has(> .batcom-hide-parent) {
  /* stylelint-disable */
  display: none !important;
  visibility: hidden !important;
  /* stylelint-enable */
}

body:has(.batcom-sticky-top) {
  padding-top: var(--batcom-layout-container-sticky-height-top-mobile);
}
@media only screen and (min-width: 768px) {
  body:has(.batcom-sticky-top) {
    padding-top: var(--batcom-layout-container-sticky-height-top-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body:has(.batcom-sticky-top) {
    padding-top: var(--batcom-layout-container-sticky-height-top-desktop);
  }
}
body:has(.batcom-sticky-bottom) {
  padding-bottom: var(--batcom-layout-container-sticky-height-bottom-mobile);
}
@media only screen and (min-width: 768px) {
  body:has(.batcom-sticky-bottom) {
    padding-bottom: var(--batcom-layout-container-sticky-height-bottom-tablet);
  }
}
@media only screen and (min-width: 1024px) {
  body:has(.batcom-sticky-bottom) {
    padding-bottom: var(--batcom-layout-container-sticky-height-bottom-desktop);
  }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tY29udGFpbmVyL2JhdGNvbS1jb250YWluZXIuYnVuZGxlLmNzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fbG9hZGluZy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19vdmVybGF5X3Nob3J0aGFuZC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvZnVuY3Rpb25zL19ubi16LWluZGV4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2Fycm93LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NsZWFyZml4LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbXBvbmVudC1ub3JtYWxpemUuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fZm9udC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19oZWFkaW5ncy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL192aXNpYmlsaXR5LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2NvbHVtbmNvbnRyb2wuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fcmV2ZXJzZS1jb250YWluZXIuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvcHVibGlzaC9jb21wb25lbnRzL2JhdGNvbS1jb250YWluZXIvX2NvbnRhaW5lci1ib3JkZXItcmFkaXVzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tY29udGFpbmVyL19jb250YWluZXItcGFkZGluZy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9wdWJsaXNoL2NvbXBvbmVudHMvYmF0Y29tLWNvbnRhaW5lci9fY29udGFpbmVyLWhvcml6b250YWwtc2Nyb2xsLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tY29udGFpbmVyL2JhdGNvbS1jb250YWluZXIuY2xpZW50bGlicy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19tZWRpYXF1ZXJpZXMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYm9yZGVycy5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1BO0VBQ0UsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsUUFBQTtBQ0xGOztBQ0VBO0VBQ0U7SUFDRSx1Q0FBQTtFRENGO0VDRUE7SUFDRSx1Q0FBQTtFREFGO0VDR0E7SUFDRSx5QkFBQTtFRERGO0FBQ0Y7QUNJQTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxrQkFBQTtFQUNB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QWUxVU07RUFDRSxNQUFBO0VBQ0EsK0RBQUE7QWY0VVI7QWdCN2VFO0VEK0pJO0lBS0ksK0RBQUE7RWY2VVI7QUFDRjtBZ0I3ZEU7RUQwSUk7SUFTSSxnRUFBQTtFZjhVUjtBQUNGO0FleFZNO0VBQ0UsU0FBQTtFQUNBLGtFQUFBO0FmMFZSO0FnQjNmRTtFRCtKSTtJQUtJLGtFQUFBO0VmMlZSO0FBQ0Y7QWdCM2VFO0VEMElJO0lBU0ksbUVBQUE7RWY0VlI7QUFDRjtBZXZWRTtFQUNFLHlFQUFBO0VBQ0EsZ0JBQUE7QWZ5Vko7QWV0VkU7RUFDRSx1REFBQTtBZndWSjtBZXJWRTtFQUNFLHVEQUFBO0FmdVZKO0FlcFZFO0VBQ0UsdURBQUE7QWZzVko7QWVqVk07RUFDRSxhQUFBO0VBQ0EscUJBQUE7RUFDQSx1QkFBQTtFQUNBLGNBQUE7RUFDQSxRQUFBO0FmbVZSO0FlN1VFO0VBQ0UsWUFBQTtBZitVSjtBZTdVSTtFQUNFLFlBQUE7QWYrVU47QWU1VUk7RUFDRSxZQUFBO0VBQ0EsYUFBQTtFQUNBLHNCQUFBO0VBQ0EsOEJBQUE7QWY4VU47QWU1VU07RUFFRSxhQUFBO0FmNlVSO0FleFVFO0VBQ0Usb0JBQUE7QWYwVUo7QWV2VUU7RU5wUEEsc0JBQUE7RUFDQSx3QkFBQTtFQUNBLDZCQUFBO0VBQ0EscUJBQUE7QVQ4akJGOztBZXRVSTtFQUNFLG9FQUFBO0FmeVVOO0FnQnJqQkU7RUQyT0U7SUFJSSxvRUFBQTtFZjBVTjtBQUNGO0FnQnJpQkU7RURzTkU7SUFRSSxxRUFBQTtFZjJVTjtBQUNGO0FlcFZJO0VBQ0UsMEVBQUE7QWZzVk47QWdCbGtCRTtFRDJPRTtJQUlJLDBFQUFBO0VmdVZOO0FBQ0Y7QWdCbGpCRTtFRHNORTtJQVFJLDJFQUFBO0Vmd1ZOO0FBQ0YiLCJmaWxlIjoiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYmFzZS9jbGllbnRsaWJzL3B1Ymxpc2gvY29tcG9uZW50cy9iYXRjb20tY29udGFpbmVyL2JhdGNvbS1jb250YWluZXIuYnVuZGxlLmNzcyJ9 */