@charset "UTF-8";
/**
 * Globals
 * An import of all abstracts
 */
/**
 * Vendor
 * For files that need compiling
 */
/**
 * This themes global styles
 */
/**
 * Root Font Sizing
 */
/**
 * Type sets
 * Defines a type grouping that can be looped over and generate utility classes
 */
/**
 * Grid and Grid Gap
 */
/**
 * Vertical Gap
 */
/**
 * Horizontal Gap
 */
/**
 * Container widths
 */
/**
 * Global Variables
 */
@-webkit-keyframes scale-LR {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scale-LR {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
/** No-space
 * Removes the default space, border, and padding place on a component
 */
/** Grid row
 * Sets row up for the grid
 */
/** Grid row gutters
 * IF $gutter-horizontal = true: set the sides gap width
 * ELSE $gutter-vertical = false: remove the top and bottom gap width
 * IF $gutter-vertical = true: set the top and bottom gap width
 * ELSE $gutter-vertical = false: remove the top and bottom gap width
 * IF $gutter-horizontal-size & $gutter-vertical-size = wide: large sized space between items
 * IF $gutter-horizontal-size & $gutter-vertical-size = wide-lg: large sized space between items only on the lg breakpoint
 * IF $gutter-horizontal-size & $gutter-vertical-size = narrow: small sized space between items
 * ELSE $gutter-horizontal-size & $gutter-vertical-size = default: regular sized space between items
 */
/** Grid columns
 * IF = auto: fits the available space
 * ELSE IF = variable: fits the width of it's content
 * ELSE span the amount of columns provided
 */
/** Grid Spacing Clear
 * Clears first and last grid row margin or padding
 * Declare on column class: @include grid-clear-vertical-spacing(2);
 * Options:
 * • $columns(value = 1 to n) - default = 1
 * • $property(value = margin or padding) - default = margin, sets to 0
 */
/** Grid class generators
 * Generates classes for each column and offset by default and breakpoint
 */
/**
 * Hide Text
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 * See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
/**
 * Hide Element
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
/**
 * Component
 */
.component-story-scroll-split {
  padding-left: 1rem;
  padding-right: 1rem;
  --theme-bg-color: #F2ECD5;
  --theme-text-bg-color: #FFFFFF;
  --theme-header-color: #0031A7;
  --theme-header-font: MacklinSlab, Times, serif;
  --theme-text-color: #0031A7;
  --theme-cta-color: #FFFFFF;
  --theme-cta-color--secondary: #0031A7;
  /*
  @if $theme == 'light' {
    // All of the light theme should be defaults.
    // This is here for placeholder purposes.
  }
  */
  margin: 0;
  padding: 0;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split {
    display: grid;
    grid-template-columns: [fullWidth-start] minmax(1.5rem, calc((100% - 75rem) / 2)) [content-start] 1fr [content-end] minmax(1.5rem, calc((100% - 75rem) / 2)) [fullWidth-end];
  }
}
@media (min-width: 80.01em) {
  .component-story-scroll-split {
    padding-left: 0;
    padding-right: 0;
  }
}
.component-story-scroll-split.content-vertical-alignment--middle .component-story-scroll__content, .component-story-scroll-split.content-vertical-alignment--top .component-story-scroll__content, .component-story-scroll-split.content-vertical-alignment--bottom .component-story-scroll__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.component-story-scroll-split.content-vertical-alignment--middle .component-story-scroll__content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.component-story-scroll-split.content-vertical-alignment--top .component-story-scroll__content {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.component-story-scroll-split.content-vertical-alignment--bottom .component-story-scroll__content {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.component-story-scroll-split .component-story-scroll-split__content {
  grid-column: content;
}
.component-story-scroll-split .component-story-scroll__inner {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split .component-story-scroll__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-column: fullWidth;
  }
}
.component-story-scroll-split .field--name-field-title {
  padding: 0;
  text-align: center;
  margin-bottom: 3rem;
}
.component-story-scroll-split .field--name-field-title h1,
.component-story-scroll-split .field--name-field-title h2,
.component-story-scroll-split .field--name-field-title h3,
.component-story-scroll-split .field--name-field-title h4,
.component-story-scroll-split .field--name-field-title h5,
.component-story-scroll-split .field--name-field-title h6 {
  font-size: 1.5rem;
  line-height: 2.375rem;
  color: var(--theme-header-color);
  display: inline-block;
  font-family: "MacklinSlab", "Times", serif;
  margin: 0;
  padding: 0;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.component-story-scroll-split .field--name-field-title h1::after,
.component-story-scroll-split .field--name-field-title h2::after,
.component-story-scroll-split .field--name-field-title h3::after,
.component-story-scroll-split .field--name-field-title h4::after,
.component-story-scroll-split .field--name-field-title h5::after,
.component-story-scroll-split .field--name-field-title h6::after {
  content: "";
  background-image: url("../../../images/yellow-title-highlight.svg");
  background-size: 65px 15px;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 15px;
  width: 65px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 3rem);
          transform: translate(-50%, 3rem);
  z-index: -1;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split .field--name-field-title h1::after,
.component-story-scroll-split .field--name-field-title h2::after,
.component-story-scroll-split .field--name-field-title h3::after,
.component-story-scroll-split .field--name-field-title h4::after,
.component-story-scroll-split .field--name-field-title h5::after,
.component-story-scroll-split .field--name-field-title h6::after {
    background-size: 100px 15px;
    width: 100px;
  }
}
@media (min-width: 48.01em) {
  .component-story-scroll-split .field--name-field-title {
    padding-left: 6.5rem;
    text-align: left;
  }
}
.component-story-scroll-split .component-story-scroll__content {
  background-color: var(--theme-text-bg-color);
  border-radius: 7px;
  padding: 2rem;
  color: var(--theme-text-color);
  background-color: var(--theme-bg-color);
  margin: -4rem 2rem 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 2rem 2rem 3rem !important;
  position: relative;
}
.component-story-scroll-split .component-story-scroll__content .field--name-field-title {
  color: var(--theme-header-color);
}
@media (min-width: 48.01em) {
  .component-story-scroll-split .component-story-scroll__content {
    margin: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 2rem 4rem 3rem 6.5rem !important;
  }
}
.component-story-scroll-split .component-story-scroll__content:after {
  content: none;
  width: 2rem;
  height: 100%;
  position: absolute;
  background-color: var(--theme-bg-color);
  top: 0;
  right: -1rem;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split .component-story-scroll__content:after {
    content: "";
  }
}
.component-story-scroll-split .component-story-scroll__media {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  z-index: -1;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split .component-story-scroll__media {
    z-index: 1;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.component-story-scroll-split .field--name-field-media-item {
  height: 100%;
  width: 100%;
}
.component-story-scroll-split .field--name-field-media-item .media--image,
.component-story-scroll-split .field--name-field-media-item .media--image > *,
.component-story-scroll-split .field--name-field-media-item .media--image > * > * {
  border-radius: 7px;
  height: 100%;
  width: 100%;
}
.component-story-scroll-split .field--name-field-media-item img {
  -o-object-fit: cover;
     object-fit: cover;
}
.component-story-scroll-split .field--name-field-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  padding: 1.5rem 0 0;
}
.component-story-scroll-split .field--name-field-cta .field__item {
  min-width: 245px;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split .field--name-field-cta .field__item {
    min-width: 270px;
  }
}
.component-story-scroll-split .field--name-field-cta button,
.component-story-scroll-split .field--name-field-cta a,
.component-story-scroll-split .field--name-field-cta input[type=submit] {
  background-color: transparent;
  background-image: url("../../../images/cta-red-tomato.svg");
  background-size: 100% 68px;
  border: 0;
  color: var(--theme-cta-color);
  font-family: "MacklinSlab", "Times", serif;
  font-size: 1.5rem;
  font-weight: bold;
  height: 68px;
  min-width: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 2rem;
}
.component-story-scroll-split .field--name-field-cta .field__item:nth-child(2) {
  margin: 1rem 0 0;
}
.component-story-scroll-split .field--name-field-cta .field__item:nth-child(2) a {
  background-color: transparent;
  background-image: url("../../../images/cta-secondary-dark.svg");
  background-position: 0 3px;
  background-repeat: no-repeat;
  background-size: 100% 68px;
  height: 68px;
  color: var(--theme-cta-color--secondary);
  margin: 0;
}
@media (min-width: 1051px) {
  .component-story-scroll-split .field--name-field-cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-align-items: flex-start;
    -ms-flex-align: flex-start;
    -webkit-box-align: start;
            align-items: flex-start;
  }
  .component-story-scroll-split .field--name-field-cta .field__item:nth-child(2) {
    margin: 0 0 0 1rem;
  }
}
.component-story-scroll-split.paragraph--themed-dark-background {
  --theme-bg-color: #F2ECD5;
  --theme-text-bg-color: #FFFFFF;
  --theme-header-color: #0031A7;
  --theme-header-font: MacklinSlab, Times, serif;
  --theme-text-color: #0031A7;
  --theme-cta-color: #FFFFFF;
  --theme-cta-color--secondary: #0031A7;
  /*
  @if $theme == 'light' {
    // All of the light theme should be defaults.
    // This is here for placeholder purposes.
  }
  */
  --theme-text-bg-color: #0031A7;
  --theme-header-color: #FCD405;
  --theme-text-color: #FFFFFF;
  --theme-bg-color: #FFFFFF;
  --theme-cta-color: #F2ECD5;
}
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-title h1,
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-title h2,
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-title h3,
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-title h4,
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-title h5,
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-title h6 {
  --theme-header-color: #0031A7;
}
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__inner h1,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__inner h2,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__inner h3,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__inner h4,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__inner h5,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__inner h6 {
  --theme-header-color: #FFFFFF;
}
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content {
  background-color: var(--theme-text-bg-color);
  border-radius: 7px;
  padding: 2rem;
  color: var(--theme-text-color);
}
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-title {
  color: var(--theme-header-color);
}
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h2:first-of-type,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h3:first-of-type,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h4:first-of-type,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h5:first-of-type,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h6:first-of-type {
  font-size: 1.5rem;
  line-height: 2.375rem;
  margin-top: 0;
  padding-top: 0.5rem;
  color: #FFFFFF;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h2:first-of-type,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h3:first-of-type,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h4:first-of-type,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h5:first-of-type,
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content .field--name-field-content > h6:first-of-type {
    font-size: 2.5rem;
    line-height: 2.9375rem;
  }
}
.component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content:after {
  background-color: #0031A7;
  content: none;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split.paragraph--themed-dark-background .component-story-scroll__content:after {
    content: "";
  }
}
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  padding: 1.5rem 0 0;
}
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta .field__item {
  min-width: 245px;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta .field__item {
    min-width: 270px;
  }
}
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta button,
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta a,
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta input[type=submit] {
  background-color: transparent;
  background-image: url("../../../images/cta-red-tomato.svg");
  background-size: 100% 68px;
  border: 0;
  color: var(--theme-cta-color);
  font-family: "MacklinSlab", "Times", serif;
  font-size: 1.5rem;
  font-weight: bold;
  height: 68px;
  min-width: 270px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 2rem;
}
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta .field__item:nth-child(2) {
  margin: 1rem 0 0;
}
.component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta .field__item:nth-child(2) a {
  background-color: transparent;
  background-image: url("../../../images/cta-secondary-dark.svg");
  background-position: 0 3px;
  background-repeat: no-repeat;
  background-size: 100% 68px;
  height: 68px;
  color: var(--theme-cta-color--secondary);
  margin: 0;
}
@media (min-width: 1051px) {
  .component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-align-items: flex-start;
    -ms-flex-align: flex-start;
    -webkit-box-align: start;
            align-items: flex-start;
  }
  .component-story-scroll-split.paragraph--themed-dark-background .field--name-field-cta .field__item:nth-child(2) {
    margin: 0 0 0 1rem;
  }
}
.component-story-scroll-split.caret-heading h1,
.component-story-scroll-split.caret-heading h2,
.component-story-scroll-split.caret-heading h3,
.component-story-scroll-split.caret-heading h4,
.component-story-scroll-split.caret-heading h5,
.component-story-scroll-split.caret-heading h6,
.component-story-scroll-split.caret-heading .field--name-field-title {
  padding-left: 0;
}
.component-story-scroll-split.caret-heading h1::after,
.component-story-scroll-split.caret-heading h2::after,
.component-story-scroll-split.caret-heading h3::after,
.component-story-scroll-split.caret-heading h4::after,
.component-story-scroll-split.caret-heading h5::after,
.component-story-scroll-split.caret-heading h6::after,
.component-story-scroll-split.caret-heading .field--name-field-title::after {
  border: solid var(--theme-header-color);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 0.5em;
  height: 0.5em;
  background-image: none;
  position: static;
  margin: 0 0 2px 10px;
}
@media (min-width: 48.01em) {
  .component-story-scroll-split.component-content--media-layout-right-floated .component-story-scroll__inner {
    grid-template-columns: 0.95fr 1fr;
  }
  .component-story-scroll-split.component-content--media-layout-right-floated .component-story-scroll__inner .field--name-field-media-item .media--image,
.component-story-scroll-split.component-content--media-layout-right-floated .component-story-scroll__inner .field--name-field-media-item .media--image > *,
.component-story-scroll-split.component-content--media-layout-right-floated .component-story-scroll__inner .field--name-field-media-item .media--image > * > * {
    border-radius: 7px 0 0 7px;
  }
  .component-story-scroll-split.component-content--media-layout-right-floated .component-story-scroll__inner .component-story-scroll__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .component-story-scroll-split.component-content--media-layout-right-floated .component-story-scroll__inner .component-story-scroll__content:after {
    left: -1em;
    right: auto;
  }
  .component-story-scroll-split.component-content--media-layout-right-floated .component-story-scroll__inner .component-story-scroll__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
/*# sourceMappingURL=../../maps/libraries/paragraph/full--story-scroll-split.css.map */
