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-hero-our-business {
  margin-left: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  margin-right: calc(-1 * var(--batcom-layout-content-left-right-margin) / 2);
  width: 100vw;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .batcom-hero-our-business {
    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-hero-our-business {
    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-hero-our-business__top-content, .batcom-hero-our-business__bottom-content {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.batcom-hero-our-business__top-content::after, .batcom-hero-our-business__bottom-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  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-hero-our-business__top-content {
  position: absolute;
  top: 400px;
  padding: 40px 4.16vw;
  width: 100vw;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .batcom-hero-our-business__top-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50vw;
    padding: 40px 5.5vw;
  }
}
.batcom-hero-our-business__top-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 768px) {
  .batcom-hero-our-business__top-title {
    font-size: 2.375rem;
    margin-bottom: 1.5875rem;
  }
}
.batcom-hero-our-business__top-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.52rem;
}
@media only screen and (min-width: 768px) {
  .batcom-hero-our-business__top-subtitle {
    font-size: 1.375rem;
    margin-bottom: 1.856rem;
  }
}
.batcom-hero-our-business__top-description {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1.35rem;
}
.batcom-hero-our-business__bottom-wrapper {
  height: 100vh;
  position: absolute;
  bottom: 0;
}
.batcom-hero-our-business__bottom-content {
  position: absolute;
  bottom: 120px;
  margin-left: 8.33vw;
  padding: 40px 5.56vw;
  width: 83.33vw;
}
@media only screen and (min-width: 768px) {
  .batcom-hero-our-business__bottom-content {
    margin-left: 11.11vw;
    width: 47.2vw;
  }
}
@media screen and (min-width: 1440px) {
  .batcom-hero-our-business__bottom-content {
    left: calc(11.11vw + (100vw - 1440px) / 2);
    margin: 0;
  }
}
.batcom-hero-our-business__bottom-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 2.66rem 0;
}
@media only screen and (min-width: 768px) {
  .batcom-hero-our-business__bottom-title {
    font-size: 38px;
  }
}
.batcom-hero-our-business__bottom-description {
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1.8562rem;
}
.batcom-hero-our-business__text {
  color: var(--batcom-color-body-text-inverted);
  position: relative;
  z-index: 1;
}
.batcom-hero-our-business__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--batcom-color-palette-1);
  opacity: 0.8;
}
.batcom-hero-our-business__bottom-content .batcom-hero-our-business__overlay {
  opacity: 0.44;
}
.batcom-hero-our-business__background .cmp-image__image {
  height: calc(100vh + 400px + 400px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .batcom-hero-our-business__background .cmp-image__image {
    height: 200vh;
  }
}
@media (pointer: fine) {
  .batcom-hero-our-business__background .cmp-image__image {
    display: none;
  }
}
@media (pointer: fine) {
  .batcom-hero-our-business__background .cmp-image {
    height: calc(100vh + 400px + 400px);
    background: transparent no-repeat center/cover fixed;
    background-image: var(--bg-hero-our-business);
  }
  .corp-hero-our-business.batcom-hero-our-business__background .cmp-image {
    background-attachment: scroll;
  }
}
@media only screen and (pointer: fine) and (min-width: 768px) {
  .batcom-hero-our-business__background .cmp-image {
    height: 200vh;
  }
}
/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL2Fic3RyYWN0cy9fYm9keV9ub3Njcm9sbC5zY3NzIiwiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYnJhbmRzL2NsaWVudGxpYnMvY29ycC9jb21wb25lbnRzL2NvcnAtaGVyby1vdXItYnVzaW5lc3MvY29ycC1oZXJvLW91ci1idXNpbmVzcy5idW5kbGUuY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvYWJzdHJhY3RzL19sb2FkaW5nLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9hYnN0cmFjdHMvX292ZXJsYXlfc2hvcnRoYW5kLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9mdW5jdGlvbnMvX25uLXotaW5kZXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYXJyb3cuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY2xlYXJmaXguc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29tcG9uZW50LW5vcm1hbGl6ZS5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19mb250LnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX2hlYWRpbmdzLnNjc3MiLCIuLi9mcm9udGVuZC9iYXRjb20vYmFzZS9jbGllbnRsaWJzL2NvbW1vbnMvc2Fzcy9taXhpbnMvX3Zpc2liaWxpdHkuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fY29sdW1uY29udHJvbC5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19yZXZlcnNlLWNvbnRhaW5lci5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2JyYW5kcy9jbGllbnRsaWJzL2NvcnAvY29tcG9uZW50cy9jb3JwLWhlcm8tb3VyLWJ1c2luZXNzL2NvcnAtaGVyby1vdXItYnVzaW5lc3MuY2xpZW50bGlicy5zY3NzIiwiLi4vZnJvbnRlbmQvYmF0Y29tL2Jhc2UvY2xpZW50bGlicy9jb21tb25zL3Nhc3MvbWl4aW5zL19tZWRpYXF1ZXJpZXMuc2NzcyIsIi4uL2Zyb250ZW5kL2JhdGNvbS9iYXNlL2NsaWVudGxpYnMvY29tbW9ucy9zYXNzL21peGlucy9fYm9yZGVycy5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQU1BO0VBQ0UsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsUUFBQTtBQ0xGOztBQ0VBO0VBQ0U7SUFDRSx1Q0FBQTtFRENGO0VDRUE7SUFDRSx1Q0FBQTtFREFGO0VDR0E7SUFDRSx5QkFBQTtFRERGO0FBQ0Y7QUNJQTtFQUNFLHFCQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxrQkFBQTtFQUNBLHNCQUFBO0VBQ0Esc0NBQUE7RUFDQSxxQkFBQTtFQUNBLGtCQUFBO0FERkY7QUNJRTtFQUVFLGtCQUFBO0VBQ0EsV0FBQTtFQUNBLHFCQUFBO0VBQ0Esa0JBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHlCQUFBO0VBQ0Esc0NBQUE7QURISjtBQ01FO0VBQ0UscUJBQUE7RUFDQSxXQUFBO0FESko7QUNPRTtFQUNFLHFCQUFBO0VBQ0EsWUFBQTtBRExKOztBRTFDQTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBRjZDRjs7QUdqREE7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Ozs7OztDQUFBO0FDQUEsd0NBQUE7QUFDQSwwREFBQTtBQUVBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNIQTs7Ozs7Ozs7Q0FBQTtBQ0FBOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0NBQUE7QUNBQTs7Ozs7Ozs7OztDQUFBO0FDQ0E7O0NBQUE7QUNLQTtFRERFLDBFQUFBO0VBQ0EsMkVBQUE7RUNHQSxZQUFBO0VBQ0Esa0JBQUE7QVptTkY7QWFwSkU7RURuRUY7SURHSSx3RUFBQTtJQUNBLHlFQUFBO0VYd05GO0FBQ0Y7QVd0TkU7RUNQRjtJRFFJLDRFQUFBO0lBQ0EsNkVBQUE7RVh5TkY7QUFDRjtBWTdORTtFQUlFLG1DQUFBO1VBQUEsMkJBQUE7QVo0Tko7QWMzT0U7RUFDRSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxTQUFBO0VBQ0EsT0FBQTtFQUNBLFdGUWtDO0VFUGxDLFdBQUE7RUFDQSxjQUFBO0VBQ0EsMGxCQUFBO0FkNk9KO0FZbE9JO0VBQ0Usa0JBQUE7RUFDQSxVQW5CNkI7RUFvQjdCLG9CQUFBO0VBQ0EsWUFBQTtFQUNBLG1CQUFBO0Fab09OO0Fhek1FO0VEaENFO0lBUUksYUFBQTtJQUNBLHNCQUFBO0lBQ0EsdUJBQUE7SUFDQSx1QkFBQTtJQUNBLE1BQUE7SUFDQSxRQUFBO0lBQ0EsYUFBQTtJQUNBLFdBQUE7SUFDQSxtQkFBQTtFWnFPTjtBQUNGO0FZbE9JO0VBQ0UsZUFBQTtFQUNBLGdCQUFBO0VBQ0EsZ0JBQUE7RUFDQSx1QkFBQTtBWm9PTjtBYTVORTtFRFpFO0lBT0ksbUJBQUE7SUFDQSx3QkFBQTtFWnFPTjtBQUNGO0FZbE9JO0VBQ0UsZUFBQTtFQUNBLGdCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxzQkFBQTtBWm9PTjtBYXhPRTtFREFFO0lBT0ksbUJBQUE7SUFDQSx1QkFBQTtFWnFPTjtBQUNGO0FZbE9JO0VBQ0UsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGdCQUFBO0VBQ0Esc0JBQUE7QVpvT047QVkvTkk7RUFDRSxhQUFBO0VBQ0Esa0JBQUE7RUFDQSxTQUFBO0FaaU9OO0FZOU5JO0VBQ0Usa0JBQUE7RUFDQSxhQUFBO0VBQ0EsbUJBQUE7RUFDQSxvQkFBQTtFQUNBLGNBQUE7QVpnT047QWFoUUU7RUQyQkU7SUFRSSxvQkFBQTtJQUNBLGFBQUE7RVppT047QUFDRjtBWS9OTTtFQVpGO0lBYUksMENBQUE7SUFDQSxTQUFBO0Vaa09OO0FBQ0Y7QVkvTkk7RUFDRSxlQUFBO0VBQ0EsZ0JBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0FaaU9OO0FhbFJFO0VENkNFO0lBT0ksZUFBQTtFWmtPTjtBQUNGO0FZL05JO0VBQ0UsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGdCQUFBO0VBQ0Esd0JBQUE7QVppT047QVk3TkU7RUFDRSw2Q0FBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtBWitOSjtBWTVORTtFQUNFLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLCtDQUFBO0VBQ0EsWUFBQTtBWjhOSjtBWTVOSTtFQUNFLGFBQUE7QVo4Tk47QVl4Tk07RUFDRSxtQ0FBQTtFQUNBLG9CQUFBO0tBQUEsaUJBQUE7QVowTlI7QWEvU0U7RURtRkk7SUFLSSxhQUFBO0VaMk5SO0FBQ0Y7QVl6TlE7RUFSRjtJQVNJLGFBQUE7RVo0TlI7QUFDRjtBWXpOTTtFQWRGO0lBZUksbUNBQUE7SUFDQSxvREFBQTtJQUNBLDZDQUFBO0VaNE5OO0VZMU5lO0lBQ1AsNkJBQUE7RVo0TlI7QUFDRjtBYW5VRTtFRGtGRTtJQXdCTSxhQUFBO0VaNk5SO0FBQ0YiLCJmaWxlIjoiLi4vc3JjL21haW4vamNyX3Jvb3QvYXBwcy9iYXRjb20vYnJhbmRzL2NsaWVudGxpYnMvY29ycC9jb21wb25lbnRzL2NvcnAtaGVyby1vdXItYnVzaW5lc3MvY29ycC1oZXJvLW91ci1idXNpbmVzcy5idW5kbGUuY3NzIn0= */