@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-copy {
  max-width: 75em;
  width: calc(100% - 2rem);
  margin-left: auto !important;
  margin-right: auto !important;
  --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.
  }
  */
  color: var(--theme-text-color);
}
.component-copy .field--name-field-title {
  padding-bottom: 6rem;
}
.component-copy .field--name-field-title h1,
.component-copy .field--name-field-title h2,
.component-copy .field--name-field-title h3,
.component-copy .field--name-field-title h4,
.component-copy .field--name-field-title h5,
.component-copy .field--name-field-title h6 {
  font-size: 2.5rem;
  line-height: 2.9375rem;
  color: var(--theme-header-color);
  display: inline-block;
  font-family: "MacklinSlab", "Times", serif;
  margin: 0;
  position: relative;
  text-transform: none;
  width: auto;
  z-index: 1;
}
.component-copy .field--name-field-title h1::after,
.component-copy .field--name-field-title h2::after,
.component-copy .field--name-field-title h3::after,
.component-copy .field--name-field-title h4::after,
.component-copy .field--name-field-title h5::after,
.component-copy .field--name-field-title h6::after {
  display: inline-block;
  content: "";
  background-image: url("../../../images/yellow-title-highlight.svg");
  background-size: 130px 20px;
  background-position: bottom;
  background-repeat: no-repeat;
  height: 20px;
  width: 130px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(0, 4rem);
          transform: translate(0, 4rem);
  z-index: -1;
}
@media (min-width: 48.01em) {
  .component-copy .field--name-field-title h1::after,
.component-copy .field--name-field-title h2::after,
.component-copy .field--name-field-title h3::after,
.component-copy .field--name-field-title h4::after,
.component-copy .field--name-field-title h5::after,
.component-copy .field--name-field-title h6::after {
    background-size: 200px 20px;
    left: 0;
    -webkit-transform: translate(0, 4rem);
            transform: translate(0, 4rem);
    width: 200px;
  }
}
/*# sourceMappingURL=../../maps/libraries/paragraph/full--copy.css.map */
