/* Required files */
/**
 | --------------------------------------------------------------------------------
 | Generic Colors
 | --------------------------------------------------------------------------------
 */
/**
 | --------------------------------------------------------------------------------
 | Object-specific colors
 | --------------------------------------------------------------------------------
 * $button-color, $button-color-hover, ...
 */
/**
 | --------------------------------------------------------------------------------
 | Tabbed Content colors
 | --------------------------------------------------------------------------------
 */
/**
 | --------------------------------------------------------------------------------
 | Breakpoints.
 | --------------------------------------------------------------------------------
 * Add a key and value then go make pancakes b/c you're done.
 * Usage: @include breakpoint('desktop') {...}
 */
/**
 | --------------------------------------------------------------------------------
 | Animations
 | --------------------------------------------------------------------------------
 * $fast, $slow ...
*/
/**
 | --------------------------------------------------------------------------------
 | Measurements
 | --------------------------------------------------------------------------------
 * Values you find yourself repeating should go here.
 */
/* @include transition(all 0.2s ease-in-out); */
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* @include border-radius(3px, 3px, 3px, 3px); */
/* @include flex(direction); */
/**
 * Feed in a string to set mobile breakpoint styles. Strings that
 * relate to breakpoints are defined ./_variables.scss.
 *
 * @param  String
 * @param  String - default: 'min'
 */
/* Typical styles for images that cover the entire container w/o repeating */
/**
 * Calculate the REM value.
 *
 * @param  String - ex: 12px
 * @return String - ex: 1rem
 */
/**
 * Calculate the font size and line height in REM units.
 *
 * @param  String - ex: 12px
 * @param  Int - default: 1.2
 */
/**
 * Image border overlay (CSUN)
 */
/**
 * Headline positioning on a "grid"
 */
.mobile-only {
  visibility: visible;
  position: relative;
}
@media screen and (min-width: 1030px) {
  .mobile-only {
    visibility: hidden !important;
    position: absolute !important;
  }
}

@media screen and (max-width: 1029px) {
  .desktop-only {
    visibility: hidden !important;
    position: absolute !important;
  }
}

.phone-only {
  visibility: visible;
}
@media only screen and (min-width: 768px) {
  .phone-only {
    visibility: hidden !important;
    position: absolute !important;
  }
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nostyle--link {
  color: inherit;
  text-decoration: none;
}

.fullwidth {
  width: calc(100% + 1.25rem * 2) !important;
  -webkit-transform: translateX(calc(1.25rem * -1)) !important;
          transform: translateX(calc(1.25rem * -1)) !important;
}
@media only screen and (min-width: 1030px) {
  .fullwidth {
    width: calc(100% + 1.875rem * 2) !important;
    -webkit-transform: translateX(calc(1.875rem * -1)) !important;
            transform: translateX(calc(1.875rem * -1)) !important;
  }
}

.shadow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* Global stuff */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*
 * Reference for current font sizes and line heights found here:
 * http://typecast.com/blog/a-more-modern-scale-for-web-typography
 */
body {
  font-family: "Gill Sans", "Gill Sans MT", "Calibri", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #000;
}

b, strong {
  font-weight: 700;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
}

h1 {
  font-size: 2.5rem;
  /* 2x body copy size = 32px */
  line-height: 1.25;
  /* 45px / 36px */
  text-indent: -2px;
  letter-spacing: -2px;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
    /* 2.5x body copy size = 40px */
    line-height: 1.125;
  }
}
@media only screen and (min-width: 1030px) {
  h1 {
    font-size: 3.25rem;
    /* 3x body copy size = 48px */
    line-height: 1.05;
    /* keep to a multiple of the 20px line height
    and something more appropriate for display headings */
  }
}

h2 {
  font-size: 1.8rem;
  /* 1.625x body copy size = 26px */
  line-height: 1.15384615;
  /* 30px / 26px */
  text-indent: -2px;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 2rem;
    /* 2x body copy size = 32px */
    line-height: 1.15;
  }
}
@media only screen and (min-width: 1030px) {
  h2 {
    font-size: 2.25rem;
    /* 2.25x body copy size = 36px */
    line-height: 1.15;
  }
}

