@import url(https://fonts.googleapis.com/css2?family=Assistant:wght@400;

500;600;700&display=swap);@import url(https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700&display=swap);@import url(https://use.typekit.net/etm6oqg.css);@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
\* ------------------------------------ */
:root {
  --body-font-size: 16px;
  --font-size-xs: 13px;
  --font-size-s: 16px;
  --font-size-m: 20px;
  --font-size-ml: 24px;
  --font-size-l: 22px;
  --font-size-lx: 26px;
  --font-size-xl: 28px;
  --font-size-xxl: 36px;
}

@media screen and (min-width: 700px) {
  :root {
    --font-size-xs: 14px;
    --font-size-s: 18px;
    --font-size-m: 22px;
    --font-size-ml: 30px;
    --font-size-l: 36px;
    --font-size-lx: 48px;
    --font-size-xl: 60px;
    --font-size-xxl: 68px;
  }
}

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

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

/**
 * Standard paragraph
 */

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

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

/* ------------------------------------ *\
    $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
\* ------------------------------------ */

/* ------------------------------------ *\
    $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],
select {
  font-size: 16px;
  font-family: "Assistant", sans-serif;
  padding: 10px 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 2px;
  border: 1px solid #d8d8d8;
}

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,
select::-webkit-input-placeholder {
  color: #d8d8d8;
}

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,
select::-moz-placeholder {
  color: #d8d8d8;
}

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,
select::-ms-input-placeholder {
  color: #d8d8d8;
}

input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
select::placeholder {
  color: #d8d8d8;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=tel]:focus,
select:focus {
  outline: 2px solid #d8d8d8;
}

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 #d8d8d8;
  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;
}

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-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath d='M26.08,3.56l-2,1.95L10.61,19l-5-4L3.47,13.29,0,17.62l2.17,1.73L9.1,24.9,11,26.44l1.77-1.76L28.05,9.43,30,7.48Z' fill='%23d8ba74'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px;
}

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

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

input[type=submit],
button[type=submit] {
  display: inline-block;
  padding: 16px 30px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background-color: #d96e33;
  font-size: var(--body-font-size, 16px);
  -webkit-transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* 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 {
  background-color: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 100%;
  padding-right: 30px;
}

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

h1,
.o-heading--xxl {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-xxl, 68px);
  line-height: 1.1;
  margin-bottom: 0.5em;
}

h2,
.o-heading--xl {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-lx, 48px);
  line-height: 1.3;
}

h3,
.o-heading--l {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-l, 36px);
  line-height: 1.4;
}

h4,
.o-heading--m {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-ml, 30px);
  line-height: 1.4;
}

h5,
.o-heading--s {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-s, 18px);
  line-height: 1.6;
}

h6,
.o-heading--xs {
  font-weight: bold;
  font-size: var(--font-size-xs, 14px);
  line-height: 1.28;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.o-kicker {
  font-weight: bold;
  font-size: var(--font-size-xs, 14px);
  line-height: 1.28;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d8ba74;
}

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

a {
  color: #803f1f;
  -webkit-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

a:hover {
  color: #d96e33;
}

/* ------------------------------------ *\
    $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 "Assistant", sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #121c2d;
  -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;
}

/* ------------------------------------ *\
    $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 #d8d8d8;
  width: 100%;
}

th {
  text-align: left;
  border: 1px solid transparent;
  padding: 10px 0;
  text-transform: uppercase;
  vertical-align: top;
  font-weight: bold;
}

tr {
  border: 1px solid transparent;
}

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

/**
 * Responsive Table
 */

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

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

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

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

@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 #d8d8d8;
    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 #d8d8d8;
    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, 14px);
  }
}

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

/**
 * Text-Related Elements
 */

p {
  line-height: 1.75;
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-s, 18px);
}

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

small {
  font-size: 90%;
}

/**
 * Bold
 */

strong,
b {
  font-weight: bold;
}

/**
 * Blockquote
 */

blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

blockquote::before {
  content: "\201C";
  font-family: "Assistant", sans-serif;
  font-size: 40px;
  line-height: 1;
  color: #d8ba74;
  min-width: 40px;
  border-right: 6px solid #d8d8d8;
  display: block;
  margin-right: 20px;
}

