/**
 * @param {string} $scheme - The color scheme of the button. Options are nothing, $scheme-light, $scheme-dark
 * if $scheme-dark is passed, the button will be black text and black outline
 * if $scheme-light is passed, the button will be white text and white outline
 * if no $scheme is passed, the button will depend on the background color via the bg-dark mixin
 *   - if ancestor DOES have bg-dark, then white text and white outline
 *   - if ancestor DOES NOT have bg-dark, then black text and black outline
 */
.layout-section[data-v-2ad65a1c] {
  width: 100%;
  height: auto;
  isolation: isolate;
}
.layout-section .bgcolor-fadescroll[data-v-2ad65a1c] {
  z-index: 200;
}
.layout-section .bgcolor-simple[data-v-2ad65a1c],
.layout-section .nobgcolor[data-v-2ad65a1c] {
  z-index: 100;
}
.layout-section .section-content[data-v-2ad65a1c] {
  isolation: isolate;
  z-index: 200;
}
.layout-section .section-background[data-v-2ad65a1c] {
  isolation: isolate;
  z-index: 100;
}
.layout-section .section-background[data-v-2ad65a1c],
.layout-section .section-background__media[data-v-2ad65a1c],
.layout-section .section-background__scrim[data-v-2ad65a1c] {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.layout-section .bgcolor-fadescroll .section-background[data-v-2ad65a1c] {
  position: fixed;
  transition: opacity 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  pointer-events: none;
}
.layout-section .bgcolor-fadescroll.-initiatives-active .section-background[data-v-2ad65a1c] {
  position: fixed;
  transition: opacity 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  pointer-events: all;
}