/**
 * Motif v4.0.0
 * A responsive front-end framework to tell *your* story
 * http://getmotif.com
 */
/**
 * Global Stylesheet
 * The site's main (and perhaps only) stylesheet. All supporting stylesheet 
 * files are imported into and compiled from here.
 */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*

Dynamic Responsive Image

*/
/**
 * Normalize
 * Using the Normalize.css (http://necolas.github.io/normalize.css/) with only minor modification.
 */
/*

HTML5 Display Definitions

Set the appropriate `display` definitions for new HTML5 elements.

The majority will be displayed `block`.

*/
*,
*:before,
*:after {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/*

Type

*/
/*

HTML Font Size Adjust

1. Corrects text resizing oddly in IE6/7 when body `font-size` is set using
   `em` units.
2. Prevents iOS text size adjust after orientation change, without disabling
   user zoom.

*/
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}
abbr[title] {
  border: none;
}
i,
cite,
address {
  font-style: normal;
}
dfn {
  font-style: italic;
}
b {
  font-weight: normal;
}
strong {
  font-weight: bold;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
menu,
ul,
ol,
dl,
table,
figure {
  /* Display & Box Model */
  margin: 1.25rem 0 0 0;
  /* Other */
  font-size: 1em;
}
menu,
ol,
ul {
  padding-left: 2.5em;
}
dd {
  margin-left: 2.5em;
}
blockquote {
  padding: 1.25em 2.5em;
}
blockquote > :first-child {
  margin-top: 0;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
small {
  font-size: 1em;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/*

Unstyled List

A basic stripping of list styles.

*/
.lists__unstyled,
.lists__horizontal,
.lists__horizontal--forceful,
.positionsPerma__benefits,
.lists__horizontal--links,
.lists__horizontal--pgs,
.lists__breadcrumb-list,
.lists__horizontal--buttons {
  padding-left: 0;
  list-style: none outside none;
}
/*

Horizontal List

The basic horizontal list module simply removes bullets from lists and inlines the list 
items, making the link `inline-block`. The idea is to give the skeleton of a 
horizontal list/navigation without adding too much style (yet).

*/
.lists__horizontal li,
.lists__horizontal--links li,
.lists__horizontal--pgs li,
.lists__breadcrumb-list li,
.lists__horizontal--buttons li {
  display: inline;
}
.lists__horizontal a,
.lists__horizontal--links a,
.lists__horizontal--pgs a,
.lists__breadcrumb-list a,
.lists__horizontal--buttons a {
  display: inline-block;
}
/*

Horizontal List (Forceful)

Rather than making the list `inline-block`, it floats the list elements 
(except on the smallest screen sizes, where it remains vertical). More precise
than the default Horizontal List.

*/
@media all and (min-width: 30em) {
  .lists__horizontal--forceful:before,
  .lists__horizontal--forceful:after {
    content: "\0020";
    height: 0;
    display: block;
    overflow: hidden;
  }
  .lists__horizontal--forceful:after {
    clear: both;
  }
}
.lists__horizontal--forceful li {
  display: block;
}
@media all and (min-width: 30em) {
  .lists__horizontal--forceful li {
    float: left;
  }
}
.lists__horizontal--forceful a {
  display: block;
}
/*

Link List

A basic extension of the Horizontal List, this adds some margin to the links in
the list for a more pleasant looking list of links.

````link-list
<ul class="lists__horizontal--links">
    <li>
        <a href="#">Basic Link</a>
    </li>
    <li>
        <a href="#">Basic Link</a>
    </li>
    <li>
        <a href="#">Basic Link</a>
    </li>
</ul>
````

*/
.lists__horizontal--links a {
  margin-right: 30px;
}
.lists__horizontal--links li:last-child a {
  margin-right: 0;
}
/*

Pagination

An extension of the basic horizontal list module that simply adds enough padding on
the links for pagination.

*/
.lists__horizontal--pgs a {
  padding: 0 0.625em;
}
.lists__horizontal--pgs a,
.lists__horizontal--pgs a:hover,
.lists__horizontal--pgs a:focus {
  color: inherit;
}
/*

Breadcrumb

Another extension of the horizontal list module, adding a breadcrumb `label` 
and floating it and the ordered list.

````breadcrumb
<nav class="lists__breadcrumb" role="navigation">
    <ol class="lists__breadcrumb-list">
        <li>
            <a href="#">Breadcrumb Link</a>
        </li>
        <li>
            <a href="#">Breadcrumb Link</a>
        </li>
        <li>
            <a>Breadcrumb Link</a>
        </li>
    </ol>
</nav>
````

*/
.lists__breadcrumb {
  margin-top: 1.1111111111111112em;
}
.lists__breadcrumb-label {
  margin: 0 0.28125rem 0 0;
  float: left;
}
.lists__breadcrumb-list {
  margin: 0;
  float: left;
}
.lists__breadcrumb-list li {
  margin-right: 0.28125rem;
}
/*

Button List

````button-list
<ul class="lists__horizontal--buttons">
    <li>
        <a class="btn--primary" href="#">Button</a>
    </li>
    <li>
        <a class="btn--primary is-current" href="#">Button</a>
    </li>
    <li>
        <a class="btn--primary" href="#">Button</a>
    </li>
</ul>
````

*/
.lists__horizontal--buttons {
  margin-top: 0;
  overflow: hidden;
}
.lists__horizontal--buttons li {
  display: block;
  float: left;
}
.lists__horizontal--buttons a {
  display: block;
}
.lists__list,
.wysiwyg ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
.lists__list li,
.wysiwyg ul li {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media all and (min-width: 48em) {
  .lists__list li,
  .wysiwyg ul li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.lists__list li:before,
.wysiwyg ul li:before {
  content: "\25CF";
  color: #A8192E;
  padding-right: 10px;
}
/*

Ratios

Ratios are used primarily for objects that must scale in both width and height
proportionally, such as embedded videos.

See: (http://daverupert.com/2012/04/uncle-daves-ol-padded-box/)

The `.ratios__` dimension class is placed on a wrapping element, with 
its child contents wrapped by the `.ratios__content` class.

    <div class="ratios__square">
        <div class="ratios__content">
            ...
        </div>
    </div>

For embedded videos, use the `.ratios__video` class, and it will assume an 
`iframe` is the direct child:

    <div class="ratios__video">
        <iframe src="http://youtube.com/myVidEmbed"></iframe>
    </div>

*/
.ratios__base:before,
.ratios__video:before,
.ratios__1x1:before,
.ratios__square:before,
.ratios__2x1:before,
.ratios__1x2:before,
.simpleCard__figure:before,
.secondaryCard__figure:before,
.positions__figure:before,
.history__figure:before {
  content: "";
}
.ratios__video:before {
  padding-top: 56.25%;
}
.ratios__1x1:before,
.ratios__square:before {
  padding-top: 100%;
}
.ratios__2x1:before {
  padding-top: 50%;
}
.ratios__1x2:before {
  padding-top: 200%;
}
.ratios__content,
.ratios__video > iframe,
.simpleCard__figure img,
.secondaryCard__figure img,
.positions__figure img,
.history__figure img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*

Figures

Great for integrating images into bodies of text, the `.media__figure` class is 
modified by the `--left` and `--right` keywords depending on where you would 
like it placed.

````plain-media
<figure class="media__figure">
    <img src="http://placehold.it/800x444" alt="A full-width photo">
</figure>
````

````captioned-media
<figure class="media__figure">
    <img src="http://placehold.it/800x444" alt="A full-width photo with a caption">
    <figcaption class="media__figcaption">This caption enhances the photo above. It should only be a brief sentence or two long.</figcaption>
</figure>
````

*/
.media__figure,
[class*="media__figure--"] {
  margin-top: 1.1111111111111112em;
}
@media all and (min-width: 30em) {
  [class*="media__figure--"] {
    margin-top: 0;
    max-width: 50%;
  }
  .media__figure--left,
  .media__figure--right {
    padding-bottom: 0.625rem;
  }
  .media__figure--left {
    float: left;
    padding-right: 1.125rem;
  }
  .media__figure--right {
    float: right;
    padding-left: 1.125rem;
  }
}
.icons__icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: text-bottom;
  fill: currentColor;
}
.no-svg .icons__icon {
  display: none;
}
svg:not(:root) {
  overflow: hidden;
}
img {
  max-width: 100%;
  border: 0;
}
.lte7 img {
  -ms-interpolation-mode: bicubic;
}
img.lazyload,
img.lazyloading,
img.lazyloaded {
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.15s linear;
}
img.lazyloaded {
  opacity: 1;
}
.images__image-as-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .images__image-as-bg {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.images__figure-as-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  margin: 0;
}
.images__figure-as-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .images__figure-as-bg img {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.wp-block-image img {
  height: auto;
}
audio,
canvas,
video {
  display: inline-block;
}
.lte7 audio,
.lte7 canvas,
.lte7 video {
  display: inline;
  zoom: 1;
}
/*

Audio

From Normalize.css:

> Prevents modern browsers from displaying `audio` without controls.
> Remove excess height in iOS5 devices.

*/
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
/*

Font Declarations

Using the `.web-font` and `.web-font-svg` mixins, declare webfonts using the 
"bulletproof" `@font-face` syntax.

See: (http://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax/)

*/
.styles__faustina,
h1,
h2,
h3,
h4,
h5,
h6,
.styles__h5,
.styles__quinary-heading,
h5 {
  font-family: "Faustina", "Times New Roman", Times, Georgia, serif;
}
.styles__roboto-regular,
.styles__roboto-bold,
.styles__roboto-semibold-italic,
.styles__roboto-bold-italic,
.styles__roboto-light,
.styles__roboto-light-italic,
.styles__roboto-black,
.styles__h1,
.styles__primary-heading,
.styles__h2,
.styles__secondary-heading,
.styles__h3,
.styles__tertiary-heading,
.styles__h4,
.styles__quaternary-heading,
.styles__sub-heading,
h4,
.profile__user-name,
.positions__position--title,
.positionsPerma__title,
.resources__resource--title,
.history__position--title,
.history__position-title,
h1,
h2,
h3 {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
}
.styles__roboto-regular,
.styles__sub-heading {
  font-weight: 400;
}
.styles__roboto-semibold {
  font-weight: 500;
}
.styles__roboto-semibold-italic {
  font-weight: 500;
  font-style: italic;
}
.styles__roboto-black,
.styles__h2,
.styles__secondary-heading,
.styles__h3,
.styles__tertiary-heading,
.styles__h4,
.styles__quaternary-heading,
.profile__user-name,
.positions__position--title,
.positionsPerma__title,
.resources__resource--title,
.history__position--title,
.history__position-title,
h2,
h3 {
  font-weight: 900;
}
.styles__roboto-bold,
h4 {
  font-weight: 700;
}
.styles__roboto-bold-italic {
  font-weight: 700;
  font-style: italic;
}
.styles__roboto-light,
.styles__h1,
.styles__primary-heading,
h1 {
  font-weight: 300;
}
.styles__roboto-light-italic {
  font-weight: 300;
  font-style: italic;
}
/* Body Fonts */
body {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 400;
}
/*

Heading Styles

In Motif, typography is broken into pieces that separate skin from structure.
In this case, that means the font sizing (structure) is separate from the 
styling (skin) -- which includes font family, color, etc.

Heading styles are some of the type skins, and we start out with 
`.primary-heading` (which is also the `h`-tag default) and 
`.secondary-heading`. Add as necessary.

````primary-heading
<h1 class="primary-heading">Primary Heading</h1>
````

*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.25rem;
  color: #1C2B39;
}
.styles__h1,
.styles__primary-heading,
h1 {
  position: relative;
  margin-top: 36px;
}
.styles__h2,
.styles__secondary-heading,
h2 {
  letter-spacing: 0.02777778em;
  color: #317E9F;
  text-transform: uppercase;
}
.styles__h3,
.styles__tertiary-heading,
h3 {
  color: #1C2B39;
}
.styles__h4,
.styles__quaternary-heading {
  color: #1C2B39;
}
.styles__h5,
.styles__quinary-heading {
  color: #A8192E;
}
.styles__sub-heading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  line-height: 1.55555556;
  color: #2995eb;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media all and (min-width: 48em) {
  .styles__sub-heading {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.66666667;
  }
}
h5 {
  color: #841324;
}
/*

Body Text

Another type style, but this mimicks the default body text of the site.

````body-text
<p>This is a paragraph of text. Some of the text may be <em>emphasised</em> and some it might even be <strong>strongly emphasised</strong>. Occasionally <q>quoted text</q> may be found within a paragraph &hellip;and of course <a href="#">a link</a> may appear at any point in the text. The average paragraph contains five or six sentences although some may contain as little or one or two while others carry on for anything up to ten sentences and beyond.</p>
````

*/
/*

Blockquote

A basic blockquote.

````blockquote
<figure class="blockquote">
    <blockquote>
        At last we will reveal ourselves to the the Jedi. At last we will have 
        our revenge.
    </blockquote>
    <figcaption class="blockquote__cite">Darth Maul</figcaption>
</figure>
````

*/
.styles__blockquote {
  padding-left: 0.5625rem;
}
.styles__blockquote blockquote {
  padding: 0;
}
.styles__blockquote-cite {
  display: block;
}
.styles__blockquote-cite:before {
  content: "\2014";
}
/* Creating a class for white text, both for color but also b/c white text needs more
letter spacing than black text */
.styles__white-text {
  color: white;
  letter-spacing: 0.25px;
}
.styles__red-line {
  width: 100%;
  height: 3px;
  background-color: #A8192E;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
/*

Typographic Scale

The building blocks for the site's type sizes. Almost exclusively, an element's
font size is assigned with one of these classes. If a new size is needed, a new
class is created here so it can be used and reused elsewhere.

The list of type sizes can grow or shrink, but be vigilant in keeping the
number of sizes to a minimum. A nice rule of thumb is that no two sizes can one
pixel in difference (forcing you to choose one over the other, giving you one
class where you previously had two).

````typographic-scale
<p class="hierarchy__canon-text">Canon Text (38px)</p>
<p class="hierarchy__paragon-text">Paragon Text (30px)</p>
<p class="hierarchy__primer-text">Primer Text (24px)</p>
<p class="hierarchy__tertia-text">Tertia Text (18px)</p>
<p class="hierarchy__normal-text">Normal Text (14px)</p>
<p class="hierarchy__petite-text">Petite Text (12px)</p>
````

Long Modifiers

The type sizes are given the `--long` modifier, allowing you to use
each type size with varying line heights.

    <p class="hierarchy__petite-text">I'm just a small bit of text, my `line-height`
    can be tight.</p>

    <p class="hierarchy__petite-text--long">I'm a long paragraph, so my `line-height`
    should be longer to enhance legibility. ... </p>

*/
.hierarchy__long-text,
.hierarchy__canon-text--long,
.hierarchy__paragon-text--long,
.hierarchy__tertia-text--long,
.hierarchy__grand-text--long,
.hierarchy__great-text--long,
.hierarchy__normal-text--long,
.hierarchy__petite-text--long,
.hierarchy__pica-text--long,
.hierarchy__minion-text--long,
body,
.styles__body-text,
.elements__input-hint,
.elements__input-desc,
[class*="messaging__input-alert"] {
  line-height: 1.5;
}
/*

Canon Text

*/
.hierarchy__canon-text,
.styles__h1,
.styles__primary-heading,
.hierarchy__canon-text--long,
.wysiwyg h1,
.wysiwyg .hierarchy__canon-text,
.wysiwyg .styles__h1,
.wysiwyg .styles__primary-heading,
h1,
.wysiwyg h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.16666667;
}
@media all and (min-width: 62em) {
  .hierarchy__canon-text,
  .styles__h1,
  .styles__primary-heading,
  .hierarchy__canon-text--long,
  .wysiwyg h1,
  .wysiwyg .hierarchy__canon-text,
  .wysiwyg .styles__h1,
  .wysiwyg .styles__primary-heading,
  h1,
  .wysiwyg h1 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.125;
  }
}
/*

Paragon Text

*/
.hierarchy__paragon-text,
.styles__h2,
.styles__secondary-heading,
.hierarchy__paragon-text--long,
.wysiwyg h2,
.wysiwyg .hierarchy__paragon-text,
.wysiwyg .styles__h2,
.wysiwyg .styles__secondary-heading,
h2,
.wysiwyg h2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}
@media all and (min-width: 48em) {
  .hierarchy__paragon-text,
  .styles__h2,
  .styles__secondary-heading,
  .hierarchy__paragon-text--long,
  .wysiwyg h2,
  .wysiwyg .hierarchy__paragon-text,
  .wysiwyg .styles__h2,
  .wysiwyg .styles__secondary-heading,
  h2,
  .wysiwyg h2 {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.16666667;
  }
}
/*

Primer Text

*/
/*

Tertia Text

*/
.hierarchy__tertia-text,
.styles__h3,
.styles__tertiary-heading,
.hierarchy__tertia-text--long,
.wysiwyg h3,
.wysiwyg .tertia-text,
.positions__position--title,
.positionsPerma__title,
.history__position--title,
.history__position-title,
h3 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.04166667;
}
@media all and (min-width: 48em) {
  .hierarchy__tertia-text,
  .styles__h3,
  .styles__tertiary-heading,
  .hierarchy__tertia-text--long,
  .wysiwyg h3,
  .wysiwyg .tertia-text,
  .positions__position--title,
  .positionsPerma__title,
  .history__position--title,
  .history__position-title,
  h3 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
/*

Grand Text

*/
.hierarchy__grand-text,
.styles__h4,
.styles__quaternary-heading,
.styles__h5,
.styles__quinary-heading,
h4,
.hierarchy__grand-text--long,
.resources__resource--title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}
@media all and (min-width: 62em) {
  .hierarchy__grand-text,
  .styles__h4,
  .styles__quaternary-heading,
  .styles__h5,
  .styles__quinary-heading,
  h4,
  .hierarchy__grand-text--long,
  .resources__resource--title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
/*

Great Text

*/
.hierarchy__great-text,
.hierarchy__great-text--long {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.66666667;
}
@media all and (min-width: 62em) {
  .hierarchy__great-text,
  .hierarchy__great-text--long {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
/*

Normal Text

*/
.hierarchy__normal-text,
.hierarchy__normal-text--long,
.wysiwyg h4,
.wysiwyg .hierarchy__normal-text,
.profile__nav-link,
body,
.styles__body-text,
.wysiwyg .profile__nav-link,
.elements__input-hint,
.elements__input-desc,
[class*="messaging__input-alert"] {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}
@media all and (min-width: 48em) {
  .hierarchy__normal-text,
  .hierarchy__normal-text--long,
  .wysiwyg h4,
  .wysiwyg .hierarchy__normal-text,
  .profile__nav-link,
  body,
  .styles__body-text,
  .wysiwyg .profile__nav-link,
  .elements__input-hint,
  .elements__input-desc,
  [class*="messaging__input-alert"] {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.66666667;
  }
}
/*

Petite Text

*/
.hierarchy__petite-text,
.hierarchy__petite-text--long,
.wysiwyg h5,
.wysiwyg .hierarchy__petite-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.07142857;
}
@media all and (min-width: 48em) {
  .hierarchy__petite-text,
  .hierarchy__petite-text--long,
  .wysiwyg h5,
  .wysiwyg .hierarchy__petite-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
/*

Pica Text

*/
.hierarchy__pica-text,
.hierarchy__pica-text--long {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.07142857;
}
/*

Minion Text

*/
.hierarchy__minion-text,
.hierarchy__minion-text--long,
.wysiwyg h6,
.wysiwyg .hierarchy__minion-text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
}
/*

Interactive Elements

*/
/*

button

Default interactive button styles. This `.btn` class can be applied to `<a>`, 
`<button>`, or `<input>` elements. Button color and style classes can be combined 
with size classes, much like the type modules.

````button
<a class="button__btn" href="#">Default</a>
<a class="button__primary" href="#">Primary</a>
<a class="button__danger" href="#">Danger</a>
````

*/
button {
  font-size: 100%;
  margin: 0;
  -webkit-appearance: button;
  display: inline-block;
  cursor: pointer;
  line-height: normal;
}
button[disabled] {
  cursor: default;
}
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.button__base,
[class^="button"],
.acf-button.button-primary[type="submit"],
.button__primary,
.acf-button.button-primary,
.button__secondary,
.largeHero__cta {
  width: auto;
  height: auto;
  margin: 0;
  line-height: normal;
  text-decoration: none;
  position: relative;
  -webkit-appearance: none;
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 0;
  outline: 0;
  overflow: visible;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  background: #ffffff;
  color: #35526c;
  text-align: center;
  padding: 0.9375rem 1.96875rem;
  margin-top: 1.1111111111111112em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
p > .button__base,
p > [class^="button"],
p > .acf-button.button-primary[type="submit"],
p > .button__primary,
p > .acf-button.button-primary,
p > .button__secondary,
p > .largeHero__cta {
  margin-top: 0;
}
.button__base:hover,
[class^="button"]:hover,
.button__base:focus,
[class^="button"]:focus,
.button__base.is-current,
[class^="button"].is-current,
.acf-button.button-primary[type="submit"]:hover,
.acf-button.button-primary[type="submit"]:focus,
.acf-button.button-primary[type="submit"].is-current,
.button__primary:hover,
.button__primary:focus,
.button__primary.is-current,
.acf-button.button-primary:hover,
.acf-button.button-primary:focus,
.acf-button.button-primary.is-current,
.button__secondary:hover,
.button__secondary:focus,
.button__secondary.is-current,
.largeHero__cta:hover,
.largeHero__cta:focus,
.largeHero__cta.is-current {
  background: #ffffff;
}
.button__base.is-disabled,
[class^="button"].is-disabled,
.acf-button.button-primary[type="submit"].is-disabled,
.button__primary.is-disabled,
.acf-button.button-primary.is-disabled,
.button__secondary.is-disabled,
.largeHero__cta.is-disabled {
  background: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
}
/*

Button Variations

 */
.acf-button.button-primary[type="submit"],
.button__primary {
  background: #317E9F;
  color: #fff;
  border: 2px solid #317E9F;
  box-shadow: 4px 4px 0 0 rgba(28, 43, 57, 0.2);
  transition: all 0.25s ease;
  margin-bottom: 10px;
}
.acf-button.button-primary[type="submit"]:hover,
.button__primary:hover,
.acf-button.button-primary[type="submit"]:focus,
.button__primary:focus,
.acf-button.button-primary[type="submit"].is-current,
.button__primary.is-current {
  background: #155672;
  border-color: #155672;
  box-shadow: 8px 8px 0 0 rgba(28, 43, 57, 0.2);
}
.acf-button.button-primary[type="submit"].is-disabled,
.button__primary.is-disabled {
  background: rgba(28, 43, 57, 0.4);
  border-color: transparent;
  box-shadow: none;
}
.acf-button.button-primary[type="submit"].is-disabled-recaptcha,
.button__primary.is-disabled-recaptcha {
  background: rgba(28, 43, 57, 0.4);
  border-color: transparent;
  box-shadow: none;
}
.acf-button.button-primary[type="submit"].on-dark,
.button__primary.on-dark {
  background: #fff;
  color: #317E9F;
  border-color: #fff;
}
.acf-button.button-primary[type="submit"].on-dark:hover,
.button__primary.on-dark:hover,
.acf-button.button-primary[type="submit"].on-dark:focus,
.button__primary.on-dark:focus,
.acf-button.button-primary[type="submit"].on-dark.is-current,
.button__primary.on-dark.is-current {
  background-color: #F7F7F7;
  border-color: #F7F7F7;
}
.acf-button.button-primary[type="submit"].with-icon,
.button__primary.with-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.78125rem 1.6875rem;
}
.acf-button.button-primary[type="submit"].with-icon .icons__icon,
.button__primary.with-icon .icons__icon {
  width: 1.25em;
  height: 1.25em;
}
.acf-button.button-primary[type="submit"].with-icon span,
.button__primary.with-icon span {
  padding: 0.3125rem 0 0.3125rem 0.28125rem;
}
.acf-button.button-primary,
.button__secondary {
  background: #fff;
  color: #317E9F;
  border: 2px solid #317E9F;
  box-shadow: 4px 4px 0 0 rgba(28, 43, 57, 0.2);
  transition: all 0.25s ease;
  margin-bottom: 10px;
}
.acf-button.button-primary:hover,
.button__secondary:hover,
.acf-button.button-primary:focus,
.button__secondary:focus,
.acf-button.button-primary.is-current,
.button__secondary.is-current {
  color: #155672;
  box-shadow: 8px 8px 0 0 rgba(28, 43, 57, 0.2);
}
.acf-button.button-primary.is-disabled,
.button__secondary.is-disabled {
  background: rgba(28, 43, 57, 0.4);
  border-color: transparent;
  box-shadow: none;
}
.acf-button.button-primary.on-dark,
.button__secondary.on-dark {
  background: #317E9F;
  color: #fff;
  border-color: #fff;
}
.acf-button.button-primary.on-dark:hover,
.button__secondary.on-dark:hover,
.acf-button.button-primary.on-dark:focus,
.button__secondary.on-dark:focus,
.acf-button.button-primary.on-dark.is-current,
.button__secondary.on-dark.is-current {
  background-color: #155672;
  border-color: #fff;
  color: #fff;
}
.acf-button.button-primary.with-icon,
.button__secondary.with-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.78125rem 1.6875rem;
}
.acf-button.button-primary.with-icon .icons__icon,
.button__secondary.with-icon .icons__icon {
  width: 1.25em;
  height: 1.25em;
}
.acf-button.button-primary.with-icon span,
.button__secondary.with-icon span {
  padding: 0.3125rem 0 0.3125rem 0.28125rem;
}
.button__no-button {
  background: transparent;
  color: inherit;
  border: 0;
  padding: 0;
  margin: 0;
}
.button__no-button:hover,
.button__no-button:focus,
.button__no-button.is-current {
  background: transparent;
  color: inherit;
}
/*

````tiny-button
<a class="button__tiny" href="#">Tiny Button</a>
<a class="button__tiny button__primary" href="#">Tiny Button Primary</a>
<a class="button__tiny button__danger" href="#">Tiny Button Danger</a>
````

*/
/*

````small-button
<a class="button__small" href="#">Small Button</a>
<a class="button__small button__primary" href="#">Small Button Primary</a>
<a class="button__small button__danger" href="#">Small Button Danger</a>
````

*/
/*

````large-button
<a class="button__large" href="#">Large Button</a>
<a class="button__large button__primary" href="#">Large Button Primary</a>
<a class="button__large button__danger" href="#">Large Button Danger</a>
````

*/
.button__tiny {
  font-size: 16px;
  font-size: 1rem;
  padding: 0.3125rem 0.28125rem;
}
.button__small {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 0.625rem 1.125rem;
}
.button__small.with-icon {
  padding: 0.53125rem 0.95625rem;
}
.button__small.with-icon span {
  padding: 0.15625rem 0 0.15625rem 0.28125rem;
}
.button__large {
  font-size: 30px;
  font-size: 1.875rem;
}
.button__full-width {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
/*

Link Styles

Very basic stuff. The primary link color can be altered in the `config.less` 
file. Hover, focus, and current states are accounted for.

*/
a:focus,
a:active,
a:hover {
  outline: 0;
}
.links__link,
.lists__horizontal--pgs a[href],
.wysiwyg a {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44444444;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  position: relative;
  color: #116DB6;
  text-decoration: none;
  display: inline-block;
}
.links__link:after,
.lists__horizontal--pgs a[href]:after,
.wysiwyg a:after {
  content: '';
  position: absolute;
  background: #116DB6;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.links__link:hover,
.links__link:focus,
.links__link.is-current,
.lists__horizontal--pgs a[href]:hover,
.lists__horizontal--pgs a[href]:focus,
.lists__horizontal--pgs a[href].is-current,
.wysiwyg a:hover,
.wysiwyg a:focus,
.wysiwyg a.is-current {
  color: #0a4370;
}
.links__link--large,
.lists__horizontal--pgs a[href]--large,
.wysiwyg a--large {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}
.links__link--small,
.lists__horizontal--pgs a[href]--small,
.wysiwyg a--small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
.links__link--tiny,
.lists__horizontal--pgs a[href]--tiny,
.wysiwyg a--tiny {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.83333333;
}
/*

Unlink

Basic class to remove some link styling.

@TODO: Put in `presentational.less` file?

*/
.links__unlink {
  text-decoration: none;
}
/*

Skip-To Link

*/
.links__skip-to {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.links__skip-to:not(:focus) {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
  overflow: hidden;
}
.links__skip-to:not(:focus).focusable:active,
.links__skip-to:not(:focus).focusable:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  position: static;
}
body:hover .links__skip-to:not(:focus) a,
body:hover .links__skip-to:not(:focus) input,
body:hover .links__skip-to:not(:focus) button {
  display: none;
}
.links__link-light {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.66666667;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 0 1px;
  transition: color ease 0.3s;
}
.links__link-light::before,
.links__link-light::after {
  content: '';
  position: absolute;
  background-color: #FFD435;
  z-index: -1;
  height: 5%;
}
.links__link-light::before {
  width: 0%;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}
.links__link-light::after {
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all ease 0.6s;
}
.links__link-light:hover::before {
  width: 100%;
}
.links__link-light:hover::after {
  left: 100%;
  width: 0%;
  transition: all ease 0.2s;
}
.links__link-light--large {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}
.links__link-light--small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
.links__link-light--tiny {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.83333333;
}
/*

Forms

*/
form {
  margin: 0;
}
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
legend {
  width: 100%;
  border: 0;
  padding: 0;
  display: block;
  white-space: normal;
}
/*

Basic Form Elements

Inputs and textareas are set to `width: 100%` to adapt to the width of their 
wrapper. (Great for grids.) Select boxes are set to the width of their content,
maxing out at `100%`.

Almost all the form elements in Motif are best used inside a `label`.

    <label>
        Text Field
        <input type="text" name="text" required>
    </label>

*/
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  display: block;
}
input,
textarea {
  width: 100%;
  font-size: 1em;
  padding: 0.3125rem 0.25rem;
  outline: none;
}
input:hover,
textarea:hover,
input:focus,
textarea:focus,
input:active,
textarea:active,
input.is-current,
textarea.is-current {
  z-index: 1;
}
input {
  line-height: normal;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  display: inline-block;
  cursor: pointer;
}
input[disabled] {
  cursor: default;
}
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="checkbox"],
input[type="radio"] {
  margin: 3px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  vertical-align: top;
  width: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
  height: 5rem;
}
select {
  width: auto;
  max-width: 100%;
  font-size: 0.8125em;
}
/*

Input Label Elements

Child form elements of the `.elements__input-label` class are given a little bit of 
spacing to separate them from the label text. (See also `.elements__input-label` in the
form `type.less` file.)

````input-label-elements
<label class="elements__input-label">
    Text Field
    <input type="text" name="text" placeholder="Placeholder text" required>
</label>
<label class="elements__input-label">
    Textarea
    <textarea placeholder="Placeholder text"></textarea>
</label>
<label class="elements__input-label">
    Select
    <select>
        <option>Placeholder text</option>
    </select>
</label>
````

*/
.elements__input-label input,
.elements__input-label textarea,
.elements__input-label select {
  margin-top: 0.5555555555555556em;
  margin-bottom: 0.5555555555555556em;
}
/*

Input Widths

While you are encouraged to use the responsive grid system in conjunction with 
your form styles, sometimes it's useful to have form field widths that are 
simply consistent across viewports. These are those.

    <label class="elements__input-label">
        Text Field
        <input class="elements__input--xs" type="text" name="text" required>
    </label>

*/
.elements__input--eighth {
  width: 12.5%;
}
.elements__input--quarter {
  width: 25%;
}
.elements__input--half {
  width: 50%;
}
.elements__input--xxxs {
  max-width: 30px;
}
.elements__input--xxs {
  max-width: 50px;
}
.elements__input--xs {
  max-width: 100px;
}
.elements__input--s {
  max-width: 175px;
}
.elements__input--m {
  max-width: 250px;
}
.elements__input--l {
  max-width: 350px;
}
/*

Form Modules

````attached-label-before
<label class="elements__attached-label">
    <small class="label">$</small>
    <input type="num" id="attached-label-before" required>
</label>
````

````attached-label-after
<label class="elements__attached-label">
    <input type="text" id="attached-label-after" required>
    <small class="label">.com</small>
</label>
````

````attached-label-before-and-after
<label class="elements__attached-label">
    <small class="label">www.</small>
    <input type="text" id="attached-label" placeholder="domain" required>
    <small class="label">.com</small>
</label>
````

````attached-label-submit
<form class="elements__attached-label">
    <label class="is-hidden" for="attached-label-submit">Search</label>
    <input type="search" id="attached-label-submit" required>
    <div>
        <button type="submit" class="button__primary">
            <svg class="icon"><use xlink:href="#search"></svg>
            <b class="is-hidden">Submit</b>
        </button>
    </div>
</form>
````

*/
.elements__attached-label {
  display: table;
  overflow: hidden;
}
.elements__attached-label > * {
  margin-top: 0;
  display: table-cell;
  vertical-align: middle;
}
.elements__attached-label > * > :first-child {
  margin-top: 0;
}
.elements__attached-label [class*="button"] {
  display: block;
  width: 100%;
}
/*

Input Label

The `.input-label` class should be added to form labels that want a little 
extra styling for the label text.

(You may need to do some fancy things with hidden or altered labels, which is
why these styles aren't added to the `label` element by default.)

    <label class="elements__input-label">
        Text Field
        <input type="text" name="text" required>
    </label>

There are also input descriptions, which go directly underneath the label text,
and input hints that typically go underneath the input field.

    <label class="elements__input-label">
        Text Field
        
        <small class="elements__input-desc">
            This is a small description of the field.
        </small>
        
        <input type="text" name="text" required>
        
        <strong class="elements__input-hint">
            This is an important hint.
        </strong>
    </label>

*/
.elements__input-label {
  padding-top: 1.1111111111111112em;
}
.elements__input-hint {
  color: #F7F7F7;
  margin-top: 0.2777777777777778em;
}
.elements__input-desc {
  margin-top: 0em;
}
/*

Fieldset

A simple class to add to fieldsets that want a little more spacing.

*/
.elements__fieldset {
  margin-top: 1.1111111111111112em;
  padding-bottom: 1.1111111111111112em;
}
/*

Checkbox List

Lists of radio or checkbox inputs should typically be just that: lists. In 
Motif, you're encouraged to mark up your input lists as semantically as 
possible, meaning a fieldset, with a legend, and a list of inputs:

    <fieldset>
        <legend>
            <b class="elements__input-label">This is a question for a radio list?</b>
        </legend>

        <ul class="elements__checkbox-list">
            <li>
                <label class="media__media-object">
                    <input class="media__media-object__figure"
                     type="radio"
                     name="radioList"
                     value="Yes">

                    <b class="media__media-object__desc">
                        Yes
                    </b>
                </label>
            </li>
            <li>
                <label class="media__media-object">
                    <input class="media__media-object__figure"
                     type="radio"
                     name="radioList"
                     value="No">

                    <b class="media__media-object__desc">
                        No
                    </b>
                </label>
            </li>
        </ul>
    </fieldset>

*/
.elements__checkbox-list {
  margin-top: 0.5555555555555556em;
}
legend + .elements__checkbox-list {
  margin-top: 0em;
}
legend .elements__input-label {
  padding-bottom: 0.2777777777777778em;
}
legend + .elements__input-desc {
  /* Positioning */
  position: relative;
  top: -0.3125rem;
}
/*
    Expects the following pattern:

    <label class="elements__checkbox-bullet">
        <input type="checkbox || radio" >
        <span>Label Text</span>
    </label>
*/
.elements__checkbox-bullet {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.14285714;
  letter-spacing: 0.07142857em;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  position: relative;
  min-width: 80px;
  height: 100%;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  display: inline-block;
}
.elements__checkbox-bullet span {
  position: relative;
  display: block;
  background-color: #fff;
  border: 2px solid #116DB6;
  border-radius: 20px;
  padding: 10px 20px !important;
  width: 100%;
  color: #116DB6;
  transition: padding 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.elements__checkbox-bullet span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: url('../../../../lbcore/resources/icons/check-circle-white.svg') no-repeat;
  width: 20px;
  height: 20px;
  opacity: 0;
}
.elements__checkbox-bullet.is-active span,
.elements__checkbox-bullet input:checked ~ span {
  background: #116DB6;
  color: #fff;
  padding-left: 40px !important;
}
.elements__checkbox-bullet.is-active span:before,
.elements__checkbox-bullet input:checked ~ span:before {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.elements__checkbox-bullet:focus span,
.elements__checkbox-bullet:hover span {
  border-color: #0a4370;
  background: #0a4370;
  color: #fff;
}
.elements__checkbox-bullet input[type="checkbox"],
.elements__checkbox-bullet input[type="radio"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
/*
    Standardizing ACF, Wordpress, and template form styles.
*/
.acf-field {
  padding: 30px 12px !important;
}
#global-login label,
.acf-label label {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1 !important;
  color: #1C2B39;
  font-weight: normal !important;
}
#global-login input,
.forms__label-field,
.acf-input-wrap input {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1 !important;
  border: 2px solid #116DB6;
  background: white;
  margin: 5px 0 10px;
  padding: 10px !important;
  border-radius: 4px;
}
input.forms__label-field--checkbox[type="checkbox"] {
  display: inline-block;
  vertical-align: baseline;
  margin-right: 12px;
}
.acf-input-wrap input {
  height: 52px !important;
}
.acf-checkbox-list label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.14285714;
  letter-spacing: 0.07142857em;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  position: relative;
  min-width: 80px;
  height: 100%;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #116DB6;
  border-radius: 20px;
  padding: 10px 20px !important;
  color: #116DB6;
  transition: padding 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.acf-checkbox-list label:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: url('../../../../lbcore/resources/icons/check-circle-white.svg') no-repeat;
  width: 20px;
  height: 20px;
  opacity: 0;
}
.acf-checkbox-list label.selected {
  background-color: #116DB6;
  color: #fff;
  padding-left: 40px !important;
}
.acf-checkbox-list label.selected:before {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.acf-checkbox-list label:focus,
.acf-checkbox-list label:hover {
  border-color: #0a4370;
  background: #0a4370;
  color: #fff;
}
.acf-checkbox-list label input[type="checkbox"],
.acf-checkbox-list label input[type="radio"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
.acf-input select {
  border: 2px solid #116DB6;
  border-radius: 4px;
  padding: 15px !important;
}
.forms__label-alert,
.acf-field .acf-notice.-error {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.42857143;
  background: #ffe6e6;
  color: #d12626;
}
.acf-field .acf-notice {
  margin: 0 0 15px;
  padding: 0.625rem 12px;
  border: none;
}
.acf-field .acf-notice p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.42857143;
  margin: 0;
}
.forms__label-alert {
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 200ms cubic-bezier(0.39, 0.575, 0.565, 1), margin 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.is-invalid .forms__label-alert {
  margin-bottom: 15px;
  padding: 0.625rem 12px;
  opacity: 1;
}
.register__form .acf-field .acf-label label,
.forms__label-text,
.forms__label-text--checkbox {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.07142857 !important;
}
.acf-required,
.forms__required {
  color: #d12626;
}
#global-login .login-remember label {
  display: flex;
  align-items: center;
}
#global-login .login-remember input {
  margin-right: 0.28125rem;
}
@media all and (max-width: 47.9375em) {
  #global-login label {
    color: #fff;
  }
}
/*

Form Validation

*/
/*

Input States

A couple of classes added to inputs (typically by a JS Validation plugin) that
alter the child elements to convey states of success and error.

    <label class="elements__input-label messaging__is-erroneous">
        Text Field
        <input type="text" name="text" required>
    </label>

*/
.messaging__is-successful input,
.messaging__is-successful textarea,
.messaging__is-successful select {
  border-color: #72bc44;
}
.messaging__is-erroneous input,
.messaging__is-erroneous textarea,
.messaging__is-erroneous select {
  border-color: #A8192E;
}
/*

Form Messaging

Within labels, there are input alerts that apply to individual fields.

    <label class="elements__input-label messaging__is-erroneous">
        Text Field
        <input type="text" name="text" required>
        <strong class="messaing__input-alert--error">
            This field is required.
        </strong>
    </label>

*/
[class*="messaging__input-alert"] {
  /* Display & Box Model */
  display: inline-block;
  /* Pretty */
  color: #0a4370;
}
.messaging__input-alert--warning {
  color: #e7b600;
}
.messaging__input-alert--error {
  color: #A8192E;
}
.messaging__input-alert--success {
  color: #72bc44;
}
.background__connect-teal {
  background: #317E9F;
}
.background__labcoat-white {
  background: #fff;
}
.background__health-red {
  background: #A8192E;
}
.background__informative-black {
  background: #1C2B39;
}
.background__active-blue {
  background: #116DB6;
}
.background__clarity-teal {
  background: #155672;
}
.background__highlight-teal {
  background: #6499AF;
}
.background__leader-red {
  background: #841324;
}
.background__optimist-blue {
  background: #4090D5;
}
.background__calming-gray {
  background: #F7F7F7;
}
.background__gradient--blue {
  background-image: radial-gradient(circle, #6499AF 0%, #317E9F 48.99%, #155672 100%);
}
.background__blue-pattern {
  background-color: #155672 !important;
  background-image: url(https://usrl.imgix.net/wp-content/uploads/2020/10/21165933/blue-pattern-bg.png) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: left center !important;
}
/*

Spacing Helpers

Spacing helpers are quick but powerful classes that add margin or padding to
any given element. These classes are `!important`, so they override all other
styles.

* `p`, `m`                          =   padding, margin
* `a`, `t`, `r`, `b`, `l`, `h`, `v` =   all, top, right, bottom, left, horizontal, vertical
* `s`, `m`, `l`, `x`, `n`                =   small (~`5px`), medium (~`10px`), large (~`20px`), x-large (~`40px`) none (`0`)

For example: `.spacing__pam` means "padding, all, medium".

**Note:** These are all based on the current element's font size and the
project's vertical rhythm (even on the sides, to provide uniform spacing).
As such, they require `vars.less`.

*/
.spacing__ptn,
.spacing__pvn,
.spacing__pan {
  padding-top: 0 !important;
}
.spacing__pts,
.spacing__pvs,
.spacing__pas {
  padding-top: 0.3125rem !important;
}
.spacing__ptm,
.spacing__pvm,
.spacing__pam {
  padding-top: 0.625rem !important;
}
.spacing__ptl,
.spacing__pvl,
.spacing__pal {
  padding-top: 1.25rem !important;
}
.spacing__ptx,
.spacing__pvx,
.spacing__pax {
  padding-top: 2.5rem !important;
}
.spacing__prn,
.spacing__phn,
.spacing__pan {
  padding-right: 0 !important;
}
.spacing__prs,
.spacing__phs,
.spacing__pas {
  padding-right: 0.3125rem !important;
}
.spacing__prm,
.spacing__phm,
.spacing__pam {
  padding-right: 0.625rem !important;
}
.spacing__prl,
.spacing__phl,
.spacing__pal {
  padding-right: 1.25rem !important;
}
.spacing__prx,
.spacing__phx,
.spacing__pax {
  padding-right: 2.5rem !important;
}
.spacing__pbn,
.spacing__pvn,
.spacing__pan {
  padding-bottom: 0 !important;
}
.spacing__pbs,
.spacing__pvs,
.spacing__pas {
  padding-bottom: 0.3125rem !important;
}
.spacing__pbm,
.spacing__pvm,
.spacing__pam {
  padding-bottom: 0.625rem !important;
}
.spacing__pbl,
.spacing__pvl,
.spacing__pal {
  padding-bottom: 1.25rem !important;
}
.spacing__pbx,
.spacing__pvx,
.spacing__pax {
  padding-bottom: 2.5rem !important;
}
.spacing__pln,
.spacing__phn,
.spacing__pan {
  padding-left: 0 !important;
}
.spacing__pls,
.spacing__phs,
.spacing__pas {
  padding-left: 0.3125rem !important;
}
.spacing__plm,
.spacing__phm,
.spacing__pam {
  padding-left: 0.625rem !important;
}
.spacing__pll,
.spacing__phl,
.spacing__pal {
  padding-left: 1.25rem !important;
}
.spacing__plx,
.spacing__phx,
.spacing__pax {
  padding-left: 2.5rem !important;
}
.spacing__mtn,
.spacing__mvn,
.spacing__man {
  margin-top: 0 !important;
}
.spacing__mts,
.spacing__mvs,
.spacing__mas {
  margin-top: 0.3125rem !important;
}
.spacing__mtm,
.spacing__mvm,
.spacing__mam {
  margin-top: 0.625rem !important;
}
.spacing__mtl,
.spacing__mvl,
.spacing__mal {
  margin-top: 1.25rem !important;
}
.spacing__mtx,
.spacing__mvx,
.spacing__max {
  margin-top: 2.5rem !important;
}
.spacing__mrn,
.spacing__mhn,
.spacing__man {
  margin-right: 0 !important;
}
.spacing__mrs,
.spacing__mhs,
.spacing__mas {
  margin-right: 0.3125rem !important;
}
.spacing__mrm,
.spacing__mhm,
.spacing__mam {
  margin-right: 0.625rem !important;
}
.spacing__mrl,
.spacing__mhl,
.spacing__mal {
  margin-right: 1.25rem !important;
}
.spacing__mrx,
.spacing__mhx,
.spacing__max {
  margin-right: 2.5rem !important;
}
.spacing__mbn,
.spacing__mvn,
.spacing__man {
  margin-bottom: 0 !important;
}
.spacing__mbs,
.spacing__mvs,
.spacing__mas {
  margin-bottom: 0.3125rem !important;
}
.spacing__mbm,
.spacing__mvm,
.spacing__mam {
  margin-bottom: 0.625rem !important;
}
.spacing__mbl,
.spacing__mvl,
.spacing__mal {
  margin-bottom: 1.25rem !important;
}
.spacing__mbx,
.spacing__mvx,
.spacing__max {
  margin-bottom: 2.5rem !important;
}
.spacing__mln,
.spacing__mhn,
.spacing__man {
  margin-left: 0 !important;
}
.spacing__mls,
.spacing__mhs,
.spacing__mas {
  margin-left: 0.3125rem !important;
}
.spacing__mlm,
.spacing__mhm,
.spacing__mam {
  margin-left: 0.625rem !important;
}
.spacing__mll,
.spacing__mhl,
.spacing__mal {
  margin-left: 1.25rem !important;
}
.spacing__mlx,
.spacing__mhx,
.spacing__max {
  margin-left: 2.5rem !important;
}
/*

Text Align

Simple classes to adjust your text alignment. They can be added to individual elements or on wrapping elements (an outer `div`, perhaps) to adjust the alignment of all the child elements.

*/
.presentational__align-left {
  text-align: left;
}
.presentational__align-center {
  text-align: center;
}
.presentational__align-right {
  text-align: right;
}
.presentational__align-sub {
  vertical-align: sub;
}
.presentational__align-middle {
  vertical-align: middle;
}
.presentational__align-top {
  vertical-align: top;
}
/*

Floats

Next, we have classes for floating elements.

*/
.presentational__float-left {
  float: left;
}
.presentational__float-center {
  margin-left: auto;
  margin-right: auto;
}
.presentational__float-right {
  float: right;
}
.presentational__float-none {
  float: none;
}
.presentational__clear {
  clear: both;
}
/*

"New Line"

Turns an `inline` or `inline-block` element into a `block` one.

*/
.presentational__new-line,
.ratios__base:before,
.media__figure > a,
[class*="media__figure--"] > a,
.media__figure img,
[class*="media__figure--"] img,
.elements__input-label,
.elements__input-hint,
.elements__input-desc,
.ratios__video:before,
.ratios__1x1:before,
.ratios__square:before,
.ratios__2x1:before,
.ratios__1x2:before,
.simpleCard__figure:before,
.secondaryCard__figure:before,
.positions__figure:before,
.history__figure:before {
  display: block;
}
.presentational__group,
.lists__breadcrumb {
  /* Mixins */
}
.presentational__group:before,
.presentational__group:after {
  content: "\0020";
  height: 0;
  display: block;
  overflow: hidden;
}
.presentational__group:after {
  clear: both;
}
/*

"Is Hidden"

Visually hides content in a way that leaves it accessible to screen readers.
Like more magic, makes the visible invisible.

*/
.presentational__is-hidden,
.js .reveal__target {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  border: 0;
  overflow: hidden;
}
.presentational__is-hidden.focusable:active,
.presentational__is-hidden.focusable:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  position: static;
}
body:hover .presentational__is-hidden a,
body:hover .presentational__is-hidden input,
body:hover .presentational__is-hidden button {
  display: none;
}
@media all and (max-width: 47.9375em) {
  .presentational__is-hidden-small {
    width: 1px;
    height: 1px;
    padding: 0;
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    border: 0;
    overflow: hidden;
  }
  .presentational__is-hidden-small.focusable:active,
  .presentational__is-hidden-small.focusable:focus {
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
    position: static;
  }
  body:hover .presentational__is-hidden-small a,
  body:hover .presentational__is-hidden-small input,
  body:hover .presentational__is-hidden-small button {
    display: none;
  }
}
@media all and (min-width: 48em) and (max-width: 61.9375em) {
  .presentational__is-hidden-medium {
    width: 1px;
    height: 1px;
    padding: 0;
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    border: 0;
    overflow: hidden;
  }
  .presentational__is-hidden-medium.focusable:active,
  .presentational__is-hidden-medium.focusable:focus {
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
    position: static;
  }
  body:hover .presentational__is-hidden-medium a,
  body:hover .presentational__is-hidden-medium input,
  body:hover .presentational__is-hidden-medium button {
    display: none;
  }
}
@media all and (min-width: 62em) {
  .presentational__is-hidden-large {
    width: 1px;
    height: 1px;
    padding: 0;
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    border: 0;
    overflow: hidden;
  }
  .presentational__is-hidden-large.focusable:active,
  .presentational__is-hidden-large.focusable:focus {
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
    position: static;
  }
  body:hover .presentational__is-hidden-large a,
  body:hover .presentational__is-hidden-large input,
  body:hover .presentational__is-hidden-large button {
    display: none;
  }
}
/*

"Isn't Hidden"

Undoes `.is-hidden`.

*/
.presentational__isnt-hidden,
.js .reveal__target.is-revealed {
  /* Mixins */
  width: auto;
  height: auto;
  margin: 0;
  position: relative;
  clip: auto;
}
body:hover .presentational__isnt-hidden a,
body:hover .presentational__isnt-hidden input,
body:hover .presentational__isnt-hidden button {
  display: inline-block;
}
.lte7 body:hover .presentational__isnt-hidden a,
.lte7 body:hover .presentational__isnt-hidden input,
.lte7 body:hover .presentational__isnt-hidden button {
  display: inline;
  zoom: 1;
}
/*

"Relative Container"

Exactly what it sounds like.

*/
.presentational__relative-container,
.ratios__base,
[class*="messaging__input-alert"],
.js .expand__target,
.ratios__video,
.ratios__1x1,
.ratios__square,
.ratios__2x1,
.ratios__1x2,
.simpleCard__figure,
.secondaryCard__figure,
.positions__figure,
.history__figure {
  position: relative;
}
.presentational__flex-container {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 48em) {
  .presentational__flex-container {
    flex-direction: row;
  }
}
/*

"No Scroll"

Paired with "motif.utitlies.js" to make the page non-scrollable

*/
html.presentational__no-scroll,
body.presentational__no-scroll {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: fixed;
}
/*

Responsive Grid

The default responsive grid in Motif is built with a few rules in mind:

1. Each row of columns must be wrapped in a row element
2. There's no need to specify if a column is first or last

With that in mind, there is a basic syntax to learn for what classes to use.
Our breakpoints are classified as:

- Base
- Small
- Medium
- Large
- Extra Large

Our default responsive grid system only uses 3 grids to cover all of our bases:

- `grid, small` covers Base and Small viewports, but cuts off at Medium
- `grid, medium` covers only Medium
- `grid, large` starts at Large and covers Extra Large as well (there is no max
cutoff value for `grid, large`)

Understanding that, the syntax should be easy to understand. In these examples,
we will talk about `grid, small`:

- **Rows**: `.grid__sm-row` (Grid, Small, Row)
- **Columns**: `.grid__sm` (Grid, Column, Small)
- **Column Width**: `.grid__sm-half` (Grid, Small, Half-Width)

    <div class="grid__sm-row">
        <div class="grid__sm-half">...</div>
        <div class="grid__sm-half">...</div>
    </div>

However, to be slightly more succinct, you can use the condensed column syntax:

- **Columns (Condensed)**: `.grid__sm-half` (Grid, Column, Small, Half-Width)

    <div class="grid__sm-row">
        <div class="grid__sm-half">...</div>
        <div class="grid__sm-half">...</div>
    </div>

In brief, the way the grid works is that `.grid__sm` floats the element to the left
(by default), and adds padding to both the left and the right. `-half` gives
it a width of `50%`. The combined padding of the two columns bumped up against 
each other form the full "gutter". The `.grid__sm-row` then clears the floats and has
a *negative* margin on both the left and the right that pops the columns out to
the sides the exact width of their paddings, meaning the column content lines 
up with the site boundaries on the left and right without the need to specify 
"first" or "last" column classes.

To use this responsively, then, you just add the classes by breakpoint:

    <div class="grid__sm-row grid__med-row grid__lg-row">
        <div class="grid__sm-half grid__med-third grid__lg-quarter">
            ...
        </div>
        <div class="grid__sm-half grid__med-two-thirds grid__lg-three-quarters">
            ...
        </div>
    </div>

By default, the column breakdown of each grid breakpoint:

- `grid, small`: 4 columns
- `grid, medium`: 9 columns
- `grid, large`: 12 columns

For the larger grids, the classes follow the numbers closely...

    - `.grid__lg-10of12
    - `.grid__med-4of9`

...in just about every combination (based on their total column number), but 
all of the grids also have a few "fuzzy" shortcuts as well:

    - `half`
    - `third`
    - `quarter`
    - `three-quarters`
    - `two-thirds`

*/
.grid__halves,
.grid__thirds,
.grid__quarters {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  /* Pretty */
  letter-spacing: -0.31em;
  text-rendering: optimizespeed;
}
.grid__halves:before,
.grid__thirds:before,
.grid__quarters:before,
.grid__halves:after,
.grid__thirds:after,
.grid__quarters:after {
  content: "\0020";
  height: 0;
  display: block;
  overflow: hidden;
}
.grid__halves:after,
.grid__thirds:after,
.grid__quarters:after {
  clear: both;
}
ul.grid__halves,
ul.grid__thirds,
ul.grid__quarters {
  padding-left: 0;
  list-style: none outside none;
}
.grid__halves > *,
.grid__thirds > *,
.grid__quarters > * {
  display: inline;
  float: left;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  /* Display & Box Model */
  display: inline-block;
  /* Positioning */
  float: none;
  /* Pretty */
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
}
.grid__halves > * {
  width: 50%;
}
.grid__thirds > * {
  width: 33.33333%;
}
.grid__quarters > * {
  width: 25%;
}
.opera-only :-o-prefocus,
.grid__thirds {
  word-spacing: -0.43em;
}
/**
 * Mobile Grid
 */
@media all and (max-width: 47.9375em) {
  [class*="grid__sm-row"],
  .grid__sm-quarters,
  .grid__sm-thirds,
  .grid__sm-halves {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  [class*="grid__sm-row"]:before,
  [class*="grid__sm-row"]:after,
  .grid__sm-quarters:before,
  .grid__sm-quarters:after,
  .grid__sm-thirds:before,
  .grid__sm-thirds:after,
  .grid__sm-halves:before,
  .grid__sm-halves:after {
    content: "\0020";
    height: 0;
    display: block;
    overflow: hidden;
  }
  [class*="grid__sm-row"]:after,
  .grid__sm-quarters:after,
  .grid__sm-thirds:after,
  .grid__sm-halves:after {
    clear: both;
  }
  ul[class*="grid__sm-row"],
  ul.grid__sm-quarters,
  ul.grid__sm-thirds,
  ul.grid__sm-halves {
    padding-left: 0;
    list-style: none outside none;
  }
  .grid__sm-row--rtl > [class*="grid__sm"] {
    float: right;
  }
  .grid__sm-row--ltr > [class*="grid__sm"] {
    float: left;
  }
  [class*="grid__sm"]:not([class*="grid__sm-row"]) {
    display: inline;
    float: left;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .grid__sm-quarter,
  .grid__sm-quarters > * {
    width: 25%;
  }
  .grid__sm-third,
  .grid__sm-thirds > * {
    width: 33.33333%;
  }
  .grid__sm-half,
  .grid__sm-halves > * {
    width: 50%;
  }
  .grid__sm-two-thirds {
    width: 66.66667%;
  }
  .grid__sm-three-quarters {
    width: 75%;
  }
  .grid__sm-full {
    width: 100%;
  }
  .grid__sm-row--flex,
  .grid__sm-quarters,
  .grid__sm-thirds,
  .grid__sm-halves {
    letter-spacing: -0.31em;
    text-rendering: optimizespeed;
  }
  .grid__sm-row--flex > [class*="grid__sm"],
  .grid__sm-quarters > *,
  .grid__sm-thirds > *,
  .grid__sm-halves > * {
    float: none;
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
  }
  .opera-only :-o-prefocus,
  .grid__sm-row--flex,
  .grid__sm-quarters,
  .grid__sm-thirds,
  .grid__sm-halves {
    word-spacing: -0.43em;
  }
}
/**
 * Tablet Grid
 */
@media all and (min-width: 48em) and (max-width: 61.9375em) {
  [class*="grid__med-row"],
  .grid__med-quarters,
  .grid__med-thirds,
  .grid__med-halves {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  [class*="grid__med-row"]:before,
  [class*="grid__med-row"]:after,
  .grid__med-quarters:before,
  .grid__med-quarters:after,
  .grid__med-thirds:before,
  .grid__med-thirds:after,
  .grid__med-halves:before,
  .grid__med-halves:after {
    content: "\0020";
    height: 0;
    display: block;
    overflow: hidden;
  }
  [class*="grid__med-row"]:after,
  .grid__med-quarters:after,
  .grid__med-thirds:after,
  .grid__med-halves:after {
    clear: both;
  }
  ul[class*="grid__med-row"],
  ul.grid__med-quarters,
  ul.grid__med-thirds,
  ul.grid__med-halves {
    padding-left: 0;
    list-style: none outside none;
  }
  .grid__med-row--rtl > [class*="grid__med"] {
    float: right;
  }
  .grid__med-row--ltr > [class*="grid__med"] {
    float: left;
  }
  [class*="grid__med"]:not([class*="grid__med-row"]) {
    display: inline;
    float: left;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .grid__med-quarter,
  [class*="grid__med-2of8"],
  .grid__med-quarters > * {
    width: 25%;
  }
  .grid__med-third,
  [class*="grid__med-3of9"],
  [class*="grid__med-2of6"],
  .grid__med-thirds > * {
    width: 33.33333%;
  }
  .grid__med-half,
  [class*="grid__med-4of8"],
  [class*="grid__med-3of6"],
  .grid__med-halves > * {
    width: 50%;
  }
  .grid__med-two-thirds,
  [class*="grid__med-6of9"],
  [class*="grid__med-4of6"] {
    width: 66.66667%;
  }
  .grid__med-three-quarters,
  [class*="grid__med-6of8"] {
    width: 75%;
  }
  .grid__med-full {
    width: 100%;
  }
  [class*="grid__med-8of9"] {
    width: 88.88889%;
  }
  [class*="grid__med-7of9"] {
    width: 77.77778%;
  }
  [class*="grid__med-5of9"] {
    width: 55.55556%;
  }
  [class*="grid__med-4of9"] {
    width: 44.44444%;
  }
  [class*="grid__med-2of9"] {
    width: 22.22222%;
  }
  [class*="grid__med-1of9"] {
    width: 11.11111%;
  }
  [class*="grid__med-7of8"] {
    width: 87.5%;
  }
  [class*="grid__med-5of8"] {
    width: 62.5%;
  }
  [class*="grid__med-3of8"] {
    width: 37.5%;
  }
  [class*="grid__med-1of8"] {
    width: 12.5%;
  }
  [class*="grid__med-6of7"] {
    width: 85.71429%;
  }
  [class*="grid__med-5of7"] {
    width: 71.42857%;
  }
  [class*="grid__med-4of7"] {
    width: 57.14286%;
  }
  [class*="grid__med-3of7"] {
    width: 42.85714%;
  }
  [class*="grid__med-2of7"] {
    width: 28.57143%;
  }
  [class*="grid__med-1of7"] {
    width: 14.28571%;
  }
  [class*="grid__med-5of6"] {
    width: 83.33333%;
  }
  [class*="grid__med-1of6"] {
    width: 16.66667%;
  }
  [class*="grid__med-4of5"] {
    width: 80%;
  }
  [class*="grid__med-3of5"] {
    width: 60%;
  }
  [class*="grid__med-2of5"] {
    width: 40%;
  }
  [class*="grid__med-1of5"] {
    width: 20%;
  }
  .grid__med-row--flex,
  .grid__med-quarters,
  .grid__med-thirds,
  .grid__med-halves {
    letter-spacing: -0.31em;
    text-rendering: optimizespeed;
  }
  .grid__med-row--flex > [class*="grid__med"],
  .grid__med-quarters > *,
  .grid__med-thirds > *,
  .grid__med-halves > * {
    float: none;
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
  }
  .opera-only :-o-prefocus,
  .grid__med-row--flex,
  .grid__med-quarters,
  .grid__med-thirds,
  .grid__med-halves {
    word-spacing: -0.43em;
  }
}
/**
 * Desktop Grid
 */
/*

````desktop-grid
<div class="grid__lg-quarters">
    <div>
        <div class="block">Quarter</div>
    </div>
    <div>
        <div class="block">Quarter</div>
    </div>
    <div>
        <div class="block">Quarter</div>
    </div>
    <div>
        <div class="block">Quarter</div>
    </div>
</div>
<div class="grid__lg-thirds">
    <div>
        <div class="block">Third</div>
    </div>
    <div>
        <div class="block">Third</div>
    </div>
    <div>
        <div class="block">Third</div>
    </div>
</div>
<div class="grid__lg-halves">
    <div>
        <div class="block">Half</div>
    </div>
    <div>
        <div class="block">Half</div>
    </div>
</div>
<div class="grid__lg-row">
    <div class="grid__lg-two-thirds">
        <div class="block">Two Thirds</div>
    </div>
    <div class="grid__lg-third">
        <div class="block">Third</div>
    </div>
</div>
<div class="grid__lg-row">
    <div class="grid__lg-three-quarters">
        <div class="block">Three Quarters</div>
    </div>
    <div class="grid__lg-quarter">
        <div class="block">Quarter</div>
    </div>
</div>
````

*/
@media all and (min-width: 62em) {
  [class*="grid__lg-row"],
  .grid__lg-quarters,
  .grid__lg-thirds,
  .grid__lg-halves {
    margin-left: -0.5625rem;
    margin-right: -0.5625rem;
  }
  [class*="grid__lg-row"]:before,
  [class*="grid__lg-row"]:after,
  .grid__lg-quarters:before,
  .grid__lg-quarters:after,
  .grid__lg-thirds:before,
  .grid__lg-thirds:after,
  .grid__lg-halves:before,
  .grid__lg-halves:after {
    content: "\0020";
    height: 0;
    display: block;
    overflow: hidden;
  }
  [class*="grid__lg-row"]:after,
  .grid__lg-quarters:after,
  .grid__lg-thirds:after,
  .grid__lg-halves:after {
    clear: both;
  }
  ul[class*="grid__lg-row"],
  ul.grid__lg-quarters,
  ul.grid__lg-thirds,
  ul.grid__lg-halves {
    padding-left: 0;
    list-style: none outside none;
  }
  .grid__lg-row--rtl > [class*="grid__lg"] {
    float: right;
  }
  .grid__lg-row--ltr > [class*="grid__lg"] {
    float: left;
  }
  [class*="grid__lg"]:not([class*="grid__lg-row"]) {
    display: inline;
    float: left;
    padding-left: 0.5625rem;
    padding-right: 0.5625rem;
  }
  .grid__lg-quarter,
  .grid__lg-quarter,
  [class*="grid__lg-3of12"],
  [class*="grid__lg-3of12"],
  [class*="grid__lg-2of8"],
  [class*="grid__lg-2of8"],
  .grid__lg-quarters > *,
  .grid__lg-quarters > * {
    width: 25%;
  }
  .grid__lg-third,
  .grid__lg-third,
  [class*="grid__lg-4of12"],
  [class*="grid__lg-4of12"],
  [class*="grid__lg-3of9"],
  [class*="grid__lg-3of9"],
  [class*="grid__lg-2of6"],
  [class*="grid__lg-2of6"],
  .grid__lg-thirds > *,
  .grid__lg-thirds > * {
    width: 33.33333%;
  }
  .grid__lg-half,
  .grid__lg-half,
  [class*="grid__lg-6of12"],
  [class*="grid__lg-6of12"],
  [class*="grid__lg-5of10"],
  [class*="grid__lg-5of10"],
  [class*="grid__lg-4of8"],
  [class*="grid__lg-4of8"],
  [class*="grid__lg-3of6"],
  [class*="grid__lg-3of6"],
  .grid__lg-halves > *,
  .grid__lg-halves > * {
    width: 50%;
  }
  .grid__lg-two-thirds,
  .grid__lg-two-thirds,
  [class*="grid__lg-8of12"],
  [class*="grid__lg-8of12"],
  [class*="grid__lg-6of9"],
  [class*="grid__lg-6of9"],
  [class*="grid__lg-4of6"],
  [class*="grid__lg-4of6"] {
    width: 66.66667%;
  }
  .grid__lg-three-quarters,
  .grid__lg-three-quarters,
  [class*="grid__lg-9of12"],
  [class*="grid__lg-9of12"],
  [class*="grid__lg-6of8"],
  [class*="grid__lg-6of8"] {
    width: 75%;
  }
  .grid__lg-full,
  .grid__lg-full {
    width: 100%;
  }
  [class*="grid__lg-11of12"] {
    width: 91.66667%;
  }
  [class*="grid__lg-10of12"] {
    width: 83.33333%;
  }
  [class*="grid__lg-7of12"] {
    width: 58.33333%;
  }
  [class*="grid__lg-5of12"] {
    width: 41.66667%;
  }
  [class*="grid__lg-2of12"] {
    width: 16.66667%;
  }
  [class*="grid__lg-1of12"] {
    width: 8.33333%;
  }
  [class*="grid__lg-10of11"] {
    width: 90.90909%;
  }
  [class*="grid__lg-9of11"] {
    width: 81.81818%;
  }
  [class*="grid__lg-8of11"] {
    width: 72.72727%;
  }
  [class*="grid__lg-7of11"] {
    width: 63.63636%;
  }
  [class*="grid__lg-6of11"] {
    width: 54.54545%;
  }
  [class*="grid__lg-5of11"] {
    width: 45.45455%;
  }
  [class*="grid__lg-4of11"] {
    width: 36.36364%;
  }
  [class*="grid__lg-3of11"] {
    width: 27.27273%;
  }
  [class*="grid__lg-2of11"] {
    width: 18.18182%;
  }
  [class*="grid__lg-1of11"] {
    width: 9.09091%;
  }
  [class*="grid__lg-9of10"] {
    width: 90%;
  }
  [class*="grid__lg-8of10"] {
    width: 80%;
  }
  [class*="grid__lg-7of10"] {
    width: 70%;
  }
  [class*="grid__lg-6of10"] {
    width: 60%;
  }
  [class*="grid__lg-4of10"] {
    width: 40%;
  }
  [class*="grid__lg-3of10"] {
    width: 30%;
  }
  [class*="grid__lg-2of10"] {
    width: 20%;
  }
  [class*="grid__lg-1of10"] {
    width: 10%;
  }
  [class*="grid__lg-8of9"] {
    width: 88.88889%;
  }
  [class*="grid__lg-7of9"] {
    width: 77.77778%;
  }
  [class*="grid__lg-5of9"] {
    width: 55.55556%;
  }
  [class*="grid__lg-4of9"] {
    width: 44.44444%;
  }
  [class*="grid__lg-2of9"] {
    width: 22.22222%;
  }
  [class*="grid__lg-1of9"] {
    width: 11.11111%;
  }
  [class*="grid__lg-7of8"] {
    width: 87.5%;
  }
  [class*="grid__lg-5of8"] {
    width: 62.5%;
  }
  [class*="grid__lg-3of8"] {
    width: 37.5%;
  }
  [class*="grid__lg-1of8"] {
    width: 12.5%;
  }
  [class*="grid__lg-6of7"] {
    width: 85.71429%;
  }
  [class*="grid__lg-5of7"] {
    width: 71.42857%;
  }
  [class*="grid__lg-4of7"] {
    width: 57.14286%;
  }
  [class*="grid__lg-3of7"] {
    width: 42.85714%;
  }
  [class*="grid__lg-2of7"] {
    width: 28.57143%;
  }
  [class*="grid__lg-1of7"] {
    width: 14.28571%;
  }
  [class*="grid__lg-5of6"] {
    width: 83.33333%;
  }
  [class*="grid__lg-1of6"] {
    width: 16.66667%;
  }
  [class*="grid__lg-4of5"] {
    width: 80%;
  }
  [class*="grid__lg-3of5"] {
    width: 60%;
  }
  [class*="grid__lg-2of5"] {
    width: 40%;
  }
  [class*="grid__lg-1of5"] {
    width: 20%;
  }
  /*

    Media Grid

    The Media Grid allows you to place a grid of photos or videos (catalog or
    retail products, etc.) without floating them, alleviating the need to concern
    yourself with clearing the floats with rows should an object extend further
    than another. Also, because they are not floating, it allows you to align
    the entire group center, making sure any "orphaned" grid entries are centered.

    The syntax is simply the same as the regular responsive grid system, except
    the row class has a `--flex` modifier.

    ````media-grid
    <ul class="grid__sm-halves grid__med-thirds grid__lg-quarters">
        <li>
            <figure class="figure">
                <img src="http://placehold.it/400">
                <figcaption>Alderaan is peaceful. We have no weapons.</figcaption>
            </figure>
        </li>
        <li>
            <figure class="figure">
                <img src="http://placehold.it/400">
            </figure>
        </li>
        <li>
            <figure class="figure">
                <img src="http://placehold.it/400">
                <figcaption>Alderaan is peaceful. We have no weapons.</figcaption>
            </figure>
        </li>
        <li>
            <figure class="figure">
                <img src="http://placehold.it/400">
            </figure>
        </li>
        <li>
            <figure class="figure">
                <img src="http://placehold.it/400">
                <figcaption>Alderaan is peaceful. We have no weapons.</figcaption>
            </figure>
        </li>
        <li>
            <figure class="figure">
                <img src="http://placehold.it/400">
            </figure>
        </li>
        <li>
            <figure class="figure">
                <img src="http://placehold.it/400">
            </figure>
        </li>
    </ul>
    ````

    */
  .grid__lg-row--flex,
  .grid__lg-quarters,
  .grid__lg-thirds,
  .grid__lg-halves {
    letter-spacing: -0.31em;
    text-rendering: optimizespeed;
  }
  .grid__lg-row--flex > [class*="grid__lg"],
  .grid__lg-quarters > *,
  .grid__lg-thirds > *,
  .grid__lg-halves > * {
    float: none;
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
  }
  .opera-only :-o-prefocus,
  .grid__lg-row--flex,
  .grid__lg-quarters,
  .grid__lg-thirds,
  .grid__lg-halves {
    word-spacing: -0.43em;
  }
}
/*

Off-Canvas Trigger (Small Screens Only)

The Off-Canvas Trigger is a simple way of pushing a column of content
off-canvas and sliding it on upon trigger. In this case, the `is-active` 
class is placed on the `.off-canvas` wrapping element so that it can 
adjust both child elements.

@TODO: Adjust for IE9?
@TODO: Show better example w/ Reveal plugin

    <div class="off-canvas__shift--left">
        <div class="off-canvas__primary">
            ...
        </div>
        <div class="off-canvas__secondary">
            ...
        </div>
    </div>

*/
.off-canvas__shift-base,
.js .off-canvas__shift--left,
.js .off-canvas__shift--right,
.js .off-canvas__shift--top,
.js .off-canvas__shift--bottom {
  position: relative;
  overflow: hidden;
}
.js .off-canvas__primary-base,
.js .off-canvas__primary {
  position: relative;
  width: 100%;
  z-index: 1;
}
.off-canvas__shift-base.is-active > .off-canvas__primary-base,
.js .off-canvas__shift--left.is-active > .off-canvas__primary-base,
.js .off-canvas__shift--right.is-active > .off-canvas__primary-base,
.js .off-canvas__shift--top.is-active > .off-canvas__primary-base,
.js .off-canvas__shift--bottom.is-active > .off-canvas__primary-base,
.off-canvas__shift-base.is-active > .off-canvas__primary {
  transform: translate3d(0, 0, 0);
  height: 100vh;
  overflow: hidden;
}
.off-canvas__shift-base.is-active > .off-canvas__primary-base,
.off-canvas__shift-base.was-active > .off-canvas__primary-base,
.js .off-canvas__shift--left.is-active > .off-canvas__primary-base,
.js .off-canvas__shift--left.was-active > .off-canvas__primary-base,
.js .off-canvas__shift--right.is-active > .off-canvas__primary-base,
.js .off-canvas__shift--right.was-active > .off-canvas__primary-base,
.js .off-canvas__shift--top.is-active > .off-canvas__primary-base,
.js .off-canvas__shift--top.was-active > .off-canvas__primary-base,
.js .off-canvas__shift--bottom.is-active > .off-canvas__primary-base,
.js .off-canvas__shift--bottom.was-active > .off-canvas__primary-base,
.off-canvas__shift-base.is-active > .off-canvas__primary,
.off-canvas__shift-base.was-active > .off-canvas__primary {
  transition: all 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media all and (min-width: 48em) {
  .off-canvas__shift-base.is-active > .off-canvas__primary-base,
  .off-canvas__shift-base.was-active > .off-canvas__primary-base,
  .js .off-canvas__shift--left.is-active > .off-canvas__primary-base,
  .js .off-canvas__shift--left.was-active > .off-canvas__primary-base,
  .js .off-canvas__shift--right.is-active > .off-canvas__primary-base,
  .js .off-canvas__shift--right.was-active > .off-canvas__primary-base,
  .js .off-canvas__shift--top.is-active > .off-canvas__primary-base,
  .js .off-canvas__shift--top.was-active > .off-canvas__primary-base,
  .js .off-canvas__shift--bottom.is-active > .off-canvas__primary-base,
  .js .off-canvas__shift--bottom.was-active > .off-canvas__primary-base,
  .off-canvas__shift-base.is-active > .off-canvas__primary,
  .off-canvas__shift-base.was-active > .off-canvas__primary {
    transition-duration: 0.25s;
  }
}
.js .off-canvas__secondary-base,
.js .off-canvas__secondary {
  transform: translate3d(0, 0, 0);
  position: relative;
  width: 100%;
  z-index: 2;
}
.off-canvas__shift-base.is-active > .off-canvas__secondary-base,
.off-canvas__shift-base.was-active > .off-canvas__secondary-base,
.js .off-canvas__shift--left.is-active > .off-canvas__secondary-base,
.js .off-canvas__shift--left.was-active > .off-canvas__secondary-base,
.js .off-canvas__shift--right.is-active > .off-canvas__secondary-base,
.js .off-canvas__shift--right.was-active > .off-canvas__secondary-base,
.js .off-canvas__shift--top.is-active > .off-canvas__secondary-base,
.js .off-canvas__shift--top.was-active > .off-canvas__secondary-base,
.js .off-canvas__shift--bottom.is-active > .off-canvas__secondary-base,
.js .off-canvas__shift--bottom.was-active > .off-canvas__secondary-base,
.off-canvas__shift-base.is-active > .off-canvas__secondary,
.off-canvas__shift-base.was-active > .off-canvas__secondary {
  transition: all 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media all and (min-width: 48em) {
  .off-canvas__shift-base.is-active > .off-canvas__secondary-base,
  .off-canvas__shift-base.was-active > .off-canvas__secondary-base,
  .js .off-canvas__shift--left.is-active > .off-canvas__secondary-base,
  .js .off-canvas__shift--left.was-active > .off-canvas__secondary-base,
  .js .off-canvas__shift--right.is-active > .off-canvas__secondary-base,
  .js .off-canvas__shift--right.was-active > .off-canvas__secondary-base,
  .js .off-canvas__shift--top.is-active > .off-canvas__secondary-base,
  .js .off-canvas__shift--top.was-active > .off-canvas__secondary-base,
  .js .off-canvas__shift--bottom.is-active > .off-canvas__secondary-base,
  .js .off-canvas__shift--bottom.was-active > .off-canvas__secondary-base,
  .off-canvas__shift-base.is-active > .off-canvas__secondary,
  .off-canvas__shift-base.was-active > .off-canvas__secondary {
    transition-duration: 0.25s;
  }
}
.js .off-canvas__shift--left.is-active {
  height: 100vh;
  overflow: hidden;
}
.js .off-canvas__shift--right.is-active {
  height: 100vh;
  overflow: hidden;
}
.js .off-canvas__shift--top {
  min-height: 100vh;
}
.js .off-canvas__shift--top.is-active {
  height: 100vh;
  overflow: hidden;
}
.js .off-canvas__shift--bottom {
  min-height: 100vh;
}
.js .off-canvas__shift--bottom.is-active {
  height: 100vh;
  overflow: hidden;
}
.js .off-canvas__shift--left > .off-canvas__primary,
.js .off-canvas__shift--right > .off-canvas__primary {
  min-height: 100vh;
}
.js .off-canvas__shift--left > .off-canvas__primary {
  transform: translate3d(-100%, 0, 0);
  float: right;
  margin-right: -100%;
}
.js .off-canvas__shift--right > .off-canvas__primary {
  transform: translate3d(100%, 0, 0);
  float: left;
  margin-left: -100%;
}
@media all and (min-width: 48em) {
  .js .off-canvas__shift--right.is-active > .off-canvas__primary {
    transform: translate3d(30%, 0, 0);
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__shift--right.is-active > .off-canvas__primary {
    transform: translate3d(40%, 0, 0);
  }
}
@media all and (min-width: 48em) {
  .js .off-canvas__shift--left.is-active > .off-canvas__primary {
    transform: translate3d(-30%, 0, 0);
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__shift--left.is-active > .off-canvas__primary {
    transform: translate3d(-40%, 0, 0);
  }
}
.js .off-canvas__shift--top.is-active > .off-canvas__primary,
.js .off-canvas__shift--bottom.is-active > .off-canvas__primary {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.js .off-canvas__shift--top.is-active > .off-canvas__primary {
  transform: translate3d(0, 80vh, 0);
}
.js .off-canvas__shift--bottom.is-active > .off-canvas__primary {
  transform: translate3d(0, -80vh, 0);
}
.js .off-canvas__shift--left > .off-canvas__secondary,
.js .off-canvas__shift--right > .off-canvas__secondary {
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
}
@media all and (min-width: 48em) {
  .js .off-canvas__shift--left > .off-canvas__secondary,
  .js .off-canvas__shift--right > .off-canvas__secondary {
    width: 70%;
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__shift--left > .off-canvas__secondary,
  .js .off-canvas__shift--right > .off-canvas__secondary {
    width: 60%;
  }
}
.js .off-canvas__shift--left > .off-canvas__secondary {
  transform: translate3d(0, 0, 0);
  float: left;
  margin-left: -100%;
}
@media all and (min-width: 48em) {
  .js .off-canvas__shift--left > .off-canvas__secondary {
    margin-left: -70%;
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__shift--left > .off-canvas__secondary {
    margin-left: -60%;
  }
}
.js .off-canvas__shift--right > .off-canvas__secondary {
  transform: translate3d(0, 0, 0);
  float: right;
  margin-right: -100%;
}
@media all and (min-width: 48em) {
  .js .off-canvas__shift--right > .off-canvas__secondary {
    margin-right: -70%;
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__shift--right > .off-canvas__secondary {
    margin-right: -60%;
  }
}
.js .off-canvas__shift--left.is-active > .off-canvas__secondary {
  transform: translate3d(100%, 0, 0);
}
.js .off-canvas__shift--right.is-active > .off-canvas__secondary {
  transform: translate3d(-100%, 0, 0);
}
.js .off-canvas__shift--top > .off-canvas__secondary,
.js .off-canvas__shift--bottom > .off-canvas__secondary {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}
.js .off-canvas__shift--top > .off-canvas__secondary {
  transform: translate3d(0, -100%, 0);
  top: 0;
}
.js .off-canvas__shift--bottom > .off-canvas__secondary {
  transform: translate3d(0, 100%, 0);
  bottom: 0;
}
.js .off-canvas__shift--top.is-active > .off-canvas__secondary,
.js .off-canvas__shift--bottom.is-active > .off-canvas__secondary {
  transform: translate3d(0, 0, 0);
  overflow: auto;
}
.off-canvas__slide-base,
.js .off-canvas__slide--left,
.js .off-canvas__slide--right,
.js .off-canvas__slide--top,
.js .off-canvas__slide--bottom {
  position: fixed;
  z-index: 110;
  overflow: auto;
  overflow-x: hidden;
  transition: all 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.off-canvas__slide-base.is-revealed,
.js .off-canvas__slide--left.is-revealed,
.js .off-canvas__slide--right.is-revealed,
.js .off-canvas__slide--top.is-revealed,
.js .off-canvas__slide--bottom.is-revealed {
  transform: translate3d(0, 0, 0);
}
.js .off-canvas__slide--left {
  top: 0;
  bottom: 0;
  left: 0;
  width: 80%;
  transform: translate3d(-100%, 0, 0);
}
@media all and (min-width: 48em) {
  .js .off-canvas__slide--left {
    width: 33%;
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__slide--left {
    width: 25%;
  }
}
@media all and (min-width: 77.5em) {
  .js .off-canvas__slide--left {
    width: 20%;
  }
}
.js .off-canvas__slide--right {
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  transform: translate3d(100%, 0, 0);
}
@media all and (min-width: 48em) {
  .js .off-canvas__slide--right {
    width: 33%;
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__slide--right {
    width: 25%;
  }
}
@media all and (min-width: 77.5em) {
  .js .off-canvas__slide--right {
    width: 20%;
  }
}
.js .off-canvas__slide--top {
  top: 0;
  right: 0;
  left: 0;
  height: 90%;
  transform: translate3d(0, -100%, 0);
}
@media all and (min-width: 48em) {
  .js .off-canvas__slide--top {
    height: 33%;
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__slide--top {
    height: 25%;
  }
}
@media all and (min-width: 77.5em) {
  .js .off-canvas__slide--top {
    height: 20%;
  }
}
.js .off-canvas__slide--bottom {
  right: 0;
  bottom: 0;
  left: 0;
  height: 90%;
  transform: translate3d(0, 100%, 0);
}
@media all and (min-width: 48em) {
  .js .off-canvas__slide--bottom {
    height: 33%;
  }
}
@media all and (min-width: 62em) {
  .js .off-canvas__slide--bottom {
    height: 25%;
  }
}
@media all and (min-width: 77.5em) {
  .js .off-canvas__slide--bottom {
    height: 20%;
  }
}
.overflow-list {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
.overflow-list__item {
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  position: relative;
}
@media all and (min-width: 48em) {
  .overflow-list--until-medium {
    overflow: visible;
    white-space: normal;
  }
}
@media all and (min-width: 62em) {
  .overflow-list--until-large {
    overflow: visible;
    white-space: normal;
  }
}
@media all and (min-width: 77.5em) {
  .overflow-list--until-x-large {
    overflow: visible;
    white-space: normal;
  }
}
/*

Wrapper

This is the site-wide containing class. Put it around anything you want to be
contained in the "site width". By default, caps off at `1150px`.

*/
.wrappers__wrapper {
  width: 87.5%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 77.5em) {
  .wrappers__wrapper {
    max-width: 1024px;
  }
}
.wrappers__break-out {
  width: calc(100% + (7.142857142857142% * 2));
  position: relative;
  left: -7.142857142857142%;
}
@media all and (min-width: 73.14285714285714em) {
  .wrappers__break-out {
    width: calc(100% + ((100vw - 1024px)));
    left: calc(((100vw - 1024px)) / -2);
  }
}
/*
FLEX UTILITIES
@author Enid Soto <enid@lifeblue.com>
@author Travis Self <travis@lifeblue.com>

Create a parent flex element by applying the class `.flex`, and add flex items with the class `.flex__col`. You can also use the grid system's column classes, i.e. `grid__lg-half`.
    <div class="flex">
        <div class="flex__col">...</div>
        <div class="flex__col">...</div>
    </div>

    Add gutters to the columns by adding the class `.flex__gutters` to the parent flex container:
    <div class="flex flex__gutters">
        <div class="flex__col">...</div>
        <div class="flex__col">...</div>
    </div>

    .m-flex__element()
    --------------------
    This mixin will set the display to flex, and also set the flex-direction and flex-wrap to their default values (row and nowrap, respectively). If you are using the standard motif column classes (i.e. grid__sm-half), you must set the gutters to true.
    You can set new values with the variables `@direction` and `@wrap`, like so: 
    .m-flex__element(@direction: column, @wrap: wrap);

.m-flex__order(@number)
-------------------------
Use this mixin to set the order of each flex item within a parent flex element. Accepts a unitless value only. 

.m-flex(@grow, @shrink, @basis)
--------------------------------
This mixin sets the shorthand `flex` property, which combines flex-grow, flex-shrink and flex-basis.
    @grow: specifies how much a flex item will grow relative to the rest of the flexible items inside the same container. Accepts a unitless value only. Negative values are invalid. 
    @shrink: specifies how much a flex item will shrink relative to the rest of the flexible items inside the same container. Accepts a unitless value only. Negative values are invalid.
    @basis: specifies the initial length of a flexible item. Accepts a length (20%, 5rem, etc) or a keyword.
Note: IE 9 and earlier do not support the flex property.

*/
.flex {
  flex-direction: row;
  flex-wrap: nowrap;
  display: flex;
}
.flex--inline {
  flex-direction: row;
  flex-wrap: nowrap;
  display: inline-flex;
}
.flex__full,
.flex__col {
  width: 100%;
}
.flex__gutters {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.flex__gutters:before,
.flex__gutters:after {
  content: "\0020";
  height: 0;
  display: block;
  overflow: hidden;
}
.flex__gutters:after {
  clear: both;
}
@media all and (min-width: 48em) and (max-width: 61.9375em) {
  .flex__gutters {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .flex__gutters:before,
  .flex__gutters:after {
    content: "\0020";
    height: 0;
    display: block;
    overflow: hidden;
  }
  .flex__gutters:after {
    clear: both;
  }
}
@media all and (min-width: 62em) {
  .flex__gutters {
    margin-left: -0.5625rem;
    margin-right: -0.5625rem;
  }
  .flex__gutters:before,
  .flex__gutters:after {
    content: "\0020";
    height: 0;
    display: block;
    overflow: hidden;
  }
  .flex__gutters:after {
    clear: both;
  }
}
.flex__gutters .flex__col {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media all and (min-width: 48em) and (max-width: 61.9375em) {
  .flex__gutters .flex__col {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media all and (min-width: 62em) {
  .flex__gutters .flex__col {
    padding-left: 0.5625rem;
    padding-right: 0.5625rem;
  }
}
/* The `flex-direction` helper classes are:
  .flex__dir--row
  .flex__dir--row-reverse
  .flex__dir--column
  .flex__dir--column-reverse
*/
.flex__dir--row {
  flex-direction: row;
}
.flex__dir--row-reverse {
  flex-direction: row-reverse;
}
.flex__dir--column {
  flex-direction: column;
}
.flex__dir--column-reverse {
  flex-direction: column-reverse;
}
/* The `flex-wrap` helper classes are:
  .flex__wrp--nowrap
  .flex__wrp--wrap
  .flex__wrp--wrap-reverse
*/
.flex__wrp--nowrap {
  flex-wrap: nowrap;
}
.flex__wrp--wrap {
  flex-wrap: wrap;
}
.flex__wrp--wrap-reverse {
  flex-wrap: wrap-reverse;
}
/* The `justify-content` helper classes are:
  .flex__jc--flex-start
  .flex__jc--flex-end
  .flex__jc--center
  .flex__jc--space-between
  .flex__jc--space-around
  .flex__jc--space-evenly
*/
.flex__jc--flex-start {
  justify-content: flex-start;
}
.flex__jc--flex-end {
  justify-content: flex-end;
}
.flex__jc--center {
  justify-content: center;
}
.flex__jc--space-between {
  justify-content: space-between;
}
.flex__jc--space-around {
  justify-content: space-around;
}
.flex__jc--space-evenly {
  justify-content: space-evenly;
}
/* The `align-items` helper classes are:
  .flex__ai--flex-start
  .flex__ai--flex-end
  .flex__ai--center
  .flex__ai--stretch
  .flex__ai--baseline
*/
.flex__ai--flex-start {
  align-items: flex-start;
}
.flex__ai--flex-end {
  align-items: flex-end;
}
.flex__ai--center {
  align-items: center;
}
.flex__ai--stretch {
  align-items: stretch;
}
.flex__ai--baseline {
  align-items: baseline;
}
/* The `align-content` helper classes are:
  .flex__ac--normal
  .flex__ac--flex-start
  .flex__ac--flex-end
  .flex__ac--center
  .flex__ac--space-between
  .flex__ac--space-around
  .flex__ac--space-evenly
  .flex__ac--stretch
  NOTE: These properties ONLY take effect on multi-line flexible containers, where flex-flow is set to either wrap or wrap-reverse
*/
.flex__ac--normal {
  align-content: normal;
}
.flex__ac--flex-start {
  align-content: flex-start;
}
.flex__ac--flex-end {
  align-content: flex-end;
}
.flex__ac--center {
  align-content: center;
}
.flex__ac--space-between {
  align-content: space-between;
}
.flex__ac--space-around {
  align-content: space-around;
}
.flex__ac--space-evenly {
  align-content: space-evenly;
}
.flex__ac--stretch {
  align-content: stretch;
}
/* The `align-self` helper classes are:
  .flex__as--auto
  .flex__as--flex-start
  .flex__as--flex-end
  .flex__as--center
  .flex__as--baseline
  .flex__as--stretch
*/
.flex__as--auto {
  align-self: auto;
}
.flex__as--flex-start {
  align-self: flex-start;
}
.flex__as--flex-end {
  align-self: flex-end;
}
.flex__as--center {
  align-self: center;
}
.flex__as--baseline {
  align-self: baseline;
}
.flex__as--stretch {
  align-self: stretch;
}
.flex__js--auto {
  justify-self: auto;
}
.flex__js--flex-start {
  justify-self: flex-start;
}
.flex__js--flex-end {
  justify-self: flex-end;
}
.flex__js--center {
  justify-self: center;
}
.flex__js--baseline {
  justify-self: baseline;
}
.flex__js--stretch {
  justify-self: stretch;
}
@media all and (max-width: 47.9375em) {
  .flex__stack--sm {
    flex-direction: column;
  }
}
@media all and (max-width: 47.9375em) {
  .flex__stack--sm-reverse {
    flex-direction: column-reverse;
  }
}
@media all and (max-width: 61.9375em) {
  .flex__stack--med {
    flex-direction: column;
  }
}
@media all and (max-width: 61.9375em) {
  .flex__stack--med-reverse {
    flex-direction: column-reverse;
  }
}
@media all and (max-width: 77.4375em) {
  .flex__stack--lg {
    flex-direction: column;
  }
}
@media all and (max-width: 77.4375em) {
  .flex__stack--lg-reverse {
    flex-direction: column-reverse;
  }
}
.flex__gap--s {
  gap: 0.625rem;
}
.flex__gap--m {
  gap: 1.25rem;
}
.flex__gap--l {
  gap: 2.5rem;
}
.flex__row--s {
  row-gap: 0.625rem;
}
.flex__row--m {
  row-gap: 1.25rem;
}
.flex__row--l {
  row-gap: 2.5rem;
}
.flex__push--left {
  margin-right: auto;
}
.flex__push--right {
  margin-left: auto;
}
.flex__push--top {
  margin-bottom: auto;
}
.flex__push--bottom {
  margin-top: auto;
}
.flex__all {
  flex: 1 1 auto;
}
.flex__grow {
  flex: 1 0 auto;
}
.flex__shrink {
  flex: 0 1 auto;
}
.flex__none {
  flex: 0 0 auto;
}
@media all and (min-width: 48em) {
  .flex__gap--column {
    gap: calc(((100% + 1.125rem) / 9) * 1);
  }
}
@media all and (min-width: 62em) {
  .flex__gap--column {
    gap: calc(((100% + 1.125rem) / 12) * 1);
  }
}
.flex__gap--gutter {
  gap: 1.125rem;
}
.flex__gap--normal {
  gap: normal;
}
@media all and (min-width: 30em) {
  .flex__col-width-sm--100 {
    width: 100%;
  }
  .flex__col-width-sm--50 {
    width: 50%;
  }
  .flex__col-width-sm--25 {
    width: 25%;
  }
}
@media all and (min-width: 48em) {
  .flex__col-width-md--100 {
    width: 100%;
  }
  .flex__col-width-md--50 {
    width: 50%;
  }
  .flex__col-width-md--25 {
    width: 25%;
  }
  .flex__col-width-md--33 {
    width: 33%;
  }
}
@media all and (min-width: 62em) {
  .flex__col-width-lg--100 {
    width: 100%;
  }
  .flex__col-width-lg--50 {
    width: 50%;
  }
  .flex__col-width-lg--25 {
    width: 25%;
  }
  .flex__col-width-lg--33 {
    width: 33%;
  }
}
/*

Tables

*/
/*

Default Tables

Simple, clean default styles. Just mark it up like a normal table.

Undoes table to more of a definition list on smaller viewports.

See: http://codepen.io/aarongustafson/pen/ucJGv

````tables
<table>
    <thead>
        <tr>
            <th scope="col">#</th>
            <th scope="col">First Name</th>
            <th scope="col">Last Name</th>
            <th scope="col">Language</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td data-th="#">1</td>
            <td data-th="First Name">Some</td>
            <td data-th="Last Name">One</td>
            <td data-th="Language">English</td>
        </tr>
        <tr>
            <td data-th="#">2</td>
            <td data-th="First Name">Joe</td>
            <td data-th="Last Name">Sixpack</td>
            <td data-th="Language">English</td>
        </tr>
        <tr>
            <td data-th="#">3</td>
            <td data-th="First Name">Stu</td>
            <td data-th="Last Name">Dent</td>
            <td data-th="Language">Code</td>
        </tr>
    </tbody>
</table>
````

*/
table {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
}
th,
td {
  padding: 0.625rem 0.28125rem;
  text-align: left;
}
th {
  padding-top: 0.625rem;
}
@media all and (max-width: 47.9375em) {
  table {
    display: block;
    width: 100%;
  }
  tbody,
  tr,
  th,
  td {
    border: 0;
    display: block;
    padding: 0;
    text-align: left;
    white-space: normal;
  }
  thead {
    display: none;
    visibility: hidden;
  }
  tr {
    margin-top: 1.1111111111111112em;
  }
  td[data-th]:before {
    content: attr(data-th) ":\00A0";
    display: inline-block;
    font-weight: bold;
  }
  td:empty {
    display: none;
  }
}
@media all and (min-width: 48em) {
  th,
  td {
    padding: 0.625rem 0.5625rem;
  }
}
/*

panel

Used to provide messaging to the user, whether it be direct or through calls to 
action. The panel typically indicates a visual separation and implied 
sub-grouping of its content.

```panel
<div class="panel">
    <h3>This is a Panel</h3>
    <p>This is a <a href="#">feedback message</a> for the user.</p>
    <p><a href="#" class="btn">User Action</a></p>
</div>
<div class="panel">
    <p>This is a feedback panel with no heading.</p>
</div>
````

*/
.panel,
[class*="panel"],
[class*="panel__"] {
  margin-top: 1.1111111111111112em;
  padding: 1.25rem;
  background-color: #ffffff;
}
.panel > :first-child,
[class*="panel"] > :first-child,
[class*="panel__"] > :first-child {
  margin-top: 0;
}
.panel h1,
[class*="panel"] h1,
[class*="panel__"] h1,
.panel h2,
[class*="panel"] h2,
[class*="panel__"] h2,
.panel h3,
[class*="panel"] h3,
[class*="panel__"] h3,
.panel h4,
[class*="panel"] h4,
[class*="panel__"] h4,
.panel h5,
[class*="panel"] h5,
[class*="panel__"] h5,
.panel h6,
[class*="panel"] h6,
[class*="panel__"] h6 {
  color: inherit;
}
[class*="panel--thin"] {
  padding: 0.625rem;
}
/*

Alert Panel

This variation of the standard `.panel` is used specifically for delivering 
direct messages to the user, whether they be informative, complimentary, 
or preventative.

````info-alert-panel
<div class="alert-panel--info">
    <h3>This is a Panel</h3>
    <p>This is an <a href="#">alert message</a> for the user.</p>
    <p><a href="#" class="btn">User Action</a></p>
</div>
<div class="alert-panel--info">
    <p>This is an alert panel with no heading.</p>
</div>
````

*/
/*

````error-alert-panel
<div class="panel__alert--error">
    <h3>This is a Panel</h3>
    <p>This is an <a href="#">alert message</a> for the user.</p>
    <p><a href="#" class="btn">User Action</a></p>
</div>
<div class="panel__alert--error">
    <p>This is an alert panel with no heading.</p>
</div>
````

*/
/*

````success-alert-panel
<div class="panel__alert--success">
    <h3>This is a Panel</h3>
    <p>This is an <a href="#">alert message</a> for the user.</p>
    <p><a href="#" class="btn">User Action</a></p>
</div>
<div class="panel__alert--success">
    <p>This is an alert panel with no heading.</p>
</div>
````

*/
[class*="panel__alert"] {
  color: #fff;
}
.panel__alert {
  background: #0a4370;
}
.panel__alert--error {
  background: #A8192E;
}
.panel__alert--success {
  background: #72bc44;
}
/*

WYSIWYG

Though we keep our styles as flexible and modular as possible, there may be 
times, as when using a WYSIWYG editor, when some styles need to be baked in. 
Here, we specify a `.wysiwyg` class that wraps around that content, and 
hardcode some of those styles

    <div class="wysiwyg">
        [WYSIWYG Content]
    </div>

*/
.wysiwyg h1 {
  margin-top: 0;
}
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  margin-top: 1.5em;
}
.wysiwyg .alignleft {
  float: left;
  margin-right: 0.5625rem;
}
.wysiwyg .alignright {
  float: right;
  margin-left: 0.5625rem;
}
.wysiwyg .aligncenter {
  display: block;
  margin: 0 auto 1.2rem;
}
/*

Animated Revealing/Hiding Block Modules

When JavaScript is enabled, these blocks are used (most easily in conjunction 
with Motif jQuery plugins) to reveal and hide blocks of content, sometimes 
accompanied by CSS3 animations.
    
Reveal Target

`.reveal__target` is a simple class that is accessibly hidden by default.
Add the `.is-revealed` class to show it.

    <div class="reveal__target">
        I am hidden.
    </div>
    <div class="reveal__target is-revealed">
        I am no longer hidden.
    </div>

*/
.js .reveal__target.is-revealed {
  overflow: visible;
}
/*

Animated Revealing/Hiding Block Modules

When JavaScript is enabled, these blocks are used (most easily in conjunction 
with Motif jQuery plugins) to reveal and hide blocks of content, sometimes 
accompanied by CSS3 animations.
    
Expand Target

`.expand__target` has a maximum height of `0` by default, and once it 
receives the `.is-expanded` class, animates in height to its maximum value. 
This is the cheap CSS way of expanding animation, as in collapsible 
accordions. More precise timing most likely requires JS enhancement.

    <div class="expand__target">
        I am hidden from view.
    </div>
    <div class="expand__target is-expanded">
        I have expanded into view.
    </div>

*/
.js .expand__target {
  max-height: 0;
  overflow: hidden;
}
.js .expand__target.is-expanded {
  max-height: 999px;
}
.js .expand__target.is-expanded,
.js .expand__target.was-expanded {
  transition: all 0.65s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/*

Animated Revealing/Hiding Block Modules

When JavaScript is enabled, these blocks are used (most easily in conjunction 
with Motif jQuery plugins) to reveal and hide blocks of content, sometimes 
accompanied by CSS3 animations.

Fade Target

`.fade__target` is the same as `.expand__target` (in that it grows in 
height), but it adds opacity fading to the mix.

    <div class="fade__target">
        I am hidden.
    </div>
    <div class="fade__target is-faded">
        I have faded and expanded into view.
    </div>

*/
.js .fade__target {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.js .fade__target.is-faded {
  opacity: 1;
  max-height: 999px;
}
.js .fade__target.is-faded,
.js .fade__target.was-faded {
  transition: all 0.65s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/*

Main Nav Module

A minor enhancement to the Reveal or Expand Target modules if added to the
main navigation bar. This snippet, on Medium screens and larger, makes sure
the expandable Nav (on smaller screens) is no longer hidden, and that the 
Menu Title (be it "Main Menu", the hamburger icon, etc.) is hidden from view.

    <nav class="nav-bar--menu" role="navigation">
        <h3 class="menu__title js-expand" id="reveal-main-nav">
            <svg class="icon"><use xlink:href="#rows"></svg>
            Main Menu
        </h3>
        <ul class="menu__list expand__target" id="main-nav-list">
            ...
        </ul>
    </nav>

*/
@media all and (min-width: 48em) {
  .js .menu__list {
    max-height: 999px;
  }
}
@media all and (min-width: 48em) {
  .menu__title {
    display: none;
  }
}
/*

Tabs

The tabs module (and accompanying plugin) creates a very basic widget that 
allows embedding and basic styling.

````tabs
<section class="tabs js-tabs">
    <nav role="navigation">
        <ul>
            <li>
                <a href="#first-tab">
                    First Tab
                </a>
            </li>
            <li>
                <a href="#second-tab">
                    Second Tab
                </a>
            </li>
        </ul>
    </nav>
    <div>
        <section id="first-tab">
            <h3>First Tab</h3>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
        </section>
        <section id="second-tab">
            <h3>Second Tab</h3>
            <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
        </section>
    </div>
</section>
````

*/
.js .tabs > nav + *,
.js .tabs__section {
  position: relative;
  overflow: hidden;
}
.js .tabs > nav + * > *,
.js .tabs .tab {
  display: none;
}
.js .tabs > nav + * > *.is-current,
.js .tabs .tab.is-current {
  display: block;
}
/**
 * Foundation
 */
.gridlines {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}
.gridlines:not(.is-revealed) {
  display: none;
}
.gridlines__line {
  display: block;
  width: 100%;
  position: relative;
  background: rgba(17, 109, 182, 0.25);
  pointer-events: none;
}
.gridlines__line:before,
.gridlines__line:after {
  content: "";
  display: block;
  width: 1px;
  height: 100vh;
  position: absolute;
  top: 0;
  background: #116DB6;
}
.gridlines__line:before {
  left: 0;
}
.gridlines__line:after {
  right: 0;
}
.gridlines__row {
  display: flex;
  align-items: stretch;
  height: 100%;
  pointer-events: none;
}
@media all and (max-width: 61.9375em) {
  .gridlines__lg {
    display: none;
  }
}
@media all and (max-width: 47.9375em) {
  .gridlines__med {
    display: none;
  }
}
@media all and (min-width: 62em) {
  .gridlines__med {
    display: none;
  }
}
@media all and (min-width: 48em) {
  .gridlines__sm {
    display: none;
  }
}
.gridlines__col {
  display: flex !important;
  align-items: stretch;
  pointer-events: none;
}
.gridlines__button {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.globalHeader {
  border-bottom: 1px solid #116DB6;
}
.globalHeader__flex {
  position: relative;
  padding-left: 6.25%;
}
@media all and (min-width: 48em) {
  .globalHeader__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 87.5%;
  }
}
@media all and (min-width: 77.5em) {
  .globalHeader__flex {
    max-width: 1024px;
  }
}
.globalHeader__branding {
  display: flex;
  justify-content: space-between;
}
@media all and (min-width: 48em) {
  .globalHeader__branding {
    display: block;
    width: 25%;
  }
}
.globalHeader__nav-control {
  background: transparent;
  color: inherit;
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background-image: radial-gradient(0% 100%, #6499AF 0%, #317E9F 49%, #155672 100%);
}
.globalHeader__nav-control:hover,
.globalHeader__nav-control:focus,
.globalHeader__nav-control.is-current {
  background: transparent;
  color: inherit;
}
.globalHeader__nav-control:hover,
.globalHeader__nav-control:focus {
  background-image: radial-gradient(0% 100%, #6499AF 0%, #317E9F 49%, #317E9F 100%);
}
@media all and (min-width: 48em) {
  .globalHeader__nav-control {
    display: none;
  }
}
.globalHeader__nav-control svg {
  color: #fff;
  width: 24px;
  height: 24px;
}
.globalHeader__nav-control[data-type="close"] {
  background-image: radial-gradient(0% 100%, #6499AF 0%, #317E9F 49%, #317E9F 100%);
}
.globalHeader__nav-control[data-type="close"]:not(.is-revealed) {
  display: none;
}
.globalHeader__nav-control[data-type="open"].is-revealed {
  display: none;
}
.globalHeader__logo {
  padding: 10px 0;
}
@media all and (max-width: 47.9375em) {
  .globalHeader__logo {
    width: calc(( ( 87.5%  + 1.125rem ) / 4 ) * 3);
    flex: 0 1 auto;
  }
  .globalHeader__logo img {
    width: 160px;
  }
}
@media all and (max-width: 47.9375em) {
  .globalHeader__nav {
    background-image: radial-gradient(circle, #6499AF 0%, #317E9F 48.99%, #155672 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 6.25% 20px;
    transform: translateY(100%);
    z-index: 100;
    box-shadow: 0 5px 10px 0 rgba(28, 43, 57, 0.3);
  }
  .globalHeader__nav:not(.is-revealed) {
    display: none;
  }
}
@media all and (min-width: 48em) {
  .globalHeader__nav {
    width: 74%;
  }
}
@media all and (min-width: 62em) {
  .globalHeader__nav {
    width: 70%;
  }
}
.globalHeader__nav-list {
  padding-left: 0;
  list-style: none outside none;
  margin-top: 1.25rem;
}
@media all and (min-width: 48em) {
  .globalHeader__nav-list {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media all and (max-width: 47.9375em) {
  .globalHeader__nav-item {
    padding: 10px 0;
  }
}
@media all and (max-width: 47.9375em) {
  .globalHeader__nav-link {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    text-decoration: none;
  }
  .globalHeader__nav-link:hover,
  .globalHeader__nav-link:focus {
    color: #fff;
    border-bottom: 1px solid;
  }
}
@media all and (min-width: 48em) {
  .globalHeader__nav-link {
    color: #155672;
    text-decoration: none;
  }
  .globalHeader__nav-link:hover,
  .globalHeader__nav-link:focus {
    color: #317E9F;
    border-bottom: 1px solid;
    padding-bottom: 5px;
  }
  .globalHeader__nav-link.is-current {
    border-bottom: 2px solid #A8192E;
    padding-bottom: 5px;
  }
}
.globalHeader__nav-cta {
  position: relative;
}
@media all and (max-width: 47.9375em) {
  .globalHeader__nav-cta-btn[data-type="my-account"] {
    display: none !important;
  }
  .globalHeader__nav-cta-btn[data-type="login"].is-revealed {
    display: none;
  }
}
.globalHeader__nav-dropdown:not(.is-revealed) {
  display: none;
}
@media all and (max-width: 47.9375em) {
  .globalHeader__nav-dropdown[data-type="my-account"] {
    display: block !important;
  }
}
@media all and (min-width: 48em) {
  .globalHeader__nav-dropdown {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    padding: 20px;
    transform: translateY(100%);
    background: #F7F7F7;
    z-index: 1;
    box-shadow: 0 5px 10px 0 rgba(28, 43, 57, 0.3);
  }
  .globalHeader__nav-dropdown[data-type="my-account"] {
    padding: 0;
  }
}
.globalHeader__login-link {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.66666667;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 0 1px;
  transition: color ease 0.3s;
}
.globalHeader__login-link::before,
.globalHeader__login-link::after {
  content: '';
  position: absolute;
  background-color: #FFD435;
  z-index: -1;
  height: 5%;
}
.globalHeader__login-link::before {
  width: 0%;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}
.globalHeader__login-link::after {
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all ease 0.6s;
}
.globalHeader__login-link:hover::before {
  width: 100%;
}
.globalHeader__login-link:hover::after {
  left: 100%;
  width: 0%;
  transition: all ease 0.2s;
}
.globalHeader__login-link--large {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}
.globalHeader__login-link--small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
.globalHeader__login-link--tiny {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.83333333;
}
@media all and (min-width: 48em) {
  .globalHeader__login-link {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.44444444;
    font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
    font-weight: 900;
    position: relative;
    color: #116DB6;
    text-decoration: none;
    display: inline-block;
  }
  .globalHeader__login-link:after {
    content: '';
    position: absolute;
    background: #116DB6;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .globalHeader__login-link:hover,
  .globalHeader__login-link:focus,
  .globalHeader__login-link.is-current {
    color: #0a4370;
  }
  .globalHeader__login-link--large {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .globalHeader__login-link--small {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.625;
  }
  .globalHeader__login-link--tiny {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.83333333;
  }
}
.globalHeader__nav-secondary-list {
  padding-left: 0;
  list-style: none outside none;
  margin-top: 2.5rem;
}
@media all and (min-width: 48em) {
  .globalHeader__nav-secondary-list {
    margin-top: 0;
  }
}
.globalHeader__nav-secondary-item {
  padding: 10px 0;
}
[data-type="my-account"] .globalHeader__nav-secondary-item {
  padding: 0;
}
.globalHeader__nav-secondary-link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  color: #116DB6;
  text-decoration: none;
}
.globalHeader__nav-secondary-link:focus,
.globalHeader__nav-secondary-link:hover {
  color: #0a4370;
}
@media all and (max-width: 47.9375em) {
  .globalHeader__nav-secondary-link {
    display: inline-block;
    color: #fff;
  }
  .globalHeader__nav-secondary-link:focus,
  .globalHeader__nav-secondary-link:hover {
    color: #fff;
  }
}
@media all and (min-width: 48em) {
  .globalHeader__nav-secondary-link {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.44444444;
  }
  [data-type="my-account"] .globalHeader__nav-secondary-link {
    display: block;
    padding: 20px;
  }
  [data-type="my-account"] .globalHeader__nav-secondary-link:hover,
  [data-type="my-account"] .globalHeader__nav-secondary-link:focus {
    background: #fff;
    color: #1C2B39;
  }
  [data-type="my-account"] .globalHeader__nav-secondary-link:focus {
    border-right: 4px solid #A8192E;
  }
  .globalHeader__nav-secondary-link svg {
    width: 24px;
    height: 24px;
  }
}
.globalHeader__nav-secondary-link.globalHeader__nav-logout {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
.globalHeader__nav-secondary-link.globalHeader__nav-logout svg {
  width: 18px;
  height: 18px;
}
@media all and (max-width: 47.9375em) {
  .globalHeader__nav-logout {
    margin-top: 2.5rem;
  }
}
.globalFooter {
  background: #317E9F;
}
@media all and (min-width: 48em) {
  .globalFooter {
    background: #1C2B39;
  }
}
.globalFooter__wrapper {
  position: relative;
}
.globalFooter__logo {
  width: 75%;
  padding: 20px 20px 20px 6.25%;
  box-shadow: 0 5px 10px 0 rgba(28, 43, 57, 0.3);
  background: #fff;
}
@media all and (min-width: 48em) {
  .globalFooter__logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin-left: 6.25%;
    padding: 20px;
    width: calc(( ( 87.5%  + 1.125rem ) / 12 ) * 3);
    display: flex;
    align-items: center;
    box-shadow: none;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .globalFooter__logo {
    width: calc(( ( ( 1024px + 1.125rem ) / 12 ) * 3 ) - 1.125rem);
    margin-left: calc((100vw - 1024px) * 0.5);
  }
}
.globalFooter__nav-primary-item {
  padding: 10px 0px;
}
.globalFooter__nav-primary-item:first-of-type {
  padding-top: 0;
}
.globalFooter__nav-primary-item:last-of-type {
  padding-bottom: 0;
}
@media all and (min-width: 48em) {
  .globalFooter__nav-primary-item {
    padding: 20px 10px;
  }
  .globalFooter__nav-primary-item:first-of-type {
    padding-top: 20px;
    padding-left: 0;
  }
  .globalFooter__nav-primary-item:last-of-type {
    padding-bottom: 20px;
    padding-right: 0;
  }
}
.globalFooter__nav-secondary-item {
  padding: 20px 10px;
}
.globalFooter__nav-secondary-item:first-of-type {
  padding-left: 0;
}
.globalFooter__nav-secondary-item:last-of-type {
  padding-right: 0;
}
.globalFooter__nav-primary {
  background: transparent;
}
@media all and (min-width: 48em) {
  .globalFooter__nav-primary {
    background: #317E9F;
  }
}
.globalFooter__nav-primary-list {
  padding-left: 0;
  list-style: none outside none;
}
@media all and (min-width: 48em) {
  .globalFooter__nav-primary-list {
    margin-top: 0;
    margin-left: calc(((100% + 1.125rem) / 12) * 4);
    color: #fff;
  }
}
@media all and (min-width: 48em) {
  .globalFooter__nav-primary-list {
    display: flex;
    align-items: center;
  }
}
.globalFooter__nav-primary-link {
  display: inline-block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.globalFooter__nav-primary-link:focus,
.globalFooter__nav-primary-link:hover {
  text-decoration: underline;
}
.globalFooter__nav-primary-link:first-of-type {
  padding-left: 0;
}
.globalFooter__nav-primary-link:last-of-type {
  padding-right: 0;
}
.globalFooter__nav-secondary {
  background: #1C2B39;
}
.globalFooter__nav-secondary-list {
  padding-left: 0;
  list-style: none outside none;
  display: flex;
  align-items: center;
}
@media all and (min-width: 48em) {
  .globalFooter__nav-secondary-list {
    margin-top: 0;
    margin-left: calc(((100% + 1.125rem) / 12) * 4);
    color: #fff;
  }
}
.globalFooter__nav-secondary-link {
  display: inline-block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 0.08333333;
}
.globalFooter__nav-secondary-link:focus,
.globalFooter__nav-secondary-link:hover {
  text-decoration: underline;
}
.globalFooter__nav-secondary-link:first-of-type {
  padding-left: 0;
}
.globalFooter__nav-secondary-link:last-of-type {
  padding-right: 0;
}
.globalFooter__disclaimer {
  color: #fff;
}
.globalFooter__footer {
  background: #1C2B39;
  padding-top: 1.25rem;
  padding-bottom: 50px;
}
@media all and (min-width: 48em) {
  .layout__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.layout__col-1 {
  padding: 2.5rem 6.25% 3.75rem 6.25%;
  background-color: #F7F7F7;
}
@media all and (min-width: 48em) {
  .layout__col-1 {
    padding-top: 3.75rem;
    padding-right: 1.125rem;
    width: calc((((( 87.5%  + 1.125rem) / 12) * 3) + ((100% -  87.5% ) / 2)));
    flex: 0 1 auto;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .layout__col-1 {
    width: calc((((1024px + 1.125rem) / 12) * 3) + ((100vw - 1024px) / 2));
    padding-left: calc((100vw - 1024px) * 0.5);
  }
}
.layout__col-2 {
  padding-top: 2.5rem;
  padding-right: 6.25%;
  padding-left: 6.25%;
}
@media all and (min-width: 48em) {
  .layout__col-2 {
    padding-top: 3.75rem;
    width: calc((((( 87.5%  + 1.125rem) / 12) * 8) + ((100% -  87.5% ) / 2)) - 1.125rem);
    padding-left: 0;
    flex: 0 1 auto;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .layout__col-2 {
    padding-right: calc((100vw - 1024px) * 0.5);
    width: calc((((1024px + 1.125rem) / 12) * 8) + ((100vw - 1024px) / 2) - 1.125rem);
  }
}
/**
 * Shared
 */
.simpleHeader {
  background-image: radial-gradient(circle, #6499AF 0%, #317E9F 48.99%, #155672 100%);
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media all and (min-width: 48em) {
  .simpleHeader {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media all and (min-width: 62em) {
  .simpleHeader__content {
    width: calc(((100% + 1.125rem) / 12) * 7);
  }
}
.simpleHeader__title {
  color: #fff;
  margin-top: 0;
}
.simpleHeader__desc {
  max-width: 595px;
  color: #fff;
}
.simpleHeader__desc > * {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.66666667;
  color: #fff;
}
@media all and (min-width: 62em) {
  .simpleHeader__desc > * {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.simpleHeader__desc a {
  color: #fff;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
}
.simpleHeader__tag {
  color: #FFD435;
  text-transform: uppercase;
}
.jobHeader {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
@media all and (max-width: 61.9375em) {
  .jobHeader {
    position: relative;
  }
  .jobHeader:before {
    content: '';
    background-image: radial-gradient(circle, #6499AF 0%, #317E9F 48.99%, #155672 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    z-index: -1;
  }
}
@media all and (min-width: 48em) {
  .jobHeader {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media all and (min-width: 62em) {
  .jobHeader {
    background-image: radial-gradient(circle, #6499AF 0%, #317E9F 48.99%, #155672 100%);
  }
}
.jobHeader__row {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 62em) {
  .jobHeader__row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.jobHeader__back {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.jobHeader__back svg {
  font-size: 20px;
  top: 3px;
  position: relative;
}
.jobHeader__back:hover,
.jobHeader__back:focus {
  color: #6499AF;
}
.jobHeader__title {
  color: #fff;
  margin-top: 1.875rem;
}
.jobHeader__region {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #fff;
  margin-top: 0.625rem;
}
@media all and (min-width: 62em) {
  .jobHeader__region {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media all and (min-width: 62em) {
  .jobHeader__col-1 {
    margin-right: calc(100% / 12);
  }
}
.jobHeader__col-2 {
  margin-bottom: -6.75rem;
}
@media all and (max-width: 61.9375em) {
  .jobHeader__col-2 {
    margin-top: 2.1875rem;
  }
}
@media all and (min-width: 48em) and (max-width: 61.9375em) {
  .jobHeader__col-2 {
    margin-left: calc(100% / 12);
    margin-right: calc(100% / 12);
  }
}
@media all and (min-width: 62em) {
  .jobHeader__col-2 {
    width: 41.66666667%;
    display: flex;
    flex: 1 0 auto;
  }
}
@media all and (min-width: 77.5em) {
  .jobHeader__col-2 {
    flex: 0 0 auto;
  }
}
@media all and (max-width: 61.9375em) {
  .jobHeader__actions {
    display: flex;
    flex-direction: column;
  }
}
.jobHeader__highlights {
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(28, 43, 57, 0.3);
  padding: 1.25rem 1.125rem;
}
@media all and (min-width: 62em) {
  .jobHeader__highlights {
    width: 100%;
    padding: 1.875rem 1.125rem 2.5rem;
  }
}
.jobHeader__highlights ul {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.66666667;
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}
@media all and (min-width: 62em) {
  .jobHeader__highlights ul {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }
}
.jobHeader__highlights li {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media all and (min-width: 48em) {
  .jobHeader__highlights li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .jobHeader__highlights li:first-child {
    padding-top: 0;
  }
}
.jobHeader__highlights li::before {
  content: "\25CF";
  color: #A8192E;
  padding-right: 10px;
}
.quote {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-left: 6.25%;
  padding-right: 6.25%;
  padding-top: 55px;
  padding-bottom: 72px;
  color: #1C2B39;
  background-color: #FFD435;
  margin-bottom: 3.75rem;
}
@media all and (min-width: 62em) {
  .quote {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media all and (min-width: 48em) {
  .quote {
    flex-direction: row;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .quote {
    padding-left: calc((100vw - 1024px) * 0.5);
    padding-right: calc((100vw - 1024px) * 0.5);
  }
}
.quote__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  min-height: 134px;
  background-color: #fff;
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 5px 20px 0 rgba(28, 43, 57, 0.3);
}
.quote__icon svg {
  font-size: 68px;
}
.quote__person {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 134px;
  min-height: 134px;
  background-color: #fff;
  padding: 0;
  border-radius: 50%;
  box-shadow: 0 5px 20px 0 rgba(28, 43, 57, 0.3);
  overflow: hidden;
  position: relative;
}
.quote__person .quote__figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.quote__connector {
  width: 253px;
  height: 70px;
}
.quote__connector svg {
  transform: rotate(90deg) scale(4);
  width: 253px;
  height: 70px;
}
@media all and (min-width: 48em) {
  .quote__connector {
    height: 253px;
    width: 70px;
  }
  .quote__connector svg {
    transform: none;
    height: 253px;
    width: 70px;
  }
}
.quote__content {
  position: relative;
  padding-left: 10px;
  text-align: center;
}
@media all and (min-width: 48em) {
  .quote__content {
    text-align: left;
  }
}
.quote__text {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 300;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  line-height: 50px;
}
@media all and (min-width: 48em) {
  .quote__text {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.16666667;
  }
}
.quote__author {
  font-family: "Faustina", "Times New Roman", Times, Georgia, serif;
  color: #317E9F;
}
.largeHero {
  position: relative;
  background: radial-gradient(circle, #155672 0%, #317E9F 51.01%, #6499AF 100%);
  padding-top: 3.75rem;
  padding-bottom: 330px;
}
@media all and (min-width: 48em) {
  .largeHero {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
.largeHero__figure {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  margin: 0;
  display: none;
  z-index: 0;
}
.largeHero__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .largeHero__figure img {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
@media all and (min-width: 48em) {
  .largeHero__figure {
    display: block;
  }
}
.largeHero__figure-mobile {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  margin: 0;
  z-index: 0;
}
.largeHero__figure-mobile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .largeHero__figure-mobile img {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
@media all and (min-width: 48em) {
  .largeHero__figure-mobile {
    display: none;
  }
}
.largeHero__content {
  position: relative;
  text-align: center;
  z-index: 1;
}
@media all and (min-width: 48em) {
  .largeHero__content {
    margin-right: 50%;
    text-align: left;
  }
}
.largeHero__tagline {
  font-family: "Faustina", "Times New Roman", Times, Georgia, serif;
  color: #fff;
  letter-spacing: 1px;
}
.largeHero__headline {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 300;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.16666667;
  color: #fff;
}
@media all and (min-width: 62em) {
  .largeHero__headline {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.125;
  }
}
.largeHero__cta {
  background: #fff;
  color: #317E9F;
  border: 2px solid #317E9F;
  box-shadow: 4px 4px 0 0 rgba(28, 43, 57, 0.2);
  transition: all 0.25s ease;
  margin-bottom: 10px;
  background-color: #fff;
  margin-bottom: 1.25rem;
}
.largeHero__cta:hover,
.largeHero__cta:focus,
.largeHero__cta.is-current {
  color: #155672;
  box-shadow: 8px 8px 0 0 rgba(28, 43, 57, 0.2);
}
.largeHero__cta.is-disabled {
  background: rgba(28, 43, 57, 0.4);
  border-color: transparent;
  box-shadow: none;
}
.largeHero__cta.on-dark {
  background: #317E9F;
  color: #fff;
  border-color: #fff;
}
.largeHero__cta.on-dark:hover,
.largeHero__cta.on-dark:focus,
.largeHero__cta.on-dark.is-current {
  background-color: #155672;
  border-color: #fff;
  color: #fff;
}
.largeHero__cta.with-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.78125rem 1.6875rem;
}
.largeHero__cta.with-icon .icons__icon {
  width: 1.25em;
  height: 1.25em;
}
.largeHero__cta.with-icon span {
  padding: 0.3125rem 0 0.3125rem 0.28125rem;
}
.largeHero__cta-link {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.66666667;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  position: relative;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 0 1px;
  transition: color ease 0.3s;
}
.largeHero__cta-link::before,
.largeHero__cta-link::after {
  content: '';
  position: absolute;
  background-color: #FFD435;
  z-index: -1;
  height: 5%;
}
.largeHero__cta-link::before {
  width: 0%;
  left: 0;
  bottom: 0;
  transition: width ease 0.4s;
}
.largeHero__cta-link::after {
  width: 100%;
  left: 0;
  bottom: 0;
  transition: all ease 0.6s;
}
.largeHero__cta-link:hover::before {
  width: 100%;
}
.largeHero__cta-link:hover::after {
  left: 100%;
  width: 0%;
  transition: all ease 0.2s;
}
.largeHero__cta-link--large {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}
.largeHero__cta-link--small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
.largeHero__cta-link--tiny {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.83333333;
}
.featuredResource {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.featuredResource__row {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 48em) {
  .featuredResource__row {
    flex-direction: row;
  }
  .featuredResource__row[data-orientation="right"] {
    flex-direction: row-reverse;
  }
  .featuredResource__row[data-orientation="right"] .featuredResource__col-2 {
    padding-right: calc(100% / 8);
  }
  .featuredResource__row[data-orientation="left"] .featuredResource__col-2 {
    padding-left: calc(100% / 8);
  }
}
.featuredResource__col-1,
.featuredResource__col-2 {
  width: 100%;
}
@media all and (min-width: 48em) {
  .featuredResource__col-1,
  .featuredResource__col-2 {
    width: 50%;
  }
}
.featuredResource__card {
  position: relative;
}
.featuredResource__figure-container {
  position: relative;
  overflow: hidden;
}
.featuredResource__figure {
  padding-top: 360px;
}
.featuredResource__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .featuredResource__figure img {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.simpleCard {
  box-shadow: 0 5px 10px 0 rgba(28, 43, 57, 0.3);
  height: 100%;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.simpleCard__figure {
  margin-top: 0;
  width: 100%;
}
.simpleCard__figure:before {
  padding-top: 66.56346749%;
}
.simpleCard__content {
  padding: 30px;
}
.secondaryCard {
  position: relative;
  box-shadow: 0 5px 20px 0 rgba(28, 43, 57, 0.3);
}
@media all and (max-width: 47.9375em) {
  .secondaryCard {
    display: flex;
  }
  .secondaryCard[data-orientation="right"] {
    flex-direction: row-reverse;
  }
}
.secondaryCard__content {
  background: linear-gradient(135deg, #DA2F48, #A8192E);
  color: #fff;
  padding: 40px;
  position: relative;
}
.secondaryCard[data-orientation="right"] .secondaryCard__content {
  background: linear-gradient(135deg, #DA2F48, #A8192E);
}
.secondaryCard__content:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../../../../lbcore/resources/images/lineDesign.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.secondaryCard[data-orientation="right"] .secondaryCard__content:after {
  transform: scaleX(-1);
}
@media all and (max-width: 47.9375em) {
  .secondaryCard__content {
    width: 45%;
    padding: 15px;
  }
}
.secondaryCard__heading {
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media all and (min-width: 48em) {
  .secondaryCard__heading {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.16666667;
  }
}
@media all and (max-width: 47.9375em) {
  .secondaryCard__heading {
    font-size: 18px;
  }
}
.secondaryCard__description {
  color: #fff;
}
.secondaryCard__figure:before {
  padding-top: 84.38133874%;
}
@media all and (max-width: 47.9375em) {
  .secondaryCard__figure {
    width: 55%;
    margin-top: 0;
  }
}
.secondaryCard__cta {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.contactBlock {
  padding: 80px 0;
}
.contactBlock .contactForm {
  margin-top: 2.5rem;
}
@media all and (min-width: 48em) {
  .contactBlock .contactForm {
    margin-top: 0;
  }
}
.contactBlock [data-size="small"] .contactForm {
  margin-top: 2.5rem;
}
.contactBlock__heading,
.register__heading {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 300;
  margin-top: 0;
  text-transform: none;
  color: #1C2B39;
}
.contactBlock__copy,
.register__content--wysiwyg > p,
.register__copy {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  margin-top: 2.5rem;
}
@media all and (min-width: 48em) {
  .contactBlock__copy,
  .register__content--wysiwyg > p,
  .register__copy {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.66666667;
  }
}
.cardText__bio {
  display: flex;
  flex-wrap: wrap;
  padding-top: 2.5rem;
}
.cardText__bio--reverse {
  flex-direction: row-reverse;
}
@media all and (min-width: 48em) {
  .cardText__bio {
    padding-top: 80px;
    padding-bottom: 45px;
  }
}
.cardText__desc {
  color: #1C2B39;
}
@media all and (min-width: 48em) {
  .cardText__desc {
    padding-left: calc(((100% + 1.125rem) / 6) * 1);
    padding-top: 97px;
  }
  .cardText__bio--reverse .cardText__desc {
    padding-left: 0;
    padding-right: calc(((100% + 1.125rem) / 6) * 1);
  }
}
.cardText__details {
  border-bottom: 3px solid #A8192E;
  padding-bottom: 30px;
}
.cardText__icons {
  display: flex;
  padding-top: 30px;
}
.cardText__icon {
  width: 50px;
  height: 50px;
  background: #317E9F;
  border-radius: 50%;
  position: relative;
  box-shadow: 4px 4px 0 0 rgba(28, 43, 57, 0.2);
}
.cardText__icon:hover {
  background: #155672;
}
.cardText__svg {
  fill: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cardGrid {
  background: #F7F7F7;
  padding: 60px 0;
}
.cardGrid__flex-row {
  display: flex;
  flex-wrap: wrap;
}
.cardGrid__flex-col {
  margin-bottom: 2.5rem;
}
@media all and (min-width: 48em) {
  .cardGrid__flex-col {
    flex: 1;
    margin-bottom: 0;
  }
}
.cardGrid__title {
  padding-bottom: 60px;
  text-align: center;
  position: relative;
}
.cardGrid__title:after {
  content: '';
  position: absolute;
  height: 3px;
  width: 110px;
  background-color: #A8192E;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.cardGrid__cta {
  display: flex;
  justify-content: center;
}
@media all and (min-width: 48em) {
  .cardGrid__cta {
    padding-top: 60px;
  }
}
.modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(35, 31, 32, 0.75);
  z-index: 500;
}
.modal--fixed {
  position: fixed;
}
.modal__close {
  border: 0;
  background: transparent;
  padding: 0;
  display: block;
  margin-left: auto;
}
.modal__close svg {
  color: #1C2B39;
}
.modal__fixed-header .modal__close {
  position: absolute;
  right: 0;
  z-index: 100;
}
.modal__content {
  position: absolute;
  padding: 1.25rem 1.125rem;
  top: 2.5rem;
  left: 50%;
  background: #fff;
  transform: translateX(-50%);
  width: 100%;
}
@media all and (min-width: 48em) {
  .modal__content {
    width: 50%;
  }
}
.modal--fixed .modal__content {
  max-height: 80vh;
  overflow: auto;
  padding-top: 0;
}
.modal__fixed-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 1.25rem 50px 1.25rem 0;
  background: #fff;
  z-index: 20;
}
/**
 * Pages
 */
.profile__user-name {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #1C2B39;
}
@media all and (min-width: 48em) {
  .profile__user-name {
    font-size: clamp(1rem, 1vw + .5rem, 1.875rem);
  }
}
@media all and (min-width: 73.14285714285714em) {
  .profile__user-name {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
@media all and (min-width: 48em) {
  .profile__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media all and (min-width: 48em) {
  .profile__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.profile__col-1 {
  padding: 2.5rem 6.25% 3.75rem 6.25%;
  background-color: #F7F7F7;
  padding-top: 2.5rem;
}
@media all and (min-width: 48em) {
  .profile__col-1 {
    padding-top: 3.75rem;
    padding-right: 1.125rem;
    width: calc((((( 87.5%  + 1.125rem) / 12) * 3) + ((100% -  87.5% ) / 2)));
    flex: 0 1 auto;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .profile__col-1 {
    width: calc((((1024px + 1.125rem) / 12) * 3) + ((100vw - 1024px) / 2));
    padding-left: calc((100vw - 1024px) * 0.5);
  }
}
@media all and (min-width: 48em) {
  .profile__col-1 {
    padding-top: 3.75rem;
    padding-right: 1.125rem;
    width: calc((((( 87.5%  + 1.125rem) / 12) * 3) + ((100% -  87.5% ) / 2)));
    flex: 0 1 auto;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .profile__col-1 {
    width: calc((((1024px + 1.125rem) / 12) * 3) + ((100vw - 1024px) / 2));
    padding-left: calc((100vw - 1024px) * 0.5);
  }
}
@media all and (min-width: 48em) {
  .profile__col-1 {
    padding-top: 3.75rem;
  }
}
.profile__col-2 {
  padding-top: 2.5rem;
  padding-right: 6.25%;
  padding-left: 6.25%;
}
@media all and (min-width: 48em) {
  .profile__col-2 {
    padding-top: 3.75rem;
    width: calc((((( 87.5%  + 1.125rem) / 12) * 8) + ((100% -  87.5% ) / 2)) - 1.125rem);
    padding-left: 0;
    flex: 0 1 auto;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .profile__col-2 {
    padding-right: calc((100vw - 1024px) * 0.5);
    width: calc((((1024px + 1.125rem) / 12) * 8) + ((100vw - 1024px) / 2) - 1.125rem);
  }
}
@media all and (min-width: 48em) {
  .profile__col-2 {
    padding-top: 3.75rem;
    width: calc((((( 87.5%  + 1.125rem) / 12) * 8) + ((100% -  87.5% ) / 2)) - 1.125rem);
    padding-left: 0;
    flex: 0 1 auto;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .profile__col-2 {
    padding-right: calc((100vw - 1024px) * 0.5);
    width: calc((((1024px + 1.125rem) / 12) * 8) + ((100vw - 1024px) / 2) - 1.125rem);
  }
}
.profile__welcome {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  font-family: "Faustina", "Times New Roman", Times, Georgia, serif;
  color: #A8192E;
}
@media all and (min-width: 48em) {
  .profile__welcome {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.22222222;
  }
}
.profile__email {
  text-decoration: none;
  display: block;
  color: #1C2B39;
  margin-top: 0.625rem;
}
@media all and (max-width: 47.9375em) {
  .profile__nav {
    text-align: center;
  }
}
@media all and (max-width: 47.9375em) {
  .profile__nav-list {
    display: flex;
    justify-content: center;
  }
}
.profile__nav-list-item {
  position: relative;
}
.profile__nav-list-item.is-active {
  background: #fff;
  border-bottom: 4px solid #A8192E;
}
@media all and (min-width: 48em) {
  .profile__nav-list-item.is-active {
    border-bottom: none;
  }
  .profile__nav-list-item.is-active:before,
  .profile__nav-list-item.is-active:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
  }
  .profile__nav-list-item.is-active:before {
    left: 0;
    background: #fff;
    transform: translateX(-0.5625rem);
    width: 0.5625rem;
  }
  .profile__nav-list-item.is-active:after {
    right: 0;
    background: #fff;
    border-right: 4px solid #A8192E;
    transform: translateX(1.125rem);
    width: 1.125rem;
  }
}
.profile__nav-list-item svg {
  display: block;
  font-size: 24px;
  margin-bottom: 0.3125rem;
}
@media all and (min-width: 48em) {
  .profile__nav-list-item svg {
    display: inline-block;
    margin-right: 0.5625rem;
    margin-bottom: 0;
  }
}
.profile__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  color: #317E9F;
  text-decoration: none;
  text-align: center;
}
@media all and (min-width: 48em) {
  .profile__nav-link {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5;
    display: block;
    padding: 18px 10px 18px 0;
    text-align: left;
  }
}
.is-active .profile__nav-link {
  color: #1C2B39;
}
.profile__form > .acf-notice.-error.-dismiss {
  display: none;
}
.profile__edit {
  background: transparent;
  color: inherit;
  border: 0;
  margin: 0;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.44444444;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  position: relative;
  color: #116DB6;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  height: 100%;
  justify-content: flex-end;
  padding: 0;
}
.profile__edit:hover,
.profile__edit:focus,
.profile__edit.is-current {
  background: transparent;
  color: inherit;
}
.profile__edit:after {
  content: '';
  position: absolute;
  background: #116DB6;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.profile__edit:hover,
.profile__edit:focus,
.profile__edit.is-current {
  color: #0a4370;
}
.profile__edit--large {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}
.profile__edit--small {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
.profile__edit--tiny {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.83333333;
}
.profile__edit[hidden] {
  display: none;
}
.profile__logout-link {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  color: #116DB6;
  text-decoration: none;
  margin-top: 3.75rem;
}
@media all and (max-width: 47.9375em) {
  .profile__logout-link {
    display: none;
  }
}
.profile__logout-link svg {
  margin-right: 10px;
}
.profile__field-instructions {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.42857143;
  margin-top: 0.625rem;
}
.profile__field-instructions ul {
  margin-top: 0.625rem;
}
.profile__form {
  margin-top: 35px;
  padding-bottom: 3.75rem;
}
.profile__form .acf-field label {
  transition: all 200ms ease;
}
.profile__form .acf-field.js-profile-editable {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 12px 15px 12px !important;
  transition: padding 200ms ease;
}
.profile__form .acf-field.js-profile-editable .acf-input {
  width: 100%;
}
.profile__form .acf-field.js-profile-editable .acf-label {
  position: absolute;
  top: 25px;
  opacity: 1;
  transition: opacity 200ms ease 200ms;
}
.profile__form .acf-field.js-profile-editable .acf-label label {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.07142857 !important;
}
.profile__form .acf-field.js-profile-editable .acf-input-wrap {
  display: inline-block;
  width: 100%;
  transition: width 200ms ease;
}
.profile__form .acf-field.js-profile-editable .acf-input-wrap input {
  padding-left: 10px !important;
  padding-right: 10px !important;
  transition: padding 200ms ease;
}
.profile__form .acf-field.js-profile-editable:not(.is-revealed) {
  padding-top: 15px !important;
}
.profile__form .acf-field.js-profile-editable:not(.is-revealed) .acf-label {
  opacity: 0;
}
.profile__form .acf-field.js-profile-editable:not(.is-revealed) .acf-input-wrap {
  width: 90%;
}
.profile__form .acf-field.js-profile-editable:not(.is-revealed) .acf-input-wrap input {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.profile__form .acf-field.profile__label-show:not(.is-revealed) {
  padding-top: 50px !important;
}
.profile__form .acf-field.profile__label-show:not(.is-revealed) .acf-label {
  opacity: 1;
}
.profile__form .acf-field.profile__label-show:not(.is-revealed) .acf-label label {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1 !important;
}
.profile__form .acf-field .acf-checkbox-list {
  display: flex;
  align-items: center;
  margin-top: -20px;
  flex-wrap: wrap;
}
.profile__form .acf-field .acf-checkbox-list li {
  margin-right: 10px;
  margin-top: 30px;
}
.profile__form .acf-field .acf-checkbox-list li:last-of-type {
  margin-right: 0;
}
.profile__form .acf-input-wrap input:disabled {
  border-color: transparent !important;
  background: transparent !important;
}
.profile__sendInBlue iframe {
  margin-left: -33px;
  margin-bottom: -80px;
  margin-top: -40px;
}
@media all and (min-width: 30em) {
  .profile__sendInBlue iframe {
    margin-left: -45px;
  }
}
.patterns {
  padding: 2.5rem 0;
}
.patterns__section {
  margin: 2.5rem 0;
}
.patterns__subsection {
  margin: 1.25rem 0;
}
.patterns__colors {
  margin-bottom: 2.5rem;
}
.patterns__colors-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -0.625rem -0.5625rem;
}
.patterns__color {
  width: 250px;
  padding: 0.625rem 0.5625rem;
}
.patterns__color-swatch {
  width: 100%;
  padding-top: 50%;
}
.patterns__color-name {
  padding: 0.625rem 0.28125rem;
}
.register {
  padding: 3.75rem 0;
}
.register__form > .acf-notice.-error.-dismiss {
  display: none;
}
.register__form .acf-field {
  padding-left: 0 !important;
}
.register__form .acf-field--custom {
  margin: 0;
  border-top: #EEEEEE solid 1px;
}
@media all and (min-width: 48em) {
  .register__content {
    margin-right: calc(((100% + 1.125rem) / 6) * 1);
  }
}
.register__content--wysiwyg > p {
  margin-top: 25px;
}
.register__heading {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}
.register__copy {
  margin-top: 25px;
}
.register__positions--desktop {
  display: none;
}
@media all and (min-width: 48em) {
  .register__positions--desktop {
    display: block;
  }
}
.register__positions--mobile {
  display: block;
}
@media all and (min-width: 48em) {
  .register__positions--mobile {
    display: none;
  }
}
.register__positions--header {
  padding-bottom: 33px;
  margin-bottom: 0.625rem;
  border-bottom: 3px solid #A8192E;
  text-align: center;
  font-weight: 200;
}
@media all and (min-width: 48em) {
  .register__positions--header {
    text-align: left;
  }
}
.positions p {
  color: #1C2B39;
}
.positions__count {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.07142857;
}
@media all and (min-width: 48em) {
  .positions__count {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.positions__position {
  display: flex;
  padding-top: 1.25rem;
}
.positions__position--title {
  color: #1C2B39;
  color: #116DB6;
  text-decoration: none;
}
.positions__position hr {
  border-top: 1px solid #1C2B39;
}
.positions__position--info-container {
  padding-bottom: 1.25rem;
}
.positions__position--details-wrap {
  margin-top: 14px;
}
.positions__position--details-wrap p {
  margin-top: 0;
  display: inline;
}
.positions__position--details {
  margin-right: 10px;
  margin-top: 10px;
  display: inline;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}
@media all and (min-width: 48em) {
  .positions__position--details {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.66666667;
  }
}
@media all and (min-width: 48em) {
  .positions__position--details {
    display: block;
  }
}
.positions__position--details:not(:last-child) {
  border-right: 2px solid #A8192E;
  padding-right: 10px;
}
.positions__position--desc {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.07142857;
}
@media all and (min-width: 48em) {
  .positions__position--desc {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.positions__divider {
  background-color: #1C2B39;
  height: 2px;
  opacity: 0.2;
  border: none;
}
.positions__pagination {
  padding-top: 30px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
}
.positions__pagination .page-numbers {
  color: #1C2B39;
  text-decoration: none;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
  margin-right: 1.125rem;
}
.positions__pagination .page-numbers.current {
  color: #fff;
  width: 26px;
  height: 26px;
  background: #317E9F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.positions__pagination .prev,
.positions__pagination .next {
  position: relative;
  color: transparent;
}
.positions__pagination .prev:after,
.positions__pagination .next:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border: solid #317E9F;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}
.positions__pagination .prev:after {
  transform: translate(-50%, -50%) rotate(135deg);
}
.positions__pagination .next:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.positionsLanding__filter {
  padding: 2.5rem 6.25% 3.75rem 6.25%;
  background-color: #F7F7F7;
}
@media all and (min-width: 48em) {
  .positionsLanding__filter {
    padding-top: 3.75rem;
    padding-right: 1.125rem;
    width: calc((((( 87.5%  + 1.125rem) / 12) * 4) + ((100% -  87.5% ) / 2)));
    flex: 0 1 auto;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .positionsLanding__filter {
    width: calc((((1024px + 1.125rem) / 12) * 4) + ((100vw - 1024px) / 2));
    padding-left: calc((100vw - 1024px) * 0.5);
  }
}
@media all and (max-width: 47.9375em) {
  .positionsLanding__filter {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.positionsLanding__filter-checkbox-wrapper {
  margin: 0.625rem 0;
}
.positions__position-image {
  width: 150px;
  flex-shrink: 0;
  margin-right: 2.25rem;
  display: none;
  padding-bottom: 1.25rem;
}
@media all and (min-width: 48em) {
  .positions__position-image {
    display: block;
  }
}
.positions__figure {
  margin-top: 0;
}
.positions__figure:before {
  padding-top: 100%;
}
.positionsLanding__reveal,
.resources__reveal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media all and (min-width: 48em) {
  .positionsLanding__reveal,
  .resources__reveal {
    display: none;
  }
}
.positionsLanding__reveal svg,
.resources__reveal svg {
  width: 24px;
  height: 24px;
  color: #116DB6;
}
.positionsLanding__reveal-btn {
  display: none;
}
#positionsMap {
  position: relative;
  padding: 0 0 1.25rem;
}
#positionsMap:before {
  content: '';
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 61.3982%;
  border: 1px solid #6499AF;
}
#positionsMap:after {
  content: 'Loading Map...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(0, 0, 0, 0.75);
}
#positionsMap.map-ready:after,
#positionsMap.map-ready:before {
  display: none;
}
#positionsMap.map-ready #positionsMap_holder {
  display: block;
}
@media all and (max-width: 47.9375em) {
  #positionsMap {
    display: none;
  }
}
#positionsMap_holder {
  display: none;
}
@media all and (max-width: 47.9375em) {
  #positionsLanding-filter,
  #resources__filter {
    padding-top: 2.5rem;
  }
  #positionsLanding-filter:not(.is-revealed),
  #resources__filter:not(.is-revealed) {
    display: none;
  }
}
@media all and (max-width: 47.9375em) {
  .positionsLanding__progress {
    display: none;
  }
}
#positionsMap_outer {
  left: 100% !important;
}
.positionsLanding__results {
  padding-top: 2.5rem;
  padding-right: 6.25%;
  padding-left: 6.25%;
}
@media all and (min-width: 48em) {
  .positionsLanding__results {
    padding-top: 3.75rem;
    width: calc((((( 87.5%  + 1.125rem) / 12) * 7) + ((100% -  87.5% ) / 2)) - 1.125rem);
    padding-left: 0;
    flex: 0 1 auto;
  }
}
@media all and (min-width: 73.14285714285714em) {
  .positionsLanding__results {
    padding-right: calc((100vw - 1024px) * 0.5);
    width: calc((((1024px + 1.125rem) / 12) * 7) + ((100vw - 1024px) / 2) - 1.125rem);
  }
}
.positionsPerma {
  padding-bottom: 3.75rem;
  padding-top: 80px;
}
@media all and (min-width: 62em) {
  .positionsPerma {
    padding-top: 110px;
  }
}
.positionsPerma__row {
  padding-top: 1.25rem;
  padding-bottom: 0;
}
@media all and (min-width: 48em) {
  .positionsPerma__row {
    padding-top: 3.75rem;
  }
}
.positionsPerma__title {
  color: #1C2B39;
  margin-top: 0;
  color: #317E9F;
}
.positionsPerma__sidebar-title {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
}
.positionsPerma__sidebar-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.07142857;
  margin-top: 5px;
}
@media all and (min-width: 48em) {
  .positionsPerma__sidebar-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.positionsPerma__benefits {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5625rem;
  margin-right: -0.5625rem;
}
@media all and (min-width: 30em) {
  .positionsPerma__benefits:before,
  .positionsPerma__benefits:after {
    content: "\0020";
    height: 0;
    display: block;
    overflow: hidden;
  }
  .positionsPerma__benefits:after {
    clear: both;
  }
}
.positionsPerma__benefits li {
  display: block;
}
@media all and (min-width: 30em) {
  .positionsPerma__benefits li {
    float: left;
  }
}
.positionsPerma__benefits a {
  display: block;
}
.positionsPerma__benefits:before,
.positionsPerma__benefits:after {
  content: "\0020";
  height: 0;
  display: block;
  overflow: hidden;
}
.positionsPerma__benefits:after {
  clear: both;
}
.positionsPerma__benefits--benefit {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.25rem;
  flex: 0 0 auto;
  width: calc((100% / 12) * 4);
  padding-left: 0.5625rem;
  padding-right: 0.5625rem;
}
@media all and (min-width: 48em) {
  .positionsPerma__benefits--benefit {
    width: 25%;
  }
}
@media all and (min-width: 62em) {
  .positionsPerma__benefits--benefit {
    width: 15%;
  }
}
.positionsPerma__benefits--benefit svg {
  font-size: 70px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.positionsPerma__benefits--benefit span {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
}
.positionsPerma__info {
  margin: 0;
  padding: 0;
}
@media all and (max-width: 47.9375em) {
  .positionsPerma__info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }
}
@media all and (min-width: 48em) {
  .positionsPerma__info {
    margin: 0;
  }
}
.positionsPerma__info-group {
  padding: 0.625rem 0;
}
@media all and (max-width: 47.9375em) {
  .positionsPerma__info-group {
    width: 50%;
    flex: 1 0 auto;
  }
}
.positionPerma__info-term {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.22222222;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  padding: 0;
  margin: 0;
  color: #841324;
}
.positionPerma__info-def {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
  padding: 0;
  margin: 0;
}
.positionsPerma__apply {
  padding-bottom: 3.75rem;
}
@media all and (max-width: 47.9375em) {
  .positionsPerma__apply {
    display: flex;
    flex-direction: column;
  }
}
.positionsPerma__figure {
  width: 100%;
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-top: 100%;
  position: relative;
}
.positionsPerma__figure img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  margin: 0;
}
.positionsPerma__figure img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .positionsPerma__figure img img {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.positionsPerma__h3 {
  margin-top: 0;
}
.positionsPerma__lists {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
  margin-top: 0.625rem;
}
.positionsPerma__lists li {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media all and (min-width: 48em) {
  .positionsPerma__lists li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.positionsPerma__lists li:before {
  content: "\25CF";
  color: #A8192E;
  padding-right: 10px;
}
.resourcesPerma {
  padding-top: 1.25rem;
  padding-bottom: 3.75rem;
}
@media all and (min-width: 48em) {
  .resourcesPerma {
    padding-top: 0;
  }
}
@media all and (min-width: 48em) {
  .resourcesPerma .quote {
    margin-bottom: 0;
  }
}
@media all and (min-width: 48em) {
  .resourcesPerma > .resourcesPerma__wrapper .resourcesPerma__row:first-child,
  .quote ~ .resourcesPerma__wrapper .resourcesPerma__row:first-child {
    padding-top: 0;
  }
  .resourcesPerma > .resourcesPerma__wrapper .resourcesPerma__row:first-child .resourcesPerma__bullet,
  .quote ~ .resourcesPerma__wrapper .resourcesPerma__row:first-child .resourcesPerma__bullet {
    margin-top: 63px;
  }
  .resourcesPerma > .resourcesPerma__wrapper .resourcesPerma__row:first-child .resourcesPerma__col--heading,
  .quote ~ .resourcesPerma__wrapper .resourcesPerma__row:first-child .resourcesPerma__col--heading {
    margin-top: 3.75rem;
  }
}
.resourcesPerma__nav {
  position: relative;
  z-index: 10;
  min-height: var(--nav-height);
  display: none;
}
@media all and (min-width: 48em) {
  .resourcesPerma__nav {
    display: block;
  }
}
.resourcesPerma__nav-sticky {
  background-color: #FFFFFF;
  box-shadow: 0 5px 10px 0 rgba(28, 43, 57, 0.3);
  z-index: 10;
}
.sticky-on .resourcesPerma__nav-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
.resourcesPerma__nav--wrapper {
  overflow: hidden;
}
.resourcesPerma__nav--list {
  overflow-x: auto;
  margin: 0 -0.5625rem;
  padding: 0;
  text-align: center;
  white-space: nowrap;
}
@media all and (min-width: 48em) {
  .resourcesPerma__nav--list {
    margin: 0;
  }
}
.resourcesPerma__nav--item {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0 0.5625rem;
  width: 49.5%;
  white-space: normal;
}
@media all and (min-width: 48em) {
  .resourcesPerma__nav--item {
    width: 19.5%;
    padding: 0;
  }
  .resourcesPerma__nav--item:first-child {
    text-align: left;
  }
}
@media all and (max-width: 47.9375em) {
  .resourcesPerma__nav--item:first-child {
    display: none;
  }
}
.resourcesPerma__nav--link {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.25rem 0;
  color: #116DB6;
  text-decoration: none;
}
@media all and (min-width: 48em) {
  .resourcesPerma__nav--link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.125;
  }
}
.resourcesPerma__nav--link:hover,
.resourcesPerma__nav--link:focus {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
  color: #1C2B39;
}
.resourcesPerma__nav--link span {
  position: relative;
  display: inline-block;
}
@media all and (min-width: 48em) {
  .resourcesPerma__nav--link span {
    padding: 0 0.5625rem;
  }
}
.resourcesPerma__nav--link span:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5625rem;
  right: 0.5625rem;
  height: 0px;
  background: #A8192E;
  transform: translateY(1.25rem);
  transition: height 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.resourcesPerma__nav--link.is-active span:after {
  height: 4px;
}
@media all and (min-width: 48em) {
  overflow-x: auto;
}
.resourcesPerma__row {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding-bottom: 1.25rem;
}
@media all and (min-width: 48em) {
  .resourcesPerma__row {
    flex-direction: row;
  }
}
@media all and (min-width: 62em) {
  .resourcesPerma__row {
    padding-bottom: 3.75rem;
  }
}
.resourcesPerma__row--anchor {
  position: relative;
  top: -5.625rem;
}
.resourcesPerma__col-1 {
  display: none;
  position: relative;
}
@media all and (min-width: 48em) {
  .resourcesPerma__col-1 {
    flex: 0 0 auto;
    display: block;
    width: calc(((100% + 1.125rem) / 9) * 1);
  }
  .resourcesPerma__col-1:before {
    content: '';
    position: absolute;
    height: calc(100% + 1.25rem);
    background-color: #A8192E;
    width: 4px;
    left: 34px;
    z-index: 0;
  }
}
@media all and (min-width: 62em) {
  .resourcesPerma__col-1 {
    width: calc(((100% + 1.125rem) / 12) * 2);
  }
  .resourcesPerma__col-1:before {
    height: calc(100% + 3.75rem);
  }
}
.resourcesPerma__bullet {
  position: relative;
  z-index: 1;
  height: 26px;
  width: 26px;
  margin-left: 23px;
  margin-top: 25px;
}
.resourcesPerma__col-2 {
  width: 100%;
}
@media all and (min-width: 48em) {
  .resourcesPerma__col-2 {
    padding-right: calc(((100% + 1.125rem) / 9) * 1);
  }
}
@media all and (min-width: 62em) {
  .resourcesPerma__col-2 {
    padding-right: calc(((100% + 1.125rem) / 12) * 2);
  }
}
.resourcesPerma__col--heading {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #1C2B39;
  text-transform: none;
}
@media all and (min-width: 48em) {
  .resourcesPerma__col--heading {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
.resourcesPerma__sidebar-nav {
  position: relative;
  max-width: 255px;
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(28, 43, 57, 0.3);
  padding: 0.5625rem;
  z-index: 1;
}
.resourcesPerma__sidebar-text {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  color: #A8192E;
}
@media all and (min-width: 62em) {
  .resourcesPerma__sidebar-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.resourcesPerma__related {
  background-color: #F7F7F7;
  padding-top: 3.75rem;
  padding-bottom: 5.625rem;
}
@media all and (min-width: 48em) {
  .resourcesPerma__related-col {
    padding-left: calc(((100% + 1.125rem) / 6) * 1);
  }
}
@media all and (max-width: 47.9375em) {
  .resourcesPerma__related-col .button__secondary {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.resourcesPerma__related-header {
  padding-bottom: 33px;
  margin-bottom: 0.625rem;
  border-bottom: 3px solid #A8192E;
  text-align: center;
}
@media all and (min-width: 48em) {
  .resourcesPerma__related-header {
    text-align: left;
  }
}
.resourcesPerma__related-jobs {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #1C2B39;
  text-align: center;
}
.resourcesPerma__related-jobs a {
  text-decoration: none;
}
.resourcesPerma__related-jobs h3 {
  color: #116DB6;
  padding-top: 1.25rem;
  margin-top: 0;
}
.resourcesPerma__related-jobs h3:hover,
.resourcesPerma__related-jobs h3focus {
  color: #1C2B39;
}
@media all and (min-width: 48em) {
  .resourcesPerma__related-jobs {
    text-align: left;
  }
}
.resourcesPerma__related-resources {
  display: flex;
  align-items: center;
}
.resourcesPerma__related-resources-figure {
  width: 150px;
  height: 150px;
  flex-basis: 150px;
}
.resourcesPerma__related-resources-figure-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .resourcesPerma__related-resources-figure-img {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
@media all and (max-width: 47.9375em) {
  .resourcesPerma__related-resources {
    flex-direction: column;
    text-align: center;
    margin-bottom: 40px;
  }
}
.resourcesPerma__related-resources-figure {
  min-width: 150px;
}
.resourcesPerma__related-resources-figure-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .resourcesPerma__related-resources-figure-img {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
@media all and (min-width: 48em) {
  .resourcesPerma__related-resources-figure {
    margin-right: 1.125rem;
  }
}
.resourceTable {
  width: 100%;
  margin-top: 2.5rem;
  margin-bottom: 3.75rem;
}
.resourceTable__leadin {
  max-width: 665px;
}
.resourceTable__row {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.07142857;
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 5px 0;
  flex-direction: column;
  margin-bottom: 2.5rem;
  box-shadow: 0 5px 10px 0 rgba(28, 43, 57, 0.3);
}
@media all and (min-width: 48em) {
  .resourceTable__row {
    flex-direction: row;
    margin-bottom: 0;
    border-bottom: 1px solid #1C2B39;
    box-shadow: none;
  }
}
.resourceTable__row--header {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
  display: none;
  text-transform: uppercase;
  border-bottom: 3px solid #A8192E;
  color: #A8192E;
}
@media all and (min-width: 48em) {
  .resourceTable__row--header {
    display: flex;
  }
}
.resourceTable__cell {
  padding: 15px 10px;
  text-align: left;
  flex-basis: 20%;
  overflow: hidden;
  max-width: 100%;
}
.resourceTable__cell--state {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
  background-color: #A8192E;
  color: #fff;
}
@media all and (min-width: 48em) {
  .resourceTable__cell--state {
    background-color: transparent;
    color: #1C2B39;
  }
}
.resourceTable__mobile-label {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 700;
}
@media all and (min-width: 48em) {
  .resourceTable__mobile-label {
    display: none;
  }
}
.resources__count {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.07142857;
}
@media all and (min-width: 48em) {
  .resources__count {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.resources__resource--row {
  display: block;
}
@media all and (min-width: 48em) {
  .resources__resource--row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.resources__resource {
  box-sizing: border-box;
  margin-top: 1.25rem;
  box-shadow: 0px 3px 6px 3px rgba(0, 0, 0, 0.2);
  width: 100%;
}
@media all and (min-width: 48em) {
  .resources__resource {
    width: 32%;
  }
}
.resources__resource--title {
  color: #1C2B39;
  margin-top: 0;
}
.resources__resource--image {
  width: 100%;
  height: 20vh;
  min-height: 150px;
  overflow: hidden;
  position: relative;
}
.resources__resource--info-container {
  padding: 40px 20px 30px;
}
.resources__resource--filler {
  visibility: hidden;
}
.resources__resource--details-wrap {
  display: flex;
}
.resources__resource--details {
  margin-right: 10px;
}
.resources__resource--details:not(:last-child) {
  border-right: 2px solid #A8192E;
  padding-right: 10px;
}
.resources__resource--desc {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.07142857;
}
@media all and (min-width: 48em) {
  .resources__resource--desc {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}
.resources__categories {
  padding-left: 0;
  list-style: none outside none;
  margin: 0 0 -0.625rem 0;
}
.resources__categories-item {
  padding: 0;
  margin: 0.625rem 0;
  display: inline-block;
}
.resources__categories-link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.14285714;
  letter-spacing: 0.07142857em;
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 900;
  position: relative;
  min-width: 80px;
  height: 100%;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  height: auto;
  text-decoration: none;
}
.resources__categories-link span {
  position: relative;
  display: block;
  background-color: #fff;
  border: 2px solid #116DB6;
  border-radius: 20px;
  padding: 10px 20px !important;
  width: 100%;
  color: #116DB6;
  transition: padding 200ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.resources__categories-link span:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: url('../../../../lbcore/resources/icons/check-circle-white.svg') no-repeat;
  width: 20px;
  height: 20px;
  opacity: 0;
}
.resources__categories-link.is-active span,
.resources__categories-link input:checked ~ span {
  background: #116DB6;
  color: #fff;
  padding-left: 40px !important;
}
.resources__categories-link.is-active span:before,
.resources__categories-link input:checked ~ span:before {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.resources__categories-link:focus span,
.resources__categories-link:hover span {
  border-color: #0a4370;
  background: #0a4370;
  color: #fff;
}
.resources__categories-link input[type="checkbox"],
.resources__categories-link input[type="radio"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
.resources__reveal {
  padding-top: 1.25rem;
}
#resources__filter {
  display: block;
}
@media all and (max-width: 47.9375em) {
  .resources__filter-copy {
    display: none;
  }
}
@media all and (max-width: 47.9375em) {
  .resources__results {
    display: none;
  }
}
@media all and (max-width: 47.9375em) {
  .resources__col-1 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
.communication__forms iframe {
  margin-left: -33px;
  margin-bottom: -80px;
  margin-top: -40px;
}
@media all and (min-width: 30em) {
  .communication__forms iframe {
    margin-left: -45px;
  }
}
.history__position {
  display: flex;
  padding-top: 1.25rem;
}
.history__position--title {
  color: #1C2B39;
  color: #116DB6;
  text-decoration: none;
}
.history__position hr {
  border-top: 1px solid #1C2B39;
}
.history__position-title {
  color: #1C2B39;
  color: #116DB6;
  text-decoration: none;
}
.history__position--details-wrap {
  margin-top: 14px;
}
.history__position--details-wrap p {
  margin-top: 0;
  display: inline;
}
.history__position--details {
  margin-right: 10px;
  margin-top: 10px;
  display: inline;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}
@media all and (min-width: 48em) {
  .history__position--details {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.66666667;
  }
}
@media all and (min-width: 48em) {
  .history__position--details {
    display: block;
  }
}
.history__position--details:not(:last-child) {
  border-right: 2px solid #A8192E;
  padding-right: 10px;
}
.history__position--info-container {
  padding-bottom: 1.25rem;
}
.history__position-image {
  width: 150px;
  flex-shrink: 0;
  margin-right: 2.25rem;
  display: none;
  padding-bottom: 1.25rem;
}
@media all and (min-width: 48em) {
  .history__position-image {
    display: block;
  }
}
.history__figure {
  margin-top: 0;
}
.history__figure:before {
  padding-top: 100%;
}
.history__divider {
  background-color: #1C2B39;
  height: 2px;
  opacity: 0.2;
  border: none;
}
.error {
  position: relative;
  background: radial-gradient(circle, #155672 0%, #317E9F 51.01%, #6499AF 100%);
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
@media all and (min-width: 48em) {
  .error {
    padding-top: 186px;
    padding-bottom: 186px;
  }
}
.error__figure {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  margin: 0;
  z-index: 0;
}
.error__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.no-objectfit .error__figure img {
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.error__content {
  position: relative;
  text-align: center;
  z-index: 1;
}
@media all and (min-width: 48em) {
  .error__content {
    margin-right: 33.3333%;
    text-align: left;
  }
}
.error__tagline {
  font-family: "Faustina", "Times New Roman", Times, Georgia, serif;
  color: #fff;
  letter-spacing: 1px;
}
.error__headline {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif;
  font-weight: 300;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.16666667;
  color: #fff;
  text-transform: none;
}
@media all and (min-width: 62em) {
  .error__headline {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.125;
  }
}
.tribe-events p,
.tribe-events div {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif !important;
  font-weight: 400 !important;
}
.tribe-events a,
.tribe-events h1,
.tribe-events h2,
.tribe-events h3,
.tribe-events h4,
.tribe-events h5 {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif !important;
  font-weight: 700 !important;
}
.tribe-events .tribe-common {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif !important;
  font-weight: 400 !important;
}
.tribe-events .tribe-common.tribe-common-h1,
.tribe-events .tribe-common.tribe-common-h2,
.tribe-events .tribe-common.tribe-common-h3,
.tribe-events .tribe-common.tribe-common-h4,
.tribe-events .tribe-common.tribe-common-h5,
.tribe-events .tribe-common.tribe-common-h6,
.tribe-events .tribe-common.tribe-common-h7,
.tribe-events .tribe-common.tribe-common-h8 {
  font-family: "Roboto", Helvetica, Arial, "Arial Unicode", "Lucida Sans Unicode", sans-serif !important;
  font-weight: 700 !important;
}
.site .site-content .tribe-events .tribe-events-l-container {
  padding-bottom: 40px;
}
.events-form .nf-form-content {
  max-width: 999999px;
  margin: 0;
  padding: 20px 0 80px 0;
}
.single-tribe_events .tribe-events-single-section {
  order: 1 !important;
}
.single-tribe_events.tribe-events-event-url {
  margin-left: 0;
}
.single-tribe_events .tribe-events-event-meta:before {
  border: none;
}
.single-tribe_events .tribe-events-single-event-description,
.single-tribe_events .tribe-events-cal-links {
  border: none !important;
}
.single-tribe_events .tribe-events-abbr {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.single-tribe_events .tribe-events-button {
  font-size: 12px;
}
.single-tribe_events .tribe-events-button:first-of-type {
  padding-left: 0;
}
@media all and (min-width: 48em) {
  .events__figure {
    margin-left: 40px;
  }
}
body.login {
  background-color: white;
}
body.login div#login h1 a {
  background-image: url(https://usrl.imgix.net/wp-content/uploads/2020/10/12155055/USRenaLink-logo.png);
  padding-bottom: 30px;
  background-position: 50% 50%;
  background-size: contain;
  width: 100%;
}
body.login p.message {
  border-left-color: transparent;
}
/**
 * Print
 */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  html {
    font: 12pt/1.5em Georgia, "Times New Roman", Times, serif;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: bold;
    line-height: 1.1em;
    margin-bottom: 0.5em;
    margin-top: 1em;
    page-break-after: avoid;
    orphans: 3;
    widows: 3;
  }
  li h1,
  li h2,
  li h3,
  li h4,
  li h5,
  li h6 {
    margin-top: 0;
  }
  h1 {
    font-size: 24pt;
  }
  h2 {
    font-size: 21pt;
  }
  h3 {
    font-size: 18pt;
  }
  h4 {
    font-size: 16pt;
  }
  h5 {
    font-size: 14pt;
  }
  h6 {
    font-size: 12pt;
  }
  blockquote,
  p,
  ul,
  ol,
  dl,
  figure,
  img {
    margin-bottom: 1em;
  }
  figure img {
    margin-bottom: 0;
  }
  ul,
  ol,
  dd {
    margin-left: 3em;
  }
  pre,
  blockquote {
    border-left: 0.5em solid #999;
    padding-left: 1.5em;
    page-break-inside: avoid;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  figcaption {
    text-transform: uppercase;
    font-size: 10pt;
  }
  strong {
    font-weight: bold;
  }
  em {
    font-style: italic;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  form,
  video,
  nav {
    display: none !important;
  }
  @page {
    margin: 2cm;
  }
}
/**
 * Prototype Styles
 * REMOVE WHEN BEGINNING PRODUCTION
 */
/*# sourceMappingURL=../../build/css/maps/motif.css.map */