blockquote p {
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/**
 * Horizontal Rule
 */

hr {
  height: 1px;
  border: none;
  background-color: rgba(246, 245, 241, 0.5);
  margin: 0 auto;
}

/**
 * Abbreviation
 */

abbr {
  border-bottom: 1px dotted #d8d8d8;
  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;
}

.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: 1101px) {
  .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: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.l-container--xl {
  max-width: 1600px;
}

/**
 * Grid classes
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Font Families
 */

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

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

.u-font--secondary,
.u-font--secondary p {
  font-family: "minion-3-display", Georgia, serif;
}

/**
 * Text Sizes
 */

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

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

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

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

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

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

/**
 * 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: normal;
}

/**
 * Text Positioning
 */

.u-align--center {
  text-align: center;
}

/**
 * Text Decorations
 */

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

/**
 * 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.75;
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-s, 18px);
}

@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 > h1,
.o-rte-text > h2,
.o-rte-text > h3,
.o-rte-text > h4,
.o-rte-text > h5,
.o-rte-text > h6 {
  padding-top: 20px;
  margin-bottom: -10px;
}

.o-rte-text strong,
.o-rte-text b {
  font-weight: 600;
}

.o-rte-text i,
.o-rte-text em {
  font-style: italic;
}

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

.o-rte-text > h2 + h3 {
  margin-top: 0;
  padding-top: 10px;
}

.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 ol,
.o-rte-text ul {
  padding-left: 0;
  margin-left: 0;
}

.o-rte-text ol li,
.o-rte-text ul li {
  list-style: none;
  padding-left: 20px;
  margin-left: 0;
  position: relative;
  line-height: 1.5;
}

.o-rte-text ol li::before,
.o-rte-text ul li::before {
  color: #d8ba74;
  width: 10px;
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 28px;
  line-height: 0.6;
  top: 4px;
}

.o-rte-text ol li li,
.o-rte-text ul li li {
  list-style: none;
}

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

.o-rte-text ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
}

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

.o-rte-text ol li li::before {
  content: '\2010';
}

.o-rte-text ul li::before {
  content: '\2022';
}

.o-rte-text ul li li::before {
  content: '\25E6';
  font-size: 20px;
  line-height: 1;
}

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

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

.o-rte-text--small > dl dd,
.o-rte-text--small > dl dt,
.o-rte-text--small > ol li,
.o-rte-text--small > ul li,
.o-rte-text--small > p {
  line-height: 1.75;
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-s, 18px);
  line-height: 1.5;
}

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

.o-rte-text--small > h1,
.o-rte-text--small > h2,
.o-rte-text--small > h3,
.o-rte-text--small > h4,
.o-rte-text--small > h5,
.o-rte-text--small > h6 {
  padding-top: 20px;
  margin-bottom: -10px;
}

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

.o-rte-text--small > h2 + h3 {
  margin-top: 0;
  padding-top: 10px;
}

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

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

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

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

.o-rte-text--small ol li,
.o-rte-text--small ul li {
  list-style: none;
  padding-left: 34px;
  margin-left: 0;
  position: relative;
}

.o-rte-text--small ol li::before,
.o-rte-text--small ul li::before {
  color: #d8ba74;
  width: 10px;
  display: inline-block;
  position: absolute;
  left: 0;
  font-size: 24px;
  line-height: 1;
  top: 4px;
}

.o-rte-text--small ol li li,
.o-rte-text--small ul li li {
  list-style: none;
}

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

.o-rte-text--small ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
}

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

.o-rte-text--small ol li li::before {
  content: '\2010';
}

.o-rte-text--small ul li::before {
  content: '\2022';
}

.o-rte-text--small ul li li::before {
  content: '\25E6';
}

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

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

button,
input[type="submit"],
.o-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  text-decoration: none;
  border-radius: 2px;
  font-size: var(--body-font-size, 16px);
  font-family: "Assistant", sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  padding: 20px 40px;
}

/**
 * Button Primary
 */

.o-button--primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  text-decoration: none;
  border-radius: 2px;
  font-size: var(--body-font-size, 16px);
  font-family: "Assistant", sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  padding: 20px 40px;
  background-color: #344a5f;
  color: #fff;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.o-button--primary:hover,
.o-button--primary:focus {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

/**
 * Button Secondary
 */

.o-button--secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  text-decoration: none;
  border-radius: 2px;
  font-size: var(--body-font-size, 16px);
  font-family: "Assistant", sans-serif;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
  padding: 20px 40px;
  background-color: #d8ba74;
  color: #fff;
  -webkit-filter: brightness(100%);
          filter: brightness(100%);
}

.o-button--secondary:hover,
.o-button--secondary:focus {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

.o-btn__large {
  display: inline-block;
  padding: 16px 30px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background-color: #d96e33;
  font-size: var(--body-font-size, 16px);
  -webkit-box-shadow: 0 0px 0px 0px #121c2d;
          box-shadow: 0 0px 0px 0px #121c2d;
  -webkit-transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.o-btn__large:hover {
  color: #fff;
  background-color: #803f1f;
  -webkit-box-shadow: 0 0px 5px -1px #121c2d;
          box-shadow: 0 0px 5px -1px #121c2d;
}

.o-btn__mini {
  text-align: center;
  display: inline-block;
  padding: 6px 20px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border: 2px solid #d96e33;
  background-color: #d96e33;
  font-size: var(--font-size-xs, 14px);
  -webkit-box-shadow: 0 0px 0px 0px #121c2d;
          box-shadow: 0 0px 0px 0px #121c2d;
  -webkit-transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), border 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.o-btn__mini:hover {
  color: #fff;
  background-color: #803f1f;
  border: 2px solid #803f1f;
  -webkit-box-shadow: 0 0px 5px -1px #121c2d;
          box-shadow: 0 0px 5px -1px #121c2d;
}

.o-btn__mini--open {
  display: block;
  border: 2px solid #d96e33;
  text-decoration: none;
  padding: 6px 20px;
  font-weight: bold;
  font-size: var(--font-size-xs, 14px);
  background-color: #fff;
  min-width: 130px;
  text-align: center;
  -webkit-box-shadow: 0 0px 0px 0px #121c2d;
          box-shadow: 0 0px 0px 0px #121c2d;
  -webkit-transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: background-color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.o-btn__mini--open:hover {
  color: #fff;
  background-color: #d96e33;
  -webkit-box-shadow: 0 0px 5px -1px #121c2d;
          box-shadow: 0 0px 5px -1px #121c2d;
}

.o-link-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--font-size-m, 22px);
  line-height: 1.36;
  -webkit-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.o-link-arrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 11px;
  margin-left: 10px;
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='11' viewBox='0 0 24 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.0001 0.999939L22.5001 5.5L18.0001 10.0001' stroke='%23803F1F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='22.4' y1='5.6' x2='0.6' y2='5.6' stroke='%23803F1F' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.o-link-arrow:hover {
  color: #d96e33;
}

.o-link-arrow:hover::after {
  -webkit-transform: translateX(3px);
       -o-transform: translateX(3px);
          transform: translateX(3px);
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='11' viewBox='0 0 24 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.0001 0.999939L22.5001 5.5L18.0001 10.0001' stroke='%23d96e33' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cline x1='22.4' y1='5.6' x2='0.6' y2='5.6' stroke='%23d96e33' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.o-link-arrow--small {
  font-size: var(--body-font-size, 16px);
}

/* ------------------------------------ *\
    $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;
}

/* ------------------------------------ *\
    $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: #121c2d;
  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;
}

/* ------------------------------------ *\
    $NAVIGATION
\* ------------------------------------ */

.c-menu__mypga__screeners span {
  display: none;
}

.c-menu__mypga__content__member-screeners a {
  text-decoration: none;
  font-weight: bold !important;
}

.c-menu__mypga-mobile__member-screeners a {
  text-decoration: none;
  color: #344a5f;
}

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

/* ------------------------------------ *\
    $MESSAGING
\* ------------------------------------ */

.advertisement.first {
  padding-top: 120px;
}

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

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

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

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

.c-footer__social {
  position: relative;
}

@media (max-width: 699px) {
  .c-footer__social {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-footer__social-title {
  margin-right: 20px;
  margin-bottom: 20px;
}

@media (min-width: 701px) {
  .c-footer__social-title {
    margin-bottom: 0;
  }
}

.c-footer__social::after {
  content: '';
  position: absolute;
  top: 100%;
  display: block;
  height: 11px;
  width: 100%;
  opacity: 0.1;
  background-color: #d8ba74;
}

.c-footer__social a {
  display: inline-block;
  text-indent: -9999px;
  font-size: 0;
  background-color: #fff;
  border: 0.5px solid #d8d8d8;
  border-radius: 100%;
  padding: 14px;
  margin-right: 10px;
  -webkit-box-shadow: inset 0 0 0 0 #344a5f;
          box-shadow: inset 0 0 0 0 #344a5f;
  -webkit-transition: -webkit-box-shadow 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: -webkit-box-shadow 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: box-shadow 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: box-shadow 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: box-shadow 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-box-shadow 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-footer__social a path {
  -webkit-transition: fill 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: fill 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: fill 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-footer__social a:hover {
  -webkit-box-shadow: inset 0 0 6px -2px #344a5f;
          box-shadow: inset 0 0 6px -2px #344a5f;
}

.c-footer__social a:hover path {
  fill: #344a5f;
}

.c-footer .o-form label {
  display: block;
  font-weight: bold;
  line-height: 1.31;
  margin-bottom: 5px;
}

.c-footer .o-form label sup {
  color: #dd4949;
}

.c-footer .o-form input[type=email] {
  margin-right: 5px;
}

.c-footer__disclaimer {
  padding-top: 5px;
}

.c-footer__disclaimer p {
  font-size: var(--font-size-xs, 14px);
}

.c-footer__contact p {
  font-size: var(--body-font-size, 16px);
}

.c-footer__utility {
  grid-gap: 30px;
}

.c-footer__utility h6,
.c-footer__utility li {
  margin-bottom: 20px;
}

.c-footer__copywrite {
  border-top: 1px solid #d8d8d8;
}

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

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

.c-filter {
  padding-bottom: 40px;
  margin-bottom: 80px;
  border-bottom: 1px solid #d8d8d8;
}

.c-filter__label {
  font-size: var(--font-size-m, 22px);
  white-space: nowrap;
  margin-bottom: 10px;
}

.c-filter ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 701px) {
  .c-filter ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-filter li {
  margin: 0 20px 10px 0;
  display: block;
  width: 100%;
}

@media (min-width: 701px) {
  .c-filter li {
    width: auto;
    margin: 0 20px 10px 0;
  }
}

.c-filter li.u-active a {
  font-weight: bold;
  border-bottom: 2px solid #f6f5f1;
}

.c-filter li a {
  text-decoration: none;
  font-size: var(--font-size-m, 22px);
  color: #344a5f;
}

.c-filter li a:hover {
  color: #d96e33;
}

.c-title-wrap {
  background-color: #f6f5f1;
  margin-bottom: 40px;
}

.c-teaser {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #d8ba74;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-teaser img {
  display: block;
  margin-bottom: 20px;
}

.c-teaser__title {
  margin-bottom: 10px;
  line-height: 1.3;
}

.c-teaser__title a {
  text-decoration: none;
  color: #121c2d;
}

.c-teaser__title a:hover {
  color: #d96e33;
}

.c-teaser__link-wrapper {
  display: block;
  margin-right: 40px;
  margin-bottom: 20px;
}

.c-teaser__date {
  display: block;
  margin-bottom: 20px;
  font-size: var(--font-size-xs, 14px);
}

.c-teaser__excerpt {
  margin-bottom: 10px;
}

.c-teaser__category {
  color: #d8ba74;
  display: block;
  text-transform: uppercase;
  line-height: 1.28;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-decoration: none;
}

.c-teaser__category:hover {
  color: #344a5f;
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--font-size-m, 22px);
}

.c-pagination .page-number {
  display: none;
}

.c-pagination .page-number.current {
  display: block;
  margin: 0 20px;
}

.c-pagination .prev {
  position: relative;
  -webkit-transform: rotate(180deg) scale(1.3);
       -o-transform: rotate(180deg) scale(1.3);
          transform: rotate(180deg) scale(1.3);
  left: 0;
  -webkit-transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-pagination .prev:hover {
  left: -3px;
}

.c-pagination .next {
  position: relative;
  -webkit-transform: scale(1.3);
       -o-transform: scale(1.3);
          transform: scale(1.3);
  left: 0;
  -webkit-transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-pagination .next:hover {
  left: 3px;
}

.c-post__date {
  display: block;
  padding-top: 10px;
}

.c-post__social svg {
  width: 25px;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
  display: inline-block;
}

.resp-sharing-button__link {
  text-decoration: none;
  color: #fff;
  margin-right: 0.5em;
}

.resp-sharing-button {
  border-radius: 100%;
  -webkit-transition: 25ms ease-out;
  -o-transition: 25ms ease-out;
  transition: 25ms ease-out;
  padding: 0.5em 0.5em 0.2em;
}

.resp-sharing-button__icon svg {
  margin-right: 0.4em;
  vertical-align: top;
}

.resp-sharing-button--small svg {
  margin: 0;
  vertical-align: middle;
}

/* Non solid icons get a stroke */

.resp-sharing-button__icon {
  stroke: #fff;
  fill: none;
}

/* Solid icons get a fill */

.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
  fill: #fff;
  stroke: none;
}

.resp-sharing-button--twitter:hover {
  background-color: #2795e9;
}

.resp-sharing-button--facebook:hover {
  background-color: #2d4373;
}

.resp-sharing-button--facebook {
  background-color: #3b5998;
  border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
  background-color: #2d4373;
  border-color: #2d4373;
}

.resp-sharing-button--twitter {
  background-color: #55acee;
  border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
  background-color: #2795e9;
  border-color: #2795e9;
}

/* ------------------------------------ *\
    $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);
  }
}

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

/**
 * Text Colors
 */

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

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

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

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

/**
 * Background Colors
 */

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

.u-background-color--black {
  background-color: #121c2d;
}

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

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

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

.u-background-color--primary {
  background-color: #344a5f;
}

/**
 * SVG Fill Colors
 */

.u-path-fill--black path {
  fill: #121c2d;
}

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

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

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

/**
 * Display Classes
 */

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

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

[class*="justify-content"],
[class*="justify-items"],
[class*="align-items"],
[class*="flex-direction"] {
  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-justify-content--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.u-justify-items--center {
  justify-items: center;
}

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

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

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

.u-align--right {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.u-align--left {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

@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: 1100px) {
  .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: 1101px) {
  .u-hide-after--xl {
    display: none;
  }
}

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

.u-spacing > * + * {
  margin-top: 20px;
}

.u-padding {
  padding: 20px;
}

.u-space {
  margin: 20px;
}

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

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

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

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

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

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

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

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

.u-spacing--quarter > * + * {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

.u-spacing--half > * + * {
  margin-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

.u-spacing--and-half > * + * {
  margin-top: 30px;
}

.u-padding--and-half {
  padding: 30px;
}

.u-space--and-half {
  margin: 30px;
}

.u-padding--and-half--top {
  padding-top: 30px;
}

.u-space--and-half--top {
  margin-top: 30px;
}

.u-padding--and-half--bottom {
  padding-bottom: 30px;
}

.u-space--and-half--bottom {
  margin-bottom: 30px;
}

.u-padding--and-half--left {
  padding-left: 30px;
}

.u-space--and-half--left {
  margin-left: 30px;
}

.u-padding--and-half--right {
  padding-right: 30px;
}

.u-space--and-half--right {
  margin-right: 30px;
}

.u-spacing--double > * + * {
  margin-top: 40px;
}

.u-padding--double {
  padding: 40px;
}

.u-space--double {
  margin: 40px;
}

.u-padding--double--top {
  padding-top: 40px;
}

.u-space--double--top {
  margin-top: 40px;
}

.u-padding--double--bottom {
  padding-bottom: 40px;
}

.u-space--double--bottom {
  margin-bottom: 40px;
}

.u-padding--double--left {
  padding-left: 40px;
}

.u-space--double--left {
  margin-left: 40px;
}

.u-padding--double--right {
  padding-right: 40px;
}

.u-space--double--right {
  margin-right: 40px;
}

.u-spacing--triple > * + * {
  margin-top: 60px;
}

.u-padding--triple {
  padding: 60px;
}

.u-space--triple {
  margin: 60px;
}

.u-padding--triple--top {
  padding-top: 60px;
}

.u-space--triple--top {
  margin-top: 60px;
}

.u-padding--triple--bottom {
  padding-bottom: 60px;
}

.u-space--triple--bottom {
  margin-bottom: 60px;
}

.u-padding--triple--left {
  padding-left: 60px;
}

.u-space--triple--left {
  margin-left: 60px;
}

.u-padding--triple--right {
  padding-right: 60px;
}

.u-space--triple--right {
  margin-right: 60px;
}

.u-spacing--quad > * + * {
  margin-top: 80px;
}

.u-padding--quad {
  padding: 80px;
}

.u-space--quad {
  margin: 80px;
}

.u-padding--quad--top {
  padding-top: 80px;
}

.u-space--quad--top {
  margin-top: 80px;
}

.u-padding--quad--bottom {
  padding-bottom: 80px;
}

.u-space--quad--bottom {
  margin-bottom: 80px;
}

.u-padding--quad--left {
  padding-left: 80px;
}

.u-space--quad--left {
  margin-left: 80px;
}

.u-padding--quad--right {
  padding-right: 80px;
}

.u-space--quad--right {
  margin-right: 80px;
}

.u-spacing--six > * + * {
  margin-top: 120px;
}

.u-padding--six {
  padding: 120px;
}

.u-space--six {
  margin: 120px;
}

.u-padding--six--top {
  padding-top: 120px;
}

.u-space--six--top {
  margin-top: 120px;
}

.u-padding--six--bottom {
  padding-bottom: 120px;
}

.u-space--six--bottom {
  margin-bottom: 120px;
}

.u-padding--six--left {
  padding-left: 120px;
}

.u-space--six--left {
  margin-left: 120px;
}

.u-padding--six--right {
  padding-right: 120px;
}

.u-space--six--right {
  margin-right: 120px;
}

.u-spacing--zero > * + * {
  margin-top: 0rem;
}

.u-padding--zero {
  padding: 0rem;
}

.u-space--zero {
  margin: 0rem;
}

.u-padding--zero--top {
  padding-top: 0rem;
}

.u-space--zero--top {
  margin-top: 0rem;
}

.u-padding--zero--bottom {
  padding-bottom: 0rem;
}

.u-space--zero--bottom {
  margin-bottom: 0rem;
}

.u-padding--zero--left {
  padding-left: 0rem;
}

.u-space--zero--left {
  margin-left: 0rem;
}

.u-padding--zero--right {
  padding-right: 0rem;
}

.u-space--zero--right {
  margin-right: 0rem;
}

.u-spacing--left > * + * {
  margin-left: 20px;
}

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

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

.c-column-block {
  margin-bottom: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-column-block.member {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.c-column-block p {
  margin-bottom: 10px;
}

.c-column-block .o-link-arrow {
  font-size: var(--font-size-s, 18px);
}

.c-column-block figure {
  margin-bottom: 30px;
  max-width: 400px;
}

.c-column-block figure:hover figcaption {
  opacity: 1;
}

.c-column-block img {
  margin: 0 auto;
}

.c-column-block figcaption {
  font-size: var(--font-size-xs, 14px);
  line-height: 1.4;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-column-block__image-link figure {
  -webkit-transform: scale(1);
       -o-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-column-block__image-link:hover figure {
  -webkit-transform: scale(0.97);
       -o-transform: scale(0.97);
          transform: scale(0.97);
}

.c-column-block.member.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-content-split__body {
  border-bottom: 1px solid #d8d8d8;
}

.c-content-split__body h4 {
  margin-bottom: 20px;
}

.c-content-split__body p {
  margin-bottom: 1em;
  line-height: 1.75;
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-s, 18px);
}

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

.c-content-split__post-script p {
  font-size: var(--font-size-xs, 14px);
}

.c-content-split__second h5 {
  margin-bottom: 10px;
}

.c-content-split__second ul {
  list-style-type: none;
}

.c-content-split__second ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
  padding-left: 40px;
  line-height: 1.75;
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-s, 18px);
}

@media print {
  .c-content-split__second ul li {
    font-size: 12px;
    line-height: 1.3;
  }
}

.c-content-split__second ul li::before {
  content: '';
  display: block;
  min-width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  margin-top: 5px;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='29' height='29' viewBox='0 0 29 29' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3419 15.8151L9.27329 12.7465L6.37329 15.6465L12.3419 21.6151L22.6268 11.3302L19.7268 8.43018L12.3419 15.8151Z' fill='%23D8BA74'/%3E%3Cpath d='M14.5 0C6.50814 0 0 6.50814 0 14.5C0 22.4919 6.50814 29 14.5 29C22.4919 29 29 22.4919 29 14.5C29 6.50814 22.4919 0 14.5 0ZM14.5 26.3023C7.99186 26.3023 2.69767 21.0081 2.69767 14.5C2.69767 7.99186 7.99186 2.69767 14.5 2.69767C21.0081 2.69767 26.3023 7.99186 26.3023 14.5C26.3023 21.0081 21.0081 26.3023 14.5 26.3023Z' fill='%23D8BA74'/%3E%3C/svg%3E%0A");
}

.c-basic-content-split__heading a {
  display: inline-block;
  text-decoration: none;
  color: #344a5f;
  -webkit-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-basic-content-split__heading a:hover {
  color: #d96e33;
}

.c-basic-content-split__heading h2 {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-xxl, 68px);
  line-height: 1.1;
  margin-bottom: 0.5em;
}

.c-basic-content-split__body span {
  color: #d8ba74;
  font-weight: bold;
  font-size: var(--font-size-xs, 14px);
  line-height: 1.18;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
}

@media (max-width: 699px) {
  .c-banner-cta__copy ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-banner-cta__copy h4 {
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 699px) {
  .c-banner-cta__copy li {
    margin-bottom: 10px;
  }
}

.c-banner-cta__copy li + li {
  position: relative;
}

@media (min-width: 701px) {
  .c-banner-cta__copy li + li::before {
    content: "\B7";
    color: #fff;
    display: block;
    font-size: 60px;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.c-banner-cta__copy a {
  color: #d8ba74;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: bold;
  display: inline-block;
  margin: 0 40px;
  -webkit-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-banner-cta__copy a:hover {
  color: #d96e33;
}

.c-split {
  background-color: #f6f5f1;
}

.c-split .c-card__image {
  opacity: 0;
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@media (max-width: 699px) {
  .c-split .c-card__image {
    margin-bottom: 20px;
  }
}

.c-split .c-card__image.active {
  opacity: 1;
}

.c-split .c-card__content {
  opacity: 0;
  -webkit-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@media (max-width: 699px) {
  .c-split .c-card__content {
    margin-bottom: 20px;
  }
}

.c-split .c-card__content.active {
  opacity: 1;
  -webkit-transform: translateX(0px);
       -o-transform: translateX(0px);
          transform: translateX(0px);
}

.c-split .c-card:nth-child(even) .c-card__content {
  -webkit-transform: translateX(-10px);
       -o-transform: translateX(-10px);
          transform: translateX(-10px);
}

.c-split .c-card:nth-child(even) .c-card__content.active {
  -webkit-transform: translateX(0px);
       -o-transform: translateX(0px);
          transform: translateX(0px);
}

.c-banner {
  display: none;
}

.home .c-banner {
  display: block;
}

.c-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.c-banner__text a:hover {
  text-decoration: none;
}

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

.c-card {
  margin-bottom: 60px;
}

.c-card__image img {
  -webkit-filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
}

.c-card__image figcaption {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-card__image:hover figcaption {
  opacity: 1;
}

@media (min-width: 701px) {
  .c-card.first .c-card__content {
    margin-left: 20px;
  }
}

.c-card-listing {
  background-color: #f6f5f1;
}

.c-card-listing .c-card-listing__card {
  grid-gap: 32px;
}

@media (max-width: 699px) {
  .c-card-listing .c-card-listing__card {
    grid-gap: 20px;
    padding-bottom: 60px;
  }
}

.c-card-listing .c-card-listing__card:last-of-type {
  padding-bottom: 0;
}

.c-card-listing__image {
  opacity: 0;
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@media (max-width: 699px) {
  .c-card-listing__image {
    margin-bottom: 20px;
  }
}

.c-card-listing__image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-card-listing__image.active {
  opacity: 1;
}

.c-card-listing__image figcaption {
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-card-listing__image:hover figcaption {
  opacity: 1;
}

.c-card-listing__copy {
  opacity: 0;
  -webkit-transform: translateX(10px);
       -o-transform: translateX(10px);
          transform: translateX(10px);
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  margin-bottom: 20px;
}

@media (min-width: 701px) {
  .c-card-listing__copy {
    margin-bottom: 0;
  }
}

.c-card-listing__copy.active {
  opacity: 1;
  -webkit-transform: translateX(0px);
       -o-transform: translateX(0px);
          transform: translateX(0px);
}

.c-card-listing__copy__heading {
  margin-bottom: 20px;
}

.c-card-listing__copy h4 {
  margin-bottom: 5px;
}

.c-card-listing__copy span {
  display: inline-block;
  font-size: var(--body-font-size, 16px);
}

.c-cookie {
  position: fixed;
  bottom: 20px;
  width: 90%;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  -webkit-filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
}

.c-cookie p {
  font-size: var(--body-font-size, 16px);
  margin-right: 20px;
}

.c-cookie--hide {
  display: none;
}

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

.c-hero {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f6f5f1), color-stop(50%, #fff));
  background: -webkit-linear-gradient(bottom, #f6f5f1 50%, #fff 50%);
  background: -o-linear-gradient(bottom, #f6f5f1 50%, #fff 50%);
  background: linear-gradient(0deg, #f6f5f1 50%, #fff 50%);
}

@media (min-width: 701px) {
  .c-hero {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #f6f5f1), color-stop(40%, #fff));
    background: -webkit-linear-gradient(bottom, #f6f5f1 40%, #fff 40%);
    background: -o-linear-gradient(bottom, #f6f5f1 40%, #fff 40%);
    background: linear-gradient(0deg, #f6f5f1 40%, #fff 40%);
  }
}

.c-hero__title {
  color: #344a5f;
}

.c-hero__image {
  margin-bottom: 40px;
}

@media (min-width: 701px) {
  .c-hero__image {
    margin-bottom: 80px;
  }
}

.c-hero img {
  -webkit-filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
}

.c-hero__summary {
  text-align: left;
  color: #344a5f;
  font-weight: bold;
  line-height: 1.38;
  font-size: var(--font-size-l, 36px);
  margin-bottom: 1em;
  opacity: 0.2;
  -webkit-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-hero__summary.active {
  opacity: 1;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

.c-hero .o-link-arrow {
  font-weight: bold;
}

.c-hero-basic--center,
.c-hero__alt--center {
  margin-bottom: 0;
}

.c-hero-basic .c-hero__title,
.c-hero__alt .c-hero__title {
  margin-bottom: 0;
}

.c-hero-basic .c-hero__title--center,
.c-hero__alt .c-hero__title--center {
  text-align: center;
}

.c-hero-basic .c-hero__tagline,
.c-hero__alt .c-hero__tagline {
  margin-top: 1rem;
  font-style: italic;
  color: #d96e33;
}

.c-hero-basic__heading--center,
.c-hero__alt__heading--center {
  margin-bottom: 0;
}

.c-hero-basic__heading p,
.c-hero__alt__heading p {
  font-size: var(--font-size-m, 22px);
}

.c-hero-basic figure img,
.c-hero__alt figure img {
  width: 100%;
  margin-bottom: 5px;
  -webkit-filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
}

.c-hero-basic figure figcaption,
.c-hero__alt figure figcaption {
  font-size: var(--font-size-xs, 14px);
}

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

.c-promotion__list--heading h2 {
  font-size: 48px;
  color: #344a5f;
}

.c-promotion__list h5 {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 10px;
}

.c-promotion__list img {
  width: 100%;
}

.c-promotion__cover-img {
  -webkit-filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
  margin-bottom: 10px;
}

.c-promotion .o-link-arrow {
  font-size: var(--font-size-s, 18px);
  font-weight: normal;
}

.c-promotion .c-intro {
  text-align: left;
}

.c-promotion .c-intro::after {
  display: none;
}

@media (min-width: 701px) {
  .c-promotion .c-intro {
    margin-left: 40px;
  }
}

.c-promotion .c-intro img {
  margin: 0;
}

.c-basic-center {
  background-color: #f6f5f1;
}

.c-basic-center__heading {
  margin-bottom: 20px;
}

.c-basic-center__heading::after {
  content: '';
  width: 110px;
  height: 1px;
  display: block;
  background-color: #d8d8d8;
  margin: 30px auto;
}

.c-basic-center__heading a {
  display: inline-block;
  text-decoration: none;
  color: #344a5f;
  -webkit-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-basic-center__heading a:hover {
  color: #d96e33;
}

.c-basic-center__heading h2 {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-xxl, 68px);
  line-height: 1.1;
  margin-bottom: 0.5em;
  margin-bottom: 0;
}

.c-basic-center__heading p {
  font-size: var(--font-size-m, 22px);
}

.c-basic-center__body p,
.c-basic-center__body .o-btn {
  margin-bottom: 20px;
}

.c-horizontal-rule hr {
  height: 2px;
  width: 100%;
  background-color: #f6f5f1;
}

.c-video {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f6f5f1), color-stop(50%, #fff));
  background: -webkit-linear-gradient(bottom, #f6f5f1 50%, #fff 50%);
  background: -o-linear-gradient(bottom, #f6f5f1 50%, #fff 50%);
  background: linear-gradient(0deg, #f6f5f1 50%, #fff 50%);
}

.c-wysiwig-content p {
  display: block;
  padding: 1rem 0;
}

.c-wysiwig-content h2 {
  font-family: "Assistant", sans-serif;
  margin: 1.8rem 0;
}

.c-wysiwig-content ul {
  list-style: initial;
  margin-left: 1.5rem;
}

.c-wysiwig-content li {
  padding: 0.7rem 0;
}

.c-wysiwig-content li::marker {
  color: #d96e33;
}

.pga-header-logo {
  max-width: 100%;
}

.pga-header-logo img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 2.5rem auto;
}

@media (max-width: 699px) {
  .pga-header-logo img {
    max-width: 100%;
  }
}

.pgacreate .c-hero__alt {
  display: none !important;
}

.pga-create-test .c-hero__alt {
  display: none !important;
}

.c-pgacreate-cta-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}

@media (max-width: 699px) {
  .c-pgacreate-cta-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.cta-btn {
  max-width: 35%;
  background-color: #d96e33;
  padding: 1.2rem 1.5rem;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  -webkit-box-shadow: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
          box-shadow: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.25));
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

@media (max-width: 699px) {
  .cta-btn {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-btn p {
  padding-top: 0.5rem;
  padding-bottom: 1.2rem;
  line-height: 1.5;
}

.cta-btn a {
  color: #fff;
  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  display: block;
  padding-bottom: 0.9rem;
}

.cta-btn a:hover {
  color: #344a5f;
}

.create-headline-text {
  font-size: 28px;
  line-height: 1.38;
}

@media (max-width: 699px) {
  .create-headline-text {
    font-size: 20px;
  }
}

.create-headline-text span {
  font-size: 18px;
}

@media (max-width: 699px) {
  .create-headline-text span {
    font-size: 16px;
  }
}

.flex-features-series {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 699px) {
  .flex-features-series {
    display: block;
  }
}

.global-payments .c-hero__alt,
.globalpayments .c-hero__alt {
  max-width: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

@media (max-width: 699px) {
  .global-payments .c-hero__alt,
  .globalpayments .c-hero__alt {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.global-payments .c-hero__alt div[bp~="offset-3@md"],
.globalpayments .c-hero__alt div[bp~="offset-3@md"] {
  grid-column-start: unset;
}

@media (max-width: 699px) {
  .global-payments .c-hero__alt div[bp~="offset-3@md"],
  .globalpayments .c-hero__alt div[bp~="offset-3@md"] {
    grid-column-start: span 12;
  }
}

.global-payments .c-wysiwig-content,
.globalpayments .c-wysiwig-content {
  background-color: transparent;
}

@media (max-width: 699px) {
  .global-payments .c-wysiwig-content,
  .globalpayments .c-wysiwig-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.global-payments .c-wysiwig-content h4,
.globalpayments .c-wysiwig-content h4 {
  color: #344a5f;
}

.global-payments .c-wysiwig-content p,
.globalpayments .c-wysiwig-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Arial", "sans-serif";
  color: #2c2727;
}

.global-payments .global-payments-cta,
.globalpayments .global-payments-cta {
  background: #404960;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  padding: 22px 25px;
  display: inline-block;
  margin-bottom: 20px;
}

.global-payments .disclaimer-modal,
.globalpayments .disclaimer-modal {
  margin-top: 35px;
  background-color: #f1f1f1;
  padding-left: 31px;
  padding-top: 33px;
  padding-bottom: 33px;
  padding-right: 63px;
  display: none;
}

@media (max-width: 699px) {
  .global-payments .disclaimer-modal,
  .globalpayments .disclaimer-modal {
    padding-right: 35px;
  }
}

.global-payments .disclaimer-modal__title,
.globalpayments .disclaimer-modal__title {
  font-weight: 600 !important;
}

.global-payments .disclaimer-text,
.globalpayments .disclaimer-text {
  text-align: center;
  font-family: "Arial", "sans-serif";
  font-size: 18px;
  line-height: 21px;
  color: #2c2727;
}

.global-payments .disclaimer-text a,
.globalpayments .disclaimer-text a {
  color: #344a5f;
}

.global-payments .headline-text,
.globalpayments .headline-text {
  margin-bottom: 40px;
}

@media (max-width: 699px) {
  .global-payments .headline-text,
  .globalpayments .headline-text {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.image-content {
  margin-bottom: 55px;
}

@media (max-width: 699px) {
  .image-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.image-content img {
  max-height: 42px;
  height: 100%;
}

.non-member {
  position: relative;
}

.c-menu__mypga-mobile-menu {
  background-color: #f6f5f1;
  position: fixed;
  height: 100vh;
  top: 0;
  min-width: 300px;
  -webkit-transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  left: -100%;
}

.c-menu__mypga-mobile-menu--active {
  left: 0;
  z-index: 100000;
}

.c-menu__mypga-acct {
  border-bottom: 1px solid #d96e33;
  padding-bottom: 5px;
  margin-left: 20px;
  cursor: pointer;
}

@media (max-width: 699px) {
  .c-menu__mypga-acct {
    display: none;
  }
}

.c-menu__mypga-acct--active span svg {
  -webkit-transform: rotate(90deg) !important;
       -o-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

.c-menu__mypga-acct p {
  color: #d96e33;
  font-weight: 700;
  font-size: var(--font-size-xs, 14px);
  font-family: "Assistant", sans-serif;
}

.c-menu__mypga-acct span svg {
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}

.c-menu__mypga-acct span svg path {
  stroke: #d96e33;
}

.c-menu__mypga-account-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.c-menu__mypga-account-info__arrow {
  margin-left: 20px;
  vertical-align: middle;
}

.c-menu__mypga-account-info__arrow svg {
  width: 20px;
  height: 20px;
}

.c-menu__mypga-account-info__meta {
  display: none;
}

@media (max-width: 699px) {
  .c-menu__mypga-account-info__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-menu__mypga-account-info__greeting {
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-s, 18px);
  font-weight: 700;
  color: #344a5f;
  padding-bottom: 1.2px;
}

.c-menu__mypga-account-info__view-acct {
  font-family: "Arial", "sans-serif";
  font-size: var(--font-size-xs, 14px);
  font-weight: 400;
  font-style: italic;
  color: #344a5f;
}

.c-menu__mypga {
  position: absolute;
  top: 70px;
  right: -20px;
  max-width: 400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}

.c-menu__mypga--active {
  opacity: 1;
  z-index: 10;
  visibility: visible;
}

@media (max-width: 849px) {
  .c-menu__mypga {
    display: none;
  }
}

.c-menu__mypga__items {
  background-color: #f6f5f1;
  width: 50%;
  position: relative;
  -webkit-box-shadow: 0px 0px 13px -3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 13px -3px rgba(0, 0, 0, 0.15);
}

.c-menu__mypga__item {
  padding: 20px 0;
  font-weight: 700;
  font-size: var(--font-size-xs, 14px);
  color: #344a5f;
  font-family: "Assistant", sans-serif;
  padding-top: 10px;
  padding-left: 13px;
  padding-right: 13px;
  cursor: pointer;
  -webkit-transition: background-color 300ms ease-in;
  -o-transition: background-color 300ms ease-in;
  transition: background-color 300ms ease-in;
}

.c-menu__mypga__item a {
  color: #344a5f;
  text-decoration: none;
}

.c-menu__mypga__item:hover {
  background-color: #fbfaf8;
  border-bottom: 1px solid #d8ba74;
}

.c-menu__mypga__item:hover span svg path {
  stroke: #d8ba74;
}

.c-menu__mypga__item span svg {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}

.c-menu__mypga__content {
  background-color: #fff;
  padding-left: 13px;
  padding-top: 13px;
  padding-bottom: 16px;
  display: block;
  width: 50%;
  -webkit-box-shadow: 0px 0px 13px -3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 13px -3px rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transition: 500ms;
  -o-transition: 500ms;
  transition: 500ms;
}

.c-menu__mypga__content--active {
  opacity: 1;
}

.c-menu__mypga__content::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  right: 20px;
  top: -10px;
}

.c-menu__mypga__content > li {
  display: none;
}

.c-menu__mypga__content h1,
.c-menu__mypga__content h2,
.c-menu__mypga__content h3,
.c-menu__mypga__content h4,
.c-menu__mypga__content h5,
.c-menu__mypga__content h6 {
  font-size: var(--font-size-xs, 14px);
  font-family: "Assistant", sans-serif;
  font-weight: 700;
  color: #344a5f;
  line-height: 1.2;
  margin-bottom: 2.5px;
}

.c-menu__mypga__content ul li {
  position: relative;
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-xs, 14px);
  font-weight: 400;
  padding-bottom: 5px;
}

.c-menu__mypga__content ul li a {
  color: #344a5f;
  -webkit-transition: color 300ms ease-in;
  -o-transition: color 300ms ease-in;
  transition: color 300ms ease-in;
}

.c-menu__mypga__content ul li a:hover {
  color: #d8ba74;
}

.c-menu__mypga__content ul li::before {
  content: '';
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNSIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNSA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSA1Ljk3MzkyTDMuNDg2OTcgMy40ODY5NUwxIDEiIHN0cm9rZT0iIzM0NEE1RiIvPgo8L3N2Zz4K);
  background-size: 10px 10px;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  display: inline-block;
}

.c-menu__mypga-mobile__navigation {
  padding: 0 20px;
}

.c-menu__mypga-mobile-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 11px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
}

.c-menu__mypga-mobile-controls__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--font-size-xs, 14px);
  color: #344a5f;
  font-family: "Assistant", sans-serif;
  cursor: pointer;
}

.c-menu__mypga-mobile-controls__back span {
  padding-right: 12.5px;
}

.c-menu__mypga-mobile__name {
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-s, 18px);
  font-weight: 700;
  color: #344a5f;
  line-height: 1.2;
  border-bottom: 1px solid #d8ba74;
  padding: 20px 0;
  cursor: pointer;
}

.c-menu__mypga-mobile__name--active {
  background-color: #fbfaf8;
}

.c-menu__mypga-mobile__name--active span svg {
  -webkit-transform: rotate(-90deg) !important;
       -o-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
}

.c-menu__mypga-mobile__name--active span svg path {
  stroke: #d8ba74 !important;
}

.c-menu__mypga-mobile__name > a {
  color: #344a5f;
  text-decoration: none;
}

.c-menu__mypga-mobile__name span svg {
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
  -webkit-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 20px;
  height: 20px;
}

.c-menu__mypga-mobile__content {
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-menu__mypga-mobile__content h1,
.c-menu__mypga-mobile__content h2,
.c-menu__mypga-mobile__content h3,
.c-menu__mypga-mobile__content h4,
.c-menu__mypga-mobile__content h5,
.c-menu__mypga-mobile__content h6 {
  font-size: var(--font-size-s, 18px);
  font-family: "Assistant", sans-serif;
  color: #344a5f;
}

.c-menu__mypga-mobile__content ul li::before {
  content: '';
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNSIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgNSA3IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMSA1Ljk3MzkyTDMuNDg2OTcgMy40ODY5NUwxIDEiIHN0cm9rZT0iIzM0NEE1RiIvPgo8L3N2Zz4K);
  background-size: 15px 15px;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
}

.c-menu__mypga-mobile__content > div {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.c-menu__mypga-mobile__content .c-menu__mypga-mobile__single-content--inner {
  padding: 15px 20px 20px 20px;
}

.active-mypga-item {
  display: block !important;
}

.active-mypga-content {
  visibility: visible !important;
  max-height: 100vh !important;
  opacity: 1 !important;
}

@media (max-width: 699px) {
  .o-log-out,
  .c-menu__mypga-acct {
    display: none !important;
  }
}

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

/**
 * Validation
 */

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

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

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

.c-intro::after {
  content: '';
  width: 110px;
  height: 1px;
  display: block;
  background-color: #d8d8d8;
  margin: 30px auto;
}

.c-intro span {
  color: #d8ba74;
  font-weight: bold;
  font-size: var(--font-size-xs, 14px);
  line-height: 1.18;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.c-intro p {
  margin-bottom: 1em;
}

.c-intro img {
  margin: 0 auto;
}

.c-intro h2 {
  margin-bottom: 10px;
}

.c-main-header {
  border-bottom: 1px solid #d8d8d8;
  padding: 20px 0;
  position: relative;
}

.o-logo {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  font-size: 0px;
}

.o-menu-btn {
  cursor: pointer;
}

@media (min-width: 1101px) {
  .o-menu-btn {
    display: none;
  }
}

.c-menu {
  background-color: #f6f5f1;
  height: 100vh;
  top: 0;
  left: -300px;
  position: fixed;
  z-index: 999;
  padding: 20px;
  min-width: 300px;
  -webkit-transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: left 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@media (min-width: 1101px) {
  .c-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    left: auto;
    background-color: transparent;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 0;
  }
}

.c-menu.open {
  left: 0;
}

.c-menu svg {
  cursor: pointer;
  -webkit-transition: stroke 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: stroke 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: stroke 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@media (min-width: 1101px) {
  .c-menu svg {
    display: none;
  }
}

.c-menu svg:hover {
  stroke: #803f1f;
}

.c-menu__list {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (min-width: 1101px) {
  .c-menu__list {
    background-color: transparent;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.c-menu__link {
  display: inline-block;
  text-decoration: none;
  color: #344a5f;
  padding: 20px 0;
  margin-right: 4px;
  font-size: var(--body-font-size, 16px);
  font-weight: bold;
  line-height: 1.31;
  -webkit-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@media (min-width: 1101px) {
  .c-menu__link {
    padding: 20px 10px;
  }
}

.c-menu__link:hover {
  color: #803f1f;
}

.c-menu__extra-mobile {
  display: none !important;
  position: relative;
}

@media (max-width: 1099px) {
  .c-menu__extra-mobile {
    display: block !important;
    width: 100%;
    border-top: 1px solid #d8d8d8;
    padding: 20px;
    margin-left: 0;
  }

  .c-menu__extra-mobile .o-btn__mini {
    margin-bottom: 5px;
    display: block;
    width: 100%;
  }

  .c-menu__extra-mobile .o-btn__mini--open {
    margin-bottom: 5px;
    display: block;
    width: 100%;
  }
}

.c-menu__extra {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1099px) {
  .c-menu__extra {
    display: none !important;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    border-top: 1px solid #d8d8d8;
    padding: 20px;
    margin-left: 0;
  }

  .c-menu__extra .o-btn__mini {
    margin-bottom: 5px;
    display: block;
    width: 100%;
  }

  .c-menu__extra .o-btn__mini--open {
    margin-bottom: 5px;
    display: block;
    width: 100%;
  }
}

@media (min-width: 851px) {
  .c-menu__extra a:last-of-type {
    margin-left: 5px;
  }
}

.c-banner {
  background-color: #121c2d;
  color: #fff;
  padding: 20px 10px;
  position: absolute;
  left: 0;
  width: 100vw;
  -webkit-transition: opacity 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  z-index: 1;
  margin-bottom: 40px;
}

.c-banner a {
  text-decoration: none;
}

.c-banner__text {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 40px;
}

@media (min-width: 851px) {
  .c-banner__text {
    max-width: 800px;
  }
}

.c-banner__not-active {
  opacity: 0;
  z-index: -1;
}

.c-banner svg {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 25px;
  right: 20px;
  cursor: pointer;
}

.c-banner svg path {
  fill: #fff;
  -webkit-transition: fill 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: fill 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: fill 300ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-banner svg path:hover {
  fill: rgba(255, 255, 255, 0.6);
}

.c-slideshow {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, #f6f5f1), color-stop(50%, #fff));
  background: -webkit-linear-gradient(bottom, #f6f5f1 50%, #fff 50%);
  background: -o-linear-gradient(bottom, #f6f5f1 50%, #fff 50%);
  background: linear-gradient(0deg, #f6f5f1 50%, #fff 50%);
}

.c-slideshow__wrapper {
  margin: 0 auto 80px;
}

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

.c-slideshow__slide {
  position: relative;
}

.c-slideshow__slide span {
  position: absolute;
  bottom: 10px;
  left: 40px;
  color: #fff;
  line-height: 1.42;
  font-size: var(--font-size-m, 22px);
}

.c-slideshow .slick-arrow {
  text-indent: -99999px;
  background-repeat: no-repeat;
  width: 62px;
  height: 62px;
  background-color: transparent;
  position: absolute;
  padding: 0;
  top: 100%;
  left: 0;
}

@media (min-width: 701px) {
  .c-slideshow .slick-arrow {
    left: -80px;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-slideshow .slick-next {
  left: auto;
  right: 0;
}

@media (min-width: 701px) {
  .c-slideshow .slick-next {
    right: -80px;
  }
}

@media (max-width: 699px) {
  .c-slideshow iframe {
    max-height: 200px;
  }
}

.c-slideshow__content {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-slideshow__cta p {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-ml, 30px);
  line-height: 1.4;
}

.slick-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d)'%3E%3Ccircle cx='29' cy='29' r='24.75' fill='white' stroke='%23D8D8D8' stroke-width='0.5'/%3E%3Cpath d='M32.1924 19.9497L23 29.1421L32.1924 38.3345' stroke='%23D96E33' stroke-width='4'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d' x='0' y='0' width='62' height='62' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0'/%3E%3CfeOffset dx='2' dy='2'/%3E%3CfeGaussianBlur stdDeviation='3'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
}

.slick-next {
  background-image: url("data:image/svg+xml,%3Csvg width='62' height='62' viewBox='0 0 62 62' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d)'%3E%3Ccircle cx='29' cy='29' r='24.75' transform='rotate(-180 29 29)' fill='white' stroke='%23D8D8D8' stroke-width='0.5'/%3E%3Cpath d='M25.8076 38.0503L35 28.8579L25.8076 19.6655' stroke='%23D96E33' stroke-width='4'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d' x='0' y='0' width='62' height='62' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0'/%3E%3CfeOffset dx='2' dy='2'/%3E%3CfeGaussianBlur stdDeviation='3'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
}

.c-stacked-slideshow__heading {
  margin-bottom: 20px;
}

.c-stacked-slideshow__heading a {
  display: inline-block;
  text-decoration: none;
  color: #344a5f;
  -webkit-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-stacked-slideshow__heading a:hover {
  color: #d96e33;
}

.c-stacked-slideshow__heading h2 {
  font-family: "minion-3-display", Georgia, serif;
  font-size: var(--font-size-xxl, 68px);
  line-height: 1.1;
  margin-bottom: 0.5em;
}

.c-stacked-slideshow__heading p {
  font-size: var(--font-size-m, 22px);
}

.c-stacked-slideshow .slick-prev {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
  color: transparent;
}

.c-stacked-slideshow .slick-next {
  position: absolute;
  top: 100%;
  right: 0;
  text-indent: -99999px;
  background-repeat: no-repeat;
  width: 62px;
  height: 62px;
  background-color: transparent;
  padding: 0;
}

@media (min-width: 701px) {
  .c-stacked-slideshow .slick-next {
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-stacked-slideshow__track .slick-list {
  padding-right: 40px;
  position: relative;
}

.c-stacked-slideshow__track .slick-list::after {
  content: '';
  width: 200px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.c-stacked-slideshow__track .c-slide {
  margin-right: 30px;
}

.c-stacked-slideshow__track .c-slide__image {
  margin-bottom: 10px;
}

.c-stacked-slideshow__track img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 20px;
}

.c-stacked-slideshow__track p {
  font-size: 12px;
}

.c-stacked-slideshow__title {
  color: #d8ba74;
  font-weight: bold;
  font-size: var(--font-size-xs, 14px);
  line-height: 1.18;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
  display: block;
}

.c-event-slideshow {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-event-slideshow::before,
.c-event-slideshow::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 15%;
  max-width: 225px;
  z-index: 999;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

@media (min-width: 701px) {
  .c-event-slideshow::before,
  .c-event-slideshow::after {
    width: 25%;
  }
}

.c-event-slideshow::after {
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  left: auto;
  right: 0;
}

.c-event-slideshow__slide {
  width: 400px;
  height: 300px;
}

.c-event-slideshow__slide:nth-of-type(odd) {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-event-slideshow__slide:nth-of-type(odd)::before {
  content: '';
  display: block;
  background-color: #d8ba74;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-event-slideshow__slide:nth-of-type(odd) .c-event-slideshow__content {
  position: relative;
}

.c-event-slideshow__slide:nth-of-type(odd) .c-event-slideshow__content::before {
  top: 0;
}

.c-event-slideshow__slide:nth-of-type(odd) .c-event-slideshow__content::after {
  bottom: 0;
}

.c-event-slideshow__slide:nth-of-type(even) {
  position: relative;
  margin-bottom: 280px;
  margin-left: -400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-transform: translateX(10%);
       -o-transform: translateX(10%);
          transform: translateX(10%);
}

@media (min-width: 701px) {
  .c-event-slideshow__slide:nth-of-type(even) {
    -webkit-transform: translateX(50%);
         -o-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.c-event-slideshow__slide:nth-of-type(even)::before {
  content: '';
  display: block;
  background-color: #d8ba74;
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.c-event-slideshow__slide:nth-of-type(even) .c-event-slideshow__content {
  display: block;
}

.c-event-slideshow__slide:nth-of-type(even) .c-event-slideshow__content::before {
  bottom: 0;
}

.c-event-slideshow__slide:nth-of-type(even) .c-event-slideshow__content::after {
  top: 0;
}

.c-event-slideshow__slide p {
  font-weight: 400;
  font-size: var(--font-size-s, 18px);
  line-height: 1.62;
}

.c-event-slideshow .slick-slide {
  height: auto;
  min-height: 280px;
}

.c-event-slideshow .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 20px;
}

@media (min-width: 701px) {
  .c-event-slideshow .slick-track {
    padding-left: 300px;
  }
}

.c-event-slideshow__content {
  padding: 20px 60px 20px 20px;
  position: relative;
}

.c-event-slideshow__content::before {
  content: '';
  display: block;
  background-color: #d8ba74;
  width: 3px;
  height: 100%;
  position: absolute;
  right: 100%;
}

.c-event-slideshow__content::after {
  content: '';
  display: block;
  background-color: #d8ba74;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  position: absolute;
  right: 100%;
  -webkit-transform: translateX(6px);
       -o-transform: translateX(6px);
          transform: translateX(6px);
}

.c-event-slideshow .slick-arrow {
  text-indent: -99999px;
  background-repeat: no-repeat;
  width: 62px;
  height: 62px;
  background-color: transparent;
  position: absolute;
  padding: 0;
  top: 100%;
  left: 50%;
}

.c-event-slideshow .slick-arrow.slick-prev {
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
}

.c-event-slideshow .slick-arrow.slick-disabled {
  opacity: 0.5;
}

.c-event-slideshow.slick-initialized .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-accordion__group {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.c-accordion__answer {
  overflow: hidden;
  height: 0;
  -webkit-transform-origin: top;
       -o-transform-origin: top;
          transform-origin: top;
}

.c-accordion__answer p {
  margin-top: 20px;
}

.c-accordion__question {
  font-size: var(--font-size-m, 22px);
  font-family: "Assistant", sans-serif;
  position: relative;
  cursor: pointer;
  -webkit-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: color 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.c-accordion__question:hover {
  color: #d8ba74;
}

.c-accordion__question svg {
  margin-left: 40px;
  min-width: 31px;
  -webkit-transition: -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53), -o-transform 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transform: rotate(0deg);
       -o-transform: rotate(0deg);
          transform: rotate(0deg);
}

.shown .c-accordion__question svg {
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

.shown .c-accordion__answer {
  height: auto;
}

/* ------------------------------------ *\
    $PAGES
\* ------------------------------------ */

.screeners-page__title {
  text-align: center;
  color: #344a5f;
  margin-bottom: 0;
  padding-top: 80px;
}

.screeners-page__page-links {
  text-align: center;
  padding: 20px 0;
  position: sticky;
  top: -1px;
  background-color: #fff;
  z-index: 2;
}

@media (max-width: 699px) {
  .screeners-page__page-links {
    padding: 20px;
  }
}

.screeners-page__page-link {
  font-size: 20px;
  font-weight: bold;
  color: #d8ba74;
  margin-right: 20px;
  text-decoration-skip-ink: none;
}

.screeners-page__page-link:last-of-type::after {
  display: none;
}

.screeners-page__page-link::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 20px;
  border-radius: 50%;
  background-color: #d8ba74;
}

.screeners-page__content {
  background-color: #f6f5f1;
  padding: 40px 80px;
  margin-top: 20px;
}

.screeners-page__content .featured-text {
  color: #d8ba74;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 5px;
  scroll-margin-top: 100px;
}

.screeners-page__content h2 {
  font-family: "Assistant", sans-serif;
  margin-bottom: 40px;
}

.screeners-page__content h4:not(.c-accordion__question) {
  font-family: "Assistant", sans-serif;
  font-size: var(--font-size-s, 18px);
  margin-bottom: 20px;
}

.screeners-page__content p {
  margin-bottom: 40px;
}

.screeners-page__content .c-accordion__answer p {
  margin-bottom: 20px;
}

.screeners-page__content a {
  color: #000;
  font-weight: bold;
}

.screeners-page__content .c-accordion {
  padding: 0;
  margin: 30px 0 20px 0;
}

/* ------------------------------------ *\
    $VENDORS
\* ------------------------------------ */

/*!
    Blueprint CSS 3.1.1
    https://blueprintcss.dev
    License MIT 2019
*/

[bp~='container'] {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  max-width: 1120px;
}

[bp~='container-xl'] {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  max-width: 1200px;
}

[bp~='container-half'] {
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
  max-width: 560px;
}

[bp~='grid'] {
  display: grid !important;
  grid-gap: 20px;
  grid-template-columns: repeat(12, 1fr);
}

[bp~='vertical-start'] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

[bp~='vertical-center'] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

[bp~='vertical-end'] {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

[bp~='between'] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

[bp~='center-all'] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

[bp~='gap-none'] {
  grid-gap: 0;
  margin-bottom: 0;
}

[bp~='gap-column-none'] {
  grid-column-gap: 0;
}

[bp~='gap-row-none'] {
  grid-row-gap: 0;
  margin-bottom: 0;
}

[bp~='first'] {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

[bp~='last'] {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

[bp~='hide'] {
  display: none !important;
}

[bp~='show'] {
  display: initial !important;
}

[bp~='grid'][bp*='@'] {
  grid-template-columns: 12fr;
}

[bp~='grid'][bp*='@sm'],
[bp~='grid'][bp*='@md'],
[bp~='grid'][bp*='@lg'],
[bp~='grid'][bp*='@xl'] {
  grid-template-columns: 12fr;
}

[bp~='1@sm'],
[bp~='1@md'],
[bp~='1@lg'],
[bp~='1@xl'],
[bp~='2@sm'],
[bp~='2@md'],
[bp~='2@lg'],
[bp~='2@xl'],
[bp~='3@sm'],
[bp~='3@md'],
[bp~='3@lg'],
[bp~='3@xl'],
[bp~='4@sm'],
[bp~='4@md'],
[bp~='4@lg'],
[bp~='4@xl'],
[bp~='5@sm'],
[bp~='5@md'],
[bp~='5@lg'],
[bp~='5@xl'],
[bp~='6@sm'],
[bp~='6@md'],
[bp~='6@lg'],
[bp~='6@xl'],
[bp~='7@sm'],
[bp~='7@md'],
[bp~='7@lg'],
[bp~='7@xl'],
[bp~='8@sm'],
[bp~='8@md'],
[bp~='8@lg'],
[bp~='8@xl'],
[bp~='9@sm'],
[bp~='9@md'],
[bp~='9@lg'],
[bp~='9@xl'],
[bp~='10@sm'],
[bp~='10@md'],
[bp~='10@lg'],
[bp~='10@xl'],
[bp~='11@sm'],
[bp~='11@md'],
[bp~='11@lg'],
[bp~='11@xl'],
[bp~='12@sm'],
[bp~='12@md'],
[bp~='12@lg'],
[bp~='12@xl'] {
  grid-column: span 12;
}

[bp~='grid'][bp~='1'] {
  grid-template-columns: repeat(12, 1fr);
}

[bp~='1'] {
  grid-column: span 1/span 1;
}

[bp~='grid'][bp~='2'] {
  grid-template-columns: repeat(6, 1fr);
}

[bp~='2'] {
  grid-column: span 2/span 2;
}

[bp~='grid'][bp~='3'] {
  grid-template-columns: repeat(4, 1fr);
}

[bp~='3'] {
  grid-column: span 3/span 3;
}

[bp~='grid'][bp~='4'] {
  grid-template-columns: repeat(3, 1fr);
}

[bp~='4'] {
  grid-column: span 4/span 4;
}

[bp~='grid'][bp~='5'] {
  grid-template-columns: repeat(2.4, 1fr);
}

[bp~='5'] {
  grid-column: span 5/span 5;
}

[bp~='grid'][bp~='6'] {
  grid-template-columns: repeat(2, 1fr);
}

[bp~='6'] {
  grid-column: span 6/span 6;
}

[bp~='grid'][bp~='7'] {
  grid-template-columns: repeat(1.71429, 1fr);
}

[bp~='7'] {
  grid-column: span 7/span 7;
}

[bp~='grid'][bp~='8'] {
  grid-template-columns: repeat(1.5, 1fr);
}

[bp~='8'] {
  grid-column: span 8/span 8;
}

[bp~='grid'][bp~='9'] {
  grid-template-columns: repeat(1.33333, 1fr);
}

[bp~='9'] {
  grid-column: span 9/span 9;
}

[bp~='grid'][bp~='10'] {
  grid-template-columns: repeat(1.2, 1fr);
}

[bp~='10'] {
  grid-column: span 10/span 10;
}

[bp~='grid'][bp~='11'] {
  grid-template-columns: repeat(1.09091, 1fr);
}

[bp~='11'] {
  grid-column: span 11/span 11;
}

[bp~='grid'][bp~='12'] {
  grid-template-columns: repeat(1, 1fr);
}

[bp~='12'] {
  grid-column: span 12/span 12;
}

[bp~='offset-1'] {
  grid-column-start: 1;
}

[bp~='offset-2'] {
  grid-column-start: 2;
}

[bp~='offset-3'] {
  grid-column-start: 3;
}

[bp~='offset-4'] {
  grid-column-start: 4;
}

[bp~='offset-5'] {
  grid-column-start: 5;
}

[bp~='offset-6'] {
  grid-column-start: 6;
}

[bp~='offset-7'] {
  grid-column-start: 7;
}

[bp~='offset-8'] {
  grid-column-start: 8;
}

[bp~='offset-9'] {
  grid-column-start: 9;
}

[bp~='offset-10'] {
  grid-column-start: 10;
}

[bp~='offset-11'] {
  grid-column-start: 11;
}

[bp~='offset-12'] {
  grid-column-start: 12;
}

@media (min-width: 414px) {
  [bp~='grid'][bp~='1@sm'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@sm'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@sm'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@sm'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@sm'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@sm'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@sm'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@sm'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@sm'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@sm'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@sm'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@sm'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@sm'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@sm'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@sm'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@sm'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@sm'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@sm'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@sm'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@sm'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@sm'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@sm'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@sm'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@sm'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@sm'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@sm'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@sm'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@sm'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@sm'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@sm'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@sm'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@sm'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@sm'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@sm'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@sm'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@sm'] {
    grid-column-start: 12;
  }

  [bp~='hide@sm'] {
    display: none !important;
  }

  [bp~='show@sm'] {
    display: initial !important;
  }

  [bp~='first@sm'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@sm'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

@media (min-width: 768px) {
  [bp~='grid'][bp~='1@md'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@md'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@md'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@md'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@md'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@md'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@md'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@md'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@md'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@md'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@md'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@md'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@md'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@md'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@md'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@md'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@md'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@md'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@md'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@md'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@md'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@md'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@md'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@md'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@md'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@md'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@md'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@md'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@md'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@md'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@md'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@md'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@md'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@md'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@md'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@md'] {
    grid-column-start: 12;
  }

  [bp~='hide@md'] {
    display: none !important;
  }

  [bp~='show@md'] {
    display: initial !important;
  }

  [bp~='first@md'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@md'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

@media (min-width: 1024px) {
  [bp~='grid'][bp~='1@lg'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@lg'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@lg'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@lg'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@lg'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@lg'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@lg'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@lg'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@lg'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@lg'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@lg'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@lg'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@lg'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@lg'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@lg'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@lg'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@lg'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@lg'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@lg'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@lg'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@lg'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@lg'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@lg'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@lg'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@lg'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@lg'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@lg'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@lg'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@lg'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@lg'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@lg'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@lg'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@lg'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@lg'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@lg'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@lg'] {
    grid-column-start: 12;
  }

  [bp~='hide@lg'] {
    display: none !important;
  }

  [bp~='show@lg'] {
    display: initial !important;
  }

  [bp~='first@lg'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@lg'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

@media (min-width: 1440px) {
  [bp~='grid'][bp~='1@xl'] {
    grid-template-columns: repeat(12, 1fr);
  }

  [bp~='1@xl'] {
    grid-column: span 1/span 1;
  }

  [bp~='grid'][bp~='2@xl'] {
    grid-template-columns: repeat(6, 1fr);
  }

  [bp~='2@xl'] {
    grid-column: span 2/span 2;
  }

  [bp~='grid'][bp~='3@xl'] {
    grid-template-columns: repeat(4, 1fr);
  }

  [bp~='3@xl'] {
    grid-column: span 3/span 3;
  }

  [bp~='grid'][bp~='4@xl'] {
    grid-template-columns: repeat(3, 1fr);
  }

  [bp~='4@xl'] {
    grid-column: span 4/span 4;
  }

  [bp~='grid'][bp~='5@xl'] {
    grid-template-columns: repeat(2.4, 1fr);
  }

  [bp~='5@xl'] {
    grid-column: span 5/span 5;
  }

  [bp~='grid'][bp~='6@xl'] {
    grid-template-columns: repeat(2, 1fr);
  }

  [bp~='6@xl'] {
    grid-column: span 6/span 6;
  }

  [bp~='grid'][bp~='7@xl'] {
    grid-template-columns: repeat(1.71429, 1fr);
  }

  [bp~='7@xl'] {
    grid-column: span 7/span 7;
  }

  [bp~='grid'][bp~='8@xl'] {
    grid-template-columns: repeat(1.5, 1fr);
  }

  [bp~='8@xl'] {
    grid-column: span 8/span 8;
  }

  [bp~='grid'][bp~='9@xl'] {
    grid-template-columns: repeat(1.33333, 1fr);
  }

  [bp~='9@xl'] {
    grid-column: span 9/span 9;
  }

  [bp~='grid'][bp~='10@xl'] {
    grid-template-columns: repeat(1.2, 1fr);
  }

  [bp~='10@xl'] {
    grid-column: span 10/span 10;
  }

  [bp~='grid'][bp~='11@xl'] {
    grid-template-columns: repeat(1.09091, 1fr);
  }

  [bp~='11@xl'] {
    grid-column: span 11/span 11;
  }

  [bp~='grid'][bp~='12@xl'] {
    grid-template-columns: repeat(1, 1fr);
  }

  [bp~='12@xl'] {
    grid-column: span 12/span 12;
  }

  [bp~='offset-1@xl'] {
    grid-column-start: 1;
  }

  [bp~='offset-2@xl'] {
    grid-column-start: 2;
  }

  [bp~='offset-3@xl'] {
    grid-column-start: 3;
  }

  [bp~='offset-4@xl'] {
    grid-column-start: 4;
  }

  [bp~='offset-5@xl'] {
    grid-column-start: 5;
  }

  [bp~='offset-6@xl'] {
    grid-column-start: 6;
  }

  [bp~='offset-7@xl'] {
    grid-column-start: 7;
  }

  [bp~='offset-8@xl'] {
    grid-column-start: 8;
  }

  [bp~='offset-9@xl'] {
    grid-column-start: 9;
  }

  [bp~='offset-10@xl'] {
    grid-column-start: 10;
  }

  [bp~='offset-11@xl'] {
    grid-column-start: 11;
  }

  [bp~='offset-12@xl'] {
    grid-column-start: 12;
  }

  [bp~='hide@xl'] {
    display: none !important;
  }

  [bp~='show@xl'] {
    display: initial !important;
  }

  [bp~='first@xl'] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  [bp~='last@xl'] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}

[bp~='flex'] {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[bp~='fill'] {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  -ms-flex-preferred-size: 0%;
      flex-basis: 0%;
}

[bp~='fit'] {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

[bp~='float-center'] {
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
}

[bp~='float-left'] {
  float: left;
}

[bp~='float-right'] {
  float: right;
}

[bp~='clear-fix']::after {
  content: '';
  display: table;
  clear: both;
}

[bp~='text-left'] {
  text-align: left !important;
}

[bp~='text-right'] {
  text-align: right !important;
}

[bp~='text-center'] {
  text-align: center !important;
}

[bp~='1--max'] {
  max-width: 93.33333px !important;
}

[bp~='2--max'] {
  max-width: 186.66667px !important;
}

[bp~='3--max'] {
  max-width: 280px !important;
}

[bp~='4--max'] {
  max-width: 373.33333px !important;
}

[bp~='5--max'] {
  max-width: 466.66667px !important;
}

[bp~='6--max'] {
  max-width: 560px !important;
}

[bp~='7--max'] {
  max-width: 653.33333px !important;
}

[bp~='8--max'] {
  max-width: 746.66667px !important;
}

[bp~='9--max'] {
  max-width: 840px !important;
}

[bp~='10--max'] {
  max-width: 933.33333px !important;
}

[bp~='11--max'] {
  max-width: 1026.66667px !important;
}

[bp~='12--max'] {
  max-width: 1120px !important;
}

[bp~='full-width'] {
  width: 100%;
}

@media (max-width: 414px) {
  [bp~='full-width-until@sm'] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  [bp~='full-width-until@md'] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 1024px) {
  [bp~='full-width-until@lg'] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 1440px) {
  [bp~='full-width-until@xl'] {
    width: 100% !important;
    max-width: 100% !important;
  }
}

[bp~='margin--xs'] {
  margin: 4px !important;
}

[bp~='margin-top--xs'] {
  margin-top: 4px !important;
}

[bp~='margin-bottom--xs'] {
  margin-bottom: 4px !important;
}

[bp~='margin-right--xs'] {
  margin-right: 4px !important;
}

[bp~='margin-left--xs'] {
  margin-left: 4px !important;
}

[bp~='padding--xs'] {
  padding: 4px !important;
}

[bp~='padding-top--xs'] {
  padding-top: 4px !important;
}

[bp~='padding-bottom--xs'] {
  padding-bottom: 4px !important;
}

[bp~='padding-right--xs'] {
  padding-right: 4px !important;
}

[bp~='padding-left--xs'] {
  padding-left: 4px !important;
}

[bp~='margin--sm'] {
  margin: 8px !important;
}

[bp~='margin-top--sm'] {
  margin-top: 8px !important;
}

[bp~='margin-bottom--sm'] {
  margin-bottom: 8px !important;
}

[bp~='margin-right--sm'] {
  margin-right: 8px !important;
}

[bp~='margin-left--sm'] {
  margin-left: 8px !important;
}

[bp~='padding--sm'] {
  padding: 8px !important;
}

[bp~='padding-top--sm'] {
  padding-top: 8px !important;
}

[bp~='padding-bottom--sm'] {
  padding-bottom: 8px !important;
}

[bp~='padding-right--sm'] {
  padding-right: 8px !important;
}

[bp~='padding-left--sm'] {
  padding-left: 8px !important;
}

[bp~='margin'] {
  margin: 16px !important;
}

[bp~='margin-top'] {
  margin-top: 16px !important;
}

[bp~='margin-bottom'] {
  margin-bottom: 16px !important;
}

[bp~='margin-right'] {
  margin-right: 16px !important;
}

[bp~='margin-left'] {
  margin-left: 16px !important;
}

[bp~='padding'] {
  padding: 16px !important;
}

[bp~='padding-top'] {
  padding-top: 16px !important;
}

[bp~='padding-bottom'] {
  padding-bottom: 16px !important;
}

[bp~='padding-right'] {
  padding-right: 16px !important;
}

[bp~='padding-left'] {
  padding-left: 16px !important;
}

[bp~='margin--lg'] {
  margin: 24px !important;
}

[bp~='margin-top--lg'] {
  margin-top: 24px !important;
}

[bp~='margin-bottom--lg'] {
  margin-bottom: 24px !important;
}

[bp~='margin-right--lg'] {
  margin-right: 24px !important;
}

[bp~='margin-left--lg'] {
  margin-left: 24px !important;
}

[bp~='padding--lg'] {
  padding: 24px !important;
}

[bp~='padding-top--lg'] {
  padding-top: 24px !important;
}

[bp~='padding-bottom--lg'] {
  padding-bottom: 24px !important;
}

[bp~='padding-right--lg'] {
  padding-right: 24px !important;
}

[bp~='padding-left--lg'] {
  padding-left: 24px !important;
}

[bp~='margin--none'] {
  margin: 0 !important;
}

[bp~='margin-top--none'] {
  margin-top: 0 !important;
}

[bp~='margin-bottom--none'] {
  margin-bottom: 0 !important;
}

[bp~='margin-right--none'] {
  margin-right: 0 !important;
}

[bp~='margin-left--none'] {
  margin-left: 0 !important;
}

[bp~='padding--none'] {
  padding: 0 !important;
}

[bp~='padding-top--none'] {
  padding-top: 0 !important;
}

[bp~='padding-bottom--none'] {
  padding-bottom: 0 !important;
}

[bp~='padding-right--none'] {
  padding-right: 0 !important;
}

[bp~='padding-left--none'] {
  padding-left: 0 !important;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before,
.slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ------------------------------------ *\
    $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;
}

.u-reversed-out {
  color: #fff;
}

.u-reversed-out p,
.u-reversed-out h1 a,
.u-reversed-out h2 a,
.u-reversed-out h3 a {
  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;
  }
}

html::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background-size: cover;
  pointer-events: none;
  opacity: 0.1;
}

.o-catcher {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121c2d;
  opacity: 0.5;
  z-index: 100;
  cursor: pointer;
  -webkit-transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.o-catcher--off {
  opacity: 0;
  pointer-events: none;
}

.membersonly {
  position: absolute;
  left: -999px;
}

.membersonly.show {
  position: static;
  left: auto;
}

figure figcaption {
  -webkit-transform: translateY(2px);
       -o-transform: translateY(2px);
          transform: translateY(2px);
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: opacity 0.23s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

figure:hover figcaption {
  opacity: 1;
}

.member.show,
.non-member.show {
  display: block;
}

.member.hide,
.non-member.hide {
  display: none;
}

.big-menu-button.hide {
  display: none;
}


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