@charset "UTF-8";
/* ==========================================================================
   Import reset and base styles
   ========================================================================== */
/*
CSS Reset/defaults
Thank you to: https://hankchizljaw.com/wrote/a-modern-css-reset/
*/
/* Fixed Padding */
/* Page structure */
/* Responsive Variables */
@import url("https://fonts.googleapis.com/css2?family=Rock+Salt&family=Barlow+Condensed:wght@700&family=Barlow:wght@400;700&family=Crimson+Pro:ital@0;1&display=swap");
:root {
  --column-responsive-width: calc((100vw - (16px * 8)) / 6);
  --column-responsive-1: calc( var(--column-responsive-width) );
  --column-responsive-2: calc( (2 * var(--column-responsive-width)) + 16px );
  --column-responsive-3: calc( (3 * var(--column-responsive-width)) + (16px * 2) );
  --column-responsive-4: calc( (4 * var(--column-responsive-width)) + (16px * 3) );
  --column-responsive-5: calc( (5 * var(--column-responsive-width)) + (16px * 4) );
  --column-responsive-6: calc( (6 * var(--column-responsive-width)) + (16px * 5) );
  --responsive-padding-0: 4px;
  --responsive-padding-1: 16px;
  --responsive-padding-2: 36px;
  --responsive-padding-3: 48px;
}

