@charset "UTF-8";
/* ******************************************************
   Main Import File
        - Variables / Utilities / Globals
        - Components (Navigation/Tools/Modules)
        - Vendor Imports (Third party plugins)
        - Overwrite Imports (Print/admin)
   ****************************************************** */
/* ================================================================
   Variables / Utilities / Globals
   ================================================================ */
/* ================================================================
   Variables
   ================================================================ */
/* ================================================================
   MIXINS
   ================================================================ */
/* ================================================================
   REM Mixin
   ================================================================ */
/* ================================================================
   CLEARFIX MIXIN

   - EXAMPLE:

   div {
     @include clearfix;
   }
   ================================================================ */
/* ================================================================
RESET STYLES BUTTON MIXIN

- EXAMPLE:

button {
  @include resetBtn;
}
================================================================ */
/* ================================================================
RESET STYLES LIST MIXIN

- EXAMPLE:

ul {
  @include resetList;
}
================================================================ */
/* ================================================================
INPUT PLACEHOLDER MIXIN

- EXAMPLE:

input {
  @include placeholder {
    color: red;
    opacity: 1;
  }
}
================================================================ */
/* ================================================================
   PSUEDO MIXIN

   - EXAMPLE:

   div::after {
     @include pseudo;
     top: -1rem; left: -1rem;
   }
   ================================================================ */
/* ================================================================
   Breakpoint mixin
   ================================================================ */
/* ================================================================
   CUSTOM
   ================================================================ */
/*! normalize.css v7.0.0 | 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
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  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
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: "Lato", sans-serif;
  /* 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * 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 {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  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.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[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 IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

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

/* ================================================================
   Boilerplate - Base Styles
   ================================================================ */
html, button, input, select, textarea {
  color: #3A3A3A;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
  overflow-y: scroll;
  background: #fff;
}

::selection {
  background: #194F90;
  color: #fff;
  text-shadow: none;
}

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

hr {
  display: block;
  margin: 1em 0;
  padding: 0;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
}

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

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

.image-fluid, .image-fluid img {
  max-width: none;
  width: 100%;
  height: auto;
}

.image-fixed, .image-fixed img {
  max-width: none;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden,
.visually-hidden,
.visuallyHidden,
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
  transition: none;
}
.visuallyhidden.focusable:focus,
.visually-hidden.focusable:focus,
.visuallyHidden.focusable:focus,
.sr-only.focusable:focus {
  position: fixed;
  top: 0;
  left: 0;
  background: #194F90;
  color: #fff;
  overflow: visible;
  clip: auto;
  margin: 0;
  width: 100%;
  height: auto;
  border: 1px dashed #fff;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  z-index: 9001;
}