h3 {
  font-size: 1.475em;
  line-height: 1.13636364;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 1.5em;
    line-height: 1.25;
  }
}
@media only screen and (min-width: 1030px) {
  h3 {
    font-size: 1.75em;
    line-height: 1.25;
  }
}

h4 {
  font-size: 1.125em;
  /* 1.125x body copy size = 18px */
  line-height: 1.11111111;
}
@media only screen and (min-width: 768px) {
  h4 {
    line-height: 1.22222222;
    /* (22px / 18px */
  }
}

p,
li {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.9375rem;
}

main a:hover {
  color: #000;
  text-decoration: underline;
}

.btn, .gform_button, .button {
  display: inline-block;
  position: relative;
  font-size: 0.9rem;
  text-decoration: none !important;
  text-transform: uppercase;
  text-align: center;
  text-shadow: none;
  line-height: 1.5;
  padding: 0.35rem 1.5rem !important;
  cursor: pointer;
  background-color: #fdb915;
  vertical-align: middle;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
}

#mc_embed_signup {
  margin: 0 auto;
  background: none !important;
  width: 100% !important;
  max-width: 650px;
}
#mc_embed_signup input {
  border: none !important;
}
#mc_embed_signup .asterisk {
  position: absolute !important;
  top: -5px !important;
}
#mc_embed_signup #mc_embed_signup_scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mc_embed_signup label, #mc_embed_signup .helper_text {
  color: #fff !important;
  background: none !important;
}
#mc_embed_signup .helper_text {
  display: none !important;
}
#mc_embed_signup #mc-embedded-subscribe, #mc_embed_signup .button {
  background-color: #000;
  text-transform: uppercase;
  margin: 1rem 0 0 0 !important;
  line-height: 1 !important;
  padding: 0.75rem 4rem !important;
  height: auto !important;
  text-align: center;
  color: #fff;
  border: none !important;
}
#mc_embed_signup #mc-embedded-subscribe:hover, #mc_embed_signup .button:hover {
  color: #000;
  background-color: #fff;
}
#mc_embed_signup .mc-field-group__container {
  width: 100%;
  max-width: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  #mc_embed_signup .mc-field-group__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#mc_embed_signup .mc-field-group__container .mc-field-group:first-of-type {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  #mc_embed_signup .mc-field-group__container .mc-field-group:first-of-type {
    margin-bottom: 0;
  }
}
#mc_embed_signup .mc-field-group__container br {
  display: none;
}
#mc_embed_signup .mc-field-group__container label {
  margin-bottom: 0.5rem !important;
  font-weight: bold;
  padding-left: 0.5rem;
}
#mc_embed_signup .mc-field-group {
  width: 100%;
  height: auto !important;
}
@media only screen and (min-width: 768px) {
  #mc_embed_signup .mc-field-group {
    width: calc(50% - 1rem);
  }
}
#mc_embed_signup .mc-field-group input {
  border-radius: 6px;
  padding: 0.75rem !important;
  width: 100%;
  max-width: 100%;
}
#mc_embed_signup .mc-field-group:first-of-type {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  #mc_embed_signup .mc-field-group:first-of-type {
    margin-right: 1rem;
  }
}

/* necessary for responsive table */
.table-wrapper {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.table-wrapper::-webkit-scrollbar {
  display: none;
}

table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table {
  width: 100%;
  margin-bottom: 1.5rem;
}

table th,
table td {
  padding: 0.47rem;
  text-align: left;
  border-top: 1px solid #b8b8b8;
}

table th {
  font-weight: bold;
  vertical-align: bottom;
}

table td {
  vertical-align: top;
}

table tr:first-child th,
table tr:first-child td {
  border-top: 0;
}

table tr:last-child th,
table tr:last-child td {
  border-bottom: 1px solid #b8b8b8;
}

table tbody + tbody {
  border-top: 2px solid #b8b8b8;
}

.table-condensed th,
.table-condensed td {
  padding: 0.29rem;
}

.table-bordered {
  border: 1px solid #b8b8b8;
  border-collapse: separate;
  *border-collapse: collapsed;
  border-radius: 0.47rem;
}

.table-bordered th + th,
.table-bordered td + td,
.table-bordered th + td,
.table-bordered td + th {
  border-left: 1px solid #b8b8b8;
}

.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}