@media only screen and (min-width: 30em) {
  :root {
    --responsive-padding-0: 8px;
    --responsive-padding-1: 24px;
    --responsive-padding-2: 48px;
    --responsive-padding-3: 72px;
  }
}
@media only screen and (min-width: 40em) {
  :root {
    --responsive-padding-0: 12px;
    --responsive-padding-1: 36px;
    --responsive-padding-2: 72px;
    --responsive-padding-3: 72px;
  }
}
@media only screen and (min-width: 45em) {
  :root {
    --responsive-padding-0: 16px;
    --responsive-padding-1: 48px;
    --responsive-padding-2: 72px;
    --responsive-padding-3: 128px;
  }
}
@media only screen and (min-width: 50em) {
  :root {
    --responsive-padding-0: 24px;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + *,
.u_article > * + * {
  margin-top: 32px;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* The "good" parts of HTML5 Boilerplate v7.0.1 */
/*! HTML5 Boilerplate v7.0.1 | MIT License | https://html5boilerplate.com/ */
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

html {
  roll-behavior: smooth;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
Utility Classes
========================================================================== */
/*
 * Hide visually and from screen readers
 */
.u_hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.u_visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  /* 1 */
}

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.u_visually-hidden.focusable:active,
.u_visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/*
* Hide visually and from screen readers, but maintain layout
*/
.u_invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.u_clearfix:before,
.u_clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.u_clearfix:after {
  clear: both;
}

/*
*  Commonly Used Classes
*/
.u_no-br {
  white-space: nowrap;
}

.u_center {
  text-align: center;
}

.u_highlight {
  display: inline;
  background-image: linear-gradient(yellow 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  animation: u_highlight-keyframes 0.7s ease-out forwards;
  margin-left: -0.15em;
  margin-right: -0.15em;
  padding-left: 0.15em;
  padding-right: 0.15em;
}

@keyframes u_highlight-keyframes {
  to {
    background-size: 100% 100%;
  }
}
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
@media print {
  *,
*:before,
*:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
a[href^="javascript:"]:after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}
/* ==========================================================================
   Media Queries for Responsive Design.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  .u_small-screen-only {
    display: none;
  }
}
/* Primary Color Palette */
:root {
  --blue: #0396B1;
  --black: #191919;
  --white: #FFFFFF;
  --gray-pale: #E2E7E9;
  --gray-mid: #6A868E;
  --gray-dark: #304D56;
  --yellow: #FFE457;
}

/* Tints and Shades */
/* Textures */
/* Fixed Padding */
/* Page structure */
/* Responsive Variables */
:root {
  --column-responsive-width: calc((100vw - (16px * 8)) / 6);
  --column-responsive-1: calc( var(--column-responsive-width) );
  --column-responsive-2: calc( (2 * var(--column-responsive-width)) + 16px );
  --column-responsive-3: calc( (3 * var(--column-responsive-width)) + (16px * 2) );
  --column-responsive-4: calc( (4 * var(--column-responsive-width)) + (16px * 3) );
  --column-responsive-5: calc( (5 * var(--column-responsive-width)) + (16px * 4) );
  --column-responsive-6: calc( (6 * var(--column-responsive-width)) + (16px * 5) );
  --responsive-padding-0: 4px;
  --responsive-padding-1: 16px;
  --responsive-padding-2: 36px;
  --responsive-padding-3: 48px;
}

@media only screen and (min-width: 30em) {
  :root {
    --responsive-padding-0: 8px;
    --responsive-padding-1: 24px;
    --responsive-padding-2: 48px;
    --responsive-padding-3: 72px;
  }
}
@media only screen and (min-width: 40em) {
  :root {
    --responsive-padding-0: 12px;
    --responsive-padding-1: 36px;
    --responsive-padding-2: 72px;
    --responsive-padding-3: 72px;
  }
}
@media only screen and (min-width: 45em) {
  :root {
    --responsive-padding-0: 16px;
    --responsive-padding-1: 48px;
    --responsive-padding-2: 72px;
    --responsive-padding-3: 128px;
  }
}
@media only screen and (min-width: 50em) {
  :root {
    --responsive-padding-0: 24px;
  }
}
/* Font Faces */
/* barlow-regular - latin */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/barlow-v5-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/fonts/barlow-v5-latin-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/barlow-v5-latin-regular.woff2") format("woff2"), url("/fonts/barlow-v5-latin-regular.woff") format("woff"), url("/fonts/barlow-v5-latin-regular.ttf") format("truetype"), url("/fonts/barlow-v5-latin-regular.svg#Barlow") format("svg");
  /* Legacy iOS */
}
/* barlow-700 - latin */
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/barlow-v5-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/fonts/barlow-v5-latin-700.eot?#iefix") format("embedded-opentype"), url("/fonts/barlow-v5-latin-700.woff2") format("woff2"), url("/fonts/barlow-v5-latin-700.woff") format("woff"), url("/fonts/barlow-v5-latin-700.ttf") format("truetype"), url("/fonts/barlow-v5-latin-700.svg#Barlow") format("svg");
  /* Legacy iOS */
}
/* barlow-condensed-700 - latin */
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/barlow-condensed-v5-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/fonts/barlow-condensed-v5-latin-700.eot?#iefix") format("embedded-opentype"), url("/fonts/barlow-condensed-v5-latin-700.woff2") format("woff2"), url("/fonts/barlow-condensed-v5-latin-700.woff") format("woff"), url("/fonts/barlow-condensed-v5-latin-700.ttf") format("truetype"), url("/fonts/barlow-condensed-v5-latin-700.svg#BarlowCondensed") format("svg");
  /* Legacy iOS */
}
/* rock-salt-regular - latin */
@font-face {
  font-family: "Rock Salt";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/rock-salt-v11-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/fonts/rock-salt-v11-latin-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/rock-salt-v11-latin-regular.woff2") format("woff2"), url("/fonts/rock-salt-v11-latin-regular.woff") format("woff"), url("/fonts/rock-salt-v11-latin-regular.ttf") format("truetype"), url("/fonts/rock-salt-v11-latin-regular.svg#RockSalt") format("svg");
  /* Legacy iOS */
}
/* crimson-pro-italic - latin */
@font-face {
  font-family: "Crimson Pro";
  font-style: italic;
  font-weight: 400;
  src: url("/fonts/crimson-pro-v14-latin-italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("/fonts/crimson-pro-v14-latin-italic.eot?#iefix") format("embedded-opentype"), url("/fonts/crimson-pro-v14-latin-italic.woff2") format("woff2"), url("/fonts/crimson-pro-v14-latin-italic.woff") format("woff"), url("/fonts/crimson-pro-v14-latin-italic.ttf") format("truetype"), url("/fonts/crimson-pro-v14-latin-italic.svg#CrimsonPro") format("svg");
  /* Legacy iOS */
}
/* Fixed Font Sizes */
:root {
  --font-0: 0.875rem;
  --font-1: 1rem;
  --font-2: 1.25rem;
  --font-3: 1.5rem;
  --font-4: 1.875rem;
  --font-5: 2.625rem;
  --font-6: 3.375rem;
  --font-7: 4.5rem;
  --font-8: 5.625rem;
  --font-9: 6.75rem;
}

/* Viewport Font Sizes */
:root {
  --font-vw-0: 2vw;
}

/* Responsive Font Sizes */
:root {
  --font-responsive-0: 0.875rem;
  --font-responsive-1: 1rem;
  --font-responsive-2: 1.25rem;
  --font-responsive-3: 1.875rem;
  --font-responsive-4: 3.375rem;
}

@media only screen and (min-width: 30em) {
  :root {
    --font-responsive-0: 1rem;
    --font-responsive-1: 1.25rem;
    --font-responsive-2: 1.5rem;
    --font-responsive-3: 1.875rem;
    --font-responsive-4: 4.5rem;
  }
}
@media only screen and (min-width: 40em) {
  :root {
    --font-responsive-2: 1.875rem;
    --font-responsive-3: 2.625rem;
    --font-responsive-4: 5.625rem;
  }
}
@media only screen and (min-width: 60em) {
  :root {
    --font-responsive-4: 6.75rem;
  }
}
/* ==========================================================================
   Custom Styles
   ========================================================================== */
/* GLOBAL - unscoped and tag-scoped selectors */
[inert] {
  pointer-events: none;
  cursor: default;
}

[inert], [inert] * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

html {
  background: url("/images/concrete-texture.jpg") repeat center center/auto 250px #F0F0F0;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  color: #191919;
}

::selection {
  background: rgba(255, 228, 87, 0.8);
  color: #000;
}

a {
  color: #0396B1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: var(--font-responsive-2);
  line-height: 1;
  margin: 0;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  color: #0396B1;
  font-style: normal;
}

h1,
.headline-1 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: var(--font-responsive-3);
  color: #0396B1;
  line-height: 1;
}
h1 em,
.headline-1 em {
  color: #0396B1;
}

h2,
.headline-2 {
  font-family: "Barlow", sans-serif;
  color: #191919;
  font-size: var(--font-responsive-3);
  line-height: 1;
  font-weight: 900;
}

.headline-3 {
  font-size: var(--font-responsive-2);
  line-height: 1;
}

.headline-4 {
  font-size: var(--font-responsive-2);
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  line-height: 1.25;
  text-transform: none;
  color: #191919;
}

.headline-5 {
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.07em;
  font-weight: 900;
  font-size: var(--font-responsive-0);
}

/* BLOCK__ELEMENT--MODIFIERS */
.page-box {
  font-size: var(--font-responsive-1);
  background: #FFFFFF;
  border: 1px solid #E2E7E9;
  z-index: 2;
  color: #304D56;
  position: relative;
  max-width: 1040px;
  margin-left: 8px;
  margin-right: 8px;
  margin-bottom: calc(16px * -1);
  padding: calc(var(--column-responsive-width) / 2);
}
.page-box--inner {
  margin-bottom: 0;
}
.page-box--transparent {
  background: transparent;
  border: 0;
}
.action-header + .page-box {
  margin-top: calc(16px * -1);
}

.breadcrumbs {
  text-transform: uppercase;
}
.breadcrumbs a {
  color: #6A868E;
  text-decoration: none;
  font-size: 0.875rem;
}
.breadcrumbs a:hover {
  color: #191919;
}
.breadcrumbs a::after {
  content: "▶";
  color: #cdeaef;
  display: inline-block;
  padding: 0 8px;
  font-size: 0.8em;
}
.breadcrumbs a:last-child::after {
  content: none;
}
.breadcrumbs + h1, .breadcrumbs + .headline-1, .breadcrumbs + h2, .breadcrumbs + .headline2 {
  margin-top: 0;
}

.pull-quote {
  padding: var(--responsive-padding-1) 10% var(--responsive-padding-1) 10%;
  line-height: 1.25;
  color: #FFFFFF;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: var(--font-responsive-2);
  position: relative;
  float: right;
  margin-bottom: 1em;
}
.pull-quote::after {
  clear: both;
  content: "";
  background: #191919;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: skew(-12deg);
}
.pull-quote--blue::after {
  background: #0396B1;
}

.hero {
  background: #FFFFFF;
  border: 1px solid #E2E7E9;
  margin: var(--responsive-padding-0) 16px var(--responsive-padding-2);
  padding: 16px;
}
.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: var(--responsive-padding-2);
  color: #191919;
}
.hero__headline h1 {
  color: #191919;
  font-size: 3.375rem;
  line-height: 0.9;
}
.hero__headline p {
  margin-top: var(--responsive-padding-1);
  font-family: "Rock Salt", sans-serif;
  font-size: var(--font-responsive-1);
}
.hero__feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.hero__feat-item:nth-child(1) {
  grid-area: 1/1/1/3;
}
.hero__feat-item:nth-child(2) {
  grid-area: 2/1/2/1;
}
.hero__feat-item:nth-child(3) {
  grid-area: 2/2/2/2;
}