.invisible {
  visibility: hidden;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.dsk-only,
.dsk-only-inline {
  display: none !important;
}

.dsk-only-flex {
  display: none !important;
}

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

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

@media (min-width: 60em) {
  .dsk-only {
    display: block !important;
  }
  .dsk-only-inline {
    display: inline !important;
  }
  .dsk-only-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .mb-only {
    display: none !important;
  }
  .align-center-dsk {
    text-align: center;
  }
  .align-right-dsk {
    text-align: right;
  }
  .align-left-dsk {
    text-align: left;
  }
}
.breakforprint {
  page-break-after: always;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

figure {
  margin: 1em 0;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ================================================================
   Talon Util Boilerplate Additions
   ================================================================ */
.js-click-user *:focus, .js-click-user *:active {
  outline: 0;
}

.scroll-cover {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: auto !important;
  z-index: 10000;
}

.svg-legend {
  position: absolute;
  top: -9999em;
  left: -9999em;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg.icon {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.video {
  position: relative;
  display: block;
}
.video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video iframe,
.video embed,
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

iframe {
  border: 0;
  width: 100%;
  aspect-ratio: 930/523;
}

.lazy-img, .lazy-bg {
  opacity: 0;
  transition: opacity 0.18s ease-in-out;
}
.lazy-img.inView, .lazy-bg.inView {
  opacity: 1;
}
.no-js .lazy-img, .no-js .lazy-bg {
  display: none;
}

.color-primary {
  color: #194F90;
}

.color-secondary {
  color: #B92227;
}

@media (prefers-reduced-motion: reduce) {
  *:not([class*=swiper]),
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
/* ================================================================
   BOOTSTRAP GRID
   ================================================================ */
.row {
  margin-left: -1.25em;
  margin-right: -1.25em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-md-20, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 1.25em;
  padding-right: 1.25em;
  width: 100%;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-md-12 {
  width: 100%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 48em) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 60em) {
  .col-md-1, .col-md-2, .col-md-20, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-20 {
    width: 20%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 71.25em) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
/* ================================================================
   Typography Styles
   ================================================================ */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0 0 15px;
  font-family: "Montserrat", sans-serif;
}

h1, .h1 {
  font-size: 36px;
  font-size: 2.25rem;
}

h2, .h2 {
  font-size: 28px;
  font-size: 1.75rem;
}

h3, .h3 {
  font-size: 24px;
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 18px;
  font-size: 1.125rem;
}

h5, .h5 {
  font-size: 16px;
  font-size: 1rem;
}

h6, .h6 {
  font-size: 16px;
  font-size: 1rem;
}

@media (min-width: 60em) {
  h1, .h1 {
    font-size: 50px;
    font-size: 3.125rem;
  }
  h2, .h2 {
    font-size: 38px;
    font-size: 2.375rem;
  }
  h3, .h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 22px;
    font-size: 1.375rem;
  }
  h5, .h5 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  h6, .h6 {
    font-size: 16px;
    font-size: 1rem;
  }
}
h1, .h1, h2, .h2 {
  font-weight: 800;
}

a {
  color: #B92227;
  text-decoration: underline;
  transition: all 0.18s ease-in-out;
}
a:hover, a:focus {
  text-decoration: none;
}

p {
  margin: 0 0 15px;
}

blockquote {
  margin: 1em 1.5em;
  padding-left: 1.5em;
  border-left: 5px solid hsl(0, 0%, 85%);
}

.smallest {
  font-size: 0.8em;
}

.smaller {
  font-size: 0.9em;
}

.larger {
  font-size: 1.1em;
}

.largest {
  font-size: 1.2em;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.strike {
  text-decoration: line-through;
}

.nowrap {
  white-space: nowrap;
}

.important {
  color: red;
  font-weight: bold;
  text-transform: uppercase;
}

.title {
  font-weight: 600;
  margin: 0 0 5px;
}
.title {
  font-size: 20px;
}
@media screen and (min-width: 320px) {
  .title {
    font-size: calc(20px + 10 * ((100vw - 320px) / 640));
  }
}
@media screen and (min-width: 960px) {
  .title {
    font-size: 30px;
  }
}

/* ================================================================
   Button Styles
   ================================================================ */
.button, .culture-selector__button,
.btn,
div[id*=form-] input[type=submit],
.inline-form input[type=submit] {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px 22px;
  height: 50px;
  border: 1px solid #B92227;
  font-family: "Lato", sans-serif;
  color: #fff;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s ease-in-out;
  line-height: 1.4;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  background-color: #B92227;
}
.button:hover, .culture-selector__button:hover, .button:focus, .culture-selector__button:focus,
.btn:hover,
div[id*=form-] input[type=submit]:hover,
.inline-form input[type=submit]:hover,
.btn:focus,
div[id*=form-] input[type=submit]:focus,
.inline-form input[type=submit]:focus {
  text-decoration: none;
  background: rgba(185, 34, 39, 0.85);
  border: 1px solid rgba(185, 34, 39, 0.85);
}
.button--red,
.btn--red,
div[id*=form-] input[type=submit],
.inline-form input[type=submit] {
  background-color: #B92227;
  border-color: #B92227;
}
.button--red:hover, .button--red:active, .button--red:focus,
.btn--red:hover,
div[id*=form-] input[type=submit]:hover,
.inline-form input[type=submit]:hover,
.btn--red:active,
div[id*=form-] input[type=submit]:active,
.inline-form input[type=submit]:active,
.btn--red:focus,
div[id*=form-] input[type=submit]:focus,
.inline-form input[type=submit]:focus {
  background: rgba(185, 34, 39, 0.85);
  border: 1px solid rgba(185, 34, 39, 0.85);
}
.button--link,
.btn--link {
  background-color: transparent;
  border-color: transparent;
  text-transform: none;
  text-decoration: underline;
  font-style: italic;
  font-weight: 600;
}
.button--link:hover, .button--link:active, .button--link:focus,
.btn--link:hover,
.btn--link:active,
.btn--link:focus {
  background: transparent;
  border-color: transparent;
  text-decoration: none;
}

.button-2 {
  background: #B92227;
  border: 1px solid #B92227;
}
.button-2:hover, .button-2:focus {
  background: rgba(185, 34, 39, 0.85);
  border: 1px solid rgba(185, 34, 39, 0.85);
}

.button-3 {
  background: transparent;
  border: 1px solid #194F90;
  color: #194F90;
}
.button-3:hover, .button-3:focus {
  background: #EAEAEA;
}

.button--with-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin: 0 0 0 4px;
}

.target-show {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-name: toggleTargetShow;
}

.target-hide {
  animation-duration: 0.3s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-name: toggleTargetHide;
}

[data-expander-target] {
  display: none;
}

[data-expander-target].active {
  display: block;
}

[data-expander-target].target-show {
  animation-name: toggleTargetShow;
}

[data-expander-target].target-hide {
  animation-name: toggleTargetHide;
}

@keyframes toggleTargetShow {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes toggleTargetHide {
  from {
    opacity: 1;
    transform: translateY(0%);
  }
  to {
    opacity: 0;
    transform: translateY(-10%);
  }
}
/* ================================================================
   Table Theme Styles
   ================================================================ */
table {
  margin: 1em 0;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border: 0;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

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

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

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

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive, .calendar-main {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered, .calendar-main > .table-bordered {
  border: 0;
}

/* ================================================================
   Variables
   ================================================================ */
/* ================================================================
Controls/Inputs
================================================================ */
label {
  vertical-align: middle;
}

input[type=text],
input[type=tel],
input[type=number],
input[type=email],
input[type=file],
input[type=password],
select {
  font-family: "Lato", sans-serif;
  padding: 5px 14px;
  font-size: 18px;
  font-size: 1.125rem;
  border: 1px solid #49606E;
  vertical-align: middle;
  height: 50px;
  max-width: 100%;
  transition: all 0.2s ease-in-out;
}
input[type=text]:hover, input[type=text]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=file]:hover,
input[type=file]:focus,
input[type=password]:hover,
input[type=password]:focus,
select:hover,
select:focus {
  border-color: #B92227;
}

input[type=file] {
  height: auto;
  padding-top: 0.345rem;
  padding-bottom: 0.345rem;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 5px;
  border-radius: 0;
  vertical-align: middle;
  height: auto;
}

textarea {
  padding: 5px 14px;
  min-height: 100px;
  border: 1px solid #49606E;
  border-radius: 0;
  background: #ffffff;
  max-width: 100%;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
}
textarea:hover, textarea:focus {
  border-color: #B92227;
}

div[id*=form-] form,
.inline-form form {
  width: 100%;
  margin: 0 auto;
}
div[id*=form-] .form-field,
.inline-form .form-field {
  margin: 0 0 27px;
}
div[id*=form-] label,
.inline-form label {
  display: block;
  font-weight: 800;
  margin: 0 0 7px;
  font-size: 16px;
  font-size: 1rem;
}
div[id*=form-] label.required-label:after,
.inline-form label.required-label:after {
  content: "*";
  color: #E32626;
  margin: 0 0 0 3px;
}
div[id*=form-] .explanation-text,
.inline-form .explanation-text {
  margin: 5px 0 0;
}
div[id*=form-] input[type=text],
div[id*=form-] input[type=tel],
div[id*=form-] input[type=number],
div[id*=form-] input[type=email],
div[id*=form-] input[type=file],
div[id*=form-] input[type=password],
div[id*=form-] select,
div[id*=form-] textarea,
.inline-form input[type=text],
.inline-form input[type=tel],
.inline-form input[type=number],
.inline-form input[type=email],
.inline-form input[type=file],
.inline-form input[type=password],
.inline-form select,
.inline-form textarea {
  width: 100%;
  background: #fff;
}
div[id*=form-] input[type=text][type=checkbox], div[id*=form-] input[type=text][type=radio],
div[id*=form-] input[type=tel][type=checkbox],
div[id*=form-] input[type=tel][type=radio],
div[id*=form-] input[type=number][type=checkbox],
div[id*=form-] input[type=number][type=radio],
div[id*=form-] input[type=email][type=checkbox],
div[id*=form-] input[type=email][type=radio],
div[id*=form-] input[type=file][type=checkbox],
div[id*=form-] input[type=file][type=radio],
div[id*=form-] input[type=password][type=checkbox],
div[id*=form-] input[type=password][type=radio],
div[id*=form-] select[type=checkbox],
div[id*=form-] select[type=radio],
div[id*=form-] textarea[type=checkbox],
div[id*=form-] textarea[type=radio],
.inline-form input[type=text][type=checkbox],
.inline-form input[type=text][type=radio],
.inline-form input[type=tel][type=checkbox],
.inline-form input[type=tel][type=radio],
.inline-form input[type=number][type=checkbox],
.inline-form input[type=number][type=radio],
.inline-form input[type=email][type=checkbox],
.inline-form input[type=email][type=radio],
.inline-form input[type=file][type=checkbox],
.inline-form input[type=file][type=radio],
.inline-form input[type=password][type=checkbox],
.inline-form input[type=password][type=radio],
.inline-form select[type=checkbox],
.inline-form select[type=radio],
.inline-form textarea[type=checkbox],
.inline-form textarea[type=radio] {
  width: auto;
}
div[id*=form-] input[type=text].input-validation-error,
div[id*=form-] input[type=tel].input-validation-error,
div[id*=form-] input[type=number].input-validation-error,
div[id*=form-] input[type=email].input-validation-error,
div[id*=form-] input[type=file].input-validation-error,
div[id*=form-] input[type=password].input-validation-error,
div[id*=form-] select.input-validation-error,
div[id*=form-] textarea.input-validation-error,
.inline-form input[type=text].input-validation-error,
.inline-form input[type=tel].input-validation-error,
.inline-form input[type=number].input-validation-error,
.inline-form input[type=email].input-validation-error,
.inline-form input[type=file].input-validation-error,
.inline-form input[type=password].input-validation-error,
.inline-form select.input-validation-error,
.inline-form textarea.input-validation-error {
  border: 1px solid #E32626;
}
div[id*=form-] input[type=checkbox], div[id*=form-] input[type=radio],
.inline-form input[type=checkbox],
.inline-form input[type=radio] {
  float: left;
  margin: 4px 5px 5px 0;
}
div[id*=form-] .ktc-checkbox, div[id*=form-] .ktc-radio,
.inline-form .ktc-checkbox,
.inline-form .ktc-radio {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 0 24px;
}
div[id*=form-] .ktc-checkbox label, div[id*=form-] .ktc-radio label,
.inline-form .ktc-checkbox label,
.inline-form .ktc-radio label {
  width: 100%;
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
}
div[id*=form-] .ktc-checkbox input[type=checkbox], div[id*=form-] .ktc-radio input[type=checkbox],
.inline-form .ktc-checkbox input[type=checkbox],
.inline-form .ktc-radio input[type=checkbox] {
  margin: 0 8px 0 0;
  -ms-flex: 1;
  flex: 1;
  min-width: 20px;
  width: 20px;
  height: 20px;
}
div[id*=form-] .ktc-checkbox input[type=radio], div[id*=form-] .ktc-radio input[type=radio],
.inline-form .ktc-checkbox input[type=radio],
.inline-form .ktc-radio input[type=radio] {
  margin: 0 8px 0 0;
  -ms-flex: 1;
  flex: 1;
  min-width: 20px;
  width: 20px;
  height: 20px;
}
div[id*=form-] .ktc-radio-list,
.inline-form .ktc-radio-list {
  display: block;
}
div[id*=form-] input[type=submit],
.inline-form input[type=submit] {
  margin-top: 25px;
}

.modal-open {
  overflow: hidden;
}
.modal-open:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal {
  display: none;
  position: fixed;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  width: calc(100% - 20px);
  max-width: 100%;
  width: 800px;
  max-height: 100vh;
  overflow-y: auto;
  text-align: center;
}
.modal.active {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25em;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1001;
}

.modal__header {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin: 0 0 10px;
}

.modal__title {
  font-size: 30px;
  font-size: 1.875rem;
  margin: 0;
}

.modal__footer {
  padding: 10px 0 0;
}
.modal__footer button {
  margin: 0 5px;
}

.modal__close {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 30px;
  height: 30px;
  background: none;
  padding: 0;
  cursor: pointer;
  border: 0;
}
.modal__close:before, .modal__close:after {
  display: block;
  content: " ";
  position: absolute;
  width: 4px;
  height: 22px;
  left: 13px;
  top: 3px;
  border-radius: 4px;
  background: #194F90;
}
.modal__close:before {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal__close:after {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal__close:hover:before, .modal__close:hover:after, .modal__close:focus-visible:before, .modal__close:focus-visible:after {
  background: #B92227;
}

.maintenance-message {
  max-width: 1200px;
  margin: 14% auto 0;
  padding: 0 15px;
}

.maintenance-message__logo {
  text-align: center;
  margin: 0 auto 20px;
  max-width: 300px;
}

.maintenance-message__description {
  text-align: center;
  color: #333;
  font-size: 1.25em;
  line-height: 1.5;
  clear: both;
  padding: 0px;
}

/* ================================================================
Base styles
================================================================ */
.site-container {
  position: relative;
}

/* Base Container Styles */
.container {
  width: 100%;
  max-width: 91.875rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1.25em;
  padding-right: 1.25em;
}
.container.container--small {
  max-width: 77.25em;
}
.container.container--large {
  max-width: 99.625em;
}
.container.container--fluid {
  max-width: none;
  padding: 0;
}
.container.container--fluid .section-container__row {
  margin: 0;
}
.container.container--fluid .section-container__col {
  padding: 0;
}
.container.container--nested,
.container .container {
  padding: 0;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 1.25em;
  padding-right: 1.25em;
}

/* Base Section Styles */
.section-container {
  padding: 30px 0;
}
.section-container--padding-top {
  padding: 30px 0 0;
}
.section-container--padding-bottom {
  padding: 0 0 30px;
}
.section-container--white {
  background-color: #ffffff;
}
.section-container--blue {
  background-color: #194F90;
  color: #fff;
}
.section-container--blue a {
  color: #fff;
}
.section-container--blue ::selection {
  background: #B92227;
}
.section-container--gray {
  background-color: #E2E2E2;
}
.section-container--padding-small {
  padding: 15px 0;
}
.section-container--padding-small.section-container--padding-top {
  padding: 15px 0 0;
}
.section-container--padding-small.section-container--padding-bottom {
  padding: 0 0 15px;
}
.section-container--padding-medium {
  padding: 30px 0;
}
.section-container--padding-medium.section-container--padding-top {
  padding: 30px 0 0;
}
.section-container--padding-medium.section-container--padding-bottom {
  padding: 0 0 30px;
}
.section-container--padding-large {
  padding: 50px 0;
}
.section-container--padding-large.section-container--padding-top {
  padding: 50px 0 0;
}
.section-container--padding-large.section-container--padding-bottom {
  padding: 0 0 50px;
}
.section-container--no-padding {
  padding: 0;
}

.section-container__row {
  margin-left: -1.25em;
  margin-right: -1.25em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-container__col {
  padding-left: 1.25em;
  padding-right: 1.25em;
  width: 100%;
}

@media (min-width: 60em) {
  .section-container {
    padding: 55px 0;
  }
  .section-container--padding-top {
    padding: 55px 0 0;
  }
  .section-container--padding-bottom {
    padding: 0 0 55px;
  }
  .section-container--padding-small {
    padding: 20px 0;
  }
  .section-container--padding-small.section-container--padding-top {
    padding: 20px 0 0;
  }
  .section-container--padding-small.section-container--padding-bottom {
    padding: 0 0 20px;
  }
  .section-container--padding-medium {
    padding: 55px 0;
  }
  .section-container--padding-medium.section-container--padding-top {
    padding: 55px 0 0;
  }
  .section-container--padding-medium.section-container--padding-bottom {
    padding: 0 0 55px;
  }
  .section-container--padding-large {
    padding: 80px 0;
  }
  .section-container--padding-large.section-container--padding-top {
    padding: 80px 0 0;
  }
  .section-container--padding-large.section-container--padding-bottom {
    padding: 0 0 80px;
  }
  .section-container--no-padding {
    padding: 0;
  }
  .section-container__row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  /* Custom section columns If Needed */
  .section-container__row--60-40 .section-container__col:nth-child(1) {
    width: 60%;
  }
  .section-container__row--60-40 .section-container__col:nth-child(2) {
    width: 40%;
  }
  .section-container__row--40-60 .section-container__col:nth-child(1) {
    width: 40%;
  }
  .section-container__row--40-60 .section-container__col:nth-child(2) {
    width: 60%;
  }
}
.twitter-timeline {
  margin: 40px auto 0;
}

.site-header {
  position: relative;
  background: #fff;
  box-shadow: 0 9px 11px -11px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

.site-header__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 0 12px;
}
@media (min-width: 60em) {
  .site-header__container {
    padding: 27px 0;
  }
}

.site-header__top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 0 0 20px;
}

.site-header__logo {
  margin: 0 20px;
  font-size: 0;
  max-width: 146px;
}
@media (min-width: 60em) {
  .site-header__logo {
    margin: 0 20px 0 0;
    width: 30%;
    max-width: 146px;
  }
}
@media (min-width: 81.25em) {
  .site-header__logo {
    max-width: 204px;
  }
}
.site-header__logo a {
  display: inline-block;
}

.utility-navigation {
  display: none;
  list-style: none;
  margin: 0 10px 0 0;
  padding: 0;
}

.utility-navigation__item {
  padding: 0 10px;
}

.utility-navigation__link {
  font-weight: 500;
  color: #3A3A3A;
}

.culture-selector {
  position: relative;
  margin: 0 20px 0 0;
}

.culture-selector__button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.culture-selector__button:after {
  content: "";
  border-top: 5px solid #fff;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  margin: 0 0 0 7px;
}

.culture-selector__list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #194F90;
  background: #fff;
  z-index: 1001;
  display: none;
}

.culture-selector__link {
  text-decoration: none;
  display: block;
  padding: 7px 15px;
}
.culture-selector__link:hover, .culture-selector__link:focus {
  background: #194F90;
  color: #fff;
  text-decoration: none;
}

.site-header__search-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.site-header__search-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.18s ease-in-out;
  display: block;
  width: 24px;
  height: 24px;
  font-size: 0;
  color: #3A3A3A;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.site-header__search-trigger:hover, .site-header__search-trigger:focus {
  color: #B92227;
}
.site-header__search-trigger svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-header__search {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #194F90;
  padding: 15px;
  display: none;
}

.site-header__search-inner {
  position: relative;
}

.site-header__search-input {
  display: block;
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 10px;
  color: #3A3A3A;
}
.site-header__search-input::-webkit-input-placeholder {
  color: #3A3A3A;
  opacity: 1;
}
.site-header__search-input:-moz-placeholder {
  color: #3A3A3A;
  opacity: 1;
}
.site-header__search-input::-moz-placeholder {
  color: #3A3A3A;
  opacity: 1;
}
.site-header__search-input:-ms-input-placeholder {
  color: #3A3A3A;
  opacity: 1;
}

.site-header__search-submit {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.18s ease-in-out;
  position: absolute;
  top: 50%;
  right: 15px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #3A3A3A;
}
.site-header__search-submit:hover, .site-header__search-submit:focus {
  opacity: 0.75;
}
.site-header__search-submit svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.site-header__navigation {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 20px 20px 20px;
}
.site-header__navigation .utility-navigation {
  display: block;
  border-top: 1px solid #3A3A3A;
  margin: 10px 0 0;
  padding: 15px 0 0;
}
.site-header__navigation .utility-navigation__item {
  margin: 5px 0;
  padding: 0;
}

.site-header-right {
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.site-header__main {
  display: -ms-flexbox;
  display: flex;
}

.js-data-toggled-header-nav .site-container:after {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (min-width: 60em) {
  .utility-navigation {
    display: -ms-flexbox;
    display: flex;
  }
  .site-header__navigation,
  .site-header__navigation[data-expander-target] {
    background: none;
    position: static;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    top: auto;
    width: auto;
    padding: 0;
  }
  .site-header__navigation .utility-navigation,
  .site-header__navigation[data-expander-target] .utility-navigation {
    display: none;
  }
}
@media (min-width: 60em) {
  .site-header__navigation .social-list {
    padding: 0 5px;
    margin: 0 10px;
    border-right: 1px solid #BDBDBD;
    border-left: 1px solid #BDBDBD;
  }
  .site-header__navigation .social-list .social-list__item {
    padding: 0 5px;
  }
}
@media (min-width: 81.25em) {
  .site-header__navigation .social-list {
    padding: 0 20px;
    margin: 0 30px;
  }
  .site-header__navigation .social-list .social-list__item {
    padding: 0 10px;
  }
}

.site-header__donate-btn {
  margin: 20px auto 30px;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 60em) {
  .site-header__donate-btn {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
  }
}
@media (min-width: 81.25em) {
  .site-header__donate-btn {
    margin-left: 30px;
  }
}

.sticky-header {
  transition: transform 0.4s;
}

@media (max-width: 59.938em) {
  .sticky-header-mobile {
    position: sticky;
    top: 0;
    z-index: 999;
  }
  .sticky-header-down .sticky-header-mobile {
    transform: translate3d(0, -2000%, 0);
  }
}
@media (min-width: 60em) {
  .sticky-header-desktop {
    position: sticky;
    top: 0;
    z-index: 999;
  }
}
.site-footer {
  background: #fff;
  color: #3A3A3A;
}

.site-footer__top {
  padding: 34px 0 24px;
}
@media (min-width: 60em) {
  .site-footer__top {
    padding: 30px 0 34px;
  }
}

.site-footer__top-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 60em) {
  .site-footer__top-inner {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.site-footer__bottom {
  padding: 24px 0;
  border-top: 1px solid #BDBDBD;
}
@media (min-width: 60em) {
  .site-footer__bottom {
    padding: 34px 0;
  }
}
.site-footer__bottom .social-list {
  -ms-flex-pack: start;
  justify-content: start;
  margin-bottom: 50px;
}
@media (min-width: 60em) {
  .site-footer__bottom .social-list {
    margin-bottom: 0;
  }
}

.site-footer__affiliation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.site-footer__affiliation-logo {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid currentColor;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 60em) {
  .site-footer__affiliation-logo {
    padding-right: 20px;
    margin-right: 20px;
  }
}
.site-footer__affiliation-logo svg {
  fill: #3A3A3A;
  width: 30px;
  height: 30px;
}
@media (min-width: 60em) {
  .site-footer__affiliation-logo svg {
    width: 48px;
    height: 48px;
  }
}

.site-footer__affiliation-text {
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1;
}
@media (min-width: 60em) {
  .site-footer__affiliation-text {
    font-size: 0.875rem;
  }
}

.site-footer__logo {
  max-width: 105px;
}
@media (min-width: 60em) {
  .site-footer__logo {
    max-width: 146px;
  }
}
.site-footer__logo a {
  display: block;
}

.site-footer__contact-line {
  margin: 0 0 10px;
}

.site-footer__contact-item {
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #3A3A3A;
  -ms-flex-align: center;
  align-items: center;
}
.site-footer__contact-item svg {
  fill: currentColor;
  width: 30px;
  height: 30px;
  margin: 0 10px 0 0;
}

/* Footer Links */
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links__item {
  margin: 0 0 20px;
}
.footer-links__item > a {
  margin: 0 0 10px;
}

.footer-links__link {
  color: #3A3A3A;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  text-decoration: none;
}
.footer-links__link:hover, .footer-links__link:focus {
  text-decoration: underline;
}

/* Nested Footer Link List Partial */
.footer-links .footer-links {
  display: block;
}
.footer-links .footer-links .footer-links__item {
  width: 100%;
  margin: 0 0 5px;
}
.footer-links .footer-links .footer-links__item > a {
  margin: 0;
}
.footer-links .footer-links .footer-links__link {
  color: #3A3A3A;
  font-weight: normal;
  font-size: 16px;
  font-size: 1rem;
}

.social-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -5px;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-list__item {
  padding: 0 10px;
}

.social-list__link {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  position: relative;
  color: #3A3A3A;
}
.social-list__link:hover, .social-list__link:focus {
  color: #B92227;
}

.social-list__icon {
  fill: currentColor;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

@media (min-width: 30em) {
  .footer-links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  .footer-links__item {
    width: 50%;
    padding: 0 15px;
  }
}
@media (min-width: 60em) {
  .footer-links {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .footer-links__item {
    width: auto;
  }
  .site-footer__bottom-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
  }
}
.footer-copyright-text {
  font-family: "Montserrat", sans-serif;
}
@media (min-width: 60em) {
  .footer-copyright-text {
    margin-left: auto;
  }
}

@media (min-width: 60em) {
  .site-footer__navigation {
    margin-left: 30px;
  }
}

.footer-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (min-width: 60em) {
  .footer-navigation ul {
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0;
  }
}
.footer-navigation a {
  color: #3A3A3A;
  text-transform: uppercase;
  text-decoration: none;
}
.footer-navigation a:hover, .footer-navigation a:active, .footer-navigation a:focus {
  text-decoration: underline;
}

/* ================================================================
   Global Site CSS Animations
   ================================================================ */
/* Fade In */
@keyframes fadeIn {
  100% {
    opacity: 0;
  }
  0% {
    opacity: 1;
  }
}
/* Fade Out */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ================================================================
   Site Specific Below
   ================================================================ */
/* ================================================================
   Component Imports - Comment/uncomment what you don't need/need.
   ================================================================ */
/*================================================================
            MAIN NAVIGATION STYLES
================================================================*/
.main-navigation {
  position: relative;
}
.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-navigation a:not(.button):not(.culture-selector__button),
.main-navigation button {
  display: block;
  width: 100%;
  border: 0;
  padding: 8px 0;
  color: #3A3A3A;
  text-align: left;
  background: none;
  cursor: pointer;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}
.main-navigation a:not(.button):not(.culture-selector__button):hover, .main-navigation a:not(.button):not(.culture-selector__button):focus,
.main-navigation button:hover,
.main-navigation button:focus {
  text-decoration: underline;
}
.main-navigation a:not(.button):not(.culture-selector__button)[data-expander-toggle],
.main-navigation button[data-expander-toggle] {
  position: relative;
  padding-right: 20px;
}
.main-navigation a:not(.button):not(.culture-selector__button)[data-expander-toggle]:after,
.main-navigation button[data-expander-toggle]:after {
  content: "";
  position: absolute;
  background: none;
  border: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
  font-size: 1rem;
  height: 6px;
  width: 6px;
  margin: 0;
  right: 0;
  top: calc(50% - 2px);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.4s ease-in-out;
}
.main-navigation a:not(.button):not(.culture-selector__button)[data-expander-toggle].active:after,
.main-navigation button[data-expander-toggle].active:after {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.main-navigation .main-navigation__heading {
  font-weight: bold;
}
.main-navigation .main-navigation-callout {
  border-top: 1px solid #3A3A3A;
  border-bottom: 1px solid #3A3A3A;
  margin: 10px 0;
  padding: 15px 0;
}
.main-navigation .main-navigation-callout__heading {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 5px;
}
.main-navigation .main-navigation-callout__image {
  position: relative;
  background: no-repeat center center/cover;
  border-radius: 10px;
  margin: 10px 0;
}
.main-navigation .main-navigation-callout__image.b-lazy, .main-navigation .main-navigation-callout__image.b-lazy-wrapper {
  position: relative;
}
.main-navigation .main-navigation-callout__image.b-lazy::before, .main-navigation .main-navigation-callout__image.b-lazy-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #fff;
  transition: all 0.18s ease-in-out;
}
.main-navigation .main-navigation-callout__image.b-lazy.b-loaded::before, .main-navigation .main-navigation-callout__image.b-lazy.b-lazy-wrapper-done::before, .main-navigation .main-navigation-callout__image.b-lazy-wrapper.b-loaded::before, .main-navigation .main-navigation-callout__image.b-lazy-wrapper.b-lazy-wrapper-done::before {
  background: rgba(255, 255, 255, 0);
}
.main-navigation .main-navigation-callout__image::after {
  content: "";
  display: block;
  padding-top: 55.1724137931%;
}
.main-navigation .main-navigation-callout__description {
  margin: 0 0 15px;
}
.main-navigation .main-navigation-callout__description:last-child {
  margin: 0;
}
.main-navigation > ul > li > a:not(.button):not(.culture-selector__button),
.main-navigation > ul > li > button {
  font-weight: 500;
  text-transform: uppercase;
}
.main-navigation > ul > li .main-navigation-mega > ul > li > a:not(.button):not(.culture-selector__button),
.main-navigation > ul > li .main-navigation-mega > ul > li > button,
.main-navigation > ul > li > ul > li > a:not(.button):not(.culture-selector__button),
.main-navigation > ul > li > ul > li > button {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  padding: 8px 0 8px 10px;
}
.main-navigation > ul > li .main-navigation-mega > ul > li > ul > li > a:not(.button):not(.culture-selector__button),
.main-navigation > ul > li .main-navigation-mega > ul > li > ul > li > button,
.main-navigation > ul > li > ul > li > ul > li > a:not(.button):not(.culture-selector__button),
.main-navigation > ul > li > ul > li > ul > li > button {
  padding: 8px 0 8px 20px;
}
.main-navigation > ul > li .main-navigation-mega > ul > li > ul > li > ul > li > a:not(.button):not(.culture-selector__button),
.main-navigation > ul > li .main-navigation-mega > ul > li > ul > li > ul > li > button,
.main-navigation > ul > li > ul > li > ul > li > ul > li > a:not(.button):not(.culture-selector__button),
.main-navigation > ul > li > ul > li > ul > li > ul > li > button {
  padding: 8px 0 8px 30px;
}
@media (min-width: 60em) {
  .main-navigation {
    position: static;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .main-navigation > ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: none;
  }
  .main-navigation > ul > li {
    position: relative;
  }
  .main-navigation > ul > li[data-type=mega] {
    position: static;
  }
  .main-navigation > ul > li > a:not(.button):not(.culture-selector__button),
  .main-navigation > ul > li > button {
    text-align: center;
    background: none;
    padding: 0 15px 0 15px;
    line-height: 1;
    font-size: 0.875rem;
  }
}
@media (min-width: 60em) and (min-width: 81.25em) {
  .main-navigation > ul > li > a:not(.button):not(.culture-selector__button),
  .main-navigation > ul > li > button {
    font-size: 1rem;
  }
}
@media (min-width: 60em) {
  .main-navigation > ul > li > a:not(.button):not(.culture-selector__button)[data-expander-toggle],
  .main-navigation > ul > li > button[data-expander-toggle] {
    position: relative;
    padding-right: 15px;
  }
  .main-navigation > ul > li > a:not(.button):not(.culture-selector__button)[data-expander-toggle]:after,
  .main-navigation > ul > li > button[data-expander-toggle]:after {
    right: 0px;
  }
}
@media (min-width: 60em) {
  .main-navigation > ul > li > a:not(.button):not(.culture-selector__button).active:before,
  .main-navigation > ul > li > button.active:before {
    content: "";
    position: absolute;
    top: calc(100% + 7px);
    left: 50%;
    border-bottom: 8px solid #194F90;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
  }
}
@media (min-width: 60em) {
  .main-navigation > ul > li > ul {
    position: absolute;
    width: 100%;
    top: calc(100% + 15px);
    background: #fff;
    box-shadow: 0 12px 16px -8px rgba(0, 0, 0, 0.2);
    border-top: 5px solid #194F90;
    border-radius: 0 0 10px 10px;
    min-width: 300px;
    padding: 20px;
  }
}
@media (min-width: 60em) {
  .main-navigation > ul > li:last-child > ul {
    right: 0;
    left: auto;
  }
}
@media (min-width: 60em) {
  .main-navigation > ul .main-navigation-callout {
    border: 0;
    padding: 30px;
    background: #BDBDBD;
    margin: 0;
    -ms-flex: 1 0 340px;
    flex: 1 0 340px;
  }
}
@media (min-width: 60em) {
  .main-navigation > ul .main-navigation-callout__heading {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (min-width: 60em) {
  .main-navigation > ul [data-nav-type=mega] {
    position: static;
  }
  .main-navigation > ul [data-nav-type=mega] [data-expander-toggle].active:before {
    display: none;
  }
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega {
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 91.875rem;
    background: #ffffff;
    box-shadow: 0 12px 16px -8px rgba(0, 0, 0, 0.2);
    border-top: 5px solid #194F90;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    display: none;
  }
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega.active {
    display: -ms-flexbox;
    display: flex;
  }
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega ul {
    display: block;
    animation: none;
    background: none;
  }
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega > ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 -20px;
    padding: 30px 20px;
  }
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega > ul > li {
    -ms-flex: 1;
    flex: 1;
    padding: 0 20px;
  }
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega > ul > li > a:not(.button):not(.culture-selector__button),
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega > ul > li > button {
    padding: 5px 0;
  }
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega > ul > li > ul > li > a:not(.button):not(.culture-selector__button),
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega > ul > li > ul > li > button {
    padding: 5px 0 5px 10px;
  }
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega > ul > li > ul > li > ul > li > a:not(.button):not(.culture-selector__button),
  .main-navigation > ul [data-nav-type=mega] .main-navigation-mega > ul > li > ul > li > ul > li > button {
    padding: 5px 0 5px 20px;
  }
}

/*================================================================
        RAIL NAVIGATION STYLES
================================================================*/
.rail-navigation {
  padding: 20px;
  margin: 0 0 20px;
  background: #eee;
  border-radius: 10px;
}
.rail-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rail-navigation .rail-navigation__expander-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.rail-navigation .rail-navigation__expander {
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 40px;
}
.rail-navigation .rail-navigation__expander:after {
  content: "";
  position: absolute;
  background: none;
  border: 0;
  border-bottom: 2px solid;
  border-right: 2px solid;
  font-size: 1rem;
  height: 8px;
  width: 8px;
  margin: 0;
  left: 50%;
  top: calc(50% - 2px);
  -ms-transform: translateY(-50%) translateX(-50%) rotate(45deg);
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
  transition: border-color 0.4s ease-in-out;
}
.rail-navigation .rail-navigation__expander.active:after {
  -ms-transform: translateY(-50%) translateX(-50%) rotate(-135deg);
  transform: translateY(-50%) translateX(-50%) rotate(-135deg);
}
.rail-navigation a {
  display: block;
  padding: 10px;
  color: #3A3A3A;
  text-decoration: none;
}
.rail-navigation a:hover, .rail-navigation a:focus {
  background: none;
  text-decoration: underline;
  color: currentColor;
}
.rail-navigation > ul ul {
  padding-left: 20px;
}
.hamburger {
  display: inline-block;
  width: 24px;
  height: 24px;
  font-size: 0;
  overflow: visible;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background-color: transparent;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.hamburger:hover .hamburger__inner,
.hamburger:hover .hamburger__inner:after,
.hamburger:hover .hamburger__inner:before, .hamburger:focus .hamburger__inner,
.hamburger:focus .hamburger__inner:after,
.hamburger:focus .hamburger__inner:before, .hamburger.active .hamburger__inner,
.hamburger.active .hamburger__inner:after,
.hamburger.active .hamburger__inner:before {
  background: #B92227;
}

.hamburger__box {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: all 0.2s ease-in-out;
}

.hamburger__inner,
.hamburger__inner:after,
.hamburger__inner:before {
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 0px;
  background: #3A3A3A;
  transition-property: transform, background;
}

.hamburger__inner {
  top: 50%;
  left: 0;
  display: block;
  margin-top: -1px;
  transition-duration: 75ms, 0.18s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19), ease-in-out;
}

.hamburger__inner:after,
.hamburger__inner:before {
  display: block;
  content: "";
}

.hamburger__inner:before {
  top: -9px;
  transition: top 75ms ease 0.12s, opacity 75ms ease, background 0.18s ease-in-out;
}

.hamburger__inner:after {
  bottom: -9px;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19), background 0.18s ease-in-out;
}

.hamburger.active .hamburger__inner,
.hamburger.active .hamburger__inner:after,
.hamburger.active .hamburger__inner:before {
  width: 31.992px;
}
.hamburger.active .hamburger__inner {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: -3px;
}
.hamburger.active .hamburger__inner::before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}
.hamburger.active .hamburger__inner::after {
  bottom: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

@media (min-width: 60em) {
  .hamburger {
    display: none;
  }
}
.breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-size: 0.875rem;
}

.breadcrumbs__item {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}
.breadcrumbs__item::after {
  content: "";
  display: block;
  position: absolute;
  right: 7px;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: #757575;
  border-radius: 100%;
}
.breadcrumbs__item:last-child {
  padding: 0;
}
.breadcrumbs__item:last-child::after {
  content: none;
}

.breadcrumbs__link {
  display: inline-block;
  text-decoration: none;
}
.breadcrumbs__link:hover, .breadcrumbs__link:focus {
  text-decoration: underline;
}

.breadcrumbs__active {
  font-weight: bold;
}

/* ================================================================

Pagination

================================================================ */
.pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  margin: 30px 0;
}
@media (min-width: 60em) {
  .pagination {
    margin: 50px 0;
  }
}
.pagination--centered {
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination--centered .pagination__list {
  margin: auto;
}

.pagination__results {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  width: 100%;
}

.pagination__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination__link {
  padding: 3px 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  text-align: center;
  position: relative;
  color: #3A3A3A;
  background: #eee;
  border: 1px solid #ddd;
  text-decoration: none;
}
.pagination__link svg {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  fill: #B92227;
}
.pagination__link--active, .pagination__link:hover, .pagination__link:focus {
  color: #fff;
  background: #194F90;
  border: 1px solid #194F90;
}
.pagination__link--active svg, .pagination__link:hover svg, .pagination__link:focus svg {
  fill: #fff;
}

.pagination__dropdowns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 60em) {
  .pagination__dropdowns {
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.pagination__dropdown-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 20px;
}
@media (min-width: 60em) {
  .pagination__dropdown-container {
    gap: 14px;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0;
  }
}

.pagination__dropdown-label {
  font-weight: 800;
}

.pagination__dropdown {
  background-color: #E2E2E2;
  border-color: #BDBDBD;
}
.pagination__dropdown--small {
  min-width: 100%;
}
@media (min-width: 60em) {
  .pagination__dropdown--small {
    min-width: 120px;
  }
}
.pagination__dropdown--medium {
  min-width: 100%;
}
@media (min-width: 60em) {
  .pagination__dropdown--medium {
    min-width: 300px;
  }
}

.accordion-container {
  margin: 0 0 20px;
  position: relative;
}

.accordion-listing {
  padding: 0;
  margin: 0;
  list-style: none;
}

.accordion-listing__item {
  margin: 0 0 20px;
}

.accordion-heading {
  margin: 0;
}

.accordion-button {
  display: block;
  border: 0;
  padding: 20px;
  background: none;
  background: #194F90;
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: left;
  width: 100%;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
}
.accordion-button:after {
  content: "";
  position: absolute;
  background: none;
  border: 0;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  font-size: 1rem;
  height: 16px;
  width: 16px;
  margin: 0;
  right: 20px;
  top: calc(50% - 3px);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.4s ease-in-out;
}
.accordion-button:hover, .accordion-button:focus {
  background: rgba(25, 79, 144, 0.85);
}
.accordion-button.active {
  border-radius: 10px 10px 0 0;
}
.accordion-button.active:after {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.accordion-content {
  padding: 15px 20px 20px;
  background: #194F90;
  color: #fff;
  border-radius: 0 0 10px 10px;
}
.accordion-content p:last-child {
  margin: 0;
}

.tabs-section-list {
  list-style: none;
  padding: 12px;
  margin: 0;
  border: 1px solid #49606E;
  border-radius: 10px;
  display: none;
}

.tabs-section-list__item {
  margin: 0 10px 0 0;
}

.tabs-section-button {
  background: none;
  color: #3A3A3A;
  border-radius: 10px;
  padding: 8px 32px;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  border: 0;
  cursor: pointer;
}
.tabs-section-button.active {
  background: #B92227;
}
.tabs-section-button:hover, .tabs-section-button:focus {
  background: #B92227;
}

.tabs-section-content {
  display: none;
  padding: 20px;
}
.tabs-section-content.active {
  display: block;
}

.tabs-section-mobile {
  position: relative;
  max-width: 340px;
}

.tabs-section-mobile__dropdown {
  border: 1px solid #49606E;
  border-radius: 10px;
  position: relative;
  width: 100%;
  background: #fff;
  height: 50px;
  padding: 8px 20px;
  font-weight: 500;
  font-family: "Lato", sans-serif;
  text-align: left;
  cursor: pointer;
}
.tabs-section-mobile__dropdown:after {
  content: "";
  position: absolute;
  background: none;
  border: 0;
  border-bottom: 2px solid #3A3A3A;
  border-right: 2px solid #3A3A3A;
  font-size: 1rem;
  height: 12px;
  width: 12px;
  margin: 0;
  right: 20px;
  top: calc(50% - 2px);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.4s ease-in-out;
}
.tabs-section-mobile__dropdown.active:after {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.tabs-section-mobile__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  z-index: 100;
  top: calc(100% - 5px);
  border: 1px solid #808080;
  border-top: 0;
  background: #fff;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.tabs-section-mobile__list-button {
  width: 100%;
  padding: 10px;
  font-weight: 400;
  background: none;
  border: 0;
  text-align: left;
  padding: 10px 20px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}
.tabs-section-mobile__list-button.active {
  background: #194F90;
  color: #fff;
}

@media (min-width: 60em) {
  .tabs-section-list {
    display: -ms-flexbox;
    display: flex;
  }
  .tabs-section-mobile {
    display: none;
  }
}
/* ================================================================
   Simple Banner
   ================================================================ */
@media (min-width: 60em) {
  .banner {
    text-align: center;
  }
}

.banner__btn {
  margin-top: 28px;
  width: 100%;
}
@media (min-width: 60em) {
  .banner__btn {
    margin-top: 40px;
    width: fit-content;
  }
}

/* =========================================================
 Calendar specific - Uses Full Calendar Plugin
============================================================ */
.calendar-top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #d4d4d4;
}

.calendar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 20px;
}

.calendar-nav-date {
  color: #194F90;
  margin: 0 50px 0 0;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: normal;
}

.calendar-nav-btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -5px;
}

.calendar-nav-btns__button {
  background: #194F90;
  border: 0;
  padding: 5px;
  width: 50px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 5px;
  cursor: pointer;
}
.calendar-nav-btns__button .calendar-nav-btns__button-svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.calendar-nav-btns__button:hover, .calendar-nav-btns__button:focus {
  background: #B92227;
}

.filter-view-btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.filter-view-btn .filter-view-btn__svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin: 0 20px 0 0;
}

.calendar-main .fc {
  min-width: calc(91.875rem - 1.25em);
}

.calendar {
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
}
.calendar table {
  margin: 0;
}
.calendar .event-meta {
  margin: 0 0 2px;
  font-size: 12px;
  font-size: 0.75rem;
  font-style: italic;
}
.calendar .event-title {
  margin: 0 0 3px;
  color: #194F90;
}
.calendar .event-extra {
  margin: 0 0 4px;
  font-weight: normal;
}
.calendar .event-location {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.calendar .event-location svg {
  position: relative;
  width: 15px;
  height: 15px;
  margin: 0 3px 0 0;
  fill: #194F90;
  top: 2px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.calendar .fc-day-grid-event {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 10px 7px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  background: #f4f3f1;
  border: none;
  padding: 8px 5px 8px 15px;
  color: #3A3A3A;
}
.calendar .fc-day-grid-event * {
  transition: all 0.18s ease-in-out;
}
.calendar .fc-day-grid-event::after {
  content: "View Event";
  display: block;
  color: #194F90;
  padding: 15px 5px 0 0;
  text-align: right;
  margin-top: auto;
}
.calendar .fc-day-grid-event:hover, .calendar .fc-day-grid-event:focus {
  background: #194F90;
  color: #fff;
}
.calendar .fc-day-grid-event:hover .event-title, .calendar .fc-day-grid-event:focus .event-title {
  color: currentColor;
}
.calendar .fc-day-grid-event:hover .event-location svg, .calendar .fc-day-grid-event:focus .event-location svg {
  fill: #fff;
}
.calendar .fc-day-grid-event:hover::after, .calendar .fc-day-grid-event:focus::after {
  color: currentColor;
}
.calendar .fc-day-grid-event .fc-content {
  white-space: normal;
  overflow: visible;
}
.calendar td.fc-day-top {
  padding: 10px 10px 17px 0;
  font-weight: bold;
}
.calendar td.fc-day-top .fc-day-number {
  padding: 0;
}
.calendar td.fc-day-top.fc-other-month {
  opacity: 0.55;
}
.calendar .fc-day.fc-today {
  background: rgba(25, 79, 144, 0.15) !important;
}
.calendar .fc th {
  background: #194F90;
  color: #fff;
  height: 55px;
  vertical-align: middle;
  text-transform: uppercase;
}
.calendar .fc .fc-widget-content {
  border-left: none;
}
.calendar .fc .fc-widget-content:last-child {
  border-right: none;
}

@media (min-width: 60em) {
  .calendar-top {
    padding: 35px 0;
  }
  .calendar-nav {
    margin: 0;
  }
  .calendar-nav-date {
    margin: 0 50px 0 75px;
  }
}
/* ================================================================
   Filters
   ================================================================ */
.filters {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filter {
  margin: 0 0 20px;
  width: 100%;
}
@media (min-width: 71.25em) {
  .filter {
    padding: 0 10px;
    margin: 0 0 30px;
  }
}
@media (min-width: 71.25em) {
  .filter--col-6 {
    width: 50%;
  }
}
@media (min-width: 71.25em) {
  .filter--col-4 {
    width: 33.33%;
  }
}
.filter--fit {
  width: fit-content;
  padding: 0 20px 0 0;
}
@media (min-width: 71.25em) {
  .filter--fit {
    padding: 0 10px;
  }
}
.filter .button, .filter .culture-selector__button {
  width: 100%;
  white-space: nowrap;
}
.filter:last-child {
  margin: 0;
}
.filter.filter--nolabel::before {
  content: " ";
}

.filter__label, .filter.filter--nolabel::before {
  display: block;
  margin: 0 0 3px;
  white-space: nowrap;
  font-weight: bold;
}

.filter__label--date {
  font-size: 0.875em;
  padding: 0 5px 0 0;
}

.filter__select {
  width: 100%;
  border: 1px solid #666;
  padding: 10px;
  height: 50px;
}

.resource-listing {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resource-listing__item {
  margin: 0 0 30px;
  border-bottom: 1px solid #ddd;
  padding: 0 0 30px;
}
.resource-listing__item:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.resource-listing__link {
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  overflow: hidden;
}
.resource-listing__link:hover, .resource-listing__link:focus {
  text-decoration: none;
}
.resource-listing__link:hover .resource-listing__heading, .resource-listing__link:focus .resource-listing__heading {
  text-decoration: underline;
}

.resource-listing__image {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  margin: 0 15px 0 0;
  border-radius: 10px;
}
.resource-listing__image:before {
  content: "";
  display: block;
  padding-top: 77.2727272727%;
}

.resource-listing__category {
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 5px 8px;
  background: #194F90;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  margin: 0 0 7px;
}

.resource-listing__date {
  font-size: 14px;
  font-size: 0.875rem;
}

.resource-listing__heading {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 10px;
}

.resource-listing__summary {
  font-size: 16px;
  font-size: 1rem;
}
.resource-listing__summary:last-child {
  margin: 0;
}

.resource-listing--grid .resource-listing__item {
  margin: 0 0 30px;
  border-bottom: 0;
  padding: 0;
}
.resource-listing--grid .resource-listing__link {
  display: block;
  border-radius: 10px;
}
.resource-listing--grid .resource-listing__image {
  -ms-flex: auto;
  flex: auto;
  margin: 0;
  border-radius: 0;
}
.resource-listing--grid .resource-listing__content {
  padding: 20px;
  background: #eee;
}

@media (min-width: 48em) {
  .resource-listing--grid {
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .resource-listing--grid .resource-listing__item {
    width: 50%;
    padding: 0 15px;
    margin: 0 0 30px;
  }
}
@media (min-width: 60em) {
  .resource-listing--grid .resource-listing__item {
    width: 33.33%;
  }
}
@media (min-width: 71.25em) {
  .resource-listing--grid .resource-listing__item {
    width: 25%;
  }
}
/* ================================================================
   Videos
   ================================================================ */
.video-stage__video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  border: 4px solid #194F90;
}

.video-stage__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-stage__info {
  background: #194F90;
  padding: 15px 20px;
  color: #fff;
  margin: 0 0 20px;
}

.video-stage__description {
  margin: 0;
}

.video-listing {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.video-listing__item {
  width: 100%;
  padding: 0 10px;
  margin: 0 0 20px;
}

.video-link {
  display: block;
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  color: #fff;
  text-decoration: none;
  text-align: center;
}
.video-link.active .video-link__title {
  background: #B92227;
}
.video-link:hover, .video-link:focus {
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.video-link:hover .video-link__title, .video-link:focus .video-link__title {
  background: #B92227;
}

.video-link__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #194F90;
  padding: 10px;
}

@media (min-width: 30em) {
  .video-listing__item {
    width: 50%;
  }
}
@media (min-width: 48em) {
  .video-listing__item {
    width: 33%;
  }
}
@media (min-width: 60em) {
  .video-listing__item {
    width: 25%;
  }
}
/* ================================================================
   Alerts
   ================================================================ */
.site-alert-container {
  background: #194F90;
  padding: 15px 0;
  position: relative;
}

.site-alert {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.site-alert + .site-alert {
  margin: 20px 0 0 0;
}

.site-alert__image {
  max-width: 84px;
  padding: 0 20px 0 0;
}

.site-alert__description {
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
}
.site-alert__description a {
  color: #fff;
}
.site-alert__description > :last-child {
  margin: 0;
}

.site-alert__close {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  cursor: pointer;
  right: 15px;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.site-alert__close::before, .site-alert__close::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  height: 60%;
  width: 1.6px;
  border-radius: 4px;
}
.site-alert__close::before {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site-alert__close::after {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site-alert__close:hover, .site-alert__close:focus {
  background: #ffffff;
}
.site-alert__close:hover::before, .site-alert__close:hover::after, .site-alert__close:focus::before, .site-alert__close:focus::after {
  background: #000;
}

/* ================================================================
   Cookie Consent
   ================================================================ */
.cookie-consent {
  background: #eee;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  border-top: 1px solid #ddd;
}

.cookie-consent__description {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 1rem;
}
.cookie-consent__description > :last-child {
  margin: 0;
}

/* ================================================================
   Hero Slider and Static
   ================================================================ */
.hero-slider {
  position: relative;
}

.hero-slide {
  width: 100%;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background: no-repeat center/cover;
}

.hero-slide__img {
  padding-top: 56.25%;
  background: no-repeat center/cover;
}

.hero-slide__container {
  max-width: 91.875rem;
  padding: 30px 1.25em 80px;
  margin: 0 auto;
  background: #194F90;
  color: #fff;
}
.hero-slide__container *::selection {
  background: #B92227;
}

.hero-slide__title {
  line-height: 1.3;
  font-weight: bold;
  margin: 0 0 10px;
}
.hero-slide__title {
  font-size: 30px;
}
@media screen and (min-width: 320px) {
  .hero-slide__title {
    font-size: calc(30px + 20 * ((100vw - 320px) / 640));
  }
}
@media screen and (min-width: 960px) {
  .hero-slide__title {
    font-size: 50px;
  }
}

.hero-slide__subtitle {
  font-weight: 300;
  margin: 0 0 10px;
  line-height: 1.6;
}
.hero-slide__subtitle {
  font-size: 16px;
}
@media screen and (min-width: 320px) {
  .hero-slide__subtitle {
    font-size: calc(16px + 4 * ((100vw - 320px) / 640));
  }
}
@media screen and (min-width: 960px) {
  .hero-slide__subtitle {
    font-size: 20px;
  }
}

.hero-slide__button {
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  color: #194F90;
  border: 1px solid currentColor;
}
.hero-slide__button:hover, .hero-slide__button:focus {
  background: #194F90;
  color: #fff;
}

.slider-controls.slider-controls--hero {
  max-width: 91.875rem;
  padding: 0 1.25em;
  margin: 0 auto -62px;
  position: relative;
  -ms-flex-pack: start;
  justify-content: flex-start;
  top: -62px;
}
.slider-controls.slider-controls--hero .slider-button,
.slider-controls.slider-controls--hero .slider-button.slider-button--prev,
.slider-controls.slider-controls--hero .slider-button.slider-button--next {
  position: relative;
  left: auto;
  right: auto;
  -ms-transform: none;
  transform: none;
  width: 40px;
  height: 40px;
}

@media (min-width: 60em) {
  .hero-slide {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
  .hero-slide__img {
    display: none;
  }
  .hero-slide__container {
    position: relative;
    z-index: 2;
    display: -ms-flexbox;
    display: flex;
    min-height: 475px;
    background: none;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 0 1.25em;
    width: 100%;
  }
  .hero-slide__inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #194F90;
    padding: 20px 100px 80px;
    max-width: 600px;
  }
  .hero-slide__title {
    margin: 0 0 20px;
  }
  .hero-slide__subtitle {
    margin: 0 0 30px;
  }
  .hero-slide__button {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .slider-controls.slider-controls--hero {
    left: 100px;
  }
}
.page-banner {
  position: relative;
  padding: 15px 0;
  background: #eee;
}
.page-banner__inner {
  padding: 20px 0;
}

.page-banner__image {
  position: relative;
  background: no-repeat center center/cover;
  border-radius: 10px;
  margin: 0 0 15px;
}
.page-banner__image.b-lazy, .page-banner__image.b-lazy-wrapper {
  position: relative;
}
.page-banner__image.b-lazy::before, .page-banner__image.b-lazy-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #fff;
  transition: all 0.18s ease-in-out;
}
.page-banner__image.b-lazy.b-loaded::before, .page-banner__image.b-lazy.b-lazy-wrapper-done::before, .page-banner__image.b-lazy-wrapper.b-loaded::before, .page-banner__image.b-lazy-wrapper.b-lazy-wrapper-done::before {
  background: rgba(255, 255, 255, 0);
}
.page-banner__image::after {
  content: "";
  display: block;
  padding-top: 66.6666666667%;
}

.page-banner__content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-banner__heading {
  font-size: 28px;
  font-size: 1.75rem;
  margin: 0 0 10px;
}

.page-banner__subheading {
  font-size: 1.625rem;
  margin: 0 0 10px;
  font-weight: 600;
}

.page-banner__description {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 20px;
}

.page-banner__buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

@media (min-width: 60em) {
  .page-banner--with-image .page-banner__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .page-banner--with-image .page-banner__image {
    width: 50%;
    -ms-flex-order: 2;
    order: 2;
  }
  .page-banner--with-image .page-banner__content {
    width: 50%;
    padding-right: 5%;
    text-align: left;
  }
  .page-banner__content {
    padding: 40px 0;
  }
  .page-banner__heading {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .page-banner__description {
    position: relative;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.card-listing {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-listing__item {
  margin: 0 0 30px;
}

.card-item {
  background: #eee;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  height: 100%;
}

.card-item__media {
  max-width: 100px;
  margin: 0 auto 15px;
}

.card-item__icon {
  width: 100px;
  height: 100px;
  fill: #194F90;
  display: block;
}

.card-item__heading {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0 0 10px;
}

.card-item__description {
  margin: 0 0 10px;
}

@media (min-width: 30em) {
  .card-listing {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  .card-listing__item {
    width: 50%;
    padding: 0 15px;
  }
}
@media (min-width: 48em) {
  .card-listing__item {
    width: 33.33%;
  }
}
@media (min-width: 60em) {
  .card-listing__item {
    width: 25%;
  }
}
.side-by-side__img-container {
  margin: 0 0 30px;
}

.side-by-side__video {
  display: block;
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.side-by-side__video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: #194F90;
  opacity: 0.7;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 10;
}
.side-by-side__video:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  margin: 0 0 0 2px;
  border-top: 10px solid transparent;
  border-left: 14px solid #fff;
  border-bottom: 10px solid transparent;
  z-index: 10;
}

.side-by-side__img {
  position: relative;
  background: no-repeat center center/cover;
}
.side-by-side__img.b-lazy, .side-by-side__img.b-lazy-wrapper {
  position: relative;
}
.side-by-side__img.b-lazy::before, .side-by-side__img.b-lazy-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #fff;
  transition: all 0.18s ease-in-out;
}
.side-by-side__img.b-lazy.b-loaded::before, .side-by-side__img.b-lazy.b-lazy-wrapper-done::before, .side-by-side__img.b-lazy-wrapper.b-loaded::before, .side-by-side__img.b-lazy-wrapper.b-lazy-wrapper-done::before {
  background: rgba(255, 255, 255, 0);
}
.side-by-side__img::after {
  content: "";
  display: block;
  padding-top: 70.8333333333%;
}

.side-by-side__content > *:last-child {
  margin-bottom: 0;
}

.side-by-side__links {
  text-align: center;
  margin-top: 30px;
}
.side-by-side__links .btn, .side-by-side__links div[id*=form-] input[type=submit], div[id*=form-] .side-by-side__links input[type=submit],
.side-by-side__links .inline-form input[type=submit],
.inline-form .side-by-side__links input[type=submit] {
  margin-bottom: 25px;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 60em) {
  .side-by-side__links .btn, .side-by-side__links div[id*=form-] input[type=submit], div[id*=form-] .side-by-side__links input[type=submit],
  .side-by-side__links .inline-form input[type=submit],
  .inline-form .side-by-side__links input[type=submit] {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@media (min-width: 48em) {
  .side-by-side {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
  .side-by-side--flipped .side-by-side__img-container {
    -ms-flex-order: 2;
    order: 2;
  }
  .side-by-side--flipped .side-by-side__content {
    padding: 0 55px 0 0;
  }
  .side-by-side__box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .side-by-side__content {
    width: 100%;
    padding: 0 0 0 55px;
  }
  .side-by-side__img-container {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0;
  }
  .side-by-side__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center;
  }
  .side-by-side__links .btn, .side-by-side__links div[id*=form-] input[type=submit], div[id*=form-] .side-by-side__links input[type=submit],
  .side-by-side__links .inline-form input[type=submit],
  .inline-form .side-by-side__links input[type=submit] {
    margin: 0 10px 0 0;
  }
}
.side-by-side--full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media (min-width: 48em) {
  .side-by-side--full-width.side-by-side--flipped .side-by-side__box {
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 40px 60px 40px 20px;
  }
}
@media (min-width: 81.25em) {
  .side-by-side--full-width.side-by-side--flipped .side-by-side__box {
    padding: 40px 190px 40px 20px;
  }
}
.side-by-side--full-width.side-by-side--flipped .side-by-side__content {
  max-width: 580px;
}
.side-by-side--full-width .side-by-side__box {
  padding: 0 20px 40px;
}
@media (min-width: 48em) {
  .side-by-side--full-width .side-by-side__box {
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 40px 20px 40px 60px;
  }
}
@media (min-width: 81.25em) {
  .side-by-side--full-width .side-by-side__box {
    padding: 40px 20px 40px 190px;
  }
}
.side-by-side--full-width .side-by-side__content {
  max-width: 580px;
  padding: 0;
}

.side-by-side__links-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 30px;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 60em) {
  .side-by-side__links-wrap {
    margin-top: 60px;
  }
}

.side-by-side__links-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
}

.side-by-side__links-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.side-by-side__links-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.18s ease-in-out;
}
.side-by-side__links-link:hover, .side-by-side__links-link:active, .side-by-side__links-link:focus {
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.side-by-side__links-link svg {
  width: 24px;
  height: 24px;
}

.slider-controls {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 100;
  margin: 15px 0 0 0;
}

.slider-pagination {
  position: relative;
  width: auto !important;
  top: auto !important;
  bottom: auto !important;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin: 0 10px;
}
.slider-pagination.swiper-pagination-lock {
  display: none;
}

.slider-pagination__button {
  border: 1px solid #fff;
  padding: 0;
  background: #194F90;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
}
.slider-pagination__button.slider-pagination__button--active {
  background: #B92227;
}
.slider-pagination__button:hover, .slider-pagination__button:focus {
  background: #B92227;
}

.slider-pause {
  padding: 0;
  border: none;
  font-size: 0;
  cursor: pointer;
  box-sizing: border-box;
  z-index: 1000;
  background: none;
  margin: 2px 0 0 10px;
}
.slider-pause::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  transition: all 0.18s ease-in-out;
  border-style: double;
  border-width: 0 0 0 12px;
  border-color: transparent transparent transparent #808080;
}
.slider-pause.active:before {
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #194F90;
}
.slider-button {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0;
  border: 1px solid #fff;
  background: #194F90;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 100;
  color: #fff;
  cursor: pointer;
}
.slider-button:hover, .slider-button:focus {
  background: #B92227;
}
.slider-button.slider-button--prev {
  left: 15px;
}
.slider-button.slider-button--next {
  right: 15px;
}

.slider-button__icon {
  fill: currentColor;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/* Location Filters */
.locations {
  margin: 0 0 30px;
}

.locations__filters {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 30px;
  margin: 0 0 30px;
}

.locations__filters-heading {
  margin: 0 0 10px;
  font-size: 32px;
  font-size: 2rem;
  color: #194F90;
}

.locations__filters-label {
  display: block;
  margin: 0 0 5px;
  font-size: 18px;
  font-size: 1.125rem;
}

.locations__filters-list {
  list-style: none;
  margin: 0;
  padding: 5px 0 0;
}

.locations__filters-item {
  margin: 0 0 10px;
}

.locations-filter {
  position: relative;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  color: #194F90;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.locations-filter input[type=checkbox] {
  opacity: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
}
.locations-filter .locations-filter__checkbox {
  border: 1px solid #cccccc;
  background: #fff;
  width: 30px;
  height: 30px;
  font-size: 0;
  margin: 0 10px 0 0;
  position: relative;
}
.locations-filter .locations-filter__checkbox:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 9px;
  height: 17px;
  border: solid #f1f1f1;
  border-width: 0 3px 3px 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  display: none;
}
.locations-filter:hover .locations-filter__checkbox,
.locations-filter input[type=checkbox]:focus + .locations-filter__checkbox {
  background: #eee;
  outline: 1px solid #000;
}
.locations-filter input[type=checkbox]:checked + .locations-filter__checkbox {
  background: #194F90;
}
.locations-filter input[type=checkbox]:checked + .locations-filter__checkbox:after {
  display: block;
}

.locations__filters-form {
  margin: 30px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid #ddd;
}

.locations__filters-input {
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 50px;
  width: 100%;
  margin: 0 0 15px;
}

.locations__filters-button {
  width: 100%;
  display: block;
}

.locations__map-container {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.locations__map {
  height: 300px;
  width: 100%;
  background: #eee;
}

@media (min-width: 60em) {
  .locations {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .locations__filters {
    width: 48%;
    padding: 60px;
    margin: 0;
  }
  .locations__filters-heading {
    font-size: 46px;
    font-size: 2.875rem;
  }
  .locations__map-container {
    width: 48%;
  }
  .locations__map {
    height: 100%;
  }
}
/* Location Listing */
.locations-listing {
  list-style: none;
  padding: 0;
  margin: 0;
}

.locations-listing__item {
  margin: 0 0 30px;
}

.location-item {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 30px;
}

.location-item__heading {
  margin: 0 0 10px;
  font-size: 24px;
  font-size: 1.5rem;
}

.location-item__heading-link {
  text-decoration: none;
}
.location-item__heading-link:hover, .location-item__heading-link:focus {
  text-decoration: underline;
}

.location-item__address {
  margin: 0 0 15px;
}

.location-item__phone {
  margin: 0 0 15px;
  display: inline-block;
  font-weight: bold;
}

.location-item__hours {
  margin: 0 0 20px;
}

.location-item__hours-heading {
  margin: 0 0 5px;
  font-size: 18px;
  font-size: 1.125rem;
}

.location-item__hours-blocks {
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.location-item__hours-block {
  margin: 0 0 10px;
  padding: 0 10px;
  -ms-flex: 1;
  flex: 1;
}

.location-item__button {
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0 0;
}

@media (min-width: 48em) {
  .locations-listing {
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .locations-listing__item {
    width: 50%;
    padding: 0 15px;
    margin: 0 0 30px;
  }
  .location-item__button {
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media (min-width: 60em) {
  .locations-listing__item {
    width: 33.33%;
  }
}
/******************************** 
** Apps Banner 
********************************/
.apps-banner {
  background-color: #E2E2E2;
  padding: 50px 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 60em) {
  .apps-banner {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    padding: 60px 66px;
  }
}

@media (min-width: 60em) {
  .apps-banner__text {
    width: 60%;
    max-width: 806px;
  }
}

.apps-banner__heading {
  font-size: 1.625rem;
  margin-bottom: 14px;
  line-height: 1;
}

.apps-banner__badges {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 60em) {
  .apps-banner__badges {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.apps-banner__link {
  display: block;
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.18s ease-in-out;
}
.apps-banner__link:hover, .apps-banner__link:active, .apps-banner__link:focus {
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.apps-banner__badge {
  max-width: 140px;
}
@media (min-width: 60em) {
  .apps-banner__badge {
    max-width: 175px;
  }
}

/******************************** 
** News Cards 
********************************/
.news-card {
  width: 100%;
}

.news-card__figure {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1200/700;
  margin-bottom: 12px;
}

.news-card__img {
  object-fit: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.18s ease-in-out;
}
.news-card__img:hover, .news-card__img:active, .news-card__img:focus {
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  filter: brightness(1.05);
}

.news-card__categories, .news-details__categories {
  margin-bottom: 12px;
}

.news-card__category, .news-details__category {
  display: inline;
  color: #B92227;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.news-card__category:hover, .news-details__category:hover, .news-card__category:focus, .news-details__category:focus {
  text-decoration: underline;
}

.news-card__meta, .news-details__meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 14px;
  margin-bottom: 12px;
}

.news-card__date, .news-details__date {
  text-transform: uppercase;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
.news-card__date::after, .news-details__date::after {
  content: "|";
  display: block;
  color: #BDBDBD;
}

a.news-card__author, a.news-details__author-top {
  color: #3A3A3A;
  text-decoration: none;
}
a.news-card__author:hover, a.news-details__author-top:hover, a.news-card__author:active, a.news-details__author-top:active, a.news-card__author:focus, a.news-details__author-top:focus {
  text-decoration: underline;
}

.news-card__title {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (min-width: 60em) {
  .news-card__title {
    line-height: 1.2;
  }
}

.news-card__link {
  text-decoration: none;
  color: #3A3A3A;
}
.news-card__link:hover, .news-card__link:active, .news-card__link:focus {
  text-decoration: underline;
}

.news-card__desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /*autoprefixer: off */
  -webkit-box-orient: vertical;
  /*autoprefixer: on */
  margin-bottom: 30px;
}

.news-layout h2 {
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #BDBDBD;
}
@media (min-width: 60em) {
  .news-layout h2 {
    padding-bottom: 34px;
    margin-bottom: 40px;
  }
}

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 60em) {
  .news-list {
    margin: 0 -20px;
  }
}
@media (min-width: 60em) {
  .news-list .news-card {
    padding: 0 20px;
  }
}
@media (min-width: 60em) {
  .news-list--3-col .news-card {
    width: 33.33%;
  }
}

/******************************** 
**  Trending News
********************************/
@media (min-width: 60em) {
  .news-layout--trending .news-card__title {
    font-size: 1.5rem;
  }
}

/******************************** 
** Latest News 
********************************/
@media (min-width: 60em) {
  .news-layout--latest .news-list--grid {
    margin-bottom: 30px;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-columns: 2fr 1fr 1fr;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-areas: "a b c" "a d e";
  }
}
@media (min-width: 60em) {
  .news-layout--latest .news-list--grid .news-card:first-child {
    grid-area: a;
  }
}
.news-layout--latest .news-list--grid .news-card:first-child .news-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
@media (min-width: 60em) {
  .news-layout--latest .news-list--grid .news-card:first-child .news-card__title {
    font-size: 1.75rem;
  }
}
.news-layout--latest .news-list--3-col .news-card {
  margin-bottom: 30px;
}
.news-layout--latest .news-list--3-col .news-card .news-card__inner {
  height: 100%;
}
.news-layout--latest .news-list--3-col .news-card {
  margin-bottom: 0;
}
.news-layout--latest .news-list--3-col .news-card .news-card__inner {
  padding-top: 30px;
  border-top: 1px solid #BDBDBD;
}
@media (min-width: 60em) {
  .news-layout--latest .news-list--3-col .news-card:nth-child(1) .news-card__inner,
  .news-layout--latest .news-list--3-col .news-card:nth-child(2) .news-card__inner,
  .news-layout--latest .news-list--3-col .news-card:nth-child(3) .news-card__inner {
    padding-top: 0;
    border-top: 1px solid transparent;
  }
}

/******************************** 
**  Related News
********************************/
.news-layout--related h2 {
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
}

/******************************** 
** Hero Search 
********************************/
.hero-search {
  position: relative;
  padding: 40px 0;
}
@media (min-width: 60em) {
  .hero-search {
    padding: 90px 0 100px;
  }
}
.hero-search::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 79, 144, 0.8);
}

.hero-search__bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

.hero-search__inner {
  position: relative;
  z-index: 2;
  max-width: 1075px;
  padding: 0 1.25em;
  margin: auto;
}

.hero-search__title {
  color: #fff;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 30px;
}
@media (min-width: 60em) {
  .hero-search__title {
    margin-bottom: 50px;
  }
}

.hero-search__form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px 40px;
}
@media (min-width: 60em) {
  .hero-search__form {
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

input.hero-search__input {
  font-size: 1.125rem;
  padding: 5px 20px;
}
@media (min-width: 60em) {
  input.hero-search__input {
    -ms-flex: 1;
    flex: 1;
    max-width: 880px;
  }
}

.testimonial {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #eee;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 20px;
  height: 100%;
}

.testimonial__image {
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  margin: 0 15px 0 0;
  border-radius: 50%;
  height: 100px;
}

.testimonial__content {
  position: relative;
  padding: 0 0 0 45px;
}
.testimonial__content:before {
  position: absolute;
  content: " “";
  top: 0;
  left: 0;
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: bold;
  color: #B92227;
  line-height: 1;
}

.testimonial__heading {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 5px;
}

.testimonial__text {
  font-style: italic;
}

.testimonial__by {
  margin: 5px 0 0;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}

.rates-table-container {
  overflow-x: auto;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.rates-table tr {
  border-bottom: 1px solid #cccccc;
}
.rates-table tr:nth-of-type(odd) {
  background: #f2f2f2;
}
.rates-table th {
  background: #194F90;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 20px;
  text-align: left;
}
.rates-table td {
  color: #000;
  padding: 20px;
  text-align: left;
}
.rates-table.rates-table--stack {
  border-top: 1px solid #cccccc;
}
.rates-table.rates-table--stack tr:first-child {
  display: none;
}
.rates-table.rates-table--stack td {
  display: block;
  padding: 10px;
}
.rates-table.rates-table--stack .rates-table__mobile-heading {
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 5px;
}

@media (min-width: 48em) {
  .rates-table.rates-table--stack {
    border: 0;
  }
  .rates-table.rates-table--stack tr:first-child {
    display: table-row;
  }
  .rates-table.rates-table--stack td {
    display: table-cell;
    padding: 20px;
  }
  .rates-table.rates-table--stack .rates-table__mobile-heading {
    display: none;
  }
}
/* ================================================================
   Vendor Imports
   ================================================================ */
/**
 * Swiper 10.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 1, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -ms-transform-origin: center;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -ms-transform: scale(0);
  transform: scale(0);
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/*!
 * froala_editor v3.0.6 (https://www.froala.com/wysiwyg-editor)
 * License https://froala.com/wysiwyg-editor/terms/
 * Copyright 2014-2019 Froala Labs
 */
.clearfix::after {
  clear: both;
  display: block;
  content: "";
  height: 0;
}

.hide-by-clipping {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

img.fr-rounded, .fr-img-caption.fr-rounded img {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background-clip: padding-box;
}

img.fr-bordered, .fr-img-caption.fr-bordered img {
  border: solid 5px #CCC;
}

img.fr-bordered {
  box-sizing: content-box;
}

.fr-img-caption.fr-bordered img {
  box-sizing: border-box;
}

.fr-view {
  word-wrap: break-word;
}

.fr-view span[style~="color:"] a {
  color: inherit;
}

.fr-view strong {
  font-weight: 700;
}

.fr-view table {
  border: none;
  border-collapse: collapse;
  empty-cells: show;
  max-width: 100%;
}

.fr-view table td {
  min-width: 5px;
}

.fr-view table.fr-dashed-borders td, .fr-view table.fr-dashed-borders th {
  border-style: dashed;
}

.fr-view table.fr-alternate-rows tbody tr:nth-child(2n) {
  background: whitesmoke;
}

.fr-view table td, .fr-view table th {
  border: 1px solid #DDD;
}

.fr-view table td:empty, .fr-view table th:empty {
  height: 20px;
}

.fr-view table td.fr-highlighted, .fr-view table th.fr-highlighted {
  border: 1px double red;
}

.fr-view table td.fr-thick, .fr-view table th.fr-thick {
  border-width: 2px;
}

.fr-view table th {
  background: #ececec;
}

.fr-view hr {
  clear: both;
  user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  page-break-after: always;
}

.fr-view .fr-file {
  position: relative;
}

.fr-view .fr-file::after {
  position: relative;
  content: "📎";
  font-weight: normal;
}

.fr-view pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: visible;
}

.fr-view[dir=rtl] blockquote {
  border-left: none;
  border-right: solid 2px #5E35B1;
  margin-right: 0;
  padding-right: 5px;
  padding-left: 0;
}

.fr-view[dir=rtl] blockquote blockquote {
  border-color: #000000;
}

.fr-view[dir=rtl] blockquote blockquote blockquote {
  border-color: #000000;
}

.fr-view blockquote {
  border-left: solid 2px #000000;
  margin-left: 0;
  padding-left: 5px;
  color: #000000;
}

.fr-view blockquote blockquote {
  border-color: #000000;
  color: #000000;
}

.fr-view blockquote blockquote blockquote {
  border-color: #000000;
  color: #000000;
}

.fr-view span.fr-emoticon {
  font-weight: normal;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
  display: inline;
  line-height: 0;
}

.fr-view span.fr-emoticon.fr-emoticon-img {
  background-repeat: no-repeat !important;
  font-size: inherit;
  height: 1em;
  width: 1em;
  min-height: 20px;
  min-width: 20px;
  display: inline-block;
  margin: -0.1em 0.1em 0.1em;
  line-height: 1;
  vertical-align: middle;
}

.fr-view .fr-text-gray {
  color: #AAA !important;
}

.fr-view .fr-text-bordered {
  border-top: solid 1px #222;
  border-bottom: solid 1px #222;
  padding: 10px 0;
}

.fr-view .fr-text-spaced {
  letter-spacing: 1px;
}

.fr-view .fr-text-uppercase {
  text-transform: uppercase;
}

.fr-view .fr-class-highlighted {
  background-color: #ffff00;
}

.fr-view .fr-class-code {
  border-color: #cccccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  background-clip: padding-box;
  background: #f5f5f5;
  padding: 10px;
  font-family: "Courier New", Courier, monospace;
}

.fr-view .fr-class-transparency {
  opacity: 0.5;
}

.fr-view img {
  position: relative;
  max-width: 100%;
}

.fr-view img.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

.fr-view img.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

.fr-view img.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

.fr-view img.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - 10px);
}

.fr-view img.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}

.fr-view img.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}

.fr-view span.fr-img-caption {
  position: relative;
  max-width: 100%;
}

.fr-view span.fr-img-caption.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

.fr-view span.fr-img-caption.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

.fr-view span.fr-img-caption.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

.fr-view span.fr-img-caption.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - 10px);
}

.fr-view span.fr-img-caption.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}

.fr-view span.fr-img-caption.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}

.fr-view .fr-video {
  text-align: center;
  position: relative;
}

.fr-view .fr-video.fr-rv {
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.fr-view .fr-video.fr-rv > iframe, .fr-view .fr-video.fr-rv object, .fr-view .fr-video.fr-rv embed {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fr-view .fr-video > * {
  box-sizing: content-box;
  max-width: 100%;
  border: none;
}

.fr-view .fr-video.fr-dvb {
  display: block;
  clear: both;
}

.fr-view .fr-video.fr-dvb.fr-fvl {
  text-align: left;
}

.fr-view .fr-video.fr-dvb.fr-fvr {
  text-align: right;
}

.fr-view .fr-video.fr-dvi {
  display: inline-block;
}

.fr-view .fr-video.fr-dvi.fr-fvl {
  float: left;
}

.fr-view .fr-video.fr-dvi.fr-fvr {
  float: right;
}

.fr-view a.fr-strong {
  font-weight: 700;
}

.fr-view a.fr-green {
  color: green;
}

.fr-view .fr-img-caption {
  text-align: center;
}

.fr-view .fr-img-caption .fr-img-wrap {
  padding: 0;
  display: inline-block;
  margin: auto;
  text-align: center;
  width: 100%;
}

.fr-view .fr-img-caption .fr-img-wrap img {
  display: block;
  margin: auto;
  width: 100%;
}

.fr-view .fr-img-caption .fr-img-wrap > span {
  margin: auto;
  display: block;
  padding: 5px 5px 10px;
  font-size: 14px;
  font-weight: initial;
  box-sizing: border-box;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  width: 100%;
  text-align: center;
}

.fr-view button.fr-rounded, .fr-view input.fr-rounded, .fr-view textarea.fr-rounded {
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  background-clip: padding-box;
}

.fr-view button.fr-large, .fr-view input.fr-large, .fr-view textarea.fr-large {
  font-size: 24px;
}

/**
 * Image style.
 */
a.fr-view.fr-strong {
  font-weight: 700;
}

a.fr-view.fr-green {
  color: green;
}

/**
 * Link style.
 */
img.fr-view {
  position: relative;
  max-width: 100%;
}

img.fr-view.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

img.fr-view.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

img.fr-view.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

img.fr-view.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - 10px);
}

img.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}

img.fr-view.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}

span.fr-img-caption.fr-view {
  position: relative;
  max-width: 100%;
}

span.fr-img-caption.fr-view.fr-dib {
  margin: 5px auto;
  display: block;
  float: none;
  vertical-align: top;
}

span.fr-img-caption.fr-view.fr-dib.fr-fil {
  margin-left: 0;
  text-align: left;
}

span.fr-img-caption.fr-view.fr-dib.fr-fir {
  margin-right: 0;
  text-align: right;
}

span.fr-img-caption.fr-view.fr-dii {
  display: inline-block;
  float: none;
  vertical-align: bottom;
  margin-left: 5px;
  margin-right: 5px;
  max-width: calc(100% - 10px);
}

span.fr-img-caption.fr-view.fr-dii.fr-fil {
  float: left;
  margin: 5px 5px 5px 0;
  max-width: calc(100% - 5px);
}

span.fr-img-caption.fr-view.fr-dii.fr-fir {
  float: right;
  margin: 5px 0 5px 5px;
  max-width: calc(100% - 5px);
}

/* ================================================================
   Pages
   ================================================================ */
html body {
  transition: all 0.3s ease-in-out;
}

.expandable-examples *:focus {
  outline: 1px solid blue;
}
.expandable-examples div {
  margin: 1em 0;
}

.styleguide-header-container {
  background: #3A3A3A;
  border-top: 2px solid #B92227;
  padding: 25px 0;
}

.styleguide-header {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  margin: 0;
}

@media (min-width: 60em) {
  .styleguide-header {
    font-size: 32px;
    font-size: 2rem;
  }
}
.styleguide-container {
  border: 1px solid #ddd;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  overflow: hidden;
  margin: 0 0 30px;
}

.styleguide-container-header {
  margin: -31px -31px 20px -31px;
  font-size: 24px;
  font-size: 1.5rem;
  background: #3A3A3A;
  color: #fff;
  padding: 15px 30px;
}

.color-block {
  display: inline-block;
  margin: 0 10px 5px 0;
}
.color-block span {
  margin: 0 0 5px;
  width: 200px;
  height: 120px;
  display: block;
  outline: 1px solid #ddd;
  outline-offset: 2px;
}
.color-block.color-brand1 span {
  background: #194F90;
}
.color-block.color-brand2 span {
  background: #B92227;
}
.color-block.color-neutral1 span {
  background: #3A3A3A;
}
.color-block.color-neutral2 span {
  background: #49606E;
}
.color-block.color-neutral3 span {
  background: #BDBDBD;
}
.color-block.color-neutral4 span {
  background: #ffffff;
}

#svg-list {
  font-size: 0;
}
#svg-list .item {
  display: inline-block;
  width: 120px;
  vertical-align: top;
  padding: 10px;
  text-align: center;
}
#svg-list .item .ident {
  font-size: 14px;
}
#svg-list .item svg {
  display: inline-block;
  width: 80%;
}

.container .talon-templates-wrapper {
  position: static;
  width: auto;
  background: none;
  border: none;
  padding: 0 0 1em 1em;
}
.container .talon-templates-wrapper .talon-templates-hide {
  display: none;
}
.container .talon-templates-wrapper::before {
  content: none;
}

.styleguide-tabs {
  display: -ms-flexbox;
  display: flex;
}

.styleguide-tab {
  display: none;
}
.styleguide-tab.active {
  border-color: red;
}

@media (min-width: 768px) {
  .styleguide-tab {
    display: block;
  }
  .styleguide-mob-tab {
    display: none;
  }
}
.news-details-top {
  padding-top: 40px;
  background-color: #E2E2E2;
}
@media (min-width: 60em) {
  .news-details-top {
    padding-top: 70px;
  }
}
.news-details-top h1 {
  line-height: 1.1;
  margin-bottom: 35px;
}

.news-details {
  font-size: 1.125rem;
}

.news-details__meta {
  margin-bottom: 0;
  padding-bottom: 40px;
}

.news-details__author-top {
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
.news-details__author-top::after {
  content: "|";
  display: block;
  color: #BDBDBD;
}

.news-details__figure {
  position: relative;
}
.news-details__figure::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background-color: #E2E2E2;
  top: 0;
  left: 0;
  height: 50%;
  width: 100%;
}

.news-details__img {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  display: block;
  background: no-repeat center center/cover;
  aspect-ratio: 1200/700;
}
.news-details__img::after {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.news-details .fr-view {
  padding-top: 52px;
}
.news-details .fr-view h2 {
  font-size: 1.75rem;
  line-height: 1.1;
  font-weight: 600;
}
.news-details .fr-view h2, .news-details .fr-view h3, .news-details .fr-view h4 {
  margin-bottom: 0.5em;
}
.news-details .fr-view h2:not(:first-child), .news-details .fr-view h3:not(:first-child), .news-details .fr-view h4:not(:first-child) {
  margin-top: 2em;
}
.news-details .fr-view p {
  line-height: 1.5;
}
.news-details .fr-view .fr-img-wrap > span {
  text-align: left;
  font-size: 0.8125rem;
  display: inline-block;
  margin-top: 5px;
  padding-left: 0;
}
@media (min-width: 60em) {
  .news-details .fr-view span.fr-img-caption.fr-dii.fr-fil,
  .news-details .fr-view img.fr-dii.fr-fil {
    margin-right: 20px;
  }
}
@media (min-width: 71.25em) {
  .news-details .fr-view span.fr-img-caption.fr-dii.fr-fil,
  .news-details .fr-view img.fr-dii.fr-fil {
    margin-right: 60px;
  }
}
@media (min-width: 60em) {
  .news-details .fr-view span.fr-img-caption.fr-dii.fr-fir,
  .news-details .fr-view img.fr-dii.fr-fir {
    margin-left: 20px;
  }
}
@media (min-width: 71.25em) {
  .news-details .fr-view span.fr-img-caption.fr-dii.fr-fir,
  .news-details .fr-view img.fr-dii.fr-fir {
    margin-left: 60px;
  }
}

/******************************** 
** News Share Block 
********************************/
.news-details__share {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
}
@media (min-width: 60em) {
  .news-details__share {
    margin: 60px 0;
  }
}

.news-details__share-text {
  font-weight: 800;
  font-size: 1.125rem;
}

.news-details__share-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.18s ease-in-out;
  -ms-transform: scale(1);
  transform: scale(1);
}
.news-details__share-link:hover, .news-details__share-link:active, .news-details__share-link:focus {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.news-details__share-link svg {
  width: 30px;
  height: 30px;
}

/******************************** 
** News Author Block 
********************************/
.news-details__author {
  margin: 30px 0;
  padding-top: 30px;
  border-top: 1px solid #E2E2E2;
}
@media (min-width: 60em) {
  .news-details__author {
    margin: 60px 0;
    padding-top: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
}

.news-details__author-figure {
  width: 100px;
  margin-bottom: 20px;
}
@media (min-width: 60em) {
  .news-details__author-figure {
    margin-bottom: 0;
  }
}

.news-details__author-img {
  display: block;
  background: no-repeat center center/cover;
  border-radius: 50%;
}
.news-details__author-img::after {
  content: "";
  display: block;
  padding-top: 100%;
}

.news-details__author-text {
  font-size: 1.125rem;
  -ms-flex: 1;
  flex: 1;
}

/* ================================================================
   Overwrite Imports
   ================================================================ */
.ktc-widget-zone .site-modal {
  display: block;
  border: 2px solid #444;
  padding: 20px;
}

.ktc-editable-area .accordion-content {
  display: block !important;
}

/* ================================================================
   Print Styles
   ================================================================ */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited {
    text-decoration: underline;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .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;
  }
}