.table-bordered thead:first-child tr:first-child th:first-child,
.table-bordered tbody:first-child tr:first-child td:first-child {
  border-radius: 0.47rem 0 0 0;
}

.table-bordered thead:first-child tr:first-child th:last-child,
.table-bordered tbody:first-child tr:first-child td:last-child {
  border-radius: 0 0.47rem 0 0;
}

.table-bordered thead:last-child tr:last-child th:first-child,
.table-bordered tbody:last-child tr:last-child td:first-child {
  border-radius: 0 0 0 0.47rem;
}

.table-bordered thead:last-child tr:last-child th:last-child,
.table-bordered tbody:last-child tr:last-child td:last-child {
  border-radius: 0 0 0.47rem 0;
}

* {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-size: 1rem;
  background: #fff;
  margin: 0;
}
@media only screen and (max-width: 1029px) {
  body.locked {
    overflow: hidden;
  }
}

.row {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.block {
  padding: 1rem;
}
@media only screen and (min-width: 768px) {
  .block {
    padding: 2rem 0;
  }
}

.auto-margin {
  margin: 0 auto;
}

.slick-autoplay-toggle-button {
  display: none;
}

body > div.content > div.landing {
  padding: 0 1.25rem;
}
@media only screen and (min-width: 1030px) {
  body > div.content > div.landing {
    padding: 0 1.875rem;
  }
}

embed,
iframe,
object {
  max-width: 100%;
}

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

ul li, ol li {
  line-height: 1.8rem;
}
ul ul, ol ul {
  list-style-type: disc;
}
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bottom-separator {
  border-bottom: 5px solid #fdb915;
  width: 5rem;
}

.triangle-red {
  display: none;
}
@media screen and (min-width: 1024px) {
  .triangle-red {
    position: absolute;
    left: 13.75rem;
    bottom: -6.75rem;
    transform: translateX(-35%);
    -webkit-transform: translateX(-35%);
    display: block;
  }
}
@media only screen and (min-width: 1030px) {
  .triangle-red {
    left: 5rem;
    bottom: -8.75rem;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
  }
}
.triangle-red .arrow-down {
  width: 0;
  height: 0;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-top: 35px solid #ca4955;
}

.triangle-gray {
  position: absolute;
  left: 25%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -2.18rem;
}
@media only screen and (min-width: 768px) {
  .triangle-gray {
    left: 23%;
  }
}
.triangle-gray .arrow-down {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 35px solid #f5f5f4;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.125rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/* Partials */
.logo-bar {
  position: relative;
  padding: 0;
  border-bottom: 4px solid #f5f5f4;
  margin-bottom: 1.5rem;
}
.logo-bar__primary {
  max-width: 1190px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .logo-bar__primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (min-width: 1030px) {
  .logo-bar__primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.logo-bar__primary img {
  max-width: 250px;
  height: auto;
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .logo-bar__primary img {
    padding: 1rem;
  }
}
.logo-bar__primary #primaryNav ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .logo-bar__primary #primaryNav ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 1030px) {
  .logo-bar__primary #primaryNav ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.logo-bar__primary #primaryNav ul li {
  padding: 5px;
  font-weight: bold;
}
.logo-bar__primary #primaryNav ul li:nth-child(2) ::before {
  content: "|";
  padding-left: 0;
  padding-right: 0.75rem;
  color: #000;
}
.logo-bar__primary #primaryNav ul li:nth-child(2) ::before:hover {
  color: #000;
}
.logo-bar__primary #primaryNav ul li:nth-child(2) ::after {
  content: "|";
  padding-left: 0.75rem;
  padding-right: 0;
  color: #000;
}
.logo-bar__primary #primaryNav ul li:nth-child(2) ::after:hover {
  color: #000;
}
.logo-bar__primary #primaryNav ul li a {
  text-decoration: none;
}
.logo-bar__primary #primaryNav ul li a:hover {
  color: #b92330;
}
.logo-bar__primary #primaryNav ul li .active-menu-item {
  color: #fdb915;
  text-decoration: underline;
  font-weight: bold;
}