.campaign-feature {
  background: #191919;
  color: #E2E7E9;
  margin-top: -48px;
  margin-bottom: -48px;
  padding: calc(48px + var(--responsive-padding-3)) var(--responsive-padding-3);
  font-size: 1.25rem;
  background: var(--feature-bg) no-repeat center center/cover #222;
}
.campaign-feature a {
  color: #FFFFFF;
  font-weight: 600;
}

.press-release__date {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.press-release__boilerplate {
  font-style: italic;
  font-size: var(--font-responsive-1);
}
.press-release__closeout {
  text-align: center;
  padding: 24px 0 36px;
}

.sidebar__header {
  margin: var(--responsive-padding-1) 0 8px;
}

.video-clip,
.text-clip {
  padding-bottom: 24px;
}
.video-clip__source,
.text-clip__source {
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  margin-top: 4px;
  color: #191919;
}
.video-clip__date,
.text-clip__date {
  margin-top: 16px;
  text-transform: uppercase;
  font-size: 1rem;
  color: #0396B1;
}
.video-clip__text,
.text-clip__text {
  line-height: 1.25;
  font-size: var(--font-responsive-2);
}
.video-clip__quote,
.text-clip__quote {
  font-size: var(--font-responsive-2);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
}

.text-clip {
  margin-bottom: var(--responsive-padding-1);
}

.stats__stat h4 {
  display: flex;
  align-items: flex-end;
  color: #6A868E;
  font-size: var(--font-responsive-2);
  font-family: "Barlow", sans-serif;
}
.stats__stat h4 strong {
  font-family: "Barlow Condensed", sans-serif;
  color: #191919;
  display: block;
  padding-right: 16px;
  line-height: 0.9;
  font-size: 5.625rem;
}

.logo-options {
  display: flex;
  font-size: 0.875rem;
  gap: 16px;
}
.logo-options img, .logo-options svg {
  width: 61.8%;
  height: auto;
}
.logo-options a {
  display: block;
}
.logo-options__primary, .logo-options__secondary {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-options__primary {
  background: #E2E7E9;
}
.logo-options__secondary {
  background: #0396B1;
}

.ripped-quote {
  padding: 36px 24px 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
}
.ripped-quote + .ripped-quote {
  margin-top: var(--responsive-padding-1);
}
.ripped-quote::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mask: url("/images/ripped-paper-04.svg") no-repeat center center/100% 100%;
  -webkit-mask: url("/images/ripped-paper-04.svg") no-repeat center center/100% 100%;
  mask-type: alpha;
  background: url("/images/newspaper-texture.jpg") center center/500px #F0F0F0;
  z-index: 2;
}
.ripped-quote::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  mask: url("/images/ripped-paper-04.svg") no-repeat center center/100% 100%;
  -webkit-mask: url("/images/ripped-paper-04.svg") no-repeat center center/100% 100%;
  mask-type: alpha;
  background: rgba(25, 25, 25, 0.2);
  position: absolute;
  top: 4px;
  left: 2px;
  z-index: 1;
}
.ripped-quote:nth-of-type(5n)::before, .ripped-quote:nth-of-type(5n)::after {
  mask: url("/images/ripped-paper-04.svg") no-repeat center center/100% 100%;
}
.ripped-quote:nth-of-type(5n + 1)::before, .ripped-quote:nth-of-type(5n + 1)::after {
  mask: url("/images/ripped-paper-05.svg") no-repeat center center/100% 100%;
}
.ripped-quote:nth-of-type(5n + 2)::before, .ripped-quote:nth-of-type(5n + 2)::after {
  mask: url("/images/ripped-paper-01.svg") no-repeat center center/100% 100%;
}
.ripped-quote:nth-of-type(5n + 3)::before, .ripped-quote:nth-of-type(5n + 3)::after {
  mask: url("/images/ripped-paper-02.svg") no-repeat center center/100% 100%;
}
.ripped-quote:nth-of-type(5n + 4)::before, .ripped-quote:nth-of-type(5n + 4)::after {
  mask: url("/images/ripped-paper-03.svg") no-repeat center center/100% 100%;
}
.ripped-quote__quote {
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #191919;
  position: relative;
  z-index: 3;
  display: block;
  padding-bottom: 16px;
}
.ripped-quote__quote--italic {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-weight: 400;
}
.ripped-quote__quote--condensed {
  font-size: 1.875rem;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  margin: 12px 8px 0;
}
.ripped-quote__source {
  position: relative;
  z-index: 3;
}
.ripped-quote__logo {
  width: 80%;
  max-height: 72px;
  max-width: 160px;
  margin: 0 auto;
}

.victory-list {
  max-width: 688px;
  margin: 0 auto;
}
.victory-list__victory {
  margin-top: 36px;
  position: relative;
  padding-left: var(--responsive-padding-3);
}
.victory-list__victory::before {
  content: "";
  width: var(--responsive-padding-2);
  height: var(--responsive-padding-2);
  background: url("/images/pencil-star-01.png") no-repeat center center/contain;
  display: block;
  position: absolute;
  left: calc(-1 * var(--responsive-padding-2));
  left: 0;
}
.victory-list__victory:nth-of-type(5n)::before {
  background-image: url("/images/pencil-star-05.png");
}
.victory-list__victory:nth-of-type(5n + 1)::before {
  background-image: url("/images/pencil-star-01.png");
}
.victory-list__victory:nth-of-type(5n + 2)::before {
  background-image: url("/images/pencil-star-04.png");
}
.victory-list__victory:nth-of-type(5n + 3)::before {
  background-image: url("/images/pencil-star-03.png");
}
.victory-list__victory:nth-of-type(5n + 4)::before {
  background-image: url("/images/pencil-star-02.png");
}
.victory-list__title {
  font-size: 1.5rem;
  line-height: 1.33;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
}
.victory-list__date {
  text-transform: uppercase;
  font-size: 1rem;
  margin-top: 4px;
}

