@charset "UTF-8";
/**
 * 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-image-split {
  --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.
  }
  */
  background-color: var(--theme-bg-color);
  width: 100vw;
  margin-top: 3rem;
  position: relative;
  padding: 2rem 0 0;
}
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-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;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  padding: 3rem 0 0;
}
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta .field__item {
  min-width: 245px;
}
@media (min-width: 48.01em) {
  .component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta .field__item {
    min-width: 270px;
  }
}
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta button,
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta a,
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-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-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta .field__item:nth-child(2) {
  margin: 1rem 0 0;
}
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-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-image-split.cff-turkey-talk-line.paragraph--themed-light-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-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta .field__item:nth-child(2) {
    margin: 0 0 0 1rem;
  }
}
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta button,
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta a,
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta input[type=submit] {
  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: #0031A7;
}
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta .field__item {
  margin: 1rem 0 0;
}
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta .field__item:nth-child(2) {
  margin: 0;
}
@media (max-width: 47.99em) {
  .component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta .field__item:nth-child(2) a {
    background-color: transparent;
    background-image: url("../../../images/cta-pirmary-alt.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 68px;
    height: 68px;
    color: var(--theme-cta-color);
    margin: 0;
  }
}
@media (min-width: 48.01em) {
  .component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta .field__item:nth-child(2) {
    margin: 1rem 0 0 1rem;
  }
  .component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta button,
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta a,
.component-image-split.cff-turkey-talk-line.paragraph--themed-light-background .field--name-field-cta input[type=submit] {
    background-color: transparent;
    background-image: url("../../../images/cta-pirmary-alt.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 68px;
    height: 68px;
    color: #FFFFFF;
  }
}
@media (min-width: 48.01em) {
  .component-image-split {
    margin-left: 0;
    padding: 4.3125rem 0;
    margin-bottom: 4rem;
  }
}
.component-image-split .component-image-split__content {
  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];
}
.component-image-split .image-split__outer {
  grid-column: fullWidth;
  margin: 0;
}
@media (min-width: 48.01em) {
  .component-image-split .image-split__outer {
    grid-column: content;
  }
}
@media (min-width: 48.01em) {
  .component-image-split .image-split__inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    position: relative;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    align-self: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.component-image-split .image-split__content {
  background-color: var(--theme-text-bg-color);
  border-radius: 7px;
  padding: 2rem;
  color: var(--theme-text-color);
  display: block;
  padding: 3rem 3rem 2rem;
  z-index: 1;
  position: relative;
  margin: 0 1.5rem;
}
.component-image-split .image-split__content .field--name-field-title {
  color: var(--theme-header-color);
}
@media (min-width: 48.01em) {
  .component-image-split .image-split__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 1;
    -ms-flex-item-align: center;
        align-self: center;
    margin: 0;
    padding: 4rem 5rem;
    width: 115%;
  }
}
.component-image-split .image-split__media {
  margin-top: -4rem;
  z-index: inherit;
  position: relative;
}
@media (min-width: 48.01em) {
  .component-image-split .image-split__media {
    left: inherit;
    position: inherit;
    width: 100%;
    margin-top: 0;
    z-index: 0;
  }
}
.component-image-split .image-split__media picture img {
  width: 100%;
  height: 100%;
}
@media (min-width: 48.01em) {
  .component-image-split .image-split__media picture img {
    border-radius: 7px;
    margin: 0;
    width: 100%;
    padding: 0;
  }
}
.component-image-split .image-split__media .video-player__media-overlay {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.component-image-split .image-split__media .video-player__media-overlay .video-player__play-button {
  background-image: url("../../../images/video-play-icon-mobile.svg");
  background-size: contain;
  display: block;
  width: 80px;
  height: 80px;
  cursor: pointer;
}
.component-image-split .video-player__modal {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 501;
}
.component-image-split .video-player__modal .video-player__modal-close-button {
  position: absolute;
  right: 2rem;
  top: 8rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 1;
}
.component-image-split .video-player__modal .video-player__modal-close-button:before, .component-image-split .video-player__modal .video-player__modal-close-button:after {
  position: absolute;
  left: 0.9375rem;
  content: " ";
  height: 2.0625rem;
  width: 0.125rem;
  background-color: #FCD405;
}
.component-image-split .video-player__modal .video-player__modal-close-button::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.component-image-split .video-player__modal .video-player__modal-close-button::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.component-image-split .video-player__modal .video-player__video-container {
  width: 854px;
  height: 480px;
}
.component-image-split .video-player__modal .video-embed-field-responsive-video {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.component-image-split .field--name-field-title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  padding-bottom: 3rem;
}
.component-image-split .field--name-field-title h1,
.component-image-split .field--name-field-title h2,
.component-image-split .field--name-field-title h3,
.component-image-split .field--name-field-title h4,
.component-image-split .field--name-field-title h5,
.component-image-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-image-split .field--name-field-title h1::after,
.component-image-split .field--name-field-title h2::after,
.component-image-split .field--name-field-title h3::after,
.component-image-split .field--name-field-title h4::after,
.component-image-split .field--name-field-title h5::after,
.component-image-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-image-split .field--name-field-title h1::after,
.component-image-split .field--name-field-title h2::after,
.component-image-split .field--name-field-title h3::after,
.component-image-split .field--name-field-title h4::after,
.component-image-split .field--name-field-title h5::after,
.component-image-split .field--name-field-title h6::after {
    background-size: 100px 15px;
    width: 100px;
  }
}
.component-image-split .field--name-field-title h1,
.component-image-split .field--name-field-title h2,
.component-image-split .field--name-field-title h3,
.component-image-split .field--name-field-title h4,
.component-image-split .field--name-field-title h5,
.component-image-split .field--name-field-title h6 {
  text-transform: none;
}
@media (min-width: 48.01em) {
  .component-image-split .field--name-field-title {
    -ms-align-items: flex-start;
    -ms-flex-align: flex-start;
    -webkit-box-align: start;
            align-items: flex-start;
    -ms-justify-content: flex-start;
    -ms-flex-pack: flex-start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    text-align: left;
    padding-bottom: 3.5rem;
  }
  .component-image-split .field--name-field-title h1,
.component-image-split .field--name-field-title h2,
.component-image-split .field--name-field-title h3,
.component-image-split .field--name-field-title h4,
.component-image-split .field--name-field-title h5,
.component-image-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;
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .component-image-split .field--name-field-title h1::after,
.component-image-split .field--name-field-title h2::after,
.component-image-split .field--name-field-title h3::after,
.component-image-split .field--name-field-title h4::after,
.component-image-split .field--name-field-title h5::after,
.component-image-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) and (min-width: 48.01em) {
  .component-image-split .field--name-field-title h1::after,
.component-image-split .field--name-field-title h2::after,
.component-image-split .field--name-field-title h3::after,
.component-image-split .field--name-field-title h4::after,
.component-image-split .field--name-field-title h5::after,
.component-image-split .field--name-field-title h6::after {
    background-size: 100px 15px;
    width: 100px;
  }
}
@media (min-width: 48.01em) {
  .component-image-split .field--name-field-title h1::after,
.component-image-split .field--name-field-title h2::after,
.component-image-split .field--name-field-title h3::after,
.component-image-split .field--name-field-title h4::after,
.component-image-split .field--name-field-title h5::after,
.component-image-split .field--name-field-title h6::after {
    background-size: 130px 20px;
    height: 20px;
    -webkit-transform: translate(-50%, 4rem);
            transform: translate(-50%, 4rem);
    width: 130px;
  }
}
@media (min-width: 48.01em) and (min-width: 48.01em) {
  .component-image-split .field--name-field-title h1::after,
.component-image-split .field--name-field-title h2::after,
.component-image-split .field--name-field-title h3::after,
.component-image-split .field--name-field-title h4::after,
.component-image-split .field--name-field-title h5::after,
.component-image-split .field--name-field-title h6::after {
    background-size: 200px 20px;
    width: 200px;
  }
}
@media (min-width: 48.01em) {
  .component-image-split .field--name-field-title h1,
.component-image-split .field--name-field-title h2,
.component-image-split .field--name-field-title h3,
.component-image-split .field--name-field-title h4,
.component-image-split .field--name-field-title h5,
.component-image-split .field--name-field-title h6 {
    text-transform: none;
  }
  .component-image-split .field--name-field-title h1:after,
.component-image-split .field--name-field-title h2:after,
.component-image-split .field--name-field-title h3:after,
.component-image-split .field--name-field-title h4:after,
.component-image-split .field--name-field-title h5:after,
.component-image-split .field--name-field-title h6:after {
    left: 6rem;
  }
}
.component-image-split.paragraph--themed-light-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.
  }
  */
  position: relative;
}
.component-image-split.paragraph--themed-light-background::before {
  content: none;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-light-background::before {
    background-color: #FFFFFF;
    content: "";
    height: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.component-image-split.paragraph--themed-light-background::after {
  content: "";
  background-image: url("../../../images/scallop-edge.svg");
  height: 6px;
  width: 100%;
  position: absolute;
  background-size: 29px 6px;
  background-repeat: repeat-x;
  background-position: initial;
  top: -6px;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-light-background::after {
    top: calc(50% - 6px);
  }
}
.component-image-split.paragraph--themed-light-background > div {
  position: relative;
  z-index: 1;
}
.component-image-split.paragraph--themed-light-background .image-split__content .pseudo--mobile-stamp-field {
  display: block;
  position: absolute;
  top: -4rem;
  bottom: auto;
  left: 16px;
  right: auto;
  margin: 0;
  z-index: 1;
  -webkit-transform: rotateZ(-13deg);
          transform: rotateZ(-13deg);
}
.component-image-split.paragraph--themed-light-background .image-split__content .pseudo--mobile-stamp-field svg {
  height: 100px;
  width: 100px;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-light-background .image-split__content .pseudo--mobile-stamp-field {
    display: none;
  }
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-light-background .image-split__media {
    min-height: 515px;
    height: 100%;
  }
}
.component-image-split.paragraph--themed-light-background .image-split__media .field--name-field-media-item,
.component-image-split.paragraph--themed-light-background .image-split__media .field--name-field-media-item .media,
.component-image-split.paragraph--themed-light-background .image-split__media .field--name-field-media-item .media picture {
  width: 100%;
  height: 100%;
}
.component-image-split.paragraph--themed-light-background .image-split__media .field--name-field-media-item .media picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-light-background .image-split__media .video-player__media-overlay {
    width: 88%;
  }
}
.component-image-split.paragraph--themed-light-background .pseudo--desktop-stamp-field {
  display: none;
  position: absolute;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-light-background .pseudo--desktop-stamp-field {
    display: block;
    top: auto;
    bottom: -126px;
    left: auto;
    right: -16px;
    margin: 0;
    -webkit-transform: rotateZ(-13deg);
            transform: rotateZ(-13deg);
  }
  .component-image-split.paragraph--themed-light-background .pseudo--desktop-stamp-field svg {
    height: 130px;
    width: 130px;
  }
}
@media (min-width: 61.26em) {
  .component-image-split.paragraph--themed-light-background .pseudo--desktop-stamp-field svg {
    height: 150px;
    width: 150px;
  }
}
@media (min-width: 71.385em) {
  .component-image-split.paragraph--themed-light-background .pseudo--desktop-stamp-field svg {
    height: 180px;
    width: 180px;
  }
}
.component-image-split.paragraph--themed-light-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: 3rem 0 0;
}
.component-image-split.paragraph--themed-light-background .field--name-field-cta .field__item {
  min-width: 245px;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-light-background .field--name-field-cta .field__item {
    min-width: 270px;
  }
}
.component-image-split.paragraph--themed-light-background .field--name-field-cta button,
.component-image-split.paragraph--themed-light-background .field--name-field-cta a,
.component-image-split.paragraph--themed-light-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-image-split.paragraph--themed-light-background .field--name-field-cta .field__item:nth-child(2) {
  margin: 1rem 0 0;
}
.component-image-split.paragraph--themed-light-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-image-split.paragraph--themed-light-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-image-split.paragraph--themed-light-background .field--name-field-cta .field__item:nth-child(2) {
    margin: 0 0 0 1rem;
  }
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-light-background.component-content--media-layout-right-floated .image-split__inner {
    grid-template-columns: 1.25fr 1fr;
  }
  .component-image-split.paragraph--themed-light-background.component-content--media-layout-right-floated .image-split__inner .image-split__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: -15%;
  }
  .component-image-split.paragraph--themed-light-background.component-content--media-layout-right-floated .image-split__inner .image-split__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .component-image-split.paragraph--themed-light-background.component-content--media-layout-right-floated .image-split__inner .image-split__media .video-player__media-overlay {
    left: 0;
    right: auto;
  }
}
.component-image-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;
  position: relative;
  overflow: hidden;
}
.component-image-split.paragraph--themed-dark-background::before {
  content: none;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background::before {
    background-color: #FFFFFF;
    content: "";
    height: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.component-image-split.paragraph--themed-dark-background::after {
  content: "";
  background-image: url("../../../images/scallop-edge.svg");
  height: 6px;
  width: 100%;
  position: absolute;
  background-size: 29px 6px;
  background-repeat: repeat-x;
  background-position: initial;
  top: -6px;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background::after {
    top: calc(50% - 6px);
  }
}
.component-image-split.paragraph--themed-dark-background > div {
  position: relative;
  z-index: 1;
}
.component-image-split.paragraph--themed-dark-background::before {
  content: "";
  background-color: #F2ECD5;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 20%;
  left: 0;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background::before {
    content: "";
    height: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.component-image-split.paragraph--themed-dark-background::after {
  top: calc(20% - 6px);
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background::after {
    top: -6px;
  }
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background {
    overflow: visible;
  }
}
.component-image-split.paragraph--themed-dark-background .field--name-field-title h1:after,
.component-image-split.paragraph--themed-dark-background .field--name-field-title h2:after,
.component-image-split.paragraph--themed-dark-background .field--name-field-title h3:after,
.component-image-split.paragraph--themed-dark-background .field--name-field-title h4:after,
.component-image-split.paragraph--themed-dark-background .field--name-field-title h5:after,
.component-image-split.paragraph--themed-dark-background .field--name-field-title h6:after {
  content: none;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background .field--name-field-title {
    -ms-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
  }
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background .image-split__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
.component-image-split.paragraph--themed-dark-background .image-split__content {
  position: relative;
  z-index: 1;
  padding: 4rem;
}
.component-image-split.paragraph--themed-dark-background .image-split__content::after {
  content: none;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background .image-split__content {
    z-index: 0;
    width: inherit;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .component-image-split.paragraph--themed-dark-background .image-split__content::after {
    content: "";
    height: 100%;
    width: 2rem;
    background: #0031A7;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    position: absolute;
    top: 0;
    right: 2rem;
    z-index: 0;
  }
}
.component-image-split.paragraph--themed-dark-background .image-split__content .pseudo--mobile-stamp-field {
  display: none;
}
.component-image-split.paragraph--themed-dark-background .image-split__media {
  position: relative;
  z-index: 0;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background .image-split__media {
    z-index: 1;
    min-height: 515px;
    height: 100%;
  }
}
.component-image-split.paragraph--themed-dark-background .image-split__media .field--name-field-media-item,
.component-image-split.paragraph--themed-dark-background .image-split__media .field--name-field-media-item .media,
.component-image-split.paragraph--themed-dark-background .image-split__media .field--name-field-media-item .media picture {
  width: 100%;
  height: 100%;
}
.component-image-split.paragraph--themed-dark-background .image-split__media .field--name-field-media-item .media picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.component-image-split.paragraph--themed-dark-background .pseudo--desktop-stamp-field {
  display: none;
}
.component-image-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: 3rem 0 0;
}
.component-image-split.paragraph--themed-dark-background .field--name-field-cta .field__item {
  min-width: 245px;
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background .field--name-field-cta .field__item {
    min-width: 270px;
  }
}
.component-image-split.paragraph--themed-dark-background .field--name-field-cta button,
.component-image-split.paragraph--themed-dark-background .field--name-field-cta a,
.component-image-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-image-split.paragraph--themed-dark-background .field--name-field-cta .field__item:nth-child(2) {
  margin: 1rem 0 0;
}
.component-image-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-image-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-image-split.paragraph--themed-dark-background .field--name-field-cta .field__item:nth-child(2) {
    margin: 0 0 0 1rem;
  }
}
.component-image-split.paragraph--themed-dark-background .field--name-field-cta button,
.component-image-split.paragraph--themed-dark-background .field--name-field-cta a,
.component-image-split.paragraph--themed-dark-background .field--name-field-cta input[type=submit] {
  background-color: transparent;
  background-image: url("../../../images/cta-secondary.svg");
  background-position: 0 3px;
  background-repeat: no-repeat;
  background-size: 100% 68px;
  height: 68px;
  color: var(--theme-cta-color);
}
@media (min-width: 48.01em) {
  .component-image-split.paragraph--themed-dark-background.component-content--media-layout-right-floated .image-split__inner {
    grid-template-columns: 2fr 1fr;
  }
  .component-image-split.paragraph--themed-dark-background.component-content--media-layout-right-floated .image-split__inner .image-split__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    border-radius: 0 7px 7px 0;
  }
  .component-image-split.paragraph--themed-dark-background.component-content--media-layout-right-floated .image-split__inner .image-split__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .component-image-split.paragraph--themed-dark-background.component-content--media-layout-right-floated .image-split__inner .image-split__media .video-player__media-overlay {
    left: 0;
    right: auto;
  }
}
@media (max-width: 48em) {
  .component-image-split.component-content--mobile-media-layout-right-floated {
    padding-top: 0;
  }
  .component-image-split.component-content--mobile-media-layout-right-floated .image-split__inner {
    display: grid;
    padding-bottom: 4.5rem;
  }
  .component-image-split.component-content--mobile-media-layout-right-floated .image-split__inner .image-split__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: -4rem;
  }
  .component-image-split.component-content--mobile-media-layout-right-floated .image-split__inner .image-split__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
}
/*# sourceMappingURL=../../maps/libraries/paragraph/full--image-split.css.map */
