@charset "UTF-8";

/**
 * CONTENTS
 *
 * SETTINGS
 * Variables............Globally-available variables and config.
 * Z-Index..............Semantic z-index manifest
 *
 * TOOLS
 * Mixins...............Useful mixins.
 * Include Media........Sass library for writing CSS media queries.
 * Media Query Test.....Displays the current breakport you're in.
 *
 * GENERIC
 * Reset................A level playing field.
 *
 * BASE
 * Forms................Common and default form styles.
 * Headings.............H1–H6 styles.
 * Links................Link styles.
 * Lists................Default list styles.
 * Main.................Page body defaults.
 * Media................Image and video styles.
 * Tables...............Default table styles.
 * Text.................Default text styles.
 *
 * LAYOUT
 * Grids................Grid/column classes.
 * Wrappers.............Wrapping/constraining elements.
 *
 * COMPONENTS
 * Blocks...............Modular components often consisting of text and media.
 * Cards................Modular components for mainly text and data (card-like).
 * Heros................Leading hero image/caption section of a content type.
 * Sections.............Larger components of pages.
 * Forms................Specific form styling.
 *
 * OBJECTS
 * Buttons..............Various button styles and styles.
 * Icons................Icon styles and settings.
 * Lists................Various site list styles.
 * Navs.................Site navigations.
 * Media................Specific media objects, e.g. figures
 *
 * TEXT
 * Text.................Various text-specific class definitions.
 *
 * PAGE STRUCTURE
 * Article..............Post-type pages with styled text.
 * Gallery..............Styles for all things gallery.
 * Footer...............The main page footer.
 * Header...............The main page header.
 * Main.................Content area styles.
 *
 * MODIFIERS
 * Animations...........Animation and transition effects.
 * Colors...............Text and background colors.
 * Display..............Show and hide and breakpoint visibility rules.
 * Spacings.............Padding and margins in classes.
 *
 * TRUMPS
 * Helper Classes.......Helper classes loaded last in the cascade.
 */

/* ------------------------------------ *\
    $SETTINGS
\* ------------------------------------ */

/* ------------------------------------ *\
    $VARIABLES
\* ------------------------------------ */

/**
 * Grid & Baseline Setup
 */

/**
 * Theme Colors
 */

/**
 * Default Colors
 */

/**
 * Style Colors
 */

/**
 * Typography
 */

/**
 * Icons
 */

/**
 * Common Breakpoints
 */

/**
 * Animation
 */

/**
 * Border Styles
 */

/**
 * Default Spacing/Padding
 * Maintain a spacing system divisible by 10
 */

/**
 * Font Sizes
 */

/**
 * Native Custom Properties
 */

:root {
  --body-font-size: 16px;
  --font-size-xxs: 14px;
  --font-size-xs: 16px;
  --font-size-s: 20px;
  --font-size-m: 24px;
  --font-size-l: 28px;
  --font-size-xl: 36px;
  --font-size-xxl: 48px;
}

@media screen and (min-width: 700px) {
  :root {
    --body-font-size: 18px;
    --font-size-m: 28px;
    --font-size-l: 36px;
    --font-size-xl: 42px;
    --font-size-xxl: 64px;
  }
}

/* ------------------------------------ *\
    $TOOLS
\* ------------------------------------ */

/* ------------------------------------ *\
    $MIXINS
\* ------------------------------------ */

/**
 * Standard paragraph
 */

/**
 * String interpolation function for SASS variables in SVG Image URI's
 */

/**
 * IE 11 & Edge
 */

/* ------------------------------------ *\
    $MEDIA QUERY TESTS
\* ------------------------------------ */

/*
body::before {
  display: block;
  position: fixed;
  z-index: 10000;
  background: black;
  bottom: 0;
  right: 0;
  padding: 0.5em 1em;
  content: 'No Media Query';
  color: rgba(255, 255, 255, 0.75);
  border-top-left-radius: 10px;
  font-size: 0.75em;
}

@media print {
  body::before {
    display: none;
  }
}

body::after {
  display: block;
  position: fixed;
  height: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  content: '';
  background: black;
}

@media print {
  body::after {
    display: none;
  }
}

@media (min-width: 401px) {
  body::before {
    content: "xsmall: 400px";
  }

  body::after,
  body::before {
    background: dodgerblue;
  }
}

@media (min-width: 551px) {
  body::before {
    content: "small: 550px";
  }

  body::after,
  body::before {
    background: darkseagreen;
  }
}

@media (min-width: 701px) {
  body::before {
    content: "medium: 700px";
  }

  body::after,
  body::before {
    background: lightcoral;
  }
}

@media (min-width: 851px) {
  body::before {
    content: "large: 850px";
  }

  body::after,
  body::before {
    background: mediumvioletred;
  }
}

@media (min-width: 1001px) {
  body::before {
    content: "xlarge: 1000px";
  }

  body::after,
  body::before {
    background: hotpink;
  }
}

@media (min-width: 1201px) {
  body::before {
    content: "xxlarge: 1200px";
  }

  body::after,
  body::before {
    background: orangered;
  }
}

@media (min-width: 1401px) {
  body::before {
    content: "xxxlarge: 1400px";
  }

  body::after,
  body::before {
    background: dodgerblue;
  }
}
*/

/* ------------------------------------ *\
    $GENERIC
\* ------------------------------------ */

/* ------------------------------------ *\
    $RESET
\* ------------------------------------ */

/* Border-Box http:/paulirish.com/2012/box-sizing-border-box-ftw/ */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

blockquote,
body,
div,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
iframe,
label,
legend,
li,
nav,
object,
ol,
p,
section,
table,
ul {
  margin: 0;
  padding: 0;
}

article,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

address {
  font-style: normal;
}

/* ------------------------------------ *\
    $BASE
\* ------------------------------------ */

/* ------------------------------------ *\
    $FONTS
\* ------------------------------------ */

@font-face {
  font-family: 'MissionGothicRegular';
  src: url(fonts/MissionGothic-Regular.eot), url(fonts/MissionGothic-Regular.ttf) format("truetype");
}

@font-face {
  font-family: 'MissionGothicBold';
  src: url(fonts/MissionGothic-Bold.eot), url(fonts/MissionGothic-Bold.ttf) format("truetype");
}

@font-face {
  font-family: 'Populaire';
  src: url(fonts/populaire-webfont.woff2) format("woff2");
}

@font-face {
  font-family: 'ShelbyBold';
  src: url(fonts/shelby-bold-webfont.woff2) format("woff2");
}

/* ------------------------------------ *\
    $FORMS
\* ------------------------------------ */

form ol,
form ul {
  list-style: none;
  margin-left: 0;
}

legend {
  margin-bottom: 6px;
  font-weight: bold;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

input,
select,
textarea {
  width: 100%;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel],
textarea {
  font-size: var(--font-size-xxs, 14px);
  font-family: "Nunito Sans", sans-serif;
  color: #707070;
  padding: 10px 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 5px;
  border: 1px solid #86ab45;
  background: transparent;
}

@media (min-width: 701px) {
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=search],
  input[type=tel],
  textarea {
    font-size: var(--font-size-xs, 16px);
    padding: 12px 20px;
  }
}

input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #707070;
  text-transform: uppercase;
  opacity: 1;
}

input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
  color: #707070;
  text-transform: uppercase;
  opacity: 1;
}

input[type=text]::-ms-input-placeholder,
input[type=password]::-ms-input-placeholder,
input[type=email]::-ms-input-placeholder,
input[type=search]::-ms-input-placeholder,
input[type=tel]::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #707070;
  text-transform: uppercase;
  opacity: 1;
}

input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #707070;
  text-transform: uppercase;
  opacity: 1;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

input[type=radio],
input[type=checkbox] {
  outline: none;
  margin: 0;
  margin-right: 5px;
  height: 18px;
  width: 18px;
  line-height: 1;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: 0 0;
  cursor: pointer;
  display: block;
  float: left;
  border: 1px solid #86ab45;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

input[type=radio] + label,
input[type=checkbox] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
}

input[type=radio]:checked,
input[type=checkbox]:checked {
  background-color: #86ab45;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
}

input[type=radio] {
  border-radius: 50px;
}

input[type=checkbox] {
  border-radius: 5px;
}

input[type=submit] {
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/* clears the 'X' from Internet Explorer */

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* removes the blue background on Chrome's autocomplete */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

.select-wrapper {
  position: relative;
  z-index: 0;
  font-size: var(--font-size-xs, 16px);
  font-family: "Nunito Sans", sans-serif;
  color: #707070;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 5px;
  border: 1px solid #86ab45;
  background: transparent;
  overflow: hidden;
}

.select-wrapper::before,
.select-wrapper::after {
  content: "";
  display: block;
  position: absolute;
}

.select-wrapper::before {
  z-index: -1;
  top: 17px;
  right: 15px;
  width: 15px;
  height: 10px;
  background: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAgNyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOS43NjIuNzEzbC0uNDgtLjQ3OEEuODI2LjgyNiAwIDAwOC42OTYgMGEuNzkuNzkgMCAwMC0uNTc4LjIzNUw1IDMuMzMgMS44OC4yMzZBLjc5Ljc5IDAgMDAxLjMwNCAwYS44MjYuODI2IDAgMDAtLjU4NC4yMzZMLjI0NC43MTNhLjc4Ny43ODcgMCAwMC0uMjQ0LjU4YzAgLjIyOC4wODEuNDIuMjQ0LjU3Mmw0LjE3OCA0LjE0M0EuNzY2Ljc2NiAwIDAwNSA2LjI1YS44LjggMCAwMC41ODQtLjI0Mmw0LjE3OC00LjE0M0EuNzc2Ljc3NiAwIDAwMTAgMS4yOTJjMC0uMjItLjA4LS40MTQtLjIzOC0uNTh6IiBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=) no-repeat center center;
}

@media (min-width: 701px) {
  .select-wrapper::before {
    top: 21px;
    right: 16px;
  }
}