.section-header {
  color: #0396B1;
  font-weight: bold;
  font-family: "Barlow", sans-serif;
  font-size: var(--font-responsive-2);
  width: max-content;
  padding: 8px 0;
  background: url("/images/pencil-line.png") repeat-x bottom center/120px auto;
}

.handwritten-accent {
  font-size: var(--font-responsive-4);
  font-family: "Barlow Condensed", sans-serif;
  width: max-content;
  color: #0396B1;
  margin: 0 auto var(--responsive-padding-2);
}
.handwritten-accent em {
  top: 1em;
  transform: rotate(-1deg);
  position: relative;
  z-index: 2;
  font-family: "Rock Salt", sans-serif;
  color: #191919;
  display: block;
  font-size: var(--font-responsive-1);
  font-style: normal;
  text-transform: none;
}
.handwritten-accent--dark {
  color: #FFFFFF;
}
.handwritten-accent--dark em {
  color: #0396B1;
}
.handwritten-accent--small {
  margin: 0;
  font-size: var(--font-responsive-3);
  width: 100%;
  display: block;
  text-align: left;
}
.handwritten-accent--small em {
  top: 0.25em;
}

.victory-box {
  background: url("/images/u/rally_bg.jpg") no-repeat center center/cover #333;
  padding: var(--responsive-padding-2);
}

.scribble-underline {
  position: relative;
}
.scribble-underline::after {
  content: "";
  display: block;
  position: absolute;
  top: 65%;
  left: -15%;
  width: 130%;
  height: 100%;
  background: url("/images/pencil-scribble.png") no-repeat top center/contain;
}

.handwritten-header {
  font-family: "Rock Salt", sans-serif;
  color: #191919;
  width: max-content;
  text-transform: none;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8px;
  background: url("/images/pencil-line.png") repeat-x bottom center/120px auto;
  margin-bottom: 0;
  font-size: var(--font-responsive-1);
}
.handwritten-header--white {
  color: #FFFFFF;
  background-image: url("/images/pencil-line-white.png");
}

.team-list__person {
  margin-bottom: var(--responsive-padding-3);
  margin-left: auto;
  margin-right: auto;
  max-width: 688px;
}
.team-list__image {
  max-width: 160px;
}
.team-list__role {
  margin-top: 0.5em;
  color: #191919;
  font-family: "Rock Salt", sans-serif;
}

.top-nav {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 16px 16px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-nav__logo {
  max-width: 160px;
  width: var(--column-responsive-2);
  display: inline-block;
}
.top-nav__logo svg {
  width: 100%;
  height: auto;
}
.top-nav__main-nav {
  text-align: right;
  width: var(--column-responsive-3);
  display: flex;
  flex-direction: column-reverse;
}
.top-nav__main-nav li:last-child {
  padding-bottom: 8px;
}
.top-nav__main-nav > li {
  display: block;
  position: relative;
  z-index: 4;
  margin-left: 0;
}
.top-nav__main-nav > li > ul {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + var(--responsive-padding-0));
  background: #E2E7E9;
  padding: 72px var(--responsive-padding-1) var(--responsive-padding-1);
  text-align: center;
  z-index: 0;
  margin-top: -24px;
}
.top-nav__main-nav > li > ul li {
  font-size: 1.25rem;
  padding: 12px 0 0;
  margin: 0;
}
.top-nav__main-nav > li > ul li:first-child {
  padding-top: var(--responsive-padding-1);
  border-top: 2px solid #0396B1;
}
.top-nav__main-nav > li > ul li a {
  text-decoration: none;
  color: #191919;
}
.top-nav__main-nav > li > ul li a:hover, .top-nav__main-nav > li > ul li a:active, .top-nav__main-nav > li > ul li a:focus {
  color: #0396B1;
}

.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: var(--responsive-padding-2) auto var(--responsive-padding-3);
  max-width: 864px;
}
.logo-wall__logo {
  max-width: 25%;
  filter: grayscale(100%);
  opacity: 0.6;
  box-sizing: content-box;
  padding: 8px 16px;
  transform: scale(1);
  transition: opacity 0.2s, filter 0.2s, transform 0.2s;
}
.logo-wall__logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.3);
}

.event-details {
  margin-top: var(--responsive-padding-4);
  min-height: 90vh;
  background: var(--header-background, url("/images/capitol-background.jpg")) no-repeat center/cover;
}
.event-details__when-where {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.event-details__when-where h4 {
  color: #6A868E;
}
.event-details__header {
  font-size: var(--font-responsive-3);
  position: relative;
}
.event-details__header::before {
  position: absolute;
  top: -0.15em;
  left: 0;
  content: "Event";
  font-family: "Rock Salt", sans-serif;
  font-size: var(--font-responsive-0);
  color: #191919;
}

.embedded-action {
  background: #FFFFFF;
  border-radius: 4px;
  padding: var(--responsive-padding-1);
}

.action-header {
  background: var(--header-background) no-repeat center/cover;
  background-color: var(--header-color, #191919);
}
.action-header__call-to-action {
  height: 100%;
  color: var(--text-color, #191919);
  display: flex;
  justify-content: flex-start;
  padding: 0 16px 0;
  flex-direction: column;
  font-size: var(--font-responsive-1);
}
.action-header__call-to-action h1, .action-header__call-to-action h2, .action-header__call-to-action h3, .action-header__call-to-action h4, .action-header__call-to-action h5 {
  color: var(--text-color, #191919);
}
.action-header__call-to-action h1 em, .action-header__call-to-action h2 em, .action-header__call-to-action h3 em, .action-header__call-to-action h4 em, .action-header__call-to-action h5 em {
  color: var(--accent-color, #077d93);
  display: block;
  font-size: var(--font-responsive-2);
  letter-spacing: 0.03em;
}
.action-header__call-to-action h1 {
  font-size: 3.375rem;
}

.campaign-list__campaign {
  padding-bottom: var(--responsive-padding-4);
}
.campaign-list__title {
  font-size: var(--font-responsive-2);
  margin: 16px 0;
  color: #0396B1;
}
.campaign-list__title--victory::before {
  content: "Victory";
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Barlow Condensed", sans-serif;
  color: #191919;
  display: block;
  font-size: var(--font-responsive-1);
  background: url("/images/pencil-star-01.png") no-repeat right center/contain #FFE457;
  padding-right: 1.1em;
  width: max-content;
}

.interior-headline {
  font-size: var(--font-responsive-4);
  text-align: center;
  margin: var(--responsive-padding-1) 0 var(--responsive-padding-0);
}

.spaced-headers > li > *:first-child {
  margin-bottom: var(--responsive-padding-0);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1 0 100%;
  margin: var(--responsive-padding-2) 0;
}
.social-links--inline {
  margin: 0;
  gap: 8px;
  justify-content: flex-start;
}
.social-links--inline svg path {
  fill: #191919;
}
.social-links svg {
  width: 36px;
  height: auto;
}

.contact-page {
  padding: var(--responsive-padding-2) 16px;
}
.contact-page__form {
  margin: var(--responsive-padding-2) 0;
}
.contact-page__label {
  font-size: 1.5rem;
  color: #0396B1;
  margin-bottom: 12px;
}
* + .contact-page__label {
  margin-top: 48px;
}

.faq__headline {
  margin: 0;
  color: #0396B1;
  font-size: var(--font-responsive-4);
  margin-bottom: 16px;
}
.faq__description {
  font-size: var(--font-responsive-0);
}
.faq__answer {
  padding: 16px 16px 16px 48px;
}
.faq__question {
  font-size: var(--font-responsive-0);
  border-bottom: 1px solid #E2E7E9;
}
.faq__question:last-child {
  border-bottom: none;
}
.faq__question summary {
  cursor: pointer;
  color: #0396B1;
  font-size: var(--font-responsive-2);
  padding: 8px 16px 12px;
  line-height: 1.2;
}
.faq__question summary::marker {
  line-height: 0;
  content: "+ ";
  display: block;
  font-size: 1.2em;
}
.faq__question summary:hover {
  background: #FFE457;
  color: #191919;
}
.faq__question summary:hover span {
  color: #191919;
}
.faq__question summary span {
  color: #304D56;
}

.box-gray {
  background: linear-gradient(to bottom, rgba(226, 231, 233, 0.9), rgba(226, 231, 233, 0.8)), url("/images/concrete-texture.jpg") repeat center center/contain #fff;
  padding: calc(var(--column-responsive-1) / 2);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: flex-start;
  justify-content: center;
  background-image: linear-gradient(rgba(16, 75, 86, 0.8), rgba(25, 25, 25, 0.8));
  z-index: 5;
  overflow-y: auto;
}

.modal {
  background: #FFFFFF;
  border: 1px solid #E2E7E9;
  position: relative;
  padding: var(--responsive-padding-1);
  min-height: 100vh;
  min-height: var(--app-height);
  width: 100vw;
}
.modal__close {
  position: absolute;
  top: var(--responsive-padding-0);
  right: var(--responsive-padding-0);
}

.has-overlay {
  overflow: hidden;
}

.footer {
  color: #FFFFFF;
  padding: 36px;
  background: url("/images/formed-concrete-texture.jpg") top center/contain #0389a2;
  background-blend-mode: overlay;
  z-index: 0;
  position: relative;
}
.footer--dark {
  background-color: #191919;
}
.footer__logo {
  display: block;
  max-width: 160px;
  width: var(--column-responsive-2);
  margin: var(--responsive-padding-2) auto;
}
.footer__logo svg {
  width: 100%;
  height: auto;
}
.footer__main-nav {
  color: #FFFFFF;
  width: var(--column-responsive-4);
  margin: 0 auto;
}
.footer__main-nav a {
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: none;
}
.footer__main-nav > li {
  font-size: 1.875rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  padding: 24px 0;
}
.footer__main-nav li ul li {
  font-size: 1.25rem;
  text-transform: none;
  font-family: "Barlow", sans-serif;
}
.footer__main-nav li ul li:first-child {
  margin-top: 16px;
}
.footer__secondary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 1.25rem;
}
.footer__secondary-nav li a {
  font-weight: bold;
  color: #FFFFFF;
  text-decoration: none;
}
.footer__disclaimer {
  margin: calc(var(--column-responsive-1) / 2) auto;
  text-align: center;
  padding: 12px 0 0;
}
.footer__copyright {
  text-align: center;
  margin-bottom: var(--column-responsive-1);
  color: #E2E7E9;
}
.footer .button {
  width: var(--column-responsive-4);
  margin: 16px auto;
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 16px;
  color: #304D56;
}
.form--dark {
  color: #fff;
}
.form__label {
  padding-bottom: 24px;
  flex: 1 0 100%;
  display: flex;
  flex-direction: column;
}
.form__label:last-of-type {
  margin-bottom: 36px;
}
.form__label--checkbox {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}
.form__label--checkbox input {
  font-size: 2em;
}
.form__label--half {
  flex-basis: calc(50% - (16px / 2));
}
.form__label--third {
  flex-basis: calc(33% - (16px / 2));
  max-width: 160px;
}
.form__input {
  margin-top: 4px;
  border-radius: 4px;
  border: 1px solid #6A868E;
  padding: 8px;
  font: inherit;
}
.form__presubmit, .form__postsubmit {
  width: 100%;
}
.form__postsubmit, .form--submitted .form__presubmit {
  display: none;
}
.form--submitted .form__postsubmit {
  display: block;
}

.youtube-wrapper {
  position: relative;
  padding-bottom: 56%;
}
.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.facebook-video-wrapper {
  position: relative;
  padding-bottom: 100%;
}
.facebook-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.share_graphics {
  margin-bottom: var(--responsive-padding-3);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-start;
}
.share_graphics__graphic {
  flex: 1 1 32%;
  max-width: 50%;
  border: 1px solid #6A868E;
}

.spaced-list__item {
  margin-top: var(--responsive-padding-1);
}

.subhead {
  text-transform: none;
  font-size: var(--font-responsive-2);
}

.button {
  border: none;
  display: block;
  background-color: #0396B1;
  text-align: center;
  padding: 16px 0;
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: var(--font-responsive-1);
  letter-spacing: 0.03em;
  transition: background-color 0.2s, color 0.2s;
}
.button:hover {
  cursor: pointer;
  background: #FFE457;
  color: #191919;
}
.button--wide {
  width: 100%;
  flex-basis: 100%;
}
.button--black {
  background-color: #191919;
  border: 1px solid #E2E7E9;
}
.button--nav {
  padding: 8px 0;
  font-size: 1rem;
}
.button--text {
  font-family: "Barlow", sans-serif;
  background: transparent;
  color: #6A868E;
  padding: 0;
  line-height: 1;
  font-size: 0.875rem;
}
.button--dropdown {
  width: 100%;
  display: block;
  text-align: right;
  background: transparent;
  color: var(--text-color, #191919);
  padding: 0;
  z-index: 4;
  position: relative;
  font-size: 1.5rem;
}
.button--dropdown:hover {
  background-color: transparent;
  color: #0396B1;
}
.button--dropdown::after {
  content: "▼";
  color: #0396B1;
  font-size: 0.618em;
  margin: 0 0 0 0.5em;
  top: -0.25em;
  position: relative;
}

/* U_UTILITIES */
.u_article > ul:not([class]),
article > ul:not([class]) {
  list-style: unset;
  margin: 1em var(--responsive-padding-1);
}
.u_article > ul:not([class]) li,
article > ul:not([class]) li {
  margin: 1em 0;
}
.u_article > ol:not([class]),
article > ol:not([class]) {
  list-style: decimal;
  margin: 1em var(--responsive-padding-1);
}
.u_article > ol:not([class]) li,
article > ol:not([class]) li {
  margin: 0.5em 0;
}

.u_layout-split-text-columns {
  columns: 336px auto;
  gap: calc(72px + 16px);
}
.u_layout-split-middle {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-row-gap: calc(var(--column-responsive-1) / 2);
}
.u_layout-split-7c-4c {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-row-gap: calc(var(--column-responsive-1) / 2);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.u_layout-split-4c-7c {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-row-gap: calc(var(--column-responsive-1) / 2);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.u_layout-split-6c-5c {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-row-gap: calc(var(--column-responsive-1) / 2);
  max-width: var(--column-responsive-6);
  margin-left: auto;
  margin-right: auto;
}
.u_layout-split-6c-3c {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-row-gap: calc(var(--column-responsive-1) / 2);
  max-width: 864px;
  margin-left: auto;
  margin-right: auto;
}
.u_layout-split-3c-6c {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-row-gap: calc(var(--column-responsive-1) / 2);
  max-width: 864px;
  margin-left: auto;
  margin-right: auto;
}
.u_layout-split-8c-3c {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-row-gap: calc(var(--column-responsive-1) / 2);
  max-width: 1040px;
  margin-left: 16px;
  margin-right: 16px;
}
.u_layout-split-thirds {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 1fr;
  grid-row-gap: calc(var(--column-responsive-1) / 2);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--responsive-padding-1);
}
.u_layout-step-repeat {
  padding: var(--responsive-padding-3);
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.u_layout-step-repeat__break {
  display: none;
}

.u_spacer-padding-0, .u_spacer-padding-1, .u_spacer-padding-2, .u_spacer-padding-3, .u_spacer-padding-4, .u_spacer-padding-5, .u_spacer-padding-6, .u_spacer-padding-7, .u_spacer-padding-8, .u_spacer-padding-responsive-0, .u_spacer-padding-responsive-1, .u_spacer-padding-responsive-2, .u_spacer-padding-responsive-3, .u_spacer-padding-responsive-4 {
  display: block;
}
.u_article > * + .u_spacer-padding-0, article > * + .u_spacer-padding-0, .u_article > * + .u_spacer-padding-1, article > * + .u_spacer-padding-1, .u_article > * + .u_spacer-padding-2, article > * + .u_spacer-padding-2, .u_article > * + .u_spacer-padding-3, article > * + .u_spacer-padding-3, .u_article > * + .u_spacer-padding-4, article > * + .u_spacer-padding-4, .u_article > * + .u_spacer-padding-5, article > * + .u_spacer-padding-5, .u_article > * + .u_spacer-padding-6, article > * + .u_spacer-padding-6, .u_article > * + .u_spacer-padding-7, article > * + .u_spacer-padding-7, .u_article > * + .u_spacer-padding-8, article > * + .u_spacer-padding-8, .u_article > * + .u_spacer-padding-responsive-0, article > * + .u_spacer-padding-responsive-0, .u_article > * + .u_spacer-padding-responsive-1, article > * + .u_spacer-padding-responsive-1, .u_article > * + .u_spacer-padding-responsive-2, article > * + .u_spacer-padding-responsive-2, .u_article > * + .u_spacer-padding-responsive-3, article > * + .u_spacer-padding-responsive-3, .u_article > * + .u_spacer-padding-responsive-4, article > * + .u_spacer-padding-responsive-4 {
  margin-top: 0;
}
.u_spacer-padding-0 {
  height: 4px;
}
.u_spacer-padding-1 {
  height: 8px;
}
.u_spacer-padding-2 {
  height: 12px;
}
.u_spacer-padding-3 {
  height: 16px;
}
.u_spacer-padding-4 {
  height: 24px;
}
.u_spacer-padding-5 {
  height: 36px;
}
.u_spacer-padding-6 {
  height: 48px;
}
.u_spacer-padding-7 {
  height: 72px;
}
.u_spacer-padding-8 {
  height: 128px;
}
.u_spacer-padding-responsive-0 {
  height: var(--responsive-padding-0);
}
.u_spacer-padding-responsive-1 {
  height: var(--responsive-padding-1);
}
.u_spacer-padding-responsive-2 {
  height: var(--responsive-padding-2);
}
.u_spacer-padding-responsive-3 {
  height: var(--responsive-padding-3);
}
.u_spacer-padding-responsive-4 {
  height: var(--responsive-padding-4);
}

.u_max-width-1c {
  max-width: 72px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-2c {
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-3c {
  max-width: 248px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-4c {
  max-width: 336px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-5c {
  max-width: 424px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-6c {
  max-width: 512px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-7c {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-8c {
  max-width: 688px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-9c {
  max-width: 776px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-10c {
  max-width: 864px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-11c {
  max-width: 952px;
  margin-left: auto;
  margin-right: auto;
}
.u_max-width-12c {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.u_padding-half-c {
  padding: 36px;
}
.u_padding-1c {
  padding: 72px;
}

.u_block-link {
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
}

.u_uppercase {
  text-transform: uppercase;
}

.u_outline {
  text-stroke: 2px #191919;
  color: #FFFFFF;
  -webkit-text-stroke: 1px #191919;
}

.u_blue {
  color: #0396B1;
}

.u_black {
  color: #191919;
}

.u_white {
  color: #FFFFFF;
}

.u_undecorated {
  text-decoration: none;
}

.u_placeholder {
  width: 100%;
  height: 100%;
  min-height: 72px;
  display: block;
  border: 1px dashed #6A868E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.u_placeholder::after {
  content: "PLACEHOLDER";
  letter-spacing: 0.2em;
  height: 100%;
  font-size: 0.875rem;
  color: #6A868E;
}

.u_align-right {
  margin-left: auto;
  margin-right: 0;
}
.u_align-left {
  margin-right: auto;
  margin-left: 0;
}
.u_align-center {
  margin-right: auto;
  margin-left: auto;
}

.u_float-right {
  float: right;
  margin-left: 2em;
  margin-bottom: 2em;
  margin-right: 0;
}
.u_float-left {
  float: left;
  margin-right: 2em;
  margin-bottom: 2em;
  margin-left: 0;
}

.u_font-primary {
  font-family: "Barlow", sans-serif;
}
.u_font-condensed {
  font-family: "Barlow Condensed", sans-serif;
}
.u_font-size-0 {
  font-size: 0.875rem;
}
.u_font-size-1 {
  font-size: 1rem;
}
.u_font-size-2 {
  font-size: 1.25rem;
}
.u_font-size-3 {
  font-size: 1.5rem;
}
.u_font-size-4 {
  font-size: 1.875rem;
}
.u_font-size-5 {
  font-size: 2.625rem;
}
.u_font-size-6 {
  font-size: 3.375rem;
}
.u_font-size-7 {
  font-size: 4.5rem;
}
.u_font-size-8 {
  font-size: 5.625rem;
}
.u_font-size-9 {
  font-size: 6.75rem;
}
.u_font-size-responsive-0 {
  font-size: var(--font-responsive-0);
}
.u_font-size-responsive-1 {
  font-size: var(--font-responsive-1);
}
.u_font-size-responsive-2 {
  font-size: var(--font-responsive-2);
}
.u_font-size-responsive-3 {
  font-size: var(--font-responsive-3);
}
.u_font-size-responsive-4 {
  font-size: var(--font-responsive-4);
}

/* External CSS */
/**
 * Initial state, hidden off screen
 */
.clicky-menu {
  position: relative;
}

.clicky-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  /*[1]*/
  display: none;
}

/**
 * No JS fallback
 *
 * Triggers menus on hover rather than click. Supports keyboard navigation in modern browsers.
 */
.clicky-menu.no-js li:hover > ul {
  visibility: visible;
}

.clicky-menu.no-js li:focus-within > ul {
  /*[2]*/
  visibility: visible;
}

/**
 * Open/Close Menu Behavior with JS
 */
.clicky-menu ul[aria-hidden=false] {
  visibility: visible;
  display: block;
}

/**
 * Footnotes
 *
 * [1] Using visibility instead of display allows for easier transitions and animation of submenus
 * [2] Must be a separate ruleset so that hover works in non-modern browsers
 */
/* EveryAction */
.at-title,
.HeaderHtml {
  display: none;
}

.ngp-form.at {
  border-radius: 4px;
}
.ngp-form.at h1,
.ngp-form.at h2,
.ngp-form.at h3,
.ngp-form.at h4,
.ngp-form.at h5,
.ngp-form.at h6 {
  font-family: "Barlow", sans-serif;
}
.ngp-dark .ngp-form.at {
  color: #FFFFFF;
}
.ngp-dark .ngp-form.at h1,
.ngp-dark .ngp-form.at h2,
.ngp-dark .ngp-form.at h3,
.ngp-dark .ngp-form.at h4,
.ngp-dark .ngp-form.at h5,
.ngp-dark .ngp-form.at h6,
.ngp-dark .ngp-form.at label {
  color: #FFFFFF;
}
.ngp-form.at label {
  font-family: "Barlow", sans-serif;
  font-size: var(--font-responsive-0);
}
.ngp-form.at .at-inner {
  background: transparent;
  padding: 0;
}
.ngp-form.at .UpdateMyProfile {
  padding-top: 12px;
}
.ngp-form.at .btn-at-primary {
  background: #0396B1;
  border-radius: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--font-responsive-2);
  width: 100%;
  margin: 16px 0 0;
}
.ngp-form.at .btn-at-primary:hover {
  color: #191919;
  background: #FFE457;
}
.ngp-form.at a {
  color: #0396B1;
}
.ngp-form.at a.circle {
  color: #191919;
}
.ngp-form.at a.circle:hover {
  color: #FFFFFF;
}
.ngp-form.at .fastaction-modal {
  color: #304D56;
}
.ngp-form.at .fastaction-modal h1,
.ngp-form.at .fastaction-modal h2,
.ngp-form.at .fastaction-modal h3,
.ngp-form.at .fastaction-modal h4,
.ngp-form.at .fastaction-modal h5,
.ngp-form.at .fastaction-modal h6 {
  color: #191919;
}
.ngp-form.at .fastaction-modal a.btn-at-primary {
  color: #FFFFFF;
}
.ngp-form.at .fastaction-modal a.btn-at-primary:hover {
  color: #191919;
}
.ngp-form.at .at-fieldset {
  padding: 0;
}
.ngp-form.at .at-fieldset legend {
  display: none;
}
.ngp-form.at .fastAction {
  padding-bottom: 24px;
}
.ngp-dark .ngp-form.at .fastAction {
  display: none;
}

/* ==========================================================================
   Media Queries for Responsive Design.
   ========================================================================== */
@media only screen and (min-width: calc(1040px + (16px * 2))) {
  .page-box {
    margin: 16px auto calc(36px * -1);
    padding: calc(72px + (16px));
  }
  .page-box--inner {
    margin-bottom: 0;
  }

  .hero {
    margin-left: auto;
    margin-right: auto;
  }

  .u_layout-split-6c-5c {
    max-width: 1040px;
    display: grid;
    grid-template-columns: calc(50% - 8px) calc( 41.5% - 8px);
    grid-template-rows: 1fr;
    grid-column-gap: 104px;
  }
  .u_layout-split-8c-3c {
    max-width: 1040px;
    display: grid;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: calc(66.9% - 8px) calc(25.5% - 16px);
    grid-template-rows: 1fr;
    grid-column-gap: 104px;
  }
}
@media only screen and (min-width: 40em) {
  .footer .button {
    width: 100%;
  }
  .footer__main-nav {
    max-width: 776px;
    width: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .footer__main-nav > * {
    flex-grow: 1;
  }

  .overlay {
    padding: var(--responsive-padding-2);
  }

  .modal {
    width: 424px;
    margin: 0 auto;
    min-height: auto;
  }
}
@media only screen and (min-width: 48em) {
  .button--nav {
    padding: 12px 0;
    font-size: 1.25rem;
  }

  .page-box .page-box {
    border: 1px solid #E2E7E9;
    padding: calc(var(--responsive-padding-2) + (16px));
  }

  .contact-page {
    max-width: 1040px;
    box-sizing: content-box;
    margin: 0 auto;
    display: grid;
    grid-column-gap: calc(24px + (2* 16px));
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 336px;
    grid-template-areas: "form header" "form details";
  }
  .contact-page__header {
    grid-area: header;
  }
  .contact-page__form {
    margin: 0;
    grid-area: form;
  }
  .contact-page__details {
    grid-area: details;
  }

  .top-nav__main-nav {
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
  }
  .top-nav__main-nav > li {
    display: block;
    width: 160px;
    position: relative;
    z-index: 4;
  }
  .top-nav__main-nav > li > ul {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% + var(--responsive-padding-1));
    background: #E2E7E9;
    padding: 72px var(--responsive-padding-1) var(--responsive-padding-1);
    text-align: center;
    z-index: 0;
    margin-top: -24px;
  }
  .top-nav__main-nav > li > ul li {
    font-size: 1.25rem;
    padding: 16px 0 0;
    margin: 0;
  }
  .top-nav__main-nav > li:last-child {
    margin-left: calc(36px + 16px);
  }
}
@media only screen and (min-width: 55em) {
  .contact-page {
    grid-column-gap: calc(72px + (2* 16px));
  }

  .team-list__image {
    max-width: 248px;
  }

  .box-gray {
    padding: calc(var(--responsive-padding-2) + 16px);
  }

  .logo-wall__logo {
    max-width: 15%;
    padding: 8px 24px;
  }

  .u_layout-split-middle {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 36px));
    grid-template-rows: 1fr;
    grid-column-gap: 72px;
  }
  .u_layout-split-middle--collapsed {
    grid-column-gap: 0;
    grid-template-columns: repeat(2, 50%);
  }
  .u_layout-split-middle--tight {
    grid-template-columns: repeat(2, calc(50% - calc(36px / 2)));
    grid-column-gap: 24px;
  }
  .u_layout-split-7c-4c {
    display: grid;
    grid-template-columns: calc(66.2% - 72px - 16px) calc(33.8% - 16px);
    grid-template-rows: 1fr;
    grid-column-gap: 104px;
  }
  .u_layout-split-4c-7c {
    display: grid;
    grid-template-columns: calc(33.8% - 16px) calc(66.2% - 72px - 16px);
    grid-template-rows: 1fr;
    grid-column-gap: 104px;
  }
  .u_layout-split-6c-3c {
    display: grid;
    grid-template-columns: calc(60.2% - 8px) calc(30.5% - 16px);
    grid-template-rows: 1fr;
    grid-column-gap: 104px;
  }
  .u_layout-split-3c-6c {
    display: grid;
    grid-template-columns: calc(30.5% - 16px) calc(60.5% - (8px));
    grid-template-rows: 1fr;
    grid-column-gap: 104px;
  }
  .u_layout-split-thirds {
    display: grid;
    grid-template-columns: repeat(3, calc(33% - (3/7 * 16px)));
    grid-template-rows: 1fr;
    grid-column-gap: 36px;
    grid-row-gap: 72px;
    margin-bottom: var(--responsive-padding-1);
  }

  .action-header__call-to-action {
    padding: 0 0 0;
  }

  .top-nav > ul > li {
    width: 160px;
  }
  .top-nav > ul > li:last-child {
    width: 248px;
    margin-left: calc(72px + 16px);
  }

  .u_layout-step-repeat {
    padding-left: 16px;
    padding-right: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 1288px;
    gap: 16px;
  }
  .u_layout-step-repeat > * {
    flex: 0 0 25%;
  }
  .u_layout-step-repeat__break {
    display: block;
    flex: 1 0 100%;
    height: 0;
  }
}
@media only screen and (min-width: 63em) {
  .pull-quote {
    margin-left: 10%;
    margin-right: -5vw;
    width: 550px;
  }
}
@media only screen and (min-width: 70em) {
  .pull-quote {
    margin-right: -6vw;
  }

  .footer {
    padding: 0;
  }
  .footer__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 1040px;
    margin: 0 auto;
    padding: var(--responsive-padding-3) 0;
  }
  .footer__main-nav {
    display: flex;
    width: 776px;
    justify-content: flex-end;
    gap: 16px;
    margin: 0 0 0 auto;
  }
  .footer__main-nav > * {
    flex: 0 0 248px;
  }
  .footer__main-nav li ul {
    margin-top: 48px;
  }
  .footer__main-nav li ul li {
    margin: 16px 0;
  }
  .footer__logo {
    padding: 36px 0;
    margin: 0;
    width: 160px;
  }
  .footer__secondary-nav {
    flex: 1 1 33%;
    justify-content: flex-start;
  }
  .footer__disclaimer {
    flex: 1 1 max-content;
    margin: 0;
    padding-top: var(--responsive-padding-3);
  }
  .footer__copyright {
    margin: 0;
    flex: 1 1 33%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .footer .button {
    width: 100%;
  }

  .social-links {
    flex: 1 0 100%;
    margin: var(--responsive-padding-2) 0;
  }
  .social-links--inline {
    margin: var(--responsive-padding-0) 0;
  }
  .social-links svg {
    width: 36px;
    height: auto;
  }
}
@media only screen and (min-width: 75em) {
  .pull-quote {
    margin-right: -10vw;
  }
}

/*# sourceMappingURL=site.css.map */