.site-footer {
  background-color: #f5f5f4;
  padding: 2rem 0;
}
.site-footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  list-style-type: none;
  padding: 0;
}
.site-footer li {
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .site-footer li {
    -ms-flex-preferred-size: calc(33% - 10px);
        flex-basis: calc(33% - 10px);
  }
}
@media only screen and (min-width: 1030px) {
  .site-footer li {
    -ms-flex-preferred-size: calc(16.666% - 10px);
        flex-basis: calc(16.666% - 10px);
  }
}
.site-footer li a img {
  opacity: 0.6;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  max-width: 100%;
  width: auto;
  max-height: 70px;
}
.site-footer li a img:hover {
  opacity: 1;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  cursor: pointer;
}
.site-footer .site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}
.site-footer .site-logo a img {
  width: 100%;
  max-width: 250px;
}

/* Components */
.hero {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
.hero__inner {
  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;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .hero__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.hero__inner .hero__image {
  position: relative;
}
@media only screen and (min-width: 1030px) {
  .hero__inner .hero__image {
    width: 25%;
  }
}
.hero__inner .hero__image img {
  padding: 0.5rem;
}
@media only screen and (min-width: 1030px) {
  .hero__inner .hero__image img {
    max-width: 450px;
  }
}
@media only screen and (min-width: 768px) {
  .hero__inner .hero__image {
    padding: 0 1rem;
  }
}
.hero__inner .hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1030px) {
  .hero__inner .hero__content {
    text-align: left;
  }
}
.hero__inner .hero__content-inner {
  padding: 0 1rem 2rem 1rem;
  text-align: left;
  margin: 0 auto;
}
.hero__inner .hero__content-inner h1 {
  width: 80%;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 2rem;
}
.hero h1 {
  text-transform: uppercase;
}
.hero p {
  color: #000;
  max-width: 600px;
  padding: 1rem 0;
}

.video-content {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .video-content {
    padding: 0 1rem;
  }
}
.video-content__wrapper {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  .video-content__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  .video-content__wrapper {
    padding: 0 2.5rem;
  }
}
.video-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .video-content__inner {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 1030px) {
  .video-content__inner {
    max-width: 310px;
    padding: 0 2.5rem;
  }
}
.video-content__inner h5 {
  font-size: 1rem;
  text-align: left;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.video-content__inner p {
  padding: 0;
  margin: 0;
}
.video-content__video {
  position: relative;
  max-width: 100%;
  padding-top: 15px;
}
.video-content__video .play-button {
  max-width: 60px;
  position: absolute;
  top: 32%;
  left: 44%;
  z-index: 1;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .video-content__video .play-button {
    max-width: 60px;
  }
}
@media only screen and (min-width: 1030px) {
  .video-content__video .play-button {
    max-width: 100px;
    top: 38%;
    left: 44%;
  }
}
.video-content__video img {
  width: 100%;
  max-width: 100%;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .video-content__video img {
    width: 300px;
    max-width: 300px;
  }
}
@media only screen and (min-width: 1030px) {
  .video-content__video img {
    margin-top: 0.5rem;
    padding: 0rem;
    width: 100%;
    max-width: 100%;
  }
}
.video-content__image {
  margin-top: 4rem;
  height: 300px;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
}
@media only screen and (min-width: 768px) {
  .video-content__image {
    display: block;
    height: 200px;
  }
}
.video-content .modal-content {
  max-width: 906px;
}
.video-content .modal-video {
  padding-top: 0;
  z-index: 999;
}
.video-content .small-videos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /* Aligns items to the left */
  overflow-x: auto; /* Adds horizontal scroll if necessary */
  padding: 25px 0 0;
  position: relative;
}
@media only screen and (min-width: 1030px) {
  .video-content .small-videos {
    padding: 25px 40px 0;
  }
}
.video-content .small-video-item {
  -ms-flex-negative: 0;
      flex-shrink: 0; /* Prevents the small videos from shrinking */
  cursor: pointer;
  background-color: #000;
  position: relative; /* To position the title absolutely inside it */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* Centers content horizontally */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* Centers content vertically */
  height: 200px; /* Set a fixed height for the item to align the title properly */
  width: 366px; /* Example width for the item */
}
.video-content .small-video-item .small-video-title {
  position: absolute;
  color: #fff;
  font-weight: bold;
  z-index: 999;
  text-align: center;
  width: 100%; /* Make the title take the full width of the container */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; /* Stack title and play button vertically */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* Center both horizontally */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* Center both vertically */
  gap: 10px; /* Adds space between the title and the button */
}
.video-content .small-video-item .small-video-title .small-video-button {
  max-width: 50px;
  height: auto;
  display: block;
  opacity: 1;
}
.video-content .small-video-item img {
  max-width: 380px; /* Set width for the thumbnails */
  height: auto; /* Ensure the aspect ratio is maintained */
  display: block;
  opacity: 0.6;
}

.video-slider {
  margin-top: 0;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .video-slider {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media only screen and (min-width: 1030px) {
  .video-slider {
    padding-top: 3rem;
  }
}
.video-slider__inner {
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 3.15rem;
}
.video-slider__slider {
  margin-bottom: 0 !important;
}
.video-slider__slider .slick-list {
  padding: 0.25rem 0;
  margin: 0 -10px;
  height: 185px;
}
@media screen and (min-width: 1024px) {
  .video-slider__slider .slick-list {
    width: 1280px;
  }
}
@media only screen and (min-width: 1030px) {
  .video-slider__slider .slick-list {
    width: 1240px;
  }
}
.video-slider__slider .slick-arrow {
  position: absolute;
  z-index: 1;
  font-size: 2rem;
  color: #000;
  width: 25px;
  height: 100%;
  background-color: #fff;
}
.video-slider__slider .slick-arrow i {
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.video-slider__slider .slick-next {
  right: -25px;
}
.video-slider__slider .slick-prev {
  left: -25px;
}
.video-slider__slider .slick-slide {
  width: 100%;
  margin-right: 2px;
}
@media only screen and (min-width: 1030px) {
  .video-slider__slider .slick-slide {
    margin-right: 0;
    width: 405px !important;
  }
}
.video-slider__slide {
  background-color: #fff;
  overflow: visible;
}
.video-slider__slide-image {
  width: 100%;
  height: 180px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.video-slider__slide-image__overlay {
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.video-slider__slide-image a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8em;
}
.video-slider__slide-image a .play-button {
  max-width: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video-slider__slide-image a .video-silder__slide-title {
  text-align: center;
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}
.video-slider__slide-image a:hover {
  text-decoration: none;
  color: #fff;
}
.video-slider .modal {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.35s ease-in;
  transition: all 0.35s ease-in;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  z-index: 10;
  height: 100vh;
  max-width: 100vw;
}
.video-slider .modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video-slider .modal__header button {
  border: none;
  background: none;
}
.video-slider .modal__header button:hover {
  cursor: pointer;
}
.video-slider .modal__header button i {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  color: #fff;
  font-size: 2rem;
}
.video-slider .modal__dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .video-slider .modal__dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 1030px) {
  .video-slider .modal__dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
}
.video-slider .modal.is-visible {
  visibility: visible;
  opacity: 1;
}

#body.is-visible {
  position: inherit;
  overflow: visible;
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create four equal columns that floats next to eachother */
.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal-video {
  display: none;
  position: fixed;
  z-index: 9;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.75);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #f5f5f4;
  margin: auto;
  padding: 0;
  width: 100%;
  max-width: 550px;
  top: 10rem;
}

/* The Close Button */
.close {
  color: #fff;
  position: absolute;
  top: -4rem;
  right: -0.25rem;
  font-size: 3rem;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #f5f5f4;
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
.video {
  display: none;
  background-color: #000;
}

.active {
  opacity: 1;
}

img.hover-shadow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hover-shadow:hover {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.intro-content {
  height: 130px;
  margin-top: -3.25rem;
  background-color: #ca4955;
  z-index: 0;
  position: relative;
}
@media only screen and (min-width: 1030px) {
  .intro-content {
    height: 160px;
  }
}
@media screen and (width: 768px) {
  .intro-content .ticker {
    margin-top: -2.25rem;
  }
}
.intro-content .ticker .gs_logo_single {
  padding: 10px 16px;
}

.image-content {
  max-width: 1240px;
  margin: 2rem auto;
}
@media only screen and (min-width: 768px) {
  .image-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2rem 1rem;
  }
}
.image-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -2.25rem;
}
@media only screen and (min-width: 768px) {
  .image-content__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.image-content__inner.row {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .image-content__inner.row {
    padding-left: 0;
  }
}
.image-content__inner:nth-of-type(odd).row {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .image-content__inner:nth-of-type(odd).row {
    padding-right: 0;
  }
}
.image-content__inner:nth-of-type(odd) .image-content__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-right: 0;
  margin-left: 0;
}
@media only screen and (min-width: 768px) {
  .image-content__inner:nth-of-type(odd) .image-content__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.image-content__inner:nth-of-type(odd) .image-content__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 768px) {
  .image-content__inner:nth-of-type(odd) .image-content__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.image-content__inner:last-of-type {
  margin-bottom: 0 !important;
}
.image-content__block {
  width: 100%;
  height: 350px;
}
@media only screen and (min-width: 768px) {
  .image-content__block {
    width: 50%;
    height: 350px;
  }
}
@media only screen and (min-width: 1030px) {
  .image-content__block {
    height: auto;
  }
}
.image-content__image {
  margin-left: 0;
}
.image-content__image-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 350px;
  display: block;
}
@media only screen and (min-width: 768px) {
  .image-content__image-img {
    height: 350px;
  }
}
@media only screen and (min-width: 1030px) {
  .image-content__image-img {
    background-size: cover;
    height: 450px;
  }
}
.image-content__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 768px) {
  .image-content__content {
    height: 350px;
    padding: 0;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1030px) {
  .image-content__content {
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.image-content__content p {
  font-size: 1.25rem;
  line-height: 2rem;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
  width: 355px;
}
@media only screen and (min-width: 1030px) {
  .image-content__content p {
    text-align: left;
    font-size: 1.75rem;
    line-height: 2.25rem;
    letter-spacing: 2px;
    width: 375px;
  }
}

.flip-boxes {
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .flip-boxes {
    padding: 3rem 1rem;
  }
}
.flip-boxes h2 {
  margin-bottom: 2rem;
}
.flip-boxes__wrapper {
  width: 100%;
  background-color: #f5f5f4;
}
.flip-boxes__wrapper__content {
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
  background-color: #f5f5f4;
}
@media only screen and (min-width: 1030px) {
  .flip-boxes__wrapper__content {
    margin: 0 auto 5rem;
  }
}
.flip-boxes__wrapper__content h3 {
  font-style: italic;
  color: #b92330;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2rem;
}
.flip-boxes__wrapper__content p {
  padding: 1rem 0;
}
.flip-boxes__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .flip-boxes__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media only screen and (min-width: 1030px) {
  .flip-boxes__boxes {
    padding: 0.5rem 2.5rem;
  }
}
.flip-boxes__box {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .flip-boxes__box {
    width: 50%;
  }
}
.flip-boxes__box:before {
  content: "";
  background-color: inherit;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.flip-boxes__box h3 {
  display: block;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  width: 225px;
  text-align: center;
  margin: 0 auto;
}
.flip-boxes__box-content {
  display: none;
}
.flip-boxes__box:hover {
  background-color: transparent;
  background-image: unset !important;
}
.flip-boxes__box:hover h3 {
  display: none;
}
.flip-boxes__box:hover .flip-boxes__box-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem;
  background-size: cover;
  min-height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.flip-boxes__box #flip-1 .flip-overlay {
  background-color: #fff;
  height: 100%;
  min-height: 300px;
  width: 100%;
  position: absolute;
  opacity: 0.8;
}
.flip-boxes__box #flip-2 {
  color: #fff;
}
.flip-boxes__box #flip-2 .flip-overlay {
  background-color: #b92330;
  height: 100%;
  min-height: 300px;
  width: 100%;
  position: absolute;
  opacity: 0.8;
}
.flip-boxes__box #flip-3 .flip-overlay {
  background-color: #fdb915;
  height: 100%;
  min-height: 300px;
  width: 100%;
  position: absolute;
  opacity: 0.8;
}
.flip-boxes__box #flip-4 {
  color: #fff;
}
.flip-boxes__box #flip-4 .flip-overlay {
  background-color: #000;
  height: 100%;
  min-height: 300px;
  width: 100%;
  position: absolute;
  opacity: 0.8;
}

.heading-break {
  padding: 1rem 0;
  background-color: #f5f5f4;
  z-index: 0;
  position: relative;
}
.heading-break__wrapper {
  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 only screen and (min-width: 1030px) {
  .heading-break__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.heading-break__inner {
  text-align: left;
  margin: 0;
  padding: 0 1rem;
  width: 100%;
  background-color: #f5f5f4;
}
@media only screen and (min-width: 1030px) {
  .heading-break__inner {
    margin-left: -1rem;
    padding: 0 3.75rem;
    width: 79%;
  }
}
.heading-break h3 {
  color: #000;
  text-transform: uppercase;
  font-style: italic;
  padding-top: 1rem;
  letter-spacing: 2px;
  font-size: 1.75rem;
}
@media only screen and (min-width: 1030px) {
  .heading-break h3 {
    width: 65%;
    font-size: 2rem;
  }
}
.heading-break p {
  color: #000;
  font-size: 1rem;
  letter-spacing: 1px;
  padding-top: 1rem;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .heading-break p {
    max-width: 75%;
  }
}
@media only screen and (min-width: 1030px) {
  .heading-break p {
    max-width: 50%;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #b92330;
  margin-top: 1rem;
}
.social__inner h3, .social__inner p {
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin: 0 auto;
}
.social__inner h3 {
  text-transform: uppercase;
  font-weight: 800;
  font-style: italic;
  font-size: 2rem;
}
.social__inner p {
  max-width: 500px;
}
.social__feed {
  text-align: center;
  color: #fff;
}
.social__join {
  text-align: center;
  margin-top: 3rem;
}
.social__join a {
  background-color: #fdb915;
  padding: 0.25rem 1rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}

.elfsight-app-6ce1431c-ab5f-47e7-8227-754c72dab075 {
  padding: 1rem;
}

.map-content__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .map-content__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.map-content__content {
  width: 600px;
  padding-top: 1rem;
  padding-left: 0.25rem;
}
@media only screen and (min-width: 1030px) {
  .map-content__content {
    margin-top: 6rem;
  }
}
.map-content__content h5 {
  font-size: 1.15rem;
  padding: 0;
  margin: 0;
  font-weight: bold;
}
.map-content__content p {
  letter-spacing: 0.5px;
}
.map-content__image {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .map-content__image {
    display: block;
  }
}

/* Make printing pages nice and tidy */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: none !important;
            filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}