.select-wrapper::after {
  z-index: -2;
  top: 0;
  bottom: 0;
  right: 0;
  width: 46px;
  height: 100%;
  background: #86ab45;
  -webkit-box-shadow: 0 14px 8px -12px rgba(0, 0, 0, 0.21);
          box-shadow: 0 14px 8px -12px rgba(0, 0, 0, 0.21);
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

@media (min-width: 701px) {
  .select-wrapper::after {
    width: 50px;
  }
}

select {
  font-size: var(--font-size-xxs, 14px);
  font-family: "Nunito Sans", sans-serif;
  color: #707070;
  text-transform: uppercase;
  padding: 10px 25px 10px 10px;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  width: 120%;
}

@media (min-width: 701px) {
  select {
    font-size: var(--font-size-xs, 16px);
    padding: 12px 30px 12px 20px;
  }
}

select:focus {
  outline: none;
}

select option {
  text-transform: none;
}

/* ------------------------------------ *\
    $HEADINGS
\* ------------------------------------ */

.o-heading--xl {
  font-family: "MissionGothicRegular", sans-serif;
  line-height: 1.15;
  font-size: var(--font-size-xxl, 64px);
  font-weight: 300;
  color: #949494;
}

h1,
.o-heading--l {
  font-family: "MissionGothicRegular", sans-serif;
  line-height: 1.15;
  font-size: var(--font-size-xl, 42px);
  font-weight: 300;
  color: #949494;
}

h2,
.o-heading--m,
.c-mobile-label {
  font-family: "MissionGothicRegular", sans-serif;
  line-height: 1.15;
  font-size: var(--font-size-l, 36px);
  font-weight: 300;
  color: #949494;
}

h3,
h4,
.o-heading--s {
  font-family: "MissionGothicRegular", sans-serif;
  line-height: 1.15;
  font-size: var(--font-size-m, 28px);
  font-weight: 300;
  color: #949494;
}

h5,
h6,
.o-heading--xs {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.15;
  font-size: var(--font-size-s, 20px);
  font-weight: 600;
  color: #949494;
}

.o-heading--bold {
  font-family: "MissionGothicRegular", sans-serif;
}

/* ------------------------------------ *\
    $LINKS
\* ------------------------------------ */

a {
  text-decoration: none;
  color: #0a73ba;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

@media (min-width: 701px) {
  a:hover {
    color: #07558a;
  }
}

@media (min-width: 701px) {
  a:hover .o-icon svg path {
    fill: #07558a;
  }
}

a .o-icon svg path {
  fill: #0a73ba;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.o-text-link {
  font-weight: 700;
}

.o-text-link .o-icon {
  width: 19px;
  margin-left: 10px;
}

.o-text-link .o-icon svg path {
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/* ------------------------------------ *\
    $LISTS
\* ------------------------------------ */

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
 * Definition Lists
 */

dl {
  overflow: hidden;
  margin: 0 0 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* ------------------------------------ *\
    $SITE MAIN
\* ------------------------------------ */

body {
  background: #fff;
  font: 400 16px/1.3 "Nunito Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #707070;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------------ *\
    $MEDIA ELEMENTS
\* ------------------------------------ */

/**
 * Flexible Media
 */

img,
video,
object,
svg,
iframe {
  max-width: 100%;
  border: none;
  display: block;
}

img {
  height: auto;
}

svg {
  max-height: 100%;
}

picture,
picture img {
  display: block;
}

figure {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

figcaption a {
  display: block;
}

/* ------------------------------------ *\
    $PRINT STYLES
\* ------------------------------------ */

@media print {
  *,
  *::before,
  *::after,
  *::first-letter,
  *::first-line {
    background: transparent !important;
    color: black !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }

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

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

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

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

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

  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */

  thead {
    display: table-header-group;
  }

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

  img {
    max-width: 100% !important;
    height: auto;
  }

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

  h2,
  h3 {
    page-break-after: avoid;
  }

  .no-print,
  .c-main-header,
  .c-main-footer,
  .ad {
    display: none;
  }
}

/* ------------------------------------ *\
    $TABLES
\* ------------------------------------ */

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #949494;
  width: 100%;
}

th {
  text-align: left;
  border: 1px solid #0a73ba;
  padding: 10px;
  text-transform: uppercase;
  vertical-align: top;
  font-weight: 700;
  background: #0a73ba;
  color: #fff;
}

tr {
  border: 1px solid transparent;
}

tr:nth-child(even) {
  background: rgba(134, 171, 69, 0.2);
}

td {
  border: 1px solid #0a73ba;
  padding: 10px;
}

.basic tr {
  background: transparent;
}

.basic tr:nth-child(even) {
  background: transparent;
}

.basic td {
  border: none;
}

.basic .embed-container {
  margin-bottom: .5em;
}

/**
 * Responsive Table
 */

.c-table--responsive {
  border: 1px solid #949494;
  border-collapse: collapse;
  padding: 0;
  width: 100%;
}

.c-table--responsive tr {
  border: 1px solid #949494;
  background-color: #f9f9f7;
}

.c-table--responsive th,
.c-table--responsive td {
  padding: 10px;
}

.c-table--responsive th {
  font-size: var(--font-size-xs, 16px);
  text-transform: uppercase;
  border-bottom: 1px solid #949494;
}

@media (max-width: 700px) {
  .c-table--responsive {
    border: 0;
  }

  .c-table--responsive thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .c-table--responsive tr {
    border-bottom: 3px solid #949494;
    display: block;
    margin-bottom: 10px;
  }

  .c-table--responsive tr.this-is-active td:not(:first-child) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .c-table--responsive tr.this-is-active td:first-child::before {
    content: "- " attr(data-label);
  }

  .c-table--responsive td {
    border-bottom: 1px solid #949494;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 40px;
  }

  .c-table--responsive td:first-child {
    cursor: pointer;
  }

  .c-table--responsive td:first-child::before {
    content: "+ " attr(data-label);
  }

  .c-table--responsive td:last-child {
    border-bottom: 0;
  }

  .c-table--responsive td:not(:first-child) {
    display: none;
  }

  .c-table--responsive td::before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
    font-size: var(--font-size-xs, 16px);
  }
}

/* ------------------------------------ *\
    $TEXT ELEMENTS
\* ------------------------------------ */

/**
 * Text-Related Elements
 */

p {
  line-height: 1.5;
  font-family: "Nunito Sans", sans-serif;
  font-size: var(--body-font-size, 18px);
  font-weight: 300;
}

@media print {
  p {
    font-size: 12px;
    line-height: 1.3;
  }
}

small {
  font-size: 90%;
}

/**
 * Bold
 */

strong,
b {
  font-weight: bold;
}

/**
 * Blockquote
*/

blockquote {
  position: relative;
}

blockquote::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  width: 57px;
  height: 44px;
  opacity: 0.3;
  background: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgODIgNzYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQ0LjQxNyA0OS41MDZDNDQuNDE3IDI3Ljc5OSA1Ny43MTQgNS4wOTIgNzguNTgzIDBsMy4zNjIgOC45NzZjLTcuNTY4IDMuNTI2LTE0LjIyMyAxNS44LTE0Ljk2NSAyNC4yNjFDNzUuNDkxIDM0Ljg5MiA4MiA0My45OTEgODIgNTQuOTc3IDgyIDY4LjQxNCA3My4xNzEgNzYgNjQuMjM3IDc2Yy0xMC4zMDEgMC0xOS44Mi05LjczMi0xOS44Mi0yNi40OTR6TTAgNDkuNTA2QzAgMjcuNzk5IDEzLjI5OCA1LjA5MiAzNC4xNjcgMGwzLjM2MiA4Ljk3NmMtNy41NjggMy41MjYtMTQuMjI0IDE1LjgtMTQuOTY1IDI0LjI2MSA4LjUxIDEuNjU1IDE1LjAyIDEwLjc1NCAxNS4wMiAyMS43NEMzNy41ODMgNjguNDE0IDI4Ljc1MyA3NiAxOS44MiA3NiA5LjUyIDc2IDAgNjYuMjY4IDAgNDkuNTA2eiIgZmlsbD0iIzBhNzNiYSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PC9zdmc+) no-repeat;
}

@media (min-width: 701px) {
  blockquote::before {
    left: -20px;
    top: -20px;
    width: 98px;
    height: 76px;
  }
}

blockquote p {
  font-family: "MissionGothicRegular", sans-serif;
  line-height: 1.3;
  font-size: var(--font-size-m, 28px);
  font-weight: 300;
  color: #949494;
}

blockquote label,
blockquote h6 {
  position: relative;
  display: block;
  text-align: right;
}

blockquote label::before,
blockquote h6::before {
  content: "";
  display: inline-block;
  vertical-align: 6px;
  width: 40px;
  height: 1px;
  margin-right: 20px;
  background-color: #86ab45;
}

/**
 * Horizontal Rule
 */

hr {
  height: 1px;
  border: none;
  background-color: #f9f9f7;
  margin: 0 auto;
}

/**
 * Abbreviation
 */

abbr {
  border-bottom: 1px dotted #949494;
  cursor: help;
}

/* ------------------------------------ *\
    $LAYOUT
\* ------------------------------------ */

/* ------------------------------------ *\
    $GRIDS
\* ------------------------------------ */

.l-grid {
  display: grid;
  grid-template-rows: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

@media all and (-ms-high-contrast: none) {
  .l-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
  }

  .l-grid > * {
    margin: 20px;
  }
}

.l-grid-item {
  position: relative;
}

@media (min-width: 701px) {
  .l-grid--autofill {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.l-grid--large-gutters {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
}

@media (min-width: 551px) {
  .l-grid--2up {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (-ms-high-contrast: none) {
  .l-grid--2up > * {
    width: calc(50% - 40px);
  }
}

.l-grid--2up--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 calc(20px * -1);
}

.l-grid--2up--flex > * {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 40px;
}

@media (min-width: 551px) {
  .l-grid--2up--flex > * {
    width: 50%;
  }
}

@media (min-width: 551px) {
  .l-grid--3up {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 851px) {
  .l-grid--3up {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media all and (-ms-high-contrast: none) {
  .l-grid--3up > * {
    width: calc(33.333% - 40px);
  }
}

.l-grid--4up {
  grid-template-columns: repeat(minmax(200px, 1fr));
}

@media (min-width: 401px) {
  .l-grid--4up {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 701px) {
  .l-grid--4up {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1001px) {
  .l-grid--4up {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media all and (-ms-high-contrast: none) {
  .l-grid--4up > * {
    width: calc(25% - 40px);
  }
}

.l-grid--4up--at-medium {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 551px) {
  .l-grid--4up--at-medium {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 701px) {
  .l-grid--4up--at-medium {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media all and (-ms-high-contrast: none) {
  .l-grid--4up--at-medium > * {
    width: calc(25% - 40px);
  }
}

.l-grid--5up {
  grid-row-gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

@media (min-width: 851px) {
  .l-grid--5up {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media all and (-ms-high-contrast: none) {
  .l-grid--5up > * {
    width: calc(20% - 40px);
  }
}

/* ------------------------------------ *\
    $WRAPPERS & CONTAINERS
\* ------------------------------------ */

/**
 * Wrapping element to keep content contained and centered.
 */

.l-wrap {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  position: relative;
}

@media (min-width: 1201px) {
  .l-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/**
 * Layout containers - keep content centered and within a maximum width. Also
 * adjusts left and right padding as the viewport widens.
 */

.l-container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.l-container--m {
  max-width: 800px;
}

.l-container--s {
  max-width: 680px;
}

.l-container--xs {
  max-width: 545px;
}

.l-noscroll {
  overflow: hidden;
}

/**
 * Grid classes
 */

.l-container--1col {
  max-width: 85px;
}

.l-container--2col {
  max-width: 150px;
}

.l-container--3col {
  max-width: 215px;
}

.l-container--4col {
  max-width: 300px;
}

.l-container--5col {
  max-width: 385px;
}

.l-container--6col {
  max-width: 470px;
}

.l-container--7col {
  max-width: 555px;
}

.l-container--8col {
  max-width: 640px;
}

.l-container--9col {
  max-width: 725px;
}

.l-container--10col {
  max-width: 810px;
}

.l-container--11col {
  max-width: 895px;
}

.l-container--12col {
  max-width: 980px;
}

.l-container--13col {
  max-width: 1065px;
}

.l-container--14col {
  max-width: 1150px;
}

.l-container--15col {
  max-width: 1235px;
}

.l-container--16col {
  max-width: 1320px;
}

/* ------------------------------------ *\
    $TEXT
\* ------------------------------------ */

/* ------------------------------------ *\
    $TEXT TYPES
\* ------------------------------------ */

/**
 * Font Families
 */

.u-font {
  font-family: "Nunito Sans", sans-serif;
}

.u-font--primary,
.u-font--primary p {
  font-family: "Nunito Sans", sans-serif;
}

.u-font--secondary,
.u-font--secondary p {
  font-family: "MissionGothicRegular", sans-serif;
}

/**
 * Text Sizes
 */

.u-font--xxs {
  font-size: var(--font-size-xxs, 14px);
}

.u-font--xs {
  font-size: var(--font-size-xs, 16px);
}

.u-font--s {
  font-size: var(--font-size-s, 20px);
}

.u-font--m {
  font-size: var(--font-size-m, 28px);
}

.u-font--l {
  font-size: var(--font-size-l, 36px);
}

.u-font--xl {
  font-size: var(--font-size-xl, 42px);
}

.u-font--xxl {
  font-size: var(--font-size-xxl, 64px);
}

/**
 * Text Transforms
 */

.u-text-transform--upper {
  text-transform: uppercase;
}

.u-text-transform--lower {
  text-transform: lowercase;
}

/**
 * Text Styles
 */

.u-text-style--italic {
  font-style: italic;
}

.u-font-weight--normal {
  font-weight: 300;
}

.u-font-weight--semibold {
  font-weight: 600;
}

.u-font-weight--bold {
  font-weight: 700;
}

/**
 * Text Decorations
 */

.u-text-decoration--underline {
  text-decoration: underline;
}

.u-text-decoration--none {
  text-decoration: none;
}

.u-blockquote {
  margin: 0;
}

.u-blockquote::before {
  display: none;
}

.u-blockquote .o-icon {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 57px;
  height: 44px;
  opacity: 0.4;
}

@media (min-width: 701px) {
  .u-blockquote .o-icon {
    left: -20px;
    top: -20px;
    width: 98px;
    height: 76px;
  }
}

.u-blockquote .o-icon svg path {
  fill: #86ab45;
}

/**
 * Rich text editor text
 */

.o-rte-text {
  width: 100%;
  margin: 0 auto;
}

.o-rte-text > * + * {
  margin-top: 20px;
}

.o-rte-text > dl dd,
.o-rte-text > dl dt,
.o-rte-text > ol li,
.o-rte-text > ul li,
.o-rte-text > p {
  line-height: 1.5;
  font-family: "Nunito Sans", sans-serif;
  font-size: var(--body-font-size, 18px);
  font-weight: 300;
}

@media print {
  .o-rte-text > dl dd,
  .o-rte-text > dl dt,
  .o-rte-text > ol li,
  .o-rte-text > ul li,
  .o-rte-text > p {
    font-size: 12px;
    line-height: 1.3;
  }
}

.o-rte-text h2:empty,
.o-rte-text h3:empty,
.o-rte-text p:empty {
  display: none;
}

.o-rte-text > h1 + h2,
.o-rte-text > h1 + h3,
.o-rte-text > h1 + h4,
.o-rte-text > h1 + h5,
.o-rte-text > h1 + h6 {
  margin-top: 0;
}

.o-rte-text a {
  text-decoration: underline;
}

.o-rte-text hr {
  margin-top: 40px;
  margin-bottom: 40px;
}

.o-rte-text code,
.o-rte-text pre {
  font-size: 125%;
}

.o-rte-text blockquote {
  margin: 30px 20px 20px 20px;
}

@media (min-width: 701px) {
  .o-rte-text blockquote {
    margin: 50px 60px 40px 60px;
  }
}

.o-rte-text blockquote h6 {
  font-weight: 500;
  margin-top: 20px;
}

.o-rte-text ol,
.o-rte-text ul {
  padding-left: 0;
  margin-left: 0;
}

.o-rte-text ol li,
.o-rte-text ul li {
  position: relative;
  padding-left: 20px;
  margin-top: 20px;
  margin-left: 0;
}

.o-rte-text ol li ol li:last-child,
.o-rte-text ol li ul li:last-child,
.o-rte-text ul li ol li:last-child,
.o-rte-text ul li ul li:last-child {
  margin-bottom: 5px;
}

.o-rte-text ul li::before {
  content: "\200E\25CF";
  position: absolute;
  left: 0;
  color: #86ab45;
}

.o-rte-text ol {
  counter-reset: item;
}

.o-rte-text ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  position: absolute;
  display: inline-block;
  left: -15px;
  width: 28px;
  text-align: right;
  color: #86ab45;
  font-weight: 400;
}

.o-rte-text ol li ul li::before {
  content: "\200E\25CF";
  position: absolute;
  left: -17px;
  color: #86ab45;
}

.o-rte-text--lg > dl dd,
.o-rte-text--lg > dl dt,
.o-rte-text--lg > ol li,
.o-rte-text--lg > ul li,
.o-rte-text--lg > p {
  font-size: var(--font-size-s, 20px);
}

.o-rte-text--sm > dl dd,
.o-rte-text--sm > dl dt,
.o-rte-text--sm > ol li,
.o-rte-text--sm > ul li,
.o-rte-text--sm > p {
  font-size: var(--font-size-xs, 16px);
}

/* ------------------------------------ *\
    $COMPONENTS
\* ------------------------------------ */

/* ------------------------------------ *\
    $BLOCKS
\* ------------------------------------ */

/**
 * C-Block Split Content ( 50% Media, 50% Content on desktop )
   Note: This component requires many variations split up below:
 */

@media (min-width: 851px) {
  .c-block-split {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.c-block-split--content {
  padding-top: 20px;
}

@media (min-width: 851px) {
  .c-block-split--content {
    width: 50%;
    padding-top: 0;
  }
}

@media (min-width: 851px) {
  .c-block-split--media {
    width: 50%;
  }
}

.c-block-split--primary-color::after {
  background-color: #09456d;
}

.c-block-split--primary-color h2,
.c-block-split--primary-color h3,
.c-block-split--primary-color h4,
.c-block-split--primary-color h5,
.c-block-split--primary-color h6 {
  color: #86ab45;
}

.c-block-split--secondary-color::after {
  background-color: #86ab45;
}

.c-block-split--secondary-color h2,
.c-block-split--secondary-color h3,
.c-block-split--secondary-color h4,
.c-block-split--secondary-color h5,
.c-block-split--secondary-color h6 {
  color: #fdbb2d;
}

@media (min-width: 851px) {
  .c-block-split--right .c-block-split--media {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (min-width: 851px) {
  .c-block-split--right .c-block-split--content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 40px;
  }
}

@media (min-width: 851px) {
  .c-block-split--left .c-block-split--content {
    padding-left: 40px;
  }
}

@media (min-width: 851px) {
  .c-block-split--floating:hover .c-block-split--media {
    -webkit-animation: media-float-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
         -o-animation: media-float-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: media-float-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

@media (min-width: 851px) {
  .c-block-split--floating:hover .c-block-split--content {
    -webkit-animation: content-float-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
         -o-animation: content-float-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: content-float-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

@media (min-width: 851px) {
  .c-block-split--floating .c-block-split--media {
    margin-bottom: 60px;
    -webkit-animation: media-float-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
         -o-animation: media-float-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: media-float-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

@media (min-width: 851px) {
  .c-block-split--floating .c-block-split--media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-block-split--floating .c-block-split--content {
  position: relative;
  z-index: 0;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
  background-image: url(/wp-content/themes/emeril/dist/images/bg-leafy-500.jpg);
}

@media (min-width: 851px) {
  .c-block-split--floating .c-block-split--content {
    padding: 40px;
    margin-top: 60px;
    -webkit-animation: content-float-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
         -o-animation: content-float-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: content-float-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

.c-block-split--floating .c-block-split--content::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.c-block-split--floating .c-block-split--content__quote {
  padding: 10px 0 0 10px;
}

@media (min-width: 701px) {
  .c-block-split--content--bubbles {
    padding-top: 40px;
  }
}

@media (min-width: 851px) {
  .c-block-split--content--bubbles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0;
  }
}

.c-block-bubbles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 300px;
  margin: 0 auto;
}

@media (min-width: 851px) {
  .c-block-bubbles {
    max-width: none;
    margin: 12% 0 0 0;
  }
}

.c-block-bubbles .o-bubble {
  overflow: visible;
}

.c-block-bubbles .o-bubble:first-of-type {
  width: 47%;
  height: 47%;
  margin-right: 20%;
}

@media (min-width: 851px) {
  .c-block-bubbles .o-bubble:first-of-type {
    margin-top: -12%;
  }
}

.c-block-bubbles .o-bubble:first-of-type .o-bubble-image-wrapper {
  border-color: #0a73ba;
  margin-bottom: 45px;
}

.c-block-bubbles .o-bubble:first-of-type .o-bubble-connector {
  width: 1px;
  height: 140%;
  left: 90%;
  top: 50%;
  -webkit-transform: rotate(-30deg);
       -o-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

@media (min-width: 851px) {
  .c-block-bubbles .o-bubble:first-of-type .o-bubble-connector {
    left: 80%;
  }
}

.c-block-bubbles .o-bubble:nth-of-type(2) {
  width: 32%;
  height: 32%;
}

.c-block-bubbles .o-bubble:nth-of-type(2) .o-bubble-image-wrapper {
  border-color: #86ab45;
  margin-bottom: 40px;
}

.c-block-bubbles .o-bubble:nth-of-type(2) .o-bubble-connector {
  width: 1px;
  height: 140%;
  left: 20%;
  top: 50%;
  -webkit-transform: rotate(20deg);
       -o-transform: rotate(20deg);
          transform: rotate(20deg);
}

@media (min-width: 851px) {
  .c-block-bubbles .o-bubble:nth-of-type(2) .o-bubble-connector {
    left: 30%;
  }
}

.c-block-bubbles .o-bubble:nth-of-type(3) {
  width: 90%;
  height: 90%;
  margin-top: 30px;
}

.c-block-bubbles .o-bubble:nth-of-type(3) .o-bubble-image-wrapper {
  border-color: #fdbb2d;
  margin-bottom: 54px;
}

/**
 * Homepage Bubble Stats Animation
   Note: This component is unique only to the homepage
   with a unique, complicated layout.
 */

@media (min-width: 701px) {
  .c-block-stats-bubbles {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    z-index: 100;
  }
}

.c-block-stats-bubble-placement {
  display: none;
  width: 50%;
}

@media (min-width: 701px) {
  .c-block-stats-bubble-placement {
    display: block;
  }
}

.c-block-stats-bubble-placement:first-of-type .o-bubble,
.c-block-stats-bubble-placement:nth-of-type(2) .o-bubble {
  width: 100px;
}

@media (min-width: 701px) {
  .c-block-stats-bubble-placement:first-of-type .o-bubble,
  .c-block-stats-bubble-placement:nth-of-type(2) .o-bubble {
    width: 115px;
  }
}

@media (min-width: 851px) {
  .c-block-stats-bubble-placement:first-of-type .o-bubble,
  .c-block-stats-bubble-placement:nth-of-type(2) .o-bubble {
    width: 160px;
  }
}

.c-block-stats-bubble-placement:first-of-type .o-bubble-connector,
.c-block-stats-bubble-placement:nth-of-type(2) .o-bubble-connector {
  top: 4px;
}

.c-block-stats-bubble-placement:first-of-type .o-bubble-shadow,
.c-block-stats-bubble-placement:nth-of-type(2) .o-bubble-shadow {
  margin-bottom: -30px;
}

.c-block-stats-bubble-placement:nth-of-type(3) .o-bubble,
.c-block-stats-bubble-placement:last-of-type .o-bubble {
  width: 120px;
}

@media (min-width: 701px) {
  .c-block-stats-bubble-placement:nth-of-type(3) .o-bubble,
  .c-block-stats-bubble-placement:last-of-type .o-bubble {
    width: 160px;
    margin: 50px 0 0 0;
  }
}

@media (min-width: 851px) {
  .c-block-stats-bubble-placement:nth-of-type(3) .o-bubble,
  .c-block-stats-bubble-placement:last-of-type .o-bubble {
    width: 210px;
  }
}

@media (min-width: 1001px) {
  .c-block-stats-bubble-placement:nth-of-type(3) .o-bubble,
  .c-block-stats-bubble-placement:last-of-type .o-bubble {
    width: 240px;
  }
}

.c-block-stats-bubble-placement:nth-of-type(3) .o-bubble-connector,
.c-block-stats-bubble-placement:last-of-type .o-bubble-connector {
  top: -50px;
}

@media (min-width: 1001px) {
  .c-block-stats-bubble-placement:nth-of-type(3) .o-bubble-connector,
  .c-block-stats-bubble-placement:last-of-type .o-bubble-connector {
    top: -80px;
  }
}

.c-block-stats-bubble-placement:nth-of-type(3) .o-bubble-shadow,
.c-block-stats-bubble-placement:last-of-type .o-bubble-shadow {
  margin-bottom: -35px;
}

@media (min-width: 701px) {
  .c-block-stats-bubble-placement:first-of-type .o-bubble {
    margin-right: 150px;
  }
}

@media (min-width: 851px) {
  .c-block-stats-bubble-placement:first-of-type .o-bubble {
    margin-right: 180px;
  }
}

.c-block-stats-bubble-placement:first-of-type .o-bubble .o-bubble-connector {
  left: 90%;
  -webkit-transform: rotate(-50deg);
       -o-transform: rotate(-50deg);
          transform: rotate(-50deg);
}

.c-block-stats-bubble-placement:first-of-type .o-bubble-image-wrapper {
  border-color: #0a73ba;
}

@media (min-width: 701px) {
  .c-block-stats-bubble-placement:nth-of-type(2) .o-bubble {
    margin-left: 150px;
  }
}

@media (min-width: 851px) {
  .c-block-stats-bubble-placement:nth-of-type(2) .o-bubble {
    margin-left: 180px;
  }
}

.c-block-stats-bubble-placement:nth-of-type(2) .o-bubble-image-wrapper {
  border-color: #86ab45;
}

.c-block-stats-bubble-placement:nth-of-type(2) .o-bubble-connector {
  right: 90%;
  -webkit-transform: rotate(50deg);
       -o-transform: rotate(50deg);
          transform: rotate(50deg);
}

@media (min-width: 701px) {
  .c-block-stats-bubble-placement:nth-of-type(3) .o-bubble {
    float: left;
  }
}

.c-block-stats-bubble-placement:nth-of-type(3) .o-bubble-image-wrapper {
  border-color: #fdbb2d;
}

.c-block-stats-bubble-placement:nth-of-type(3) .o-bubble-connector {
  left: 120%;
  -webkit-transform: rotate(70deg);
       -o-transform: rotate(70deg);
          transform: rotate(70deg);
}

@media (min-width: 701px) {
  .c-block-stats-bubble-placement:last-of-type .o-bubble {
    float: right;
  }
}

.c-block-stats-bubble-placement:last-of-type .o-bubble-image-wrapper {
  border-color: #987e5c;
}

.c-block-stats-bubble-placement:last-of-type .o-bubble-connector {
  right: 120%;
  -webkit-transform: rotate(-70deg);
       -o-transform: rotate(-70deg);
          transform: rotate(-70deg);
}

.c-block-stats-bubble-placement .o-bubble {
  display: block;
  margin: 0 auto;
  overflow: visible;
}

.c-block-stats-bubble-placement .o-bubble-connector {
  width: 1px;
  height: 140%;
}

.c-block-stats-amount {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0 auto;
  text-align: center;
  height: 190px;
}

@media (min-width: 701px) {
  .c-block-stats-amount {
    position: absolute;
    z-index: 200;
    top: 106px;
    left: 0;
    right: 0;
    width: 260px;
    height: 260px;
    margin-top: 55px;
  }
}

@media (min-width: 851px) {
  .c-block-stats-amount {
    margin-top: 105px;
  }
}

.c-block-stats-amount h1 {
  position: relative;
  z-index: 100;
}

.c-block-stats-amount .o-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  width: 190px;
  margin: 0 auto;
}

@media (min-width: 701px) {
  .c-block-stats-amount .o-icon {
    width: 260px;
  }
}

.c-block-stats-description {
  max-width: 380px;
  text-align: center;
  margin: 0 auto;
  margin-top: -30px;
}

@media (min-width: 701px) {
  .c-block-stats-description {
    margin-top: 0;
  }
}

@media (min-width: 851px) {
  .c-block-stats-description {
    margin-top: -30px;
  }
}

@media (min-width: 1001px) {
  .c-block-stats-description {
    margin-top: -50px;
  }
}

/**
 * Accordion Settings
 */

.c-block-accordion {
  border-bottom: 1px solid #e9e9e9;
}

.c-block-accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
  padding: 20px 0;
  border-top: 1px solid #e9e9e9;
}

.c-block-accordion__header h2 {
  width: 60%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.c-block-accordion__header .o-icon {
  margin-top: 4px;
}

.c-block-accordion__header .u-icon-plus__line {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-block-accordion__header .u-icon-plus__horizontal {
  opacity: 1;
}

.c-block-accordion__header.active .u-icon-plus__line {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.c-block-accordion__header.active .u-icon-plus__horizontal {
  opacity: 0;
}

.c-block-accordion__item {
  display: none;
}

/* ------------------------------------ *\
    $CARDS
\* ------------------------------------ */

.c-card {
  position: relative;
  z-index: 0;
  background-image: url(/wp-content/themes/emeril/dist/images/bg-leafy-500.jpg);
}

.c-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.c-card:first-of-type::after {
  background: #6a8736;
}

.c-card:first-of-type .o-text-link:hover {
  color: #fdbb2d;
}

.c-card:first-of-type .o-text-link:hover .o-icon svg path {
  fill: #fdbb2d;
}

.c-card:nth-of-type(2)::after {
  background: #f5a802;
}

.c-card:nth-of-type(2) .o-text-link:hover {
  color: #987e5c;
}

.c-card:nth-of-type(2) .o-text-link:hover .o-icon svg path {
  fill: #987e5c;
}

.c-card:nth-of-type(3)::after {
  background: #0a73ba;
}

.c-card:nth-of-type(3) .o-text-link:hover {
  color: #86ab45;
}

.c-card:nth-of-type(3) .o-text-link:hover .o-icon svg path {
  fill: #86ab45;
}

.c-card:nth-of-type(4)::after {
  background: #987e5c;
}

.c-card:nth-of-type(4) .o-text-link:hover {
  color: #fdbb2d;
}

.c-card:nth-of-type(4) .o-text-link:hover .o-icon svg path {
  fill: #fdbb2d;
}

/* ------------------------------------ *\
    $HEROS
\* ------------------------------------ */

.c-hero {
  min-height: 300px;
}

@media (min-width: 701px) {
  .c-hero {
    min-height: 540px;
  }
}

.c-hero--content {
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  min-height: 300px;
}

@media (min-width: 701px) {
  .c-hero--content {
    min-height: 540px;
    max-width: 600px;
  }
}

.c-hero--center .c-hero-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-hero--center .c-hero--content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media (min-width: 701px) {
  .c-hero--right .c-hero-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media (min-width: 701px) {
  .c-hero--fullscreen {
    height: 100vh;
  }
}

@media (min-width: 701px) {
  .c-hero--fullscreen .c-hero--content {
    height: 100vh;
  }
}

.c-page-hero {
  padding-top: 80px;
}

@media (min-width: 701px) {
  .c-page-hero {
    padding-top: 100px;
  }
}

.c-page-hero.c-hero--fullscreen {
  padding-top: 120px;
  padding-bottom: 60px;
}

@media (min-width: 701px) {
  .c-page-hero.c-hero--fullscreen {
    padding-top: 30px;
    padding-bottom: 0;
  }
}

/* ------------------------------------ *\
    $PAGE SECTIONS
\* ------------------------------------ */

/* ------------------------------------ *\
    $SPECIFIC FORMS
\* ------------------------------------ */

/**
 * Validation
 */

.has-error {
  border-color: #e04e0d !important;
}

.is-valid {
  border-color: #e04e0d !important;
}

.wpcf7 label {
  display: inline-block;
  font-family: "MissionGothicRegular", sans-serif;
  line-height: 1.15;
  font-size: var(--font-size-m, 28px);
  font-weight: 300;
  color: #949494;
  margin-bottom: 10px;
}

/**
 * Inputs
 */

span.wpcf7-form-control-wrap {
  display: block;
  margin: 5px 0 20px 0;
}

.wpcf7-form-control.footer {
  text-align: center;
  margin: 0 auto;
}

.wpcf7-checkbox {
  display: block;
}

span.wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
}

span.wpcf7-list-item input[type=radio],
span.wpcf7-list-item input[type=checkbox] {
  margin: 2px 0 0 0;
}

span.wpcf7-list-item .wpcf7-list-item-label {
  width: 100%;
  padding-left: 10px;
}

/* ------------------------------------ *\
    $OBJECTS
\* ------------------------------------ */

/* ------------------------------------ *\
    $BUTTONS
\* ------------------------------------ */

button,
input[type="submit"],
.o-button {
  cursor: pointer;
  position: relative;
  z-index: 100;
  display: inline-block;
  font-size: var(--font-size-xxs, 14px);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 20px;
  -webkit-box-shadow: 0 14px 8px -12px rgba(0, 0, 0, 0.21);
          box-shadow: 0 14px 8px -12px rgba(0, 0, 0, 0.21);
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0px;
}

@media (min-width: 701px) {
  button,
  input[type="submit"],
  .o-button {
    font-size: var(--font-size-xs, 16px);
    padding: 15px 25px;
  }
}

button:hover,
input[type="submit"]:hover,
.o-button:hover {
  color: #fff;
}

@media (min-width: 701px) {
  button:hover::before,
  input[type="submit"]:hover::before,
  .o-button:hover::before {
    -webkit-box-shadow: inset 0 0 0 0 #0a73ba;
            box-shadow: inset 0 0 0 0 #0a73ba;
  }
}

button::before,
input[type="submit"]::before,
.o-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #09456d;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 0 60px #0a73ba;
          box-shadow: inset 0 0 0 60px #0a73ba;
}

@media (min-width: 701px) {
  .o-button--secondary:hover::before,
  .c-block-split--primary-color .o-button:hover::before {
    -webkit-box-shadow: inset 0 0 0 0 #86ab45;
            box-shadow: inset 0 0 0 0 #86ab45;
  }
}

.o-button--secondary::before,
.c-block-split--primary-color .o-button::before {
  background: #5b742f;
  -webkit-box-shadow: inset 0 0 0 60px #86ab45;
          box-shadow: inset 0 0 0 60px #86ab45;
}

@media (min-width: 701px) {
  .o-button--tertiary:hover::before {
    -webkit-box-shadow: inset 0 0 0 0 #fdbb2d;
            box-shadow: inset 0 0 0 0 #fdbb2d;
  }
}

.o-button--tertiary::before {
  background: #db9602;
  -webkit-box-shadow: inset 0 0 0 60px #fdbb2d;
          box-shadow: inset 0 0 0 60px #fdbb2d;
}

@media (min-width: 701px) {
  .o-button--quaternary:hover::before {
    -webkit-box-shadow: inset 0 0 0 0 #987e5c;
            box-shadow: inset 0 0 0 0 #987e5c;
  }
}

.o-button--quaternary::before {
  background: #68563f;
  -webkit-box-shadow: inset 0 0 0 60px #987e5c;
          box-shadow: inset 0 0 0 60px #987e5c;
}

.o-button--xl {
  font-size: var(--font-size-xs, 16px);
  padding: 25px 40px;
}

.o-button--l {
  font-size: var(--font-size-xxs, 14px);
  text-transform: none;
  padding: 25px 40px;
}

.o-button--sml {
  font-size: var(--font-size-xxs, 14px);
  padding: 12px 15px;
}

.o-button--xs {
  font-size: var(--font-size-xxs, 14px);
  text-transform: none;
  padding: 7px 20px;
}

.o-button--social {
  width: 30px;
  height: 30px;
  padding: 0;
}

.o-button--social::before {
  width: 30px;
  height: 30px;
  background: #0d639c;
  border-radius: 100%;
  -webkit-box-shadow: inset 0 0 0 60px #0a73ba;
          box-shadow: inset 0 0 0 60px #0a73ba;
}

@media (min-width: 701px) {
  .o-button--social:hover::before {
    -webkit-box-shadow: inset 0 0 0 0 #0a73ba;
            box-shadow: inset 0 0 0 0 #0a73ba;
  }
}

.o-button--social .o-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  margin: 0 auto;
}

.o-button--social .o-icon-instagram {
  width: 15px;
  height: 15px;
}

.o-button--social .o-icon-facebook {
  width: 7px;
  height: 15px;
}

.o-button--social .o-icon-twitter {
  width: 16px;
  height: 13px;
  top: 10px;
}

@media (min-width: 701px) {
  .o-button--footer--secondary:hover::before {
    -webkit-box-shadow: inset 0 0 0 0 #86ab45;
            box-shadow: inset 0 0 0 0 #86ab45;
  }
}

.o-button--footer--secondary::before {
  background: #5b742f;
  -webkit-box-shadow: inset 0 0 0 60px #86ab45;
          box-shadow: inset 0 0 0 60px #86ab45;
}

/* ------------------------------------ *\
    $ICONS
\* ------------------------------------ */

/**
 * Icon Sizing
 */

.o-icon {
  display: inline-block;
}

.u-icon--xs {
  width: 15px;
  height: 15px;
}

.u-icon--s {
  width: 20px;
  height: 20px;
}

.u-icon--m {
  width: 30px;
  height: 30px;
}

.u-icon--l {
  width: 40px;
  height: 40px;
}

.u-icon--xl {
  width: 70px;
  height: 70px;
}

.u-icon-arrow-long--s {
  width: 19px;
}

.u-icon-arrow-long--reverse {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.u-icon-plus {
  position: relative;
  width: 22px;
  height: 24px;
}

.u-icon-plus::after {
  width: 18px;
  height: 18px;
}

.u-icon-plus__line {
  position: absolute;
  z-index: 100;
  background-color: #86ab45;
  border-radius: 1px;
}

.u-icon-plus__vertical {
  width: 4px;
  height: 14px;
  left: 9px;
  top: 5px;
}

.u-icon-plus__horizontal {
  width: 14px;
  height: 4px;
  left: 4px;
  top: 10px;
}

.u-hamburger {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.u-hamburger::before,
.u-hamburger::after {
  display: none;
}

.u-hamburger .lines {
  position: relative;
  width: 40px;
  height: 29px;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.u-hamburger .line {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.u-hamburger-open {
  opacity: 1;
  visibility: visible;
  z-index: 500;
}

.u-hamburger-open .line {
  opacity: 1;
  background: #fff;
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.u-hamburger-open .line:first-of-type {
  top: 0;
}

.u-hamburger-open .line:nth-of-type(2),
.u-hamburger-open .line:nth-of-type(3) {
  top: 13px;
  right: 0;
}

.u-hamburger-open .line:nth-of-type(4) {
  top: 26px;
}

.u-hamburger-open.js-rotate-hamburger {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.u-hamburger-open.js-rotate-hamburger .line {
  opacity: 0;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.u-hamburger-open.js-rotate-hamburger .line:first-of-type {
  top: 13px;
  width: 0%;
  left: 50%;
}

.u-hamburger-open.js-rotate-hamburger .line:nth-of-type(2),
.u-hamburger-open.js-rotate-hamburger .line:nth-of-type(3) {
  width: 0%;
  left: 50%;
}

.u-hamburger-open.js-rotate-hamburger .line:nth-of-type(4) {
  top: 13px;
  width: 0%;
  left: 50%;
}

.u-hamburger-close {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.u-hamburger-close .line {
  opacity: 0;
  top: 13px;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  background: #e9e9e9;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.u-hamburger-close.js-rotate-hamburger {
  opacity: 1;
  visibility: visible;
  z-index: 500;
}

.u-hamburger-close.js-rotate-hamburger .line {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.u-hamburger-close.js-rotate-hamburger .line:first-of-type {
  -webkit-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
}

.u-hamburger-close.js-rotate-hamburger .line:last-of-type {
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ------------------------------------ *\
    $LIST TYPES
\* ------------------------------------ */

/**
 * Numbered List
 */

.o-list--numbered {
  counter-reset: item;
}

.o-list--numbered li {
  display: block;
}

.o-list--numbered li::before {
  content: counter(item);
  counter-increment: item;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  background-color: #000;
  font-weight: bold;
  margin-right: 20px;
  float: left;
}

.o-list--numbered li > * {
  overflow: hidden;
}

.o-list--numbered li li {
  counter-reset: item;
}

.o-list--numbered li li::before {
  content: "\2010";
}

/**
 * Bullet List
 */

.o-bullet-list {
  list-style-type: disc;
  padding-left: 20px;
}

.o-bullet-list li {
  overflow: visible;
}

.o-bullet-list li:last-child {
  margin-bottom: 0;
}

/* ------------------------------------ *\
    $MEDIA OBJECTS
\* ------------------------------------ */

.o-background-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.o-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.o-video-container {
  position: relative;
  height: 0;
  padding: 0 0 56.25% 0;
  margin: 0;
}

.o-video-container iframe,
.o-video-container object,
.o-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.o-background-shadow {
  position: relative;
}

@media (min-width: 701px) {
  .o-background-shadow::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    height: 60%;
    background: #f9f9f7;
  }
}

@media (min-width: 701px) {
  .o-background-shadow--tall::after {
    height: 80%;
  }
}

.o-background-shadow--posts {
  overflow: hidden;
}

.o-background-shadow--posts .l-grid-item:nth-of-type(3n+1) picture {
  position: relative;
}

@media (min-width: 851px) {
  .o-background-shadow--posts .l-grid-item:nth-of-type(3n+1) picture::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: -999999%;
    margin-right: -999999%;
    height: 75%;
    background: #f9f9f7;
  }
}

.o-image-box-shadow {
  -webkit-box-shadow: 0 14px 6px -12px rgba(0, 0, 0, 0.31);
          box-shadow: 0 14px 6px -12px rgba(0, 0, 0, 0.31);
}

.o-bubble {
  position: relative;
}

@media (min-width: 851px) {
  .o-bubble:hover .o-bubble-image-wrapper {
    -webkit-animation: bubble-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
         -o-animation: bubble-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: bubble-move 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

@media (min-width: 851px) {
  .o-bubble:hover .o-bubble-shadow {
    -webkit-animation: shadow-pulse 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
         -o-animation: shadow-pulse 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: shadow-pulse 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

.o-bubble-image-wrapper {
  border-width: 5px;
  border-style: solid;
  border-radius: 100%;
  overflow: hidden;
}

@media (min-width: 851px) {
  .o-bubble-image-wrapper {
    -webkit-animation: bubble-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
         -o-animation: bubble-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: bubble-move-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

.o-bubble img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.o-bubble-shadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 18px;
  opacity: 0.1;
  margin: 0 auto 3px auto;
  border-radius: 50%;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  background-color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 851px) {
  .o-bubble-shadow {
    -webkit-animation: shadow-pulse-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
         -o-animation: shadow-pulse-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
            animation: shadow-pulse-back 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
}

.o-bubble-connector {
  display: block;
  position: absolute;
  z-index: -1;
  background: #e9e9e9;
  margin: 0 auto;
}

.o-background-video {
  display: none;
}

@media (min-width: 701px) {
  .o-background-video {
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
}

.o-background-video iframe {
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* ------------------------------------ *\
    $PAGE STRUCTURE
\* ------------------------------------ */

/* ------------------------------------ *\
    $ARTICLE & RELATED COMPONENTS
\* ------------------------------------ */

.c-content-hero {
  min-height: 150px;
  background: #09456d;
}

@media (min-width: 701px) {
  .c-content-hero {
    min-height: 300px;
  }
}

.c-content-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-content-hero .l-container {
  min-height: inherit;
}

.c-content-hero picture + .l-container {
  min-height: 0;
}

.c-content-post-bg {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 40px;
  background: #fff;
  -webkit-box-shadow: 0 12px 13px 0 rgba(0, 0, 0, 0.28);
          box-shadow: 0 12px 13px 0 rgba(0, 0, 0, 0.28);
}

@media (min-width: 551px) {
  .c-content-post-bg {
    height: 70px;
  }
}

@media (min-width: 851px) {
  .c-content-post-bg {
    left: 20px;
    right: 20px;
    height: 120px;
  }
}

@media (min-width: 1201px) {
  .c-content-post-bg {
    left: 0;
    right: 0;
    width: 100%;
  }
}

.c-content-post {
  padding: 0 10px;
  margin-top: -15px;
}

@media (min-width: 551px) {
  .c-content-post {
    margin-top: -40px;
  }
}

@media (min-width: 851px) {
  .c-content-post {
    margin-top: -60px;
  }
}

@media (min-width: 1001px) {
  .c-content-post {
    padding: 0;
  }
}

.c-content-post-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-block__heading {
  text-align: center;
  max-width: 508px;
  margin: 0 auto;
  border-top: 1px solid #e9e9e9;
}

.c-block__no-border {
  border-top: none;
}

.u-pagination {
  text-align: center;
  max-width: 508px;
  margin: 0 auto;
  border-top: 1px solid #e9e9e9;
}

.u-pagination .prev {
  margin-right: 5px;
}

.u-pagination .next {
  margin-left: 5px;
}

.u-pagination__list {
  display: inline-block;
}

.u-pagination li {
  display: inline-block;
  margin: 0 5px;
}

/* ------------------------------------ *\
    $GALLERY
\* ------------------------------------ */

/* ------------------------------------ *\
    $FOOTER
\* ------------------------------------ */

.c-main-footer {
  background: #09456d;
}

.c-main-footer h2 {
  font-size: var(--font-size-m, 28px);
}

.c-main-footer p {
  color: rgba(255, 255, 255, 0.73);
  font-weight: 400;
}

.c-main-footer-menu li {
  font-size: var(--font-size-xxs, 14px);
  font-weight: 600;
  text-transform: uppercase;
}

.c-main-footer .newsletter-form {
  position: relative;
}

.c-main-footer .newsletter-form input[type=email] {
  font-size: var(--font-size-xxs, 14px);
  color: #fff;
  padding: 10px 15px;
  width: 98%;
  border: 1px solid #86ab45;
}

.c-main-footer .newsletter-form input[type=email]::-webkit-input-placeholder {
  color: #fff;
}

.c-main-footer .newsletter-form input[type=email]::-moz-placeholder {
  color: #fff;
}

.c-main-footer .newsletter-form input[type=email]::-ms-input-placeholder {
  color: #fff;
}

.c-main-footer .newsletter-form input[type=email]::placeholder {
  color: #fff;
}

.c-main-footer .newsletter-form .o-button {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  font-size: var(--font-size-xxs, 14px);
  padding: 10px 15px;
}

.c-main-footer .newsletter-form .o-button::before {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.c-main-footer-social li {
  display: inline-block;
  margin: 10px 3px 0 0;
}

@media (min-width: 551px) {
  .c-main-footer-social li {
    margin: 0 0 0 3px;
  }
}

@media (min-width: 551px) {
  .c-main-footer-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-main-footer-left-column {
  margin-bottom: 25px;
}

@media (min-width: 551px) {
  .c-main-footer-left-column {
    max-width: 200px;
  }
}

@media (min-width: 701px) {
  .c-main-footer-left-column {
    max-width: 300px;
    margin-bottom: 35px;
  }
}

.c-main-footer-right-column {
  margin: 15px 0 30px 0;
  max-width: 300px;
}

@media (min-width: 551px) {
  .c-main-footer-right-column {
    margin-top: 0;
  }
}

@media (min-width: 701px) {
  .c-main-footer-right-column {
    max-width: 350px;
    margin-bottom: 35px;
  }
}

.c-main-footer-info {
  padding-top: 15px;
}

@media (min-width: 551px) {
  .c-main-footer-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 701px) {
  .c-main-footer-info {
    padding-top: 20px;
  }
}

.c-main-footer-info p {
  margin-top: 4px;
}

/* ------------------------------------ *\
    $HEADER
\* ------------------------------------ */

body.is-open-header {
  overflow: hidden;
}

@media (min-width: 701px) {
  body.is-open-header {
    overflow: visible;
  }
}

body.is-open-header .o-logo-lt {
  opacity: 0;
}

body.is-open-header .o-logo-dk {
  opacity: 1;
}

.c-main-document {
  position: relative;
  z-index: 100;
}

/**
 * LAYOUT STYLES
*/

.c-main-header .c-menu {
  position: absolute;
  z-index: 200;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
}

@media (min-width: 701px) {
  .c-main-header .c-menu {
    padding-top: 100px;
    bottom: auto;
    -webkit-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
}

.c-banner--mobile {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 701px) {
  .c-banner--mobile {
    display: none;
  }
}

.c-banner--mobile .c-topics {
  position: absolute;
  z-index: 200;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  -webkit-transform: translateX(-1000px);
       -o-transform: translateX(-1000px);
          transform: translateX(-1000px);
  opacity: 0;
  overflow-y: scroll;
}

.c-banner--desktop {
  display: none;
}

@media (min-width: 701px) {
  .c-banner--desktop {
    position: absolute;
    z-index: 500;
    left: 0;
    right: 0;
    top: 0;
    display: block;
    height: 120px;
  }
}

.c-banner--desktop .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 120px;
}

.is-open-header .c-banner--desktop .c-topics__item-link {
  color: #707070;
}

.is-open-header .c-banner--desktop .c-topics .o-icon svg path {
  fill: #707070;
}

.c-banner--desktop .c-topics__item.is-open .o-icon.u-icon-chevron {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.u-hamburger {
  position: absolute;
  z-index: 500;
  top: 26px;
  right: 20px;
}

/**
 * DEFAULT STYLES
*/

.o-logo {
  position: absolute;
  z-index: 500;
  left: 20px;
  top: 0;
  display: block;
  width: 107px;
  padding-top: 8px;
}

@media (min-width: 701px) {
  .o-logo {
    padding-top: 28px;
  }
}

@media (min-width: 1001px) {
  .o-logo {
    width: 160px;
    padding-top: 14px;
  }
}

@media (min-width: 1201px) {
  .o-logo {
    left: 0;
  }
}

.o-logo-lt {
  opacity: 1;
}

.o-logo-dk {
  opacity: 0;
}

.c-mobile-label {
  padding: 100px 0 15px 0;
  display: block;
}

@media (min-width: 701px) {
  .c-mobile-label {
    display: none;
  }
}

.c-mobile-back {
  display: block;
  font-size: var(--font-size-xxs, 14px);
  color: #707070;
  padding: 15px 0;
  border-top: 1px solid #e9e9e9;
}

.c-mobile-back .o-icon {
  margin-right: 5px;
}

@media (min-width: 701px) {
  .c-mobile-back {
    display: none;
  }
}

.c-topics {
  text-align: center;
  overflow: hidden;
}

@media (min-width: 701px) {
  .c-topics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-left: 107px;
  }
}

@media (min-width: 1001px) {
  .c-topics {
    margin-left: 160px;
  }
}

.c-topics__items {
  border-top: 1px solid #e9e9e9;
}

@media (min-width: 701px) {
  .c-topics__items {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-top: 4px;
    border: none;
  }
}

@media (min-width: 701px) {
  .c-topics__item {
    display: inline-block;
    margin: 0 15px;
  }
}

@media (min-width: 1001px) {
  .c-topics__item {
    margin: 0 20px;
  }
}

.c-topics__item-link {
  display: block;
  font-weight: 400;
  font-size: var(--font-size-xxs, 14px);
  color: #707070;
  padding: 15px 0;
  border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 701px) {
  .c-topics__item-link {
    color: #fff;
    padding: 0;
    border-bottom: none;
  }
}

@media (min-width: 701px) {
  .c-topics__item-link:hover {
    color: #fdbb2d;
  }
}

@media (min-width: 701px) {
  .c-topics__item-link:hover .o-icon svg path {
    fill: #fdbb2d;
  }
}

.c-topics .o-icon {
  margin-left: 5px;
}

.c-topics .o-icon svg path {
  fill: #707070;
}

@media (min-width: 701px) {
  .c-topics .o-icon svg path {
    fill: #fff;
  }
}

.c-topics .o-icon.u-icon-chevron {
  width: 10px;
  display: none;
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 350ms -webkit-transform ease;
  transition: 350ms -webkit-transform ease;
  -o-transition: 350ms -o-transform ease;
  transition: 350ms transform ease;
  transition: 350ms transform ease, 350ms -webkit-transform ease, 350ms -o-transform ease;
}

@media (min-width: 701px) {
  .c-topics .o-icon.u-icon-chevron {
    display: inline-block;
  }
}

.c-topics .o-icon.u-icon-arrow svg {
  height: 9px;
}

@media (min-width: 701px) {
  .c-topics .o-icon.u-icon-arrow {
    display: none;
  }
}

.c-topics .o-button {
  margin-top: 35px;
  margin-bottom: 35px;
}

@media (min-width: 701px) {
  .c-topics .o-button {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.c-menu {
  text-align: center;
}

.c-menu .o-icon svg path {
  fill: #707070;
}

.c-menu__items {
  border-top: 1px solid #e9e9e9;
}

@media (min-width: 701px) {
  .c-menu__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 28px 0;
    border: none;

    gap: 32px;
  }
}

@media (min-width: 1001px) {
  .c-menu__items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

@media (min-width: 701px) {
  .c-menu__item {
    width: auto;
    margin: 0;
  }
}

@media (min-width: 1001px) {
  nav section:not([data-topic="Our Programs"]) .c-menu__item {
    width: auto;
    padding: 0;
    margin: 0;
  }
}

@media (min-width: 1201px) {
  .c-menu__item {
    padding: 0;
  }
}

.c-menu__item-link {
  display: block;
  font-weight: 400;
  color: #707070;
  padding: 15px 0;
  border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 701px) {
  .c-menu__item-link {
    padding: 0;
    border-bottom: none;
  }
}

.c-menu__item-icon {
  display: none;
}

@media (min-width: 701px) {
  .c-menu__item-icon {
    display: inline-block;
    margin-bottom: 5px;
  }
}

.c-menu__item-heading {
  font-size: var(--font-size-xxs, 14px);
}

@media (min-width: 701px) {
  .c-menu__item-heading {
    font-family: "MissionGothicRegular", sans-serif;
    line-height: 1.15;
    font-size: var(--font-size-s, 20px);
    font-weight: 300;
  }
}

.c-menu__item-description {
  display: none;
}

@media (min-width: 701px) {
  .c-menu__item-description {
    display: block;
    max-width: 200px;
    font-size: var(--font-size-xxs, 14px);
    margin: 5px auto 0 auto;
  }
}

/* ------------------------------------ *\
    $MAIN CONTENT AREA
\* ------------------------------------ */

/* ------------------------------------ *\
    $MODIFIERS
\* ------------------------------------ */

/* ------------------------------------ *\
    $ANIMATIONS & TRANSITIONS
\* ------------------------------------ */

/**
 * Transitions
 */

.has-trans {
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.has-trans--fast {
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.has-zoom {
  overflow: hidden;
}

.has-zoom img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
}

.has-zoom a:hover img {
  -webkit-transform: scale(1.03);
       -o-transform: scale(1.03);
          transform: scale(1.03);
}

/**
 * Fade Classes
 */

.has-fadeup {
  opacity: 0;
  -webkit-transform: translate(0, 25px);
       -o-transform: translate(0, 25px);
          transform: translate(0, 25px);
  -webkit-transition: all 0.6s ease-out 0.5s;
  -o-transition: all 0.6s ease-out 0.5s;
  transition: all 0.6s ease-out 0.5s;
}

.fadeup,
.has-fadeup.is-active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}

.has-fadein {
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}

.fadein {
  opacity: 1;
}

.lazyload,
.lazyloading {
  opacity: 0;
  -webkit-transform: translate(0, 25px);
       -o-transform: translate(0, 25px);
          transform: translate(0, 25px);
  -webkit-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }

  80% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

@-o-keyframes bounce {
  0%, 100% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  20% {
    -o-transform: translateY(-3px);
       transform: translateY(-3px);
  }

  80% {
    -o-transform: translateY(3px);
       transform: translateY(3px);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  20% {
    -webkit-transform: translateY(-3px);
         -o-transform: translateY(-3px);
            transform: translateY(-3px);
  }

  80% {
    -webkit-transform: translateY(3px);
         -o-transform: translateY(3px);
            transform: translateY(3px);
  }
}

@-webkit-keyframes bubble-move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(4%);
            transform: translateY(4%);
  }
}

@-o-keyframes bubble-move {
  0% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  100% {
    -o-transform: translateY(4%);
       transform: translateY(4%);
  }
}

@keyframes bubble-move {
  0% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(4%);
         -o-transform: translateY(4%);
            transform: translateY(4%);
  }
}

@-webkit-keyframes bubble-move-back {
  0% {
    -webkit-transform: translateY(4%);
            transform: translateY(4%);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes bubble-move-back {
  0% {
    -o-transform: translateY(4%);
       transform: translateY(4%);
  }

  100% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes bubble-move-back {
  0% {
    -webkit-transform: translateY(4%);
         -o-transform: translateY(4%);
            transform: translateY(4%);
  }

  100% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes shadow-pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-o-keyframes shadow-pulse {
  0% {
    -o-transform: scale(1);
       transform: scale(1);
  }

  100% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
}

@keyframes shadow-pulse {
  0% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-webkit-keyframes shadow-pulse-back {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-o-keyframes shadow-pulse-back {
  0% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }

  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}

@keyframes shadow-pulse-back {
  0% {
    -webkit-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes content-float-move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }
}

@-o-keyframes content-float-move {
  0% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  100% {
    -o-transform: translateY(-2%);
       transform: translateY(-2%);
  }
}

@keyframes content-float-move {
  0% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-2%);
         -o-transform: translateY(-2%);
            transform: translateY(-2%);
  }
}

@-webkit-keyframes content-float-move-back {
  0% {
    -webkit-transform: translateY(-2%);
            transform: translateY(-2%);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes content-float-move-back {
  0% {
    -o-transform: translateY(-2%);
       transform: translateY(-2%);
  }

  100% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes content-float-move-back {
  0% {
    -webkit-transform: translateY(-2%);
         -o-transform: translateY(-2%);
            transform: translateY(-2%);
  }

  100% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes media-float-move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }
}

@-o-keyframes media-float-move {
  0% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }

  100% {
    -o-transform: translateY(2%);
       transform: translateY(2%);
  }
}

@keyframes media-float-move {
  0% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(2%);
         -o-transform: translateY(2%);
            transform: translateY(2%);
  }
}

@-webkit-keyframes media-float-move-back {
  0% {
    -webkit-transform: translateY(2%);
            transform: translateY(2%);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-o-keyframes media-float-move-back {
  0% {
    -o-transform: translateY(2%);
       transform: translateY(2%);
  }

  100% {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
}

@keyframes media-float-move-back {
  0% {
    -webkit-transform: translateY(2%);
         -o-transform: translateY(2%);
            transform: translateY(2%);
  }

  100% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes slide-in {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-o-keyframes slide-in {
  0% {
    -o-transform: translateY(-1000px);
       transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in {
  0% {
    -webkit-transform: translateY(-1000px);
         -o-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-out {
  0% {
    display: none;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}

@-o-keyframes slide-out {
  0% {
    display: none;
    -o-transform: translateY(0);
       transform: translateY(0);
    opacity: 1;
  }

  100% {
    -o-transform: translateY(-1000px);
       transform: translateY(-1000px);
    opacity: 0;
  }
}

@keyframes slide-out {
  0% {
    display: none;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(-1000px);
         -o-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}

@-webkit-keyframes slide-in-mobile {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-o-keyframes slide-in-mobile {
  0% {
    -o-transform: translateX(-1000px);
       transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-mobile {
  0% {
    -webkit-transform: translateX(-1000px);
         -o-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-out-mobile {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
}

@-o-keyframes slide-out-mobile {
  0% {
    -o-transform: translateX(0);
       transform: translateX(0);
    opacity: 1;
  }

  100% {
    -o-transform: translateX(-1000px);
       transform: translateX(-1000px);
    opacity: 0;
  }
}

@keyframes slide-out-mobile {
  0% {
    -webkit-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(-1000px);
         -o-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
}

@-webkit-keyframes image-opacity-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes image-opacity-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes image-opacity-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes image-opacity-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes image-opacity-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes image-opacity-out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.slide-out {
  -webkit-animation: slide-out-mobile 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
       -o-animation: slide-out-mobile 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-out-mobile 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (min-width: 701px) {
  .slide-out {
    -webkit-animation: slide-out 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
         -o-animation: slide-out 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
            animation: slide-out 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    -webkit-animation-delay: 0.2s;
         -o-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
}

.slide-in {
  -webkit-animation: slide-in-mobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
       -o-animation: slide-in-mobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-mobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (min-width: 701px) {
  .slide-in {
    -webkit-animation: slide-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
         -o-animation: slide-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
            animation: slide-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
}

.slide-out-mobile {
  -webkit-animation: slide-out-mobile 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
       -o-animation: slide-out-mobile 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-out-mobile 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  -webkit-animation-delay: 0.2s;
       -o-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@media (min-width: 701px) {
  .slide-out-mobile {
    -webkit-animation: none;
         -o-animation: none;
            animation: none;
  }
}

.slide-in-mobile {
  -webkit-animation: slide-in-mobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
       -o-animation: slide-in-mobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: slide-in-mobile 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.image-opacity-in {
  -webkit-animation: image-opacity-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
       -o-animation: image-opacity-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: image-opacity-in 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.image-opacity-out {
  -webkit-animation: image-opacity-out 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
       -o-animation: image-opacity-out 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: image-opacity-out 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ------------------------------------ *\
    $COLOR MODIFIERS
\* ------------------------------------ */

/**
 * Text Colors
 */

.u-color--black,
.u-color--black a {
  color: #000;
}

.u-color--gray,
.u-color--gray a {
  color: #949494;
}

.u-color--gray--light,
.u-color--gray--light a {
  color: #f9f9f7;
}

.u-color--white,
.u-color--white a {
  color: #fff !important;
}

.u-color--body-color,
.u-color--body-color a {
  color: #707070;
}

.u-color--primary,
.u-color--primary a {
  color: #0a73ba;
}

.u-color--primary svg path,
.u-color--primary a svg path {
  fill: #0a73ba;
}

.u-color--secondary,
.u-color--secondary a {
  color: #86ab45;
}

.u-color--secondary svg path,
.u-color--secondary a svg path {
  fill: #86ab45;
}

.u-color--tertiary,
.u-color--tertiary a {
  color: #fdbb2d;
}

.u-color--tertiary svg path,
.u-color--tertiary a svg path {
  fill: #fdbb2d;
}

.u-color--quaternary,
.u-color--quaternary a {
  color: #987e5c;
}

.u-color--quaternary svg path,
.u-color--quaternary a svg path {
  fill: #987e5c;
}

.u-body-color {
  color: #707070;
}

.u-body-color .o-icon svg path {
  fill: #707070;
}

/**
 * Background Colors
 */

.u-background-color--none {
  background: none;
}

.u-background-color--black {
  background-color: #000;
}

.u-background-color--gray {
  background-color: #949494;
}

.u-background-color--gray--light {
  background-color: #f9f9f7;
}

.u-background-color--white {
  background-color: #fff;
}

.u-background-mask {
  position: relative;
  z-index: 0;
}

.u-background-mask::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.u-background-mask--z-index-1::after {
  z-index: 100;
}

.u-background-mask--center::after {
  background-image: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
  background-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%);
}

.u-background-mask--top::after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(23, 13, 4, 0)), to(rgba(11, 6, 2, 0.5)));
  background: -webkit-linear-gradient(bottom, rgba(23, 13, 4, 0) 0%, rgba(11, 6, 2, 0.5) 100%);
  background: -o-linear-gradient(bottom, rgba(23, 13, 4, 0) 0%, rgba(11, 6, 2, 0.5) 100%);
  background: linear-gradient(0deg, rgba(23, 13, 4, 0) 0%, rgba(11, 6, 2, 0.5) 100%);
}

.u-background-mask--plain::after {
  background-color: #000;
  opacity: 0.4;
}

.u-background-mask--left::after,
.u-background-mask--right::after {
  background-color: #000;
  opacity: 0.6;
}

@media (min-width: 551px) {
  .u-background-mask--left::after,
  .u-background-mask--right::after {
    opacity: 1;
    background-color: transparent;
  }
}

@media (min-width: 551px) {
  .u-background-mask--left::after {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(19%, rgba(0, 0, 0, 0)), color-stop(68%, rgba(0, 0, 0, 0.59)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0) 19%, rgba(0, 0, 0, 0.59) 68%);
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0) 19%, rgba(0, 0, 0, 0.59) 68%);
    background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0) 19%, rgba(0, 0, 0, 0.59) 68%);
  }
}

@media (min-width: 551px) {
  .u-background-mask--right::after {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(19%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.59)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 19%, rgba(0, 0, 0, 0.59) 50%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0) 19%, rgba(0, 0, 0, 0.59) 50%);
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 19%, rgba(0, 0, 0, 0.59) 50%);
  }
}

/**
 * SVG Fill Colors
 */

.u-path-fill--black path {
  fill: #000;
}

.u-path-fill--gray path {
  fill: #949494;
}

.u-path-fill--white path {
  fill: #fff;
}

/* ------------------------------------ *\
    $DISPLAY STATES
\* ------------------------------------ */

/**
 * Display Classes
 */

.u-display--inline-block {
  display: inline-block;
}

.u-display--block {
  display: block;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-justify-content--space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.u-justify-content--flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.u-align-items--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items--left {
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
}

.u-flex-directon--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.u-vertical-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media (min-width: 401px) {
  .u-vertical-center--xs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

@media (min-width: 551px) {
  .u-vertical-center--s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

@media (min-width: 701px) {
  .u-vertical-center--m {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

@media (min-width: 851px) {
  .u-vertical-center--l {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
  }
}

@media (max-width: 550px) {
  .u-hide-until--s {
    display: none;
  }
}

@media (max-width: 700px) {
  .u-hide-until--m {
    display: none;
  }
}

@media (max-width: 850px) {
  .u-hide-until--l {
    display: none;
  }
}

@media (max-width: 1000px) {
  .u-hide-until--xl {
    display: none;
  }
}

@media (min-width: 551px) {
  .u-hide-after--s {
    display: none;
  }
}

@media (min-width: 701px) {
  .u-hide-after--m {
    display: none;
  }
}

@media (min-width: 851px) {
  .u-hide-after--l {
    display: none;
  }
}

@media (min-width: 1001px) {
  .u-hide-after--xl {
    display: none;
  }
}

/* ------------------------------------ *\
    $SPACING
\* ------------------------------------ */

.u-pad {
  padding: 20px;
}

.u-space {
  margin: 20px;
}

.u-padding {
  padding: 10px;
}

@media (min-width: 701px) {
  .u-padding {
    padding: 20px;
  }
}

.u-spacing {
  margin: 10px;
}

@media (min-width: 701px) {
  .u-spacing {
    margin: 20px;
  }
}

.u-pad--top {
  padding-top: 20px;
}

.u-space--top {
  margin-top: 20px;
}

.u-padding--top {
  padding-top: 10px;
}

@media (min-width: 701px) {
  .u-padding--top {
    padding-top: 20px;
  }
}

.u-spacing--top {
  margin-top: 10px;
}

@media (min-width: 701px) {
  .u-spacing--top {
    margin-top: 20px;
  }
}

.u-pad--bottom {
  padding-bottom: 20px;
}

.u-space--bottom {
  margin-bottom: 20px;
}

.u-padding--bottom {
  padding-bottom: 10px;
}

@media (min-width: 701px) {
  .u-padding--bottom {
    padding-bottom: 20px;
  }
}

.u-spacing--bottom {
  margin-bottom: 10px;
}

@media (min-width: 701px) {
  .u-spacing--bottom {
    margin-bottom: 20px;
  }
}

.u-pad--left {
  padding-left: 20px;
}

.u-space--left {
  margin-left: 20px;
}

.u-padding--left {
  padding-left: 10px;
}

@media (min-width: 701px) {
  .u-padding--left {
    padding-left: 20px;
  }
}

.u-spacing--left {
  margin-left: 10px;
}

@media (min-width: 701px) {
  .u-spacing--left {
    margin-left: 20px;
  }
}

.u-pad--right {
  padding-right: 20px;
}

.u-space--right {
  margin-right: 20px;
}

.u-padding--right {
  padding-right: 10px;
}

@media (min-width: 701px) {
  .u-padding--right {
    padding-right: 20px;
  }
}

.u-spacing--right {
  margin-right: 10px;
}

@media (min-width: 701px) {
  .u-spacing--right {
    margin-right: 20px;
  }
}

.u-pad--quarter {
  padding: 5px;
}

.u-space--quarter {
  margin: 5px;
}

.u-padding--quarter {
  padding: 2.5px;
}

@media (min-width: 701px) {
  .u-padding--quarter {
    padding: 5px;
  }
}

.u-spacing--quarter {
  margin: 2.5px;
}

@media (min-width: 701px) {
  .u-spacing--quarter {
    margin: 5px;
  }
}

.u-pad--quarter--top {
  padding-top: 5px;
}

.u-space--quarter--top {
  margin-top: 5px;
}

.u-padding--quarter--top {
  padding-top: 2.5px;
}

@media (min-width: 701px) {
  .u-padding--quarter--top {
    padding-top: 5px;
  }
}

.u-spacing--quarter--top {
  margin-top: 2.5px;
}

@media (min-width: 701px) {
  .u-spacing--quarter--top {
    margin-top: 5px;
  }
}

.u-pad--quarter--bottom {
  padding-bottom: 5px;
}

.u-space--quarter--bottom {
  margin-bottom: 5px;
}

.u-padding--quarter--bottom {
  padding-bottom: 2.5px;
}

@media (min-width: 701px) {
  .u-padding--quarter--bottom {
    padding-bottom: 5px;
  }
}

.u-spacing--quarter--bottom {
  margin-bottom: 2.5px;
}

@media (min-width: 701px) {
  .u-spacing--quarter--bottom {
    margin-bottom: 5px;
  }
}

.u-pad--quarter--left {
  padding-left: 5px;
}

.u-space--quarter--left {
  margin-left: 5px;
}

.u-padding--quarter--left {
  padding-left: 2.5px;
}

@media (min-width: 701px) {
  .u-padding--quarter--left {
    padding-left: 5px;
  }
}

.u-spacing--quarter--left {
  margin-left: 2.5px;
}

@media (min-width: 701px) {
  .u-spacing--quarter--left {
    margin-left: 5px;
  }
}

.u-pad--quarter--right {
  padding-right: 5px;
}

.u-space--quarter--right {
  margin-right: 5px;
}

.u-padding--quarter--right {
  padding-right: 2.5px;
}

@media (min-width: 701px) {
  .u-padding--quarter--right {
    padding-right: 5px;
  }
}

.u-spacing--quarter--right {
  margin-right: 2.5px;
}

@media (min-width: 701px) {
  .u-spacing--quarter--right {
    margin-right: 5px;
  }
}

.u-pad--half {
  padding: 10px;
}

.u-space--half {
  margin: 10px;
}

.u-padding--half {
  padding: 5px;
}

@media (min-width: 701px) {
  .u-padding--half {
    padding: 10px;
  }
}

.u-spacing--half {
  margin: 5px;
}

@media (min-width: 701px) {
  .u-spacing--half {
    margin: 10px;
  }
}

.u-pad--half--top {
  padding-top: 10px;
}

.u-space--half--top {
  margin-top: 10px;
}

.u-padding--half--top {
  padding-top: 5px;
}

@media (min-width: 701px) {
  .u-padding--half--top {
    padding-top: 10px;
  }
}

.u-spacing--half--top {
  margin-top: 5px;
}

@media (min-width: 701px) {
  .u-spacing--half--top {
    margin-top: 10px;
  }
}

.u-pad--half--bottom {
  padding-bottom: 10px;
}

.u-space--half--bottom {
  margin-bottom: 10px;
}

.u-padding--half--bottom {
  padding-bottom: 5px;
}

@media (min-width: 701px) {
  .u-padding--half--bottom {
    padding-bottom: 10px;
  }
}

.u-spacing--half--bottom {
  margin-bottom: 5px;
}

@media (min-width: 701px) {
  .u-spacing--half--bottom {
    margin-bottom: 10px;
  }
}

.u-pad--half--left {
  padding-left: 10px;
}

.u-space--half--left {
  margin-left: 10px;
}

.u-padding--half--left {
  padding-left: 5px;
}

@media (min-width: 701px) {
  .u-padding--half--left {
    padding-left: 10px;
  }
}

.u-spacing--half--left {
  margin-left: 5px;
}

@media (min-width: 701px) {
  .u-spacing--half--left {
    margin-left: 10px;
  }
}

.u-pad--half--right {
  padding-right: 10px;
}

.u-space--half--right {
  margin-right: 10px;
}

.u-padding--half--right {
  padding-right: 5px;
}

@media (min-width: 701px) {
  .u-padding--half--right {
    padding-right: 10px;
  }
}

.u-spacing--half--right {
  margin-right: 5px;
}

@media (min-width: 701px) {
  .u-spacing--half--right {
    margin-right: 10px;
  }
}

.u-pad--and-half {
  padding: 30px;
}

.u-space--and-half {
  margin: 30px;
}

.u-padding--and-half {
  padding: 15px;
}

@media (min-width: 701px) {
  .u-padding--and-half {
    padding: 30px;
  }
}

.u-spacing--and-half {
  margin: 15px;
}

@media (min-width: 701px) {
  .u-spacing--and-half {
    margin: 30px;
  }
}

.u-pad--and-half--top {
  padding-top: 30px;
}

.u-space--and-half--top {
  margin-top: 30px;
}

.u-padding--and-half--top {
  padding-top: 15px;
}

@media (min-width: 701px) {
  .u-padding--and-half--top {
    padding-top: 30px;
  }
}

.u-spacing--and-half--top {
  margin-top: 15px;
}

@media (min-width: 701px) {
  .u-spacing--and-half--top {
    margin-top: 30px;
  }
}

.u-pad--and-half--bottom {
  padding-bottom: 30px;
}

.u-space--and-half--bottom {
  margin-bottom: 30px;
}

.u-padding--and-half--bottom {
  padding-bottom: 15px;
}

@media (min-width: 701px) {
  .u-padding--and-half--bottom {
    padding-bottom: 30px;
  }
}

.u-spacing--and-half--bottom {
  margin-bottom: 15px;
}

@media (min-width: 701px) {
  .u-spacing--and-half--bottom {
    margin-bottom: 30px;
  }
}

.u-pad--and-half--left {
  padding-left: 30px;
}

.u-space--and-half--left {
  margin-left: 30px;
}

.u-padding--and-half--left {
  padding-left: 15px;
}

@media (min-width: 701px) {
  .u-padding--and-half--left {
    padding-left: 30px;
  }
}

.u-spacing--and-half--left {
  margin-left: 15px;
}

@media (min-width: 701px) {
  .u-spacing--and-half--left {
    margin-left: 30px;
  }
}

.u-pad--and-half--right {
  padding-right: 30px;
}

.u-space--and-half--right {
  margin-right: 30px;
}

.u-padding--and-half--right {
  padding-right: 15px;
}

@media (min-width: 701px) {
  .u-padding--and-half--right {
    padding-right: 30px;
  }
}

.u-spacing--and-half--right {
  margin-right: 15px;
}

@media (min-width: 701px) {
  .u-spacing--and-half--right {
    margin-right: 30px;
  }
}

.u-pad--double {
  padding: 40px;
}

.u-space--double {
  margin: 40px;
}

.u-padding--double {
  padding: 20px;
}

@media (min-width: 701px) {
  .u-padding--double {
    padding: 40px;
  }
}

.u-spacing--double {
  margin: 20px;
}

@media (min-width: 701px) {
  .u-spacing--double {
    margin: 40px;
  }
}

.u-pad--double--top {
  padding-top: 40px;
}

.u-space--double--top {
  margin-top: 40px;
}

.u-padding--double--top {
  padding-top: 20px;
}

@media (min-width: 701px) {
  .u-padding--double--top {
    padding-top: 40px;
  }
}

.u-spacing--double--top {
  margin-top: 20px;
}

@media (min-width: 701px) {
  .u-spacing--double--top {
    margin-top: 40px;
  }
}

.u-pad--double--bottom {
  padding-bottom: 40px;
}

.u-space--double--bottom {
  margin-bottom: 40px;
}

.u-padding--double--bottom {
  padding-bottom: 20px;
}

@media (min-width: 701px) {
  .u-padding--double--bottom {
    padding-bottom: 40px;
  }
}

.u-spacing--double--bottom {
  margin-bottom: 20px;
}

@media (min-width: 701px) {
  .u-spacing--double--bottom {
    margin-bottom: 40px;
  }
}

.u-pad--double--left {
  padding-left: 40px;
}

.u-space--double--left {
  margin-left: 40px;
}

.u-padding--double--left {
  padding-left: 20px;
}

@media (min-width: 701px) {
  .u-padding--double--left {
    padding-left: 40px;
  }
}

.u-spacing--double--left {
  margin-left: 20px;
}

@media (min-width: 701px) {
  .u-spacing--double--left {
    margin-left: 40px;
  }
}

.u-pad--double--right {
  padding-right: 40px;
}

.u-space--double--right {
  margin-right: 40px;
}

.u-padding--double--right {
  padding-right: 20px;
}

@media (min-width: 701px) {
  .u-padding--double--right {
    padding-right: 40px;
  }
}

.u-spacing--double--right {
  margin-right: 20px;
}

@media (min-width: 701px) {
  .u-spacing--double--right {
    margin-right: 40px;
  }
}

.u-pad--triple {
  padding: 60px;
}

.u-space--triple {
  margin: 60px;
}

.u-padding--triple {
  padding: 30px;
}

@media (min-width: 701px) {
  .u-padding--triple {
    padding: 60px;
  }
}

.u-spacing--triple {
  margin: 30px;
}

@media (min-width: 701px) {
  .u-spacing--triple {
    margin: 60px;
  }
}

.u-pad--triple--top {
  padding-top: 60px;
}

.u-space--triple--top {
  margin-top: 60px;
}

.u-padding--triple--top {
  padding-top: 30px;
}

@media (min-width: 701px) {
  .u-padding--triple--top {
    padding-top: 60px;
  }
}

.u-spacing--triple--top {
  margin-top: 30px;
}

@media (min-width: 701px) {
  .u-spacing--triple--top {
    margin-top: 60px;
  }
}

.u-pad--triple--bottom {
  padding-bottom: 60px;
}

.u-space--triple--bottom {
  margin-bottom: 60px;
}

.u-padding--triple--bottom {
  padding-bottom: 30px;
}

@media (min-width: 701px) {
  .u-padding--triple--bottom {
    padding-bottom: 60px;
  }
}

.u-spacing--triple--bottom {
  margin-bottom: 30px;
}

@media (min-width: 701px) {
  .u-spacing--triple--bottom {
    margin-bottom: 60px;
  }
}

.u-pad--triple--left {
  padding-left: 60px;
}

.u-space--triple--left {
  margin-left: 60px;
}

.u-padding--triple--left {
  padding-left: 30px;
}

@media (min-width: 701px) {
  .u-padding--triple--left {
    padding-left: 60px;
  }
}

.u-spacing--triple--left {
  margin-left: 30px;
}

@media (min-width: 701px) {
  .u-spacing--triple--left {
    margin-left: 60px;
  }
}

.u-pad--triple--right {
  padding-right: 60px;
}

.u-space--triple--right {
  margin-right: 60px;
}

.u-padding--triple--right {
  padding-right: 30px;
}

@media (min-width: 701px) {
  .u-padding--triple--right {
    padding-right: 60px;
  }
}

.u-spacing--triple--right {
  margin-right: 30px;
}

@media (min-width: 701px) {
  .u-spacing--triple--right {
    margin-right: 60px;
  }
}

.u-pad--quad {
  padding: 80px;
}

.u-space--quad {
  margin: 80px;
}

.u-padding--quad {
  padding: 40px;
}

@media (min-width: 701px) {
  .u-padding--quad {
    padding: 80px;
  }
}

.u-spacing--quad {
  margin: 40px;
}

@media (min-width: 701px) {
  .u-spacing--quad {
    margin: 80px;
  }
}

.u-pad--quad--top {
  padding-top: 80px;
}

.u-space--quad--top {
  margin-top: 80px;
}

.u-padding--quad--top {
  padding-top: 40px;
}

@media (min-width: 701px) {
  .u-padding--quad--top {
    padding-top: 80px;
  }
}

.u-spacing--quad--top {
  margin-top: 40px;
}

@media (min-width: 701px) {
  .u-spacing--quad--top {
    margin-top: 80px;
  }
}

.u-pad--quad--bottom {
  padding-bottom: 80px;
}

.u-space--quad--bottom {
  margin-bottom: 80px;
}

.u-padding--quad--bottom {
  padding-bottom: 40px;
}

@media (min-width: 701px) {
  .u-padding--quad--bottom {
    padding-bottom: 80px;
  }
}

.u-spacing--quad--bottom {
  margin-bottom: 40px;
}

@media (min-width: 701px) {
  .u-spacing--quad--bottom {
    margin-bottom: 80px;
  }
}

.u-pad--quad--left {
  padding-left: 80px;
}

.u-space--quad--left {
  margin-left: 80px;
}

.u-padding--quad--left {
  padding-left: 40px;
}

@media (min-width: 701px) {
  .u-padding--quad--left {
    padding-left: 80px;
  }
}

.u-spacing--quad--left {
  margin-left: 40px;
}

@media (min-width: 701px) {
  .u-spacing--quad--left {
    margin-left: 80px;
  }
}

.u-pad--quad--right {
  padding-right: 80px;
}

.u-space--quad--right {
  margin-right: 80px;
}

.u-padding--quad--right {
  padding-right: 40px;
}

@media (min-width: 701px) {
  .u-padding--quad--right {
    padding-right: 80px;
  }
}

.u-spacing--quad--right {
  margin-right: 40px;
}

@media (min-width: 701px) {
  .u-spacing--quad--right {
    margin-right: 80px;
  }
}

.u-pad--zero {
  padding: 0rem;
}

.u-space--zero {
  margin: 0rem;
}

.u-padding--zero {
  padding: 0rem;
}

@media (min-width: 701px) {
  .u-padding--zero {
    padding: 0rem;
  }
}

.u-spacing--zero {
  margin: 0rem;
}

@media (min-width: 701px) {
  .u-spacing--zero {
    margin: 0rem;
  }
}

.u-pad--zero--top {
  padding-top: 0rem;
}

.u-space--zero--top {
  margin-top: 0rem;
}

.u-padding--zero--top {
  padding-top: 0rem;
}

@media (min-width: 701px) {
  .u-padding--zero--top {
    padding-top: 0rem;
  }
}

.u-spacing--zero--top {
  margin-top: 0rem;
}

@media (min-width: 701px) {
  .u-spacing--zero--top {
    margin-top: 0rem;
  }
}

.u-pad--zero--bottom {
  padding-bottom: 0rem;
}

.u-space--zero--bottom {
  margin-bottom: 0rem;
}

.u-padding--zero--bottom {
  padding-bottom: 0rem;
}

@media (min-width: 701px) {
  .u-padding--zero--bottom {
    padding-bottom: 0rem;
  }
}

.u-spacing--zero--bottom {
  margin-bottom: 0rem;
}

@media (min-width: 701px) {
  .u-spacing--zero--bottom {
    margin-bottom: 0rem;
  }
}

.u-pad--zero--left {
  padding-left: 0rem;
}

.u-space--zero--left {
  margin-left: 0rem;
}

.u-padding--zero--left {
  padding-left: 0rem;
}

@media (min-width: 701px) {
  .u-padding--zero--left {
    padding-left: 0rem;
  }
}

.u-spacing--zero--left {
  margin-left: 0rem;
}

@media (min-width: 701px) {
  .u-spacing--zero--left {
    margin-left: 0rem;
  }
}

.u-pad--zero--right {
  padding-right: 0rem;
}

.u-space--zero--right {
  margin-right: 0rem;
}

.u-padding--zero--right {
  padding-right: 0rem;
}

@media (min-width: 701px) {
  .u-padding--zero--right {
    padding-right: 0rem;
  }
}

.u-spacing--zero--right {
  margin-right: 0rem;
}

@media (min-width: 701px) {
  .u-spacing--zero--right {
    margin-right: 0rem;
  }
}

.u-spacing--left > * + * {
  margin-left: 20px;
}

/* ------------------------------------ *\
    $VENDORS
\* ------------------------------------ */

/* ------------------------------------ *\
    $TRUMPS
\* ------------------------------------ */

/* ------------------------------------ *\
    $HELPER/TRUMP CLASSES
\* ------------------------------------ */

/**
 * Completely remove from the flow but leave available to screen readers.
 */

.is-vishidden,
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

/**
 * Hide elements only present and necessary for js enabled browsers.
 */

.no-js .no-js-hide {
  display: none;
}

.u-full-width {
  width: 100%;
}

.u-align-center {
  text-align: center;
}

.test {
  background: red;
}

.u-align-right {
  text-align: right;
}

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

.u-position-static {
  position: static;
}

.u-reversed-out {
  color: #fff;
}

.u-reversed-out * {
  color: #fff;
}

.u-reversed-out p,
.u-reversed-out li {
  font-weight: 400;
}

.u-reversed-out hr {
  background-color: rgba(255, 255, 255, 0.29);
}

.u-reversed-out a {
  color: #fff;
}

.u-reversed-out a:hover {
  color: #86ab45;
}

.u-reversed-out a:hover .o-icon svg path {
  fill: #fff;
}

.u-reversed-out a .o-icon svg path {
  fill: #fff;
}

.u-reversed-out .o-button:hover {
  color: #fff;
}

.u-reversed-out svg path {
  fill: #fff;
}

.u-reversed-out blockquote .o-icon svg path {
  fill: #fff;
}

.u-reversed-out blockquote label::before {
  background-color: #fff;
}

/**
 * Remove all margins/padding
 */

.u-no-spacing {
  padding: 0;
  margin: 0;
}

/**
 * Active on/off states
 */

.u-active--off {
  display: none;
}

[class*="-is-active"].js-toggle-parent .u-active--on,
[class*="-is-active"].js-toggle .u-active--on {
  display: none;
}

[class*="-is-active"].js-toggle-parent .u-active--off,
[class*="-is-active"].js-toggle .u-active--off {
  display: block;
}

[class*="-is-active"] .u-hide-on-active {
  display: none;
}

/**
 * Breakout content
 */

.u-breakout {
  margin-right: -20px;
  margin-left: -20px;
}

@media (min-width: 1201px) {
  .u-breakout {
    margin-left: -40px;
    margin-right: -40px;
  }
}

/**
 * Justify left/right content
 */

.u-split-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 400px) {
  .u-split-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .u-split-content > * + * {
    margin-bottom: 20px;
  }
}

@media (min-width: 401px) {
  .u-split-content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.u-hide {
  opacity: 0;
  visibility: hidden;
}

.u-z-index--1 {
  z-index: 100;
}

.u-z-index--2 {
  z-index: 200;
}

.u-z-index--3 {
  z-index: 500;
}


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

#js-counter .js-counter-value:before {
  content: "$";
  display: inline-block;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
  row-gap: 10px;
  }
.wide-content {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

/*new footer*/

.white-bar-1 {
  background-color: #FFF;
  height: 2px;
  width: 58%;
  margin: 8px 0;
}
.white-bar-2 {
  background-color: #FFF;
  height: 2px;
  width: 83%;
  margin: 8px 0;
}
.white-bar-3 {
  background-color: #FFF;
  height: 2px;
  width: 62%;
  margin: 8px 0;
}
.white-bar-4 {
  background-color: #FFF;
  height: 2px;
  width: 100%;
  margin: 8px 0;
}
.c-main-footer {
  background-color: #0b3d5c;
  color: #ffffff;
}

.c-main-footer-grid {
  display: grid;
  grid-template-columns: .5fr .5fr .6fr .6fr .7fr;
  gap: 3rem;
  padding: 4rem;
  background: #0e4a6f;
  width: 100%;
}

.c-footer-col h3, .c-footer-newsletter h3 {
  color: #f2b705;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: bold;
}

.c-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-footer-col ul li {
  margin-bottom: 4px;
}

.c-footer-col a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

.c-footer-col a:hover {
  text-decoration: underline;
}
.c-footer-brand img {
  max-width: 160px;
  margin-bottom: 1.5rem;
}

.c-footer-social {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.c-footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0a73ba;
  padding: 10px;
}
.c-footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.c-footer-social svg {
  max-height: 30px;
}
.c-footer-social path {
  fill: #fff;
}
.c-footer-newsletter form {
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .c-main-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .c-footer-newsletter form {
    flex-direction: column;
  }

  .c-footer-newsletter button {
    margin-top: 0.5rem;
  }
  .c-main-footer-grid {
  padding: 4rem 1em;
  }
}