@charset "UTF-8";
/**
 * @file
 * CSS output file
 *
 * Combine all theme scss into a single CSS file
 */
/**
 * Variables
 * Contains global variables available to the theme.
 */
/**
 * Mixins
 * Contains global SCSS mixins
 */
/**
 * Animations
 * Contains all keyframe animations in use on the site.
 */
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes listFadeOutSlideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10vh);
            transform: translateY(10vh);
  }
}
@keyframes listFadeOutSlideDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10vh);
            transform: translateY(10vh);
  }
}
@-webkit-keyframes listFadeInSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10vh);
            transform: translateY(10vh);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes listFadeInSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10vh);
            transform: translateY(10vh);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*! 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.
 */
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

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, .vid-inline__caption,
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 {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * 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 */
  -webkit-text-decoration: underline dotted;
     -moz-text-decoration: underline dotted;
          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: #FFFF00;
  color: #000000;
}

/**
 * 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: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

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

/**
 * 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: none; /* 2 */
  cursor: pointer;
}

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

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

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

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

/**
 * 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] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[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;
}

/**
 * @file
 * Typography
 * Base typography for the theme
 */
h1 {
  font-family: "matrix-ii", sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
  font-weight: 800;
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-feature-settings: "salt" on;
     -moz-font-feature-settings: "salt" on;
          font-feature-settings: "salt" on;
}
@media screen and (min-width: 700px) {
  h1 {
    font-size: 7rem;
  }
}
@media screen and (min-width: 1025px) {
  h1 {
    font-size: 8.4rem;
  }
}

h2 {
  margin: 35px 0 4px;
  font-family: "matrix-ii", sans-serif;
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 800;
  -webkit-font-feature-settings: "salt" on;
     -moz-font-feature-settings: "salt" on;
          font-feature-settings: "salt" on;
}
@media screen and (min-width: 700px) {
  h2 {
    margin: 40px 0 10px;
    font-size: 4.4rem;
  }
}
@media screen and (min-width: 1025px) {
  h2 {
    margin: 60px 0 15px;
    font-size: 6rem;
    font-variant-numeric: lining-nums proportional-nums;
  }
}

h3 {
  margin: 35px 0 5px;
  font-family: "matrix-ii", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-feature-settings: "salt" on;
     -moz-font-feature-settings: "salt" on;
          font-feature-settings: "salt" on;
}
@media screen and (min-width: 700px) {
  h3 {
    margin: 40px 0 15px;
    font-size: 3.4rem;
  }
}
@media screen and (min-width: 1025px) {
  h3 {
    margin: 60px 0 15px;
    font-size: 4.8rem;
  }
}

h4, .h4 {
  margin: 35px 0 6px;
  font-family: "matrix-ii", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-feature-settings: "salt" on;
     -moz-font-feature-settings: "salt" on;
          font-feature-settings: "salt" on;
}
@media screen and (min-width: 700px) {
  h4, .h4 {
    margin: 40px 0 11px;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1025px) {
  h4, .h4 {
    margin: 60px 0 15px;
    font-size: 3.2rem;
  }
}

h5 {
  margin: 35px 0 6px;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 700px) {
  h5 {
    margin: 40px 0 11px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1025px) {
  h5 {
    margin: 60px 0 15px;
    font-size: 2.4rem;
  }
}

h6 {
  margin: 35px 0 6px;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (min-width: 700px) {
  h6 {
    margin: 40px 0 11px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  h6 {
    margin: 60px 0 15px;
    font-size: 2rem;
  }
}

p {
  margin: 0 0 1em;
}
p:empty {
  display: none;
}

strong {
  font-weight: 700;
}

/**
 * Base theme styles
 * This file contains theme base styles.
 *
 * For example:
 * - WYSIWYG styles and layouts
 * - CTAs
 * - Images and Videos
 * - Blockquotes
 * - Tables
 */
html {
  font-size: 10px;
}

body {
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #002554;
  word-break: break-word;
  overflow-x: clip;
}
@media (min-width: 1025px) {
  body {
    line-height: 1.78;
  }
}
body.js-fixed {
  overflow: hidden;
}

.wysiwyg {
  margin: auto;
  max-width: 865px;
}
.wysiwyg:after {
  display: table;
  content: "";
  clear: both;
}
@media screen and (min-width: 700px) {
  .wysiwyg {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .wysiwyg {
    margin-bottom: 5.8rem;
  }
}

* > p:last-child,
* > ul:last-child,
* > ol:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

a.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
}
a.skip-link.visually-hidden {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
a.skip-link.visually-hidden:active, a.skip-link.visually-hidden:focus {
  position: static !important;
  clip: auto;
  height: auto;
  width: auto;
  overflow: auto;
}
a.skip-link.visually-hidden:focus {
  background-color: #ffffff;
  padding: 3px 10px;
  position: absolute !important;
  z-index: 10000;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

a {
  font-weight: 700;
  -webkit-text-decoration-color: #cedc00;
     -moz-text-decoration-color: #cedc00;
          text-decoration-color: #cedc00;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  color: #385e9d;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #cedc00));
  background-image: -o-linear-gradient(left, transparent 50%, #cedc00 50%);
  background-image: linear-gradient(to right, transparent 50%, #cedc00 50%);
  background-size: 200% 100%;
  cursor: pointer;
  -webkit-transition: color 0.3s, background-position 0.3s;
  -o-transition: color 0.3s, background-position 0.3s;
  transition: color 0.3s, background-position 0.3s;
}
a:focus {
  outline: solid 1px #000000;
  outline-offset: 2px;
}
a:hover {
  color: #002554;
  background-position: -100% 0;
}

.cta {
  display: inline-block;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.5rem;
  line-height: normal;
  font-weight: 600;
  text-decoration: none;
  color: #002554;
}
@media screen and (min-width: 700px) {
  .cta {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .cta {
    font-size: 2rem;
  }
}
.cta--button {
  font-weight: 700;
  position: relative;
  background: #cedc00;
  -webkit-clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
          clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (min-width: 700px) {
  .cta--button {
    -webkit-clip-path: polygon(11px 0, 100% 0, 100.5% calc(100% - 12px), calc(100% - 12px) 101%, 0 101%, 0 11px);
            clip-path: polygon(11px 0, 100% 0, 100.5% calc(100% - 12px), calc(100% - 12px) 101%, 0 101%, 0 11px);
  }
}
@media screen and (min-width: 1025px) {
  .cta--button {
    -webkit-clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  }
}
.cta--button:focus .cta__inner {
  outline: solid 1px #000000;
  outline-offset: -9px;
}
.cta--button .cta__inner {
  display: block;
  padding: 8px 20px 10px 14px;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #cedc00), color-stop(50%, #ffffff));
  background-image: -o-linear-gradient(left, #cedc00 50%, #ffffff 50%);
  background-image: linear-gradient(to right, #cedc00 50%, #ffffff 50%);
  background-size: 200% 100%;
  -webkit-transition: color 0.3s, background-position 0.3s;
  -o-transition: color 0.3s, background-position 0.3s;
  transition: color 0.3s, background-position 0.3s;
  -webkit-clip-path: polygon(8.5px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 8.5px), calc(100% - 8.5px) calc(100% - 1px), 1px calc(100% - 1px), 1px 8.5px);
          clip-path: polygon(8.5px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 8.5px), calc(100% - 8.5px) calc(100% - 1px), 1px calc(100% - 1px), 1px 8.5px);
}
@media screen and (min-width: 700px) {
  .cta--button .cta__inner {
    padding: 9px 17px 9px 16px;
    -webkit-clip-path: polygon(11px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 12px), calc(100% - 12.5px) calc(100% - 1px), 1px calc(100% - 1px), 1px 11px);
            clip-path: polygon(11px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 12px), calc(100% - 12.5px) calc(100% - 1px), 1px calc(100% - 1px), 1px 11px);
  }
}
@media screen and (min-width: 1025px) {
  .cta--button .cta__inner {
    padding: 8px 18px 9px 21px;
    -webkit-clip-path: polygon(12.5px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 12px), calc(100% - 12.5px) calc(100% - 1px), 1px calc(100% - 1px), 1px 12.5px);
            clip-path: polygon(12.5px 1px, calc(100% - 1px) 1px, calc(100% - 1px) calc(100% - 12px), calc(100% - 12.5px) calc(100% - 1px), 1px calc(100% - 1px), 1px 12.5px);
  }
}
.cta--button .last-word span::before, .cta--button .last-word span::after {
  border-color: #002554 !important;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.cta--button:hover {
  color: #002554;
  background: #002554;
}
.cta--button:hover .cta__inner {
  background-position: -100% 0;
}
.cta--button:hover .last-word span::before, .cta--button:hover .last-word span::after {
  border-color: #385e9d !important;
}
.cta--button--outlined--white-bg .cta__inner, .cta--button--outlined--navy-bg .cta__inner {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffffff), color-stop(50%, #cedc00));
  background-image: -o-linear-gradient(left, #ffffff 50%, #cedc00 50%);
  background-image: linear-gradient(to right, #ffffff 50%, #cedc00 50%);
}
.cta--button--outlined--white-bg:hover, .cta--button--outlined--navy-bg:hover {
  border-color: #cedc00;
}
.cta--button--outlined--white-bg:hover::before, .cta--button--outlined--white-bg:hover::after, .cta--button--outlined--navy-bg:hover::before, .cta--button--outlined--navy-bg:hover::after {
  border-color: #cedc00;
}
.cta--button--outlined--white-bg:hover .cta__inner::before, .cta--button--outlined--white-bg:hover .cta__inner::after, .cta--button--outlined--navy-bg:hover .cta__inner::before, .cta--button--outlined--navy-bg:hover .cta__inner::after {
  border-color: #cedc00;
}
.cta--button--outlined--white-bg:hover .last-word span::before, .cta--button--outlined--white-bg:hover .last-word span::after, .cta--button--outlined--navy-bg:hover .last-word span::before, .cta--button--outlined--navy-bg:hover .last-word span::after {
  border-color: #002554;
}
.cta--button--outlined--white-bg .cta__inner::before, .cta--button--outlined--white-bg .cta__inner::after, .cta--button--outlined--navy-bg .cta__inner::before, .cta--button--outlined--navy-bg .cta__inner::after {
  border-color: #002554;
}
.cta--button--outlined--white-bg .last-word span::before, .cta--button--outlined--white-bg .last-word span::after, .cta--button--outlined--navy-bg .last-word span::before, .cta--button--outlined--navy-bg .last-word span::after {
  border-color: #385e9d;
}
.cta--button--outlined--white-bg {
  background: #002554;
}
.cta--button--outlined--white-bg .last-word span::before, .cta--button--outlined--white-bg .last-word span::after {
  border-color: #385e9d !important;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.cta--button--outlined--white-bg:hover {
  background: #cedc00;
}
.cta--button--outlined--white-bg:hover .last-word span::before, .cta--button--outlined--white-bg:hover .last-word span::after {
  border-color: #002554 !important;
}
.cta--button--outlined--navy-bg {
  color: #ffffff;
  background: #cedc00;
}
.cta--button--outlined--navy-bg:focus .cta__inner {
  outline: solid 1px #ffffff;
  outline-offset: -9px;
}
.cta--button--outlined--navy-bg .cta__inner {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #002554), color-stop(50%, #cedc00));
  background-image: -o-linear-gradient(left, #002554 50%, #cedc00 50%);
  background-image: linear-gradient(to right, #002554 50%, #cedc00 50%);
}
.cta--button--outlined--navy-bg .last-word span::before, .cta--button--outlined--navy-bg .last-word span::after {
  border-color: #cedc00 !important;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.cta--button--outlined--navy-bg:hover {
  color: #002554;
}
.cta--button--outlined--navy-bg:hover .last-word span::before, .cta--button--outlined--navy-bg:hover .last-word span::after {
  border-color: #002554 !important;
}
.cta--link {
  background: none;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.cta--link:hover {
  color: #385e9d;
}
.cta--link:hover .last-word {
  gap: 18px;
}
@media screen and (min-width: 700px) {
  .cta--link:hover .last-word {
    gap: 20px;
  }
}
.cta--link .cta__inner .last-word span::before, .cta--link .cta__inner .last-word span::after {
  border-color: #385e9d;
}
.cta .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .cta .last-word {
    gap: 10px;
  }
}
.cta .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 14px;
  height: 14px;
  position: relative;
}
@media screen and (min-width: 700px) {
  .cta .last-word span {
    width: 15px;
    height: 15px;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .cta .last-word span {
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.cta .last-word span::before, .cta .last-word span::after {
  content: "";
  display: block;
  position: absolute;
}
.cta .last-word span::before {
  width: 100%;
  border-top: solid 2px #002554;
}
.cta .last-word span::after {
  width: 8px;
  height: 8px;
  border-top: solid 2px #002554;
  border-right: solid 2px #002554;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

hr {
  border: 1px solid #385e9d;
  margin: 3rem 0;
}
@media screen and (min-width: 1025px) {
  hr {
    margin: 6rem 0;
  }
}

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

figure {
  margin: 0;
}

figcaption, .vid-inline__caption {
  margin: 0;
  padding: 9px 12px 10px 7px;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  background-color: #f8f6f0;
  border-left: 5px solid #f0ede1;
}

.img-inline--full {
  margin: 20px 0;
}
@media screen and (min-width: 700px) {
  .img-inline--full {
    margin: 30px 0;
  }
}
.img-inline--float {
  margin: 18px 0;
}
@media screen and (min-width: 700px) {
  .img-inline--float {
    max-width: calc(50% - 15px);
  }
}
@media screen and (min-width: 1025px) {
  .img-inline--float {
    max-width: 350px;
  }
}
@media screen and (max-width: 699px) {
  .img-inline--float {
    float: unset;
  }
}
.img-inline--float::after {
  content: "";
  clear: both;
}
@media screen and (min-width: 700px) {
  .img-inline--float.float-right {
    margin: 0 0 10px 30px;
  }
}
@media screen and (min-width: 1025px) {
  .img-inline--float.float-right {
    margin: 0 0 30px 40px;
  }
}
@media screen and (min-width: 700px) {
  .img-inline--float.float-left {
    margin: 0 30px 10px 0;
  }
}
@media screen and (min-width: 1025px) {
  .img-inline--float.float-left {
    margin: 0 40px 30px 0;
  }
}

.quote {
  margin: 30px -20px;
  padding: 20px 19px 25px;
  position: relative;
  color: #002554;
  background-color: #f8f6f0;
}
@media screen and (min-width: 700px) {
  .quote {
    margin: 30px 0;
    padding: 61px 40px;
  }
}
@media screen and (min-width: 1025px) {
  .quote {
    padding: 80px 113px 84px;
  }
}
.quote::before, .quote::after {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
}
.quote::before {
  width: 69px;
  height: 46px;
  top: 0;
  left: 0;
  background-image: url("/_resources/assets/icons/quote-left.svg");
}
@media screen and (min-width: 700px) {
  .quote::before {
    width: 80px;
    height: 54px;
  }
}
@media screen and (min-width: 1025px) {
  .quote::before {
    width: 102px;
    height: 69px;
  }
}
.quote::after {
  width: 92px;
  height: 93px;
  right: 0;
  bottom: 0;
  background-image: url("/_resources/assets/icons/quote-right.svg");
}
@media screen and (min-width: 700px) {
  .quote::after {
    width: 196px;
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .quote::after {
    width: 307px;
  }
}
@media screen and (max-width: 699px) {
  .quote::after {
    background-size: 240px;
  }
}
.quote__copy {
  margin: 0 0 11px;
  position: relative;
  font-family: "matrix-ii", sans-serif;
  font-size: 1.8rem;
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.18px;
}
@media screen and (min-width: 700px) {
  .quote__copy {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    letter-spacing: unset;
    background-color: #f8f6f0;
  }
}
@media screen and (min-width: 1025px) {
  .quote__copy {
    margin-bottom: 19px;
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.24px;
  }
}
.quote__copy::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -8px;
}
@media screen and (min-width: 1025px) {
  .quote__copy::before {
    left: -11px;
  }
}
.quote__copy::after {
  content: "”";
}
.quote__footer {
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4375;
}
.quote__attr {
  display: inline;
  font-weight: 800;
}
@media screen and (min-width: 700px) {
  .quote__attr + .quote__info::before {
    content: "/";
  }
}
.quote__info {
  display: inline;
}
.quote__info::before {
  margin: 0 3px 0 8px;
  display: inline-block;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4375;
  font-weight: 700;
  text-transform: uppercase;
  color: #b3a369;
}
.quote--dark {
  color: #ffffff;
  background-color: #002554;
}
.quote--dark:before {
  background-image: url("/_resources/assets/icons/quote-left--dark.svg");
}
.quote--dark:after {
  background-image: url("/_resources/assets/icons/quote-right--dark.svg");
}
.quote--dark .quote__copy {
  background-color: #002554;
}

ul,
ol {
  margin: 10px 0 30px;
  list-style-type: none;
}
ul li,
ol li {
  margin: 0 0 3px;
  position: relative;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #002554;
}
@media screen and (min-width: 700px) {
  ul li,
ol li {
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 1025px) {
  ul li,
ol li {
    margin-bottom: 10px;
  }
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 8px;
  padding-left: 20px;
}
@media screen and (min-width: 700px) {
  ul ul,
ul ol,
ol ul,
ol ol {
    margin-top: 10px;
  }
}

ul {
  padding: 0 0 0 22px;
}
@media screen and (min-width: 700px) {
  ul {
    padding-left: 38px;
  }
}
@media screen and (min-width: 1025px) {
  ul {
    padding-left: 29px;
  }
}
ul > li::before {
  content: "";
  display: inline-block;
  width: 2.5px;
  height: 2.5px;
  position: absolute;
  top: 11.5px;
  left: -11px;
  background-color: #385e9d;
  border-radius: 100%;
}
@media screen and (min-width: 700px) {
  ul > li::before {
    top: 12px;
    left: -12px;
  }
}

ol {
  padding: 0 0 0 34px;
  counter-reset: ol-counter;
}
@media screen and (min-width: 700px) {
  ol {
    padding-left: 47px;
  }
}
@media screen and (min-width: 1025px) {
  ol {
    padding-left: 39px;
  }
}
ol > li {
  counter-increment: ol-counter;
}
ol > li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  top: 0;
  left: -22px;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #385e9d;
}

table {
  display: block;
  max-width: 100%;
  border-collapse: collapse;
  clear: both;
}
table td,
table th {
  padding: 18px 10px;
  min-width: 250px;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
  color: #002554;
}
@media screen and (min-width: 1025px) {
  table td,
table th {
    padding: 16px 10px;
  }
}
table th {
  font-weight: 700;
}
table thead {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #f0ede1;
  border-bottom: solid 3px #b3a369;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
}
table thead::-webkit-scrollbar {
  display: none;
}
table thead th {
  padding: 12px 10px 9px;
}
@media screen and (max-width: 699px) {
  table thead th:first-of-type {
    padding-left: 3rem;
  }
}
table tbody td,
table tbody th {
  border-bottom: solid 1px #b3a369;
}
@media screen and (max-width: 699px) {
  table tbody tr > *:first-child {
    padding-left: 3rem;
  }
}
table .table-scroller {
  display: block;
  width: 100%;
  overflow: auto;
}

.table-block__wrapper {
  margin: 30px -20px 30px 0;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 699px) {
  .table-block__wrapper {
    margin: 30px -20px 30px;
  }
}
@media screen and (min-width: 700px) {
  .table-block__wrapper {
    margin: 30px 0;
    clear: both;
  }
}
.table-block__holder.js-scroll--right .table-block__next {
  opacity: 1;
  visibility: visible;
}
.table-block__holder.js-scroll--left .table-block__prev {
  opacity: 1;
  visibility: visible;
}
.table-block__prev, .table-block__next {
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  background-color: #385e9d;
  border: solid 1px #385e9d;
  -webkit-transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  -o-transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
}
.table-block__prev:hover, .table-block__next:hover {
  background-color: #ffffff;
}
.table-block__prev:hover::before, .table-block__next:hover::before {
  border-color: #385e9d;
}
.table-block__prev::before, .table-block__next::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.table-block__next {
  right: 0;
}
@media screen and (min-width: 700px) {
  .table-block__next {
    right: -4rem;
  }
}
@media screen and (min-width: 1025px) {
  .table-block__next {
    right: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.table-block__next::before {
  margin-left: -5px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.table-block__prev {
  left: 0;
}
@media screen and (min-width: 700px) {
  .table-block__prev {
    left: -4rem;
  }
}
@media screen and (min-width: 1025px) {
  .table-block__prev {
    left: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.table-block__prev::before {
  margin-right: -5px;
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
}

/**
 * @file
 * Print specific styliing
 */
@media print {
  .header,
.footer {
    display: none;
  }
}
/**
 * @file
 * Page
 *
 * Contains styles for page wrapper layout.
 */
.container {
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1800px;
}
@media screen and (min-width: 700px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/**
 * @file
 * Columns
 *
 * Base styles for all column layouts.
 */
@media (min-width: 700px) {
  .column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.column__col {
  position: relative;
  margin: 0 0 2rem;
}
@media (min-width: 700px) {
  .column__col {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
}
.column__img {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 68.5%;
}
.column__img + .column__title,
.column__img + .column__subtitle,
.column__img + .column__body {
  margin-top: 1rem;
}
@media (min-width: 1025px) {
  .column__img + .column__title,
.column__img + .column__subtitle,
.column__img + .column__body {
    margin-top: 2.5rem;
  }
}
.column__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column__title {
  margin: 0 0 0.75rem;
}
@media screen and (min-width: 700px) {
  .column__title {
    margin: 0 0 1rem;
  }
}
.column__title h3 {
  margin: 0;
  color: #002554;
}
.column__title a {
  color: #385e9d;
  text-decoration: none;
  background-image: none;
  color: #385e9d;
}
.column__title a:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .column__title a:hover .last-word span:after {
    left: 1.8rem;
  }
}
.column__title a .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .column__title a .last-word {
    gap: 10px;
  }
}
.column__title a .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .column__title a .last-word span {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .column__title a .last-word span {
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.column__title a .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-blue.svg");
}
.column__title a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.column__subtitle {
  margin: 0 0 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #002554;
}
@media screen and (min-width: 700px) {
  .column__subtitle {
    font-size: 1.8rem;
    margin: 0 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .column__body {
    line-height: 1.5;
  }
}

@media (min-width: 700px) {
  .column--two {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 700px) {
  .column--two .column__col {
    -webkit-flex-basis: calc(50% - 10px);
        -ms-flex-preferred-size: calc(50% - 10px);
            flex-basis: calc(50% - 10px);
  }
}
@media (min-width: 1025px) {
  .column--two .column__col {
    -webkit-flex-basis: calc(50% - 14px);
        -ms-flex-preferred-size: calc(50% - 14px);
            flex-basis: calc(50% - 14px);
  }
}

@media (min-width: 700px) {
  .column--three {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .column--three {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 700px) {
  .column--three .column__col {
    -webkit-flex-basis: calc(50% - 10px);
        -ms-flex-preferred-size: calc(50% - 10px);
            flex-basis: calc(50% - 10px);
  }
}
@media (min-width: 1025px) {
  .column--three .column__col {
    -webkit-flex-basis: calc(33.3333333333% - 16.6666666667px);
        -ms-flex-preferred-size: calc(33.3333333333% - 16.6666666667px);
            flex-basis: calc(33.3333333333% - 16.6666666667px);
  }
}
.column--three.slick-slider {
  display: block;
}

/**
 * @file
 * Section
 *
 * Base styles for all section content.
 */
.section {
  margin: 2rem 0;
}
@media (min-width: 1025px) {
  .section {
    margin: 3rem 0;
  }
}
.section__header {
  margin: 0 0 1rem;
  gap: 5rem;
}
@media screen and (min-width: 700px) {
  .section__header {
    margin: 0 0 1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .section__header {
    margin: 0 0 2.1rem;
  }
}
.section__header h2 {
  margin: 0;
  color: #002554;
}
.section__intro {
  margin: 0 0 1.8rem;
}
@media screen and (min-width: 1025px) {
  .section__intro {
    margin: 2rem 0;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.section__cta {
  margin: 1.5rem 0 0;
  text-align: center;
}
.section__cta a {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: #000000;
  color: #ffffff;
}
.section--bg-dark a {
  color: #ffffff;
}
.section--bg-dark a:hover {
  color: #000000;
}
.section--bg-dark a.cta--button {
  color: #ffffff;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #002554), color-stop(50%, #cedc00));
  background-image: -o-linear-gradient(left, #002554 50%, #cedc00 50%);
  background-image: linear-gradient(to right, #002554 50%, #cedc00 50%);
}
@media screen and (min-width: 1025px) {
  .section--bg-dark a.cta--button {
    -webkit-clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
            clip-path: polygon(11px 0, 100% 0, 100% calc(100% - 11px), calc(100% - 11px) 100%, 0 100%, 0 11px);
  }
}
.section--bg-dark a.cta--button:before, .section--bg-dark a.cta--button:after {
  border-left: 10px solid #cedc00;
}
.section--bg-dark a.cta--button .last-word span::before, .section--bg-dark a.cta--button .last-word span::after {
  border-color: #cedc00;
}
.section--bg-dark a.cta--button:hover {
  color: #002554;
}
.section--bg-dark a.cta--button:hover .last-word span::before, .section--bg-dark a.cta--button:hover .last-word span::after {
  border-color: #002554;
}

/**
 * @file
 * Page introduction
 *
 * Contains styles for accordion content object.
 */
.page-intro {
  margin: 2rem 0;
  font-family: "articulat-cf", sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (min-width: 700px) {
  .page-intro {
    font-size: 2.4rem;
    margin: 4.4rem 0 3.9rem;
  }
}
@media screen and (min-width: 1025px) {
  .page-intro {
    margin: 6rem 0;
    font-size: 3rem;
  }
}

.alert {
  position: relative;
  display: block;
  top: 0;
  padding: 2.1rem 0;
}
@media (min-width: 700px) {
  .alert {
    padding: 3.3rem 0 2.2rem;
  }
}
@media (min-width: 1025px) {
  .alert {
    padding: 3.6rem 0 3.5rem;
  }
}
@media (min-width: 700px) {
  .alert .container {
    padding: 0 2rem 0 4.1rem;
  }
}
@media (min-width: 1025px) {
  .alert .container {
    padding: 0 4rem;
  }
}
.alert-display {
  padding: 0;
}
.alert-display h1, .alert-display__content {
  padding: 0 15px;
}
@media (min-width: 700px) {
  .alert-display h1, .alert-display__content {
    padding: 0 20px;
  }
}
.alert-display__content {
  margin: 0 0 5rem 0;
}
.alert__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 700px) {
  .alert__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 1025px) {
  .alert__content {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 700px) {
  .alert__message {
    padding-right: 2rem;
  }
}
.alert__title {
  margin: 0 0 1rem;
  font-family: "matrix-ii", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 700px) {
  .alert__title {
    margin: 0 0 0.9rem;
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .alert__title {
    margin: 0 0 1rem;
    font-size: 3.2rem;
  }
}
.alert__description {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media (min-width: 700px) {
  .alert__description {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media (min-width: 1025px) {
  .alert__description {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.alert__cta {
  color: #ffffff;
  background-color: #000000;
  border-radius: 25px;
  margin: 1rem 0;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}
@media (min-width: 700px) {
  .alert__cta {
    margin: 0 0 0 1rem;
  }
}
.alert__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  display: none;
}
@media (min-width: 700px) {
  .alert__icon {
    display: block;
  }
}
.alert__icon--mobile {
  display: block;
}
@media (min-width: 700px) {
  .alert__icon--mobile {
    display: none;
  }
}
.alert__close-button {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  background: transparent;
}
@media (min-width: 700px) {
  .alert__close-button {
    top: 1.1rem;
    right: 1.2rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}
@media (min-width: 1025px) {
  .alert__close-button {
    right: 1.1rem;
  }
}
.alert__close-button:before, .alert__close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  width: 1.6rem;
  height: 1px;
  background-color: #002554;
}
@media (min-width: 700px) {
  .alert__close-button:before, .alert__close-button:after {
    width: 2.4rem;
    height: 2px;
  }
}
@media (min-width: 1025px) {
  .alert__close-button:before, .alert__close-button:after {
    width: 2.5rem;
  }
}
@media (forced-colors: active) {
  .alert__close-button:before, .alert__close-button:after {
    background-color: currentColor;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .alert__close-button:before, .alert__close-button:after {
    forced-color-adjust: none;
    background-color: #000000;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .alert__close-button:before, .alert__close-button:after {
    forced-color-adjust: none;
    background-color: #ffffff;
  }
}
.alert__close-button:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.alert--minor {
  background-color: #cedc00;
}
.alert--medium {
  background-color: #cedc00;
}
.alert--major {
  background-color: #cedc00;
}

/**
 * @file
 * Page introduction
 *
 * Contains styles for accordion content object.
 */
.main-footer {
  padding: 1.8rem 0 0;
  border-top: 2px solid #385e9d;
  clear: both;
}
@media (min-width: 700px) {
  .main-footer {
    padding: 2.2rem 0 0;
  }
}
@media (min-width: 1025px) {
  .main-footer {
    padding: 4.7rem 0 0;
  }
}
.footer-sock + .main-footer {
  border-top: none;
}
@media (min-width: 1025px) {
  .main-footer .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.main-footer__logo {
  display: block;
  max-width: 8.1rem;
  margin: 0 0 3.1rem;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background-image: none;
  opacity: 1;
}
@media (min-width: 700px) {
  .main-footer__logo {
    max-width: 7.2rem;
    margin: 0.5rem 0 2.2rem;
  }
}
@media (min-width: 1025px) {
  .main-footer__logo {
    max-width: 11.1rem;
    width: 100%;
    margin: 0;
  }
}
.main-footer__logo:hover {
  opacity: 0.7;
}
.main-footer__logo img {
  width: 100%;
}
.main-footer-column {
  padding: 0 0 1rem;
}
@media (min-width: 700px) {
  .main-footer-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5.8rem;
  }
}
@media (min-width: 1025px) {
  .main-footer-column {
    gap: 0;
    padding: 0 0 2rem;
  }
}
.main-footer-column__col {
  margin: 0 0 2rem;
}
@media (min-width: 700px) {
  .main-footer-column__col {
    width: 33.3%;
  }
}
@media (min-width: 1025px) {
  .main-footer-column__col {
    width: auto;
  }
}
@media (min-width: 1025px) {
  .main-footer-column__col:nth-child(1) {
    width: 11.2rem;
    margin-right: 10.4%;
  }
}
@media (min-width: 700px) {
  .main-footer-column__col:nth-child(2) {
    padding-left: 8px;
  }
}
@media (min-width: 1025px) {
  .main-footer-column__col:nth-child(2) {
    margin-right: 16.15%;
  }
}
@media (min-width: 1025px) {
  .main-footer-column__col:nth-child(3) {
    margin-right: 11%;
  }
}
@media (min-width: 1025px) {
  .main-footer-column__col:nth-child(4) {
    margin-left: auto;
  }
}
@media (min-width: 700px) {
  .main-footer-column__col--social {
    display: none;
  }
}
@media (min-width: 1025px) {
  .main-footer-column__col--social {
    display: block;
  }
}
.main-footer .social-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.72rem;
  padding: 0.5rem 0 0;
  margin: 0;
}
@media (min-width: 700px) {
  .main-footer .social-list {
    gap: 1.3rem;
  }
}
@media (min-width: 1025px) {
  .main-footer .social-list {
    gap: 1.65rem;
    padding-right: 0.8rem;
    padding-top: 0.7rem;
  }
}
.main-footer .social-list--tablet-only {
  display: none;
}
@media (min-width: 700px) {
  .main-footer .social-list--tablet-only {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1025px) {
  .main-footer .social-list--tablet-only {
    display: none;
  }
}
.main-footer .social-list__item {
  list-style: none;
  margin: 0;
}
.main-footer .social-list__item::before {
  display: none;
}
@media (min-width: 1025px) {
  .main-footer .social-list__item:last-child .icon--linkedin {
    width: 23px;
    height: 23px;
  }
}
.main-footer .social-list__link {
  background-image: none;
  display: block;
}
.main-footer .social-list__link svg {
  display: block;
}
@media (min-width: 1025px) {
  .main-footer .social-list__link svg {
    width: 26px;
    height: 26px;
  }
}
.main-footer .social-list__link svg path {
  -webkit-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
@media (forced-colors: active) {
  .main-footer .social-list__link svg path {
    fill: currentColor;
  }
}
.main-footer .social-list__link:hover svg path {
  fill: #002554;
}
.main-footer .address {
  margin: 0 0 2rem;
  font-style: normal;
}
@media (min-width: 1025px) {
  .main-footer .address {
    padding-top: 0.2rem;
    margin: 0 0 1.8rem;
    line-height: 1.5;
  }
}
.main-footer__links-item:not(:last-child) {
  margin: 0 0 1rem;
}
@media (min-width: 1025px) {
  .main-footer__links-item:not(:last-child) {
    margin: 0 0 0.6rem;
  }
}
.main-footer__links-link {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  -o-transition: text-decoration-color 0.3s ease, color 0.3s ease;
  transition: text-decoration-color 0.3s ease, color 0.3s ease;
  transition: text-decoration-color 0.3s ease, color 0.3s ease, -webkit-text-decoration-color 0.3s ease, -moz-text-decoration-color 0.3s ease;
  background-image: none;
}
.main-footer__links-link:hover {
  color: #002554;
  -webkit-text-decoration-color: #002554;
     -moz-text-decoration-color: #002554;
          text-decoration-color: #002554;
}
.main-footer__copyright {
  padding: 1rem 0;
  background-color: #f8f6f0;
}
.main-footer__copyright-box {
  font-size: 1.4rem;
}
@media (min-width: 700px) {
  .main-footer__copyright-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header button {
  border: none;
  background: transparent;
  padding: 0;
}
.header a {
  text-decoration: none;
  background-image: none;
}
.header li:before {
  content: none;
}
.header .nav-primary {
  background-color: #ffffff;
  padding: 2.4rem 2rem;
  margin: 0;
}
@media screen and (min-width: 700px) {
  .header .nav-primary {
    padding: 3.2rem 5rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .nav-primary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    margin: 0 4rem;
    border-top: 1px solid #99A8BB;
  }
}
.header .nav-primary-item {
  position: relative;
  margin-bottom: 2.05rem;
}
@media screen and (min-width: 700px) {
  .header .nav-primary-item {
    margin-bottom: 2.84rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .nav-primary-item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% + 4rem);
    height: 100%;
    z-index: -1;
  }
}
.header .nav-primary-item--with-children {
  position: relative;
  padding-left: 3rem;
}
@media screen and (min-width: 1025px) {
  .header .nav-primary-item--with-children {
    padding: 1.9rem 2rem;
    margin: 0 -2rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .nav-primary-item--with-children:last-of-type .nav-primary__submenu-toggle {
    right: 0;
  }
}
@media screen and (min-width: 1025px) {
  .header .nav-primary-item--with-children:last-of-type .nav-primary__submenu {
    left: auto;
    right: -2rem;
  }
}
.header .nav-primary-item-link {
  color: #002554;
  text-decoration: none;
  background-image: none;
  position: relative;
  color: #002554;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.02rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .nav-primary-item-link:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .header .nav-primary-item-link:hover .last-word span:after {
    left: 1.8rem;
  }
}
.header .nav-primary-item-link .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .header .nav-primary-item-link .last-word {
    gap: 10px;
  }
}
.header .nav-primary-item-link .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .header .nav-primary-item-link .last-word span {
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .header .nav-primary-item-link .last-word span {
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.header .nav-primary-item-link .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-navy.svg");
}
.header .nav-primary-item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .header .nav-primary-item-link::after {
    width: calc(100% + 0.5rem);
  }
}
@media screen and (min-width: 1275px) {
  .header .nav-primary-item-link::after {
    width: calc(100% + 1.8rem);
  }
}
@media screen and (min-width: 700px) {
  .header .nav-primary-item-link {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .nav-primary-item-link {
    font-size: 2rem;
    display: block;
  }
}
.header .nav-primary-item-link .last-word {
  pointer-events: none;
}
.header .nav-primary-item-link .last-word span {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .header .nav-primary-item-link .last-word span {
    display: none;
  }
}
.header .nav-primary-item-link:hover {
  color: #385e9d;
}
.header .nav-primary-item-link:hover:after {
  background-color: #cedc00;
}
.header .nav-primary-item-link:hover .last-word > span {
  opacity: 1;
}
@media screen and (min-width: 1025px) and (max-width: 1275px) {
  .header .nav-primary-item-link:hover .last-word > span:after {
    left: 0.5rem;
  }
}
.header .nav-primary__submenu {
  margin: 0;
  padding: 1rem 0 0.4rem;
}
@media screen and (min-width: 700px) {
  .header .nav-primary__submenu {
    padding: 1rem 0 0.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .nav-primary__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: calc(100% + 40px);
    min-width: 210px;
    padding: 0.4rem 2rem 0.8rem;
    background: #ffffff;
    -webkit-box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.25);
    height: auto;
    display: block;
  }
}
.header .nav-primary__submenu a {
  color: #385e9d;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .nav-primary__submenu a:hover {
  color: #002554;
  -webkit-text-decoration-color: #002554;
     -moz-text-decoration-color: #002554;
          text-decoration-color: #002554;
}
.header .nav-primary__submenu li {
  margin: 0 0 1.4rem;
}
@media screen and (min-width: 1025px) {
  .header .nav-primary__submenu li {
    margin: 0 0 1.3rem;
  }
}
.header .nav-primary__submenu-toggle {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #385e9d;
}
@media screen and (min-width: 700px) {
  .header .nav-primary__submenu-toggle {
    top: 0.8rem;
    left: -10px;
    width: 3rem;
    height: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .nav-primary__submenu-toggle {
    width: 2rem;
    height: 2rem;
    opacity: 0;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1275px) {
  .header .nav-primary__submenu-toggle {
    top: 2.55rem;
    left: auto;
    right: 20px;
  }
}
@media screen and (min-width: 1275px) {
  .header .nav-primary__submenu-toggle {
    top: 2.55rem;
    left: auto;
    right: -30px;
  }
}
.header .nav-primary__submenu-toggle:before, .header .nav-primary__submenu-toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 0;
  border-bottom: 2px solid #002554;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media screen and (min-width: 700px) {
  .header .nav-primary__submenu-toggle:before, .header .nav-primary__submenu-toggle:after {
    width: 1.1rem;
  }
}
.header .nav-primary__submenu-toggle:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (min-width: 1025px) {
  .header .nav-primary__submenu-toggle:focus {
    opacity: 1;
  }
}
.header .nav-primary__submenu-toggle[aria-expanded=true] {
  background: #f0ede1;
}
.header .nav-primary__submenu-toggle[aria-expanded=true]:after {
  content: none;
}
.header .i-am-a {
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .header .i-am-a {
    border-bottom: none;
  }
}
.header .i-am-a__bttn {
  text-align: left;
  padding: 1.4rem 2rem;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header .i-am-a__bttn {
    width: 100%;
  }
}
@media screen and (min-width: 700px) {
  .header .i-am-a__bttn {
    padding: 2.9rem 3rem 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .i-am-a__bttn {
    padding: 0.9rem 3.3rem 0.9rem 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .header .i-am-a__bttn[aria-expanded=false] {
    position: relative;
  }
  .header .i-am-a__bttn[aria-expanded=false]:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: calc(100% - 4rem);
    border-bottom: 1px solid #b3a369;
  }
}
@media screen and (max-width: 1024px) and (min-width: 700px) {
  .header .i-am-a__bttn[aria-expanded=false]:after {
    width: calc(100% - 6rem);
  }
}
.header .i-am-a__bttn[aria-expanded=true] .i-am-a__icon {
  top: calc(50% + 2px);
  -webkit-transform: translateY(-50%) rotate(-45deg);
      -ms-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
.header .i-am-a__bttn:hover .i-am-a__text > span {
  -webkit-text-decoration-color: #002554;
     -moz-text-decoration-color: #002554;
          text-decoration-color: #002554;
}
.header .i-am-a__text {
  position: relative;
  pointer-events: none;
}
.header .i-am-a__text > span {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header .i-am-a__icon {
  position: absolute;
  top: calc(50% - 2px);
  right: -1.7rem;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 2px solid #002554;
  border-right: 2px solid #002554;
  -webkit-transform: translateY(-50%) rotate(135deg);
      -ms-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
.header .i-am-a__dropdown {
  background: #f0ede1;
  padding: 1.3rem 0;
  border-bottom: 1px solid #b3a369;
}
@media screen and (min-width: 1025px) {
  .header .i-am-a__dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    width: 176px;
    padding: 1.5rem 0;
    height: auto;
    display: block;
    background: #f8f6f0;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  }
}
.header .i-am-a__dropdown a {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.5rem 2rem;
}
@media screen and (min-width: 700px) {
  .header .i-am-a__dropdown a {
    padding: 0.5rem 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .header .i-am-a__dropdown a {
    padding: 0.5rem 2rem;
  }
}
.header .i-am-a__dropdown a:hover {
  -webkit-text-decoration-color: #002554;
     -moz-text-decoration-color: #002554;
          text-decoration-color: #002554;
}
@media screen and (min-width: 700px) {
  .header .i-am-a__dropdown li {
    margin-bottom: 3px;
  }
}
.header .i-am-a__dropdown li:last-of-type {
  margin-bottom: 0;
}
.header__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 300;
  -webkit-transition: top 0.3s ease;
  -o-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .header__wrapper {
    padding-bottom: 69px;
  }
}
.header__inner {
  position: relative;
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.1rem 2rem;
}
@media screen and (min-width: 700px) {
  .header__inner {
    padding: 2rem 4rem 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .header__inner {
    padding: 3.1rem 4rem 2.7rem;
  }
}
.header__left {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 191px;
}
@media screen and (min-width: 700px) {
  .header__left {
    width: 294px;
  }
}
@media screen and (min-width: 1025px) {
  .header__left {
    width: 320px;
  }
}
.header__left a {
  position: relative;
  width: 100%;
  height: 24px;
}
@media screen and (min-width: 700px) {
  .header__left a {
    height: 37px;
  }
}
@media screen and (min-width: 1025px) {
  .header__left a {
    height: 40px;
  }
}
.header__img {
  width: 100%;
  height: 100%;
}
.header__img img {
  width: 100%;
  height: 100%;
}
.header__img--m {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 36.8px;
  opacity: 0;
}
@media screen and (min-width: 700px) {
  .header__img--m {
    width: 56.66px;
  }
}
@media screen and (min-width: 1025px) {
  .header__img--m {
    display: none;
  }
}
.header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-ancillary {
  background: #f8f6f0;
}
@media screen and (min-width: 1025px) {
  .header-ancillary {
    position: relative;
    z-index: 1;
    background: #f0ede1;
    padding-right: 1.2rem;
  }
}
.header-ancillary ul {
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1025px) {
  .header-ancillary ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header-ancillary a {
  display: block;
}
.header-ancillary > ul > li > a {
  color: #002554;
  font-weight: 600;
}
.header-ancillary-item {
  margin: 0 2rem;
  border-bottom: 1px solid #b3a369;
}
@media screen and (min-width: 700px) {
  .header-ancillary-item {
    margin: 0 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .header-ancillary-item {
    margin: 0 1.37rem;
    border-bottom: none;
  }
}
.header-ancillary-item a {
  padding: 1.15rem 0;
}
@media screen and (min-width: 700px) {
  .header-ancillary-item a {
    padding: 0.97rem 0;
  }
}
.header-ancillary-item a > span {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-ancillary-item a:hover > span {
  -webkit-text-decoration-color: #002554;
     -moz-text-decoration-color: #002554;
          text-decoration-color: #002554;
}
.header-ancillary--desktop {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease, visibility 0s 0s;
  -o-transition: opacity 0.3s ease, visibility 0s 0s;
  transition: opacity 0.3s ease, visibility 0s 0s;
}
@media screen and (max-width: 1024px) {
  .header-ancillary--desktop {
    display: none;
  }
}
@media screen and (min-width: 700px) {
  .header-ancillary--mobile {
    height: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .header-ancillary--mobile {
    display: none;
  }
}
.header-ctas--mobile {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0) !important;
          clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 0) !important;
}
@media screen and (min-width: 1025px) {
  .header-ctas--mobile {
    display: none !important;
  }
}
.header-ctas--mobile a {
  padding: 2.6rem 3.7rem;
}
.header-ctas ul {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.5rem 2rem;
  margin: 0;
  background: #cedc00;
}
@media screen and (min-width: 700px) {
  .header-ctas ul {
    padding: 2.58rem 2rem;
  }
}
.header-ctas ul:before, .header-ctas ul:after {
  content: "|";
  position: absolute;
  margin: 0;
  top: 15px;
  background-color: transparent;
  width: 0;
  height: 0;
}
@media screen and (min-width: 700px) {
  .header-ctas ul:before, .header-ctas ul:after {
    top: 27px;
    font-weight: 700;
  }
}
.header-ctas ul:before {
  left: 33%;
}
.header-ctas ul:after {
  right: 33%;
}
.header-ctas li {
  margin: 0;
}
.header-ctas a {
  color: #002554;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header-ctas a:hover {
  color: #002554;
  -webkit-text-decoration-color: #002554;
     -moz-text-decoration-color: #002554;
          text-decoration-color: #002554;
}
@media screen and (min-width: 700px) {
  .header-ctas a {
    font-size: 1.8rem;
  }
}
.header-main__button, .header-search__button {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
}
@media screen and (min-width: 700px) {
  .header-main__button, .header-search__button {
    width: 4.5rem;
    height: 4.5rem;
  }
}
.header-main__button > span, .header-search__button > span {
  pointer-events: none;
}
.header-main__button .button--close svg,
.header-main__button .button--open svg, .header-search__button .button--close svg,
.header-search__button .button--open svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header-main {
  visibility: visible;
  -webkit-transition: opacity 0.3s ease, visibility 0s 0s;
  -o-transition: opacity 0.3s ease, visibility 0s 0s;
  transition: opacity 0.3s ease, visibility 0s 0s;
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .header-main__button-wrapper {
    display: none;
  }
}
.header-main__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100svh - 53.5px);
  background: #f8f6f0;
}
@media screen and (min-width: 700px) {
  .header-main__dropdown {
    height: calc(100svh - 95px);
  }
}
@media screen and (max-width: 1024px) {
  .header-main__dropdown {
    overflow: auto;
  }
}
@media screen and (min-width: 1025px) {
  .header-main__dropdown {
    display: block !important;
    height: auto;
  }
}
@media screen and (min-width: 700px) {
  .header-main__dropdown__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100%;
  }
}
.header-main__dropdown__bottom .dropdown__col:nth-child(1) {
  background: #ffffff;
}
@media screen and (min-width: 700px) {
  .header-main__dropdown__bottom .dropdown__col:nth-child(1) {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 40%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 40%;
            flex: 1 0 40%;
  }
}
.header-main__dropdown__bottom .dropdown__col:nth-child(2) {
  background: #f8f6f0;
}
@media screen and (min-width: 700px) {
  .header-main__dropdown__bottom .dropdown__col:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.4%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 33.4%;
            flex: 0 0 33.4%;
  }
}
@media screen and (min-width: 1025px) {
  .header-main__dropdown__bottom .dropdown__col:nth-child(2) {
    display: none;
    background: #ffffff;
  }
}
.header-main__button {
  border: 1px solid #f0ede1 !important;
  -webkit-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
.header-main__button .button--open rect {
  -webkit-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}
.header-main__button[aria-expanded=true] .button--close {
  display: block;
}
.header-main__button[aria-expanded=true] .button--open {
  display: none;
}
.header-main__button:hover {
  border: 1px solid #002554 !important;
}
.header-main__button:hover .button--open svg > g > rect {
  fill: #ffffff;
}
.header-search .header-search__button:hover .button--open svg {
  background: transparent;
}
.header-search .header-search__button .button--close {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0;
}
@media screen and (min-width: 700px) {
  .header-search .header-search__button .button--close {
    width: 2rem;
    height: 2rem;
  }
}
.header-search .header-search__button .button--open svg {
  background: #cedc00;
  border: 1px solid #cedc00;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.header-search__dropdown {
  position: absolute;
  top: 50%;
  right: -10px;
  width: calc(100svw - 17.2rem);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #000000;
  -webkit-transition: right 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  -o-transition: right 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transition: right 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  opacity: 0;
}
@media screen and (min-width: 700px) {
  .header-search__dropdown {
    padding-bottom: 0;
    width: calc(100svw - 25.9rem);
  }
}
@media screen and (min-width: 1025px) {
  .header-search__dropdown {
    width: 34.5rem;
  }
}
.header .search-form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.header #nav-search {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  border: 0;
  background: transparent;
}
.header button[type=submit] {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
}
@media screen and (min-width: 700px) {
  .header button[type=submit] {
    width: 4.4rem;
    height: 4.4rem;
  }
}
.header button[type=submit] svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 700px) {
  .header button[type=submit] svg {
    width: 4rem;
    height: 4rem;
  }
}
@media (forced-colors: active) {
  .header button[type=submit] svg path {
    stroke: currentColor;
  }
}
@media screen and (max-width: 1024px) {
  .header.js-header-active .header__inner {
    border-bottom: 2px solid #385e9d;
  }
}
@media screen and (max-width: 1024px) {
  .header.js-header-active .header-main__dropdown {
    top: calc(100% + 2px);
  }
}
@media screen and (max-width: 1024px) {
  .header.js-search-active .header__img--logo {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s;
    -o-transition: opacity 0.3s ease, visibility 0s 0.3s;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
  }
}
@media screen and (max-width: 1024px) {
  .header.js-search-active .header__img--m {
    opacity: 1;
  }
}
.header.js-search-active .header-ancillary--desktop {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s;
  -o-transition: opacity 0.3s ease, visibility 0s 0.3s;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
@media screen and (max-width: 1024px) {
  .header.js-search-active .header-main {
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s;
    -o-transition: opacity 0.3s ease, visibility 0s 0.3s;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
    opacity: 0;
  }
}
.header.js-search-active .header-search {
  position: relative;
}
@media screen and (min-width: 700px) {
  .header.js-search-active .header-search__button {
    width: 3.6rem;
    -webkit-transition: width 0s 0.3s;
    -o-transition: width 0s 0.3s;
    transition: width 0s 0.3s;
  }
}
.header.js-search-active .header-search__dropdown {
  width: calc(100svw - 13.2rem);
  right: calc(100% + 4px);
  opacity: 1;
  visibility: visible !important;
  -webkit-transition: opacity 0.3s ease 0.3s, visibility 0s 0.3s, right 0.3s ease 0.3s, width 0.3s ease 0.3s;
  -o-transition: opacity 0.3s ease 0.3s, visibility 0s 0.3s, right 0.3s ease 0.3s, width 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s, visibility 0s 0.3s, right 0.3s ease 0.3s, width 0.3s ease 0.3s;
  opacity: 1;
}
@media screen and (min-width: 700px) {
  .header.js-search-active .header-search__dropdown {
    width: calc(100svw - 21.9rem);
  }
}
@media screen and (min-width: 1025px) {
  .header.js-search-active .header-search__dropdown {
    width: 37.5rem;
  }
}
.header.js-search-active .header-search__button .button--close {
  -webkit-transition: opacity 0.3s ease 0.3s;
  -o-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
  opacity: 1;
}
.header.js-search-active .header-search__button .button--open {
  -webkit-transition: opacity 0.3s ease 0.3s;
  -o-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
  opacity: 0;
}
.header.js-scroll-hidden .header__wrapper {
  top: -62px;
}
@media screen and (min-width: 700px) {
  .header.js-scroll-hidden .header__wrapper {
    top: -97px;
  }
}
@media screen and (min-width: 1025px) {
  .header.js-scroll-hidden .header__wrapper {
    top: -174px;
  }
}
.header.js-is-on-top .header__wrapper {
  position: relative;
}
.header:not(.js-is-on-top) {
  padding-top: 5.95rem;
}
@media screen and (min-width: 700px) {
  .header:not(.js-is-on-top) {
    padding-top: 9.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .header:not(.js-is-on-top) {
    padding-top: 17.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .header:not(.js-is-on-top) .header__wrapper {
    border-bottom: 2px solid #385e9d;
  }
}
@media screen and (min-width: 1025px) {
  .header:not(.js-is-on-top) .header__wrapper {
    border-bottom: transparent;
  }
  .header:not(.js-is-on-top) .header__wrapper:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #385e9d;
    pointer-events: none;
    z-index: -2;
  }
}

@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (-o-min-device-pixel-ratio: 0/1), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .header__img--m {
      left: 2px;
    }
  }
}
/**
 * @file
 * back to top
 *
 * Contains styles for "back to top button" component.
 */
.back-to-top-static .footer-sections-holder {
  position: relative;
}
.js-fixed .footer-sections-holder {
  position: fixed;
}

.back-to-top {
  position: fixed;
  bottom: 0;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  border: none;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  z-index: 3;
}
@media (min-width: 700px) {
  .back-to-top {
    width: 5rem;
    height: 5rem;
  }
}
@media (min-width: 1025px) {
  .back-to-top {
    width: 6rem;
    height: 6rem;
  }
}
@media (min-width: 1800px) {
  .back-to-top {
    right: 4rem;
  }
}
.back-to-top svg {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.1rem;
  height: 2.1rem;
}
@media screen and (min-width: 700px) {
  .back-to-top svg {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .back-to-top svg {
    width: 3.4rem;
    height: 3.4rem;
  }
}
@media (forced-colors: active) {
  .back-to-top svg path {
    stroke: currentColor;
  }
}
.back-to-top-static .back-to-top {
  position: absolute;
  top: -1.6rem;
  bottom: auto;
}
@media (min-width: 700px) {
  .back-to-top-static .back-to-top {
    top: -2.2rem;
  }
}
@media (min-width: 1025px) {
  .back-to-top-static .back-to-top {
    top: -2.6rem;
  }
}

.dataTables_paginate.paging_simple_numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 700px) {
  .dataTables_paginate.paging_simple_numbers {
    margin-bottom: 0;
  }
}
.dataTables_paginate.paging_simple_numbers > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (min-width: 1025px) {
  .dataTables_paginate.paging_simple_numbers > span {
    gap: 1.4rem;
  }
}
.dataTables_paginate.paging_simple_numbers > span a {
  font-weight: 700;
  display: inline-block;
}
.dataTables_paginate.paging_simple_numbers > span a.current {
  position: relative;
  font-weight: 400;
  color: #002554;
}
.dataTables_paginate.paging_simple_numbers > span a.current:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #f0ede1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  z-index: -1;
}
.dataTables_paginate .ellipsis {
  margin: 8px 9px 4px 5px;
}
.dataTables_paginate .paginate_button {
  background-image: none;
  padding: 0.4rem 0.8rem;
}
@media screen and (min-width: 1025px) {
  .dataTables_paginate .paginate_button {
    font-size: 2rem;
  }
}
.dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
}
.dataTables_paginate .paginate_button:not(.disabled, .current):hover {
  background-image: none;
  color: #002554;
}
.dataTables_paginate .previous,
.dataTables_paginate .next {
  background: #385e9d;
  font-size: 0;
  line-height: 0;
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border: 1px solid #385e9d;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.dataTables_paginate .previous:before,
.dataTables_paginate .next:before {
  position: absolute;
  left: 1.15rem;
  top: 1rem;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  content: "";
}
.dataTables_paginate .previous.next:before,
.dataTables_paginate .next.next:before {
  left: 0.9rem;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
.dataTables_paginate .previous:not(.disabled):hover,
.dataTables_paginate .next:not(.disabled):hover {
  cursor: pointer;
  opacity: 1;
  background: #ffffff;
}
.dataTables_paginate .previous:not(.disabled):hover:before,
.dataTables_paginate .next:not(.disabled):hover:before {
  border-color: #385e9d;
}

.dataTables_info {
  font-size: 1.4rem;
  font-weight: 700;
  color: #002554;
}
@media screen and (min-width: 700px) {
  .dataTables_info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.4rem;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 699px) {
  .table-info {
    width: 150px;
  }
}
@media screen and (min-width: 700px) {
  .table-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}
.table-info .table-length-wrap {
  position: relative;
}
@media screen and (min-width: 700px) {
  .table-info .table-length-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.9rem;
  }
}
.table-info .table-length-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4.3rem;
  height: 4.3rem;
  background: #f0ede1;
  pointer-events: none;
}
@media screen and (min-width: 700px) {
  .table-info .table-length-wrap:after {
    right: auto;
    left: 109px;
  }
}
.table-info .table-length-wrap:before {
  content: "";
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  width: 0.7rem;
  height: 0.7rem;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 700px) {
  .table-info .table-length-wrap:before {
    right: auto;
    left: 125px;
  }
}
.table-info .table-length-wrap > span {
  font-size: 1.4rem;
}
@media screen and (min-width: 700px) {
  .table-info .table-length-wrap > span {
    position: relative;
    font-size: 1.6rem;
    margin-right: 4rem;
  }
  .table-info .table-length-wrap > span:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 121%;
    background: #002554;
    top: 50%;
    right: -2rem;
    -webkit-transform: translateY(-50%) rotate(21deg);
        -ms-transform: translateY(-50%) rotate(21deg);
            transform: translateY(-50%) rotate(21deg);
  }
}
@media screen and (min-width: 700px) {
  .table-info .form__control {
    width: 152px;
  }
}

.has-bottom-arrow {
  position: relative;
}
.has-bottom-arrow:hover .bottom-arrow:before {
  opacity: 1;
}

.bottom-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 3;
  border: 2.5rem solid #cedc00;
  border-left-color: transparent;
  border-top-color: transparent;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.bottom-arrow:before {
  position: absolute;
  right: -2.3rem;
  bottom: -2.3rem;
  content: "";
  display: block;
  border: 2.2rem solid #ffffff;
  border-left-color: transparent;
  border-top-color: transparent;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.bottom-arrow::after {
  position: absolute;
  right: -2.3rem;
  bottom: -2.3rem;
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: transparent url("/_resources/assets/icons/arrow-navy.svg") no-repeat center;
}

.table {
  position: relative;
  margin: 2em 0;
  clear: both;
}
.table--scroll {
  overflow-x: auto;
  margin-right: -15px;
  margin-bottom: 4.8em;
}
@media screen and (min-width: 700px) {
  .table--scroll {
    margin: 2em 0 4.2em;
  }
}
@media screen and (min-width: 1025px) {
  .table--scroll {
    margin: 1.2em 0 3.6em;
  }
}
.table--scroll__btn {
  position: absolute;
  -webkit-appearance: none;
  background: none;
  border: 0;
  bottom: -33px;
  z-index: 1;
}
.table--scroll__btn > span {
  color: #b3a369;
  font-weight: 700;
}
.table--scroll__btn > span:after {
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8.75px;
  border-color: transparent transparent transparent #000000;
  content: "";
}
.table--scroll__btn.right {
  right: 0;
}
.table--scroll__btn.left {
  left: 0;
  display: none;
}
.table--scroll__btn.left > span:before {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  margin-right: 5px;
  border-width: 5px 8.7px 5px 0;
  border-color: transparent #000000 transparent transparent;
  content: "";
}
.table--scroll__btn.left > span:after {
  content: none;
}
.table--scroll__btn:hover {
  cursor: pointer;
}
@media (min-width: 700px) {
  .table--scroll__btn {
    display: none;
  }
}
.table--scroll.js-scroll-left {
  margin-right: -20px;
}
.table--scroll.js-scroll-left .left {
  display: none;
}
.table--scroll.js-scroll-left .right {
  display: block;
}
.table--scroll.js-scroll-right {
  margin-left: -20px;
}
.table--scroll.js-scroll-right .right {
  display: none;
}
.table--scroll.js-scroll-right .left {
  display: block;
}
@media (min-width: 700px) {
  .table--scroll.js-scroll-right .right,
.table--scroll.js-scroll-right .left, .table--scroll.js-scroll-left .right,
.table--scroll.js-scroll-left .left {
    display: none;
  }
}
.table table tr,
.table table th {
  min-width: 200px;
}
.table table th {
  text-align: left;
}

/**
 * @file
 * Accordion
 *
 * Contains styles for accordion content object.
 */
.accordion {
  margin: 30px 0;
  padding: 30px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ffffff;
  overflow-y: clip;
}
@media screen and (min-width: 700px) {
  .accordion {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1025px) {
  .accordion {
    margin: 80px 0;
    padding: 80px 0;
  }
}
.accordion::before, .accordion::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.accordion::before {
  width: 100vw;
  height: 100%;
  left: 50%;
  z-index: -2;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #002554;
}
.accordion::after {
  width: 80px;
  height: 460px;
  right: 0;
  z-index: -1;
  background-image: url("/_resources/assets/icons/accordion-graphic-blue.svg");
  background-size: cover;
}
@media screen and (min-width: 700px) {
  .accordion::after {
    width: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .accordion::after {
    width: 285px;
    height: 630px;
  }
}
.accordion__inner {
  margin: auto;
  padding: 0 20px;
  max-width: 865px;
}
@media screen and (min-width: 700px) {
  .accordion__inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 1025px) {
  .accordion__inner {
    padding: 0;
  }
}
.accordion__header {
  margin: 0 0 10px;
}
@media screen and (min-width: 700px) {
  .accordion__header {
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .accordion__header {
    margin-bottom: 20px;
  }
}
.accordion__header h2 {
  color: #ffffff;
}
.accordion__intro {
  margin: 0 0 20px;
}
@media screen and (min-width: 1025px) {
  .accordion__intro {
    margin-bottom: 32px;
  }
}
.accordion__all {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 39px;
}
.accordion__all button {
  padding: 0 0 0 29px;
  position: relative;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.accordion__all button:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.accordion__all button span {
  position: relative;
}
.accordion__all button span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.accordion__all button:hover span:after {
  background-color: #cedc00;
}
.accordion__all button.js-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.accordion__expand-all::before, .accordion__expand-all::after {
  content: "";
  width: 14px;
  border-top: solid 3px #ffffff;
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion__expand-all::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.accordion__collapse-all::after {
  content: "";
  width: 15px;
  border-top: solid 3px #ffffff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.accordion__items {
  background-color: #ffffff;
}
.accordion__item {
  margin: 0 0 2px;
  position: relative;
}
.accordion__item:last-child {
  margin: 0;
}
.accordion__item:not(:first-of-type) .accordion__toggle::before {
  top: -2px;
}
.accordion__item:not(:last-of-type) .accordion__content {
  margin-bottom: -2px;
}
.accordion__toggle {
  padding: 15px 12px 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  width: 100%;
  position: relative;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
  color: #385e9d;
  background: #f0ede1;
  border: 0;
  cursor: pointer;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
}
.accordion__toggle:focus {
  outline: solid 1px #000000;
  outline-offset: -4px;
}
@media screen and (min-width: 700px) {
  .accordion__toggle {
    padding: 20px 16px 18px;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}
@media screen and (min-width: 1025px) {
  .accordion__toggle {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.accordion__toggle:hover {
  color: #002554;
  background: #ffffff;
}
.accordion__toggle.js-expanded {
  color: #002554;
  background-color: #ffffff;
}
.accordion__toggle.js-expanded::before {
  opacity: 1;
}
.accordion__toggle.js-expanded .accordion__icon {
  background-color: #f0ede1;
}
.accordion__toggle.js-expanded .accordion__icon::before {
  width: 0;
}
.accordion__toggle::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  border-top: solid 2px #b3a369;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.accordion__icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (min-width: 700px) {
  .accordion__icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .accordion__icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }
}
.accordion__icon::before, .accordion__icon::after {
  content: "";
  width: 7.5px;
  display: block;
  border-top: solid 1px #002554;
  position: absolute;
  background-color: #000000;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
@media screen and (min-width: 700px) {
  .accordion__icon::before, .accordion__icon::after {
    width: 11px;
    border-top-width: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .accordion__icon::before, .accordion__icon::after {
    width: 15px;
  }
}
.accordion__icon::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.accordion__content {
  padding: 0 12px 26px 40px;
  display: none;
  color: #002554;
  border-bottom: solid 2px #b3a369;
}
@media screen and (min-width: 700px) {
  .accordion__content {
    padding: 0 16px 24px 84px;
  }
}
.accordion__content .views-element-container {
  width: 100%;
}
.accordion__copy {
  width: 100%;
}
.accordion__copy .table--wysiwyg {
  margin: 0;
  width: 100%;
}
@media (max-width: 699px) {
  .accordion__copy .table--wysiwyg {
    margin: 0 1em;
    width: calc(100% + 2em);
  }
}
.accordion__top {
  margin: 20px 0 0;
  padding: 0 0 0 21px;
  position: relative;
  font-family: "articulat-cf", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  color: #385e9d;
  background: transparent;
  border: 0;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.accordion__top:hover {
  color: #002554;
}
.accordion__top::before, .accordion__top::after {
  content: "";
  display: block;
  position: absolute;
}
.accordion__top::before {
  width: 7px;
  height: 7px;
  left: 0;
  top: calc(50% - 3px);
  border-style: solid;
  border-width: 1.5px 0 0 1.5px;
  border-color: #002554;
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.accordion__top::after {
  margin-top: 3px;
  height: 11px;
  top: calc(50% - 3px);
  left: 6.5px;
  border-left: solid 1.5px #002554;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/**
 * @file
 * Award
 *
 * Contains styles for Awards in WYSIWYG region.
 */
.award {
  clear: both;
}
.award__item {
  margin: 0 0 1em;
}
.award__title {
  font-weight: 700;
  margin: 0;
}

/**
 * @file
 * Form
 *
 * Contains styles for forms in main content region.
 */
.form {
  margin: 30px 0;
}
.form__item {
  margin: 0 0 19px;
}
@media screen and (min-width: 700px) {
  .form__item {
    margin-bottom: 22px;
  }
}
.form__item.form--fieldset {
  margin-bottom: 26px;
  padding: 0;
  border: none;
}
@media screen and (min-width: 700px) {
  .form__item.form--fieldset {
    margin-bottom: 30px;
  }
}
.form__item.form--fieldset legend {
  margin-bottom: 12px;
}
.form__item.form--fieldset label {
  margin: 0;
  font-weight: 400;
}
.form__item label,
.form__item legend {
  margin: 0 0 10px;
  display: block;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: #002554;
}
.form__checkbox, .form__radio {
  margin: 0 0 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.form__checkbox:last-child, .form__radio:last-child {
  margin-bottom: 0;
}
.form__checkbox-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #ffffff;
}
.form__checkbox-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}
@media screen and (min-width: 700px) {
  .form__select {
    margin-bottom: 23px;
  }
}
.form__select-wrapper {
  position: relative;
}
@media screen and (min-width: 700px) {
  .form__select-wrapper {
    max-width: 280px;
  }
}
.form__select-wrapper::before, .form__select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.form__select-wrapper::before {
  width: 43px;
  height: 100%;
  right: 0;
  background-color: #f0ede1;
}
.form__select-wrapper::after {
  width: 7px;
  height: 7px;
  right: 17px;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(135deg);
      -ms-transform: translateY(calc(-50% - 2px)) rotate(135deg);
          transform: translateY(calc(-50% - 2px)) rotate(135deg);
  border-top: solid 2px #002554;
  border-right: solid 2px #002554;
}
.form--actions button[type=submit] {
  padding: 8px 20px 10px 14px;
  position: relative;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.5rem;
  line-height: normal;
  font-weight: 600;
  color: #002554;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #cedc00), color-stop(50%, #ffffff));
  background-image: -o-linear-gradient(left, #cedc00 50%, #ffffff 50%);
  background-image: linear-gradient(to right, #cedc00 50%, #ffffff 50%);
  background-size: 200% 100%;
  border: solid 1px #cedc00;
  -webkit-transition: color 0.3s, background-position 0.3s, border-color 0.3s;
  -o-transition: color 0.3s, background-position 0.3s, border-color 0.3s;
  transition: color 0.3s, background-position 0.3s, border-color 0.3s;
}
@media screen and (min-width: 700px) {
  .form--actions button[type=submit] {
    padding: 9px 17px 9px 16px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .form--actions button[type=submit] {
    padding: 8px 18px 9px 21px;
    font-size: 2rem;
  }
}
.form--actions button[type=submit]:hover {
  color: #002554;
  background-position: -100% 0;
  border-color: #002554;
}
.form--actions button[type=submit]::before, .form--actions button[type=submit]::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
}
.form--actions button[type=submit]::before {
  top: -8px;
  left: -3px;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.form--actions button[type=submit]::after {
  bottom: -8px;
  right: -3px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.form--actions button[type=submit] .last-word {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .form--actions button[type=submit] .last-word {
    gap: 10px;
  }
}
.form--actions button[type=submit] .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 14px;
  height: 14px;
  position: relative;
}
@media screen and (min-width: 700px) {
  .form--actions button[type=submit] .last-word span {
    width: 15px;
    height: 15px;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .form--actions button[type=submit] .last-word span {
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.form--actions button[type=submit] .last-word span::before, .form--actions button[type=submit] .last-word span::after {
  content: "";
  display: block;
  position: absolute;
}
.form--actions button[type=submit] .last-word span::before {
  width: 100%;
  border-top: solid 2px #002554;
}
.form--actions button[type=submit] .last-word span::after {
  width: 8px;
  height: 8px;
  border-top: solid 2px #002554;
  border-right: solid 2px #002554;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

input,
textarea,
select,
button {
  color: #002554;
}
input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: solid 1px #000000;
  outline-offset: 2px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  width: 100%;
  padding: 8px 13px 10px;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  border: solid 1px #385e9d;
  border-radius: 0;
}
@media screen and (min-width: 700px) {
  input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
    width: 280px;
  }
}

textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 119px;
}
@media screen and (min-width: 700px) {
  textarea {
    width: 280px;
    min-width: 280px;
  }
}

input[type=checkbox],
input[type=radio] {
  width: 14px;
  height: 14px;
  position: relative;
  background-color: #ffffff;
  border: solid 1px #385e9d;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: #385e9d;
  border-color: #385e9d;
}
@media (forced-colors: active) {
  input[type=checkbox]:checked,
input[type=radio]:checked {
    background-color: currentColor;
    border-color: currentColor;
  }
}
input[type=checkbox]:checked + svg,
input[type=radio]:checked + svg {
  display: block;
}

input[type=radio] {
  border-radius: 100%;
}
input[type=radio]:checked::before {
  opacity: 1;
}
input[type=radio]::before {
  content: "";
  height: 6px;
  width: 6px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  background-color: #ffffff;
  border: solid 1px #ffffff;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

select {
  padding: 8px 14px 11px;
  background-color: #f8f6f0;
  border: none;
}

/**
 * @file
 * Generic Block: 2 Column
 *
 * Styles for Generic Block: 2 Column object.
 */
.gen2col__intro {
  margin: 1rem 0 2rem;
}
@media screen and (min-width: 1025px) {
  .gen2col__intro {
    margin: 2rem 0 3rem;
  }
}
.gen2col .column__title a {
  color: #002554;
  text-decoration: none;
  background-image: none;
  color: #385e9d;
}
.gen2col .column__title a:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .gen2col .column__title a:hover .last-word span:after {
    left: 1.8rem;
  }
}
.gen2col .column__title a .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .gen2col .column__title a .last-word {
    gap: 10px;
  }
}
.gen2col .column__title a .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .gen2col .column__title a .last-word span {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .gen2col .column__title a .last-word span {
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.gen2col .column__title a .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-navy.svg");
}
.gen2col__header {
  font-size: 2.6rem;
  color: #002554;
}

/**
 * @file
 * Generic Block: 3 Column
 *
 * Styles for Generic Block: 3 Column object.
 */
.gen3col__intro {
  margin: 1rem 0 2rem;
}
@media screen and (min-width: 1025px) {
  .gen3col__intro {
    margin: 2rem 0 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .gen3col .column__title h3 {
    font-size: 3.2rem;
  }
}
.gen3col .column__title a {
  color: #002554;
  text-decoration: none;
  background-image: none;
  color: #385e9d;
}
.gen3col .column__title a:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .gen3col .column__title a:hover .last-word span:after {
    left: 1.8rem;
  }
}
.gen3col .column__title a .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .gen3col .column__title a .last-word {
    gap: 10px;
  }
}
.gen3col .column__title a .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .gen3col .column__title a .last-word span {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .gen3col .column__title a .last-word span {
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.gen3col .column__title a .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-navy.svg");
}
.gen3col__header {
  font-size: 2.6rem;
  color: #002554;
}

/**
 * @file
 * Generic Block: Image list
 *
 * Styles for Generic Block: Image list object.
 */
@media (min-width: 700px) {
  .genimglist {
    margin: 2rem 0 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .genimglist {
    margin: 3rem 0 8rem;
  }
}
@media screen and (min-width: 700px) {
  .genimglist__intro {
    margin: 0 0 3.9rem;
  }
}
.genimglist__item {
  margin: 0 0 2.9rem;
  opacity: 0;
}
@media (min-width: 700px) {
  .genimglist__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 4rem;
  }
}
.genimglist__img {
  margin: 0 0 1.6rem;
}
@media (min-width: 700px) {
  .genimglist__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    -webkit-flex-basis: 29%;
        -ms-flex-preferred-size: 29%;
            flex-basis: 29%;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .genimglist__img {
    -webkit-flex-basis: 33.6%;
        -ms-flex-preferred-size: 33.6%;
            flex-basis: 33.6%;
  }
}
.genimglist__img img {
  width: 100%;
}
@media (min-width: 700px) {
  .genimglist__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0;
       -moz-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    -webkit-flex-basis: 71%;
        -ms-flex-preferred-size: 71%;
            flex-basis: 71%;
    padding-left: 2.2rem;
    padding-top: 0.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .genimglist__content {
    padding-left: 3.2rem;
    padding-top: 0;
  }
}
.genimglist__title {
  margin: 0 0 1.2rem;
}
.genimglist__title h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 500;
}
@media screen and (min-width: 700px) {
  .genimglist__title h3 {
    font-size: 2.8rem;
    line-height: 3.36rem;
  }
}
@media screen and (min-width: 1025px) {
  .genimglist__title h3 {
    font-size: 3.2rem;
    line-height: 3.84rem;
  }
}
.genimglist__title a {
  color: #002554;
  text-decoration: none;
  background-image: none;
  color: #385e9d;
}
.genimglist__title a:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .genimglist__title a:hover .last-word span:after {
    left: 1.8rem;
  }
}
.genimglist__title a .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .genimglist__title a .last-word {
    gap: 10px;
  }
}
.genimglist__title a .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .genimglist__title a .last-word span {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .genimglist__title a .last-word span {
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.genimglist__title a .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-navy.svg");
}
.genimglist__subtitle {
  margin: 0 0 1.2rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.92rem;
  letter-spacing: 0.048rem;
  text-transform: uppercase;
  color: #002554;
}
@media screen and (min-width: 700px) {
  .genimglist__subtitle {
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: 0.054rem;
  }
}
@media screen and (min-width: 1025px) {
  .genimglist__subtitle {
    font-size: 2rem;
    letter-spacing: 0.06rem;
  }
}
@media screen and (min-width: 1025px) {
  .genimglist__body {
    line-height: 1.5;
  }
}
.genimglist.js-active .genimglist__item:nth-child(1) {
  -webkit-animation: listFadeInSlideUp 500ms 0ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 0ms forwards ease-out;
}
.genimglist.js-active .genimglist__item:nth-child(2) {
  -webkit-animation: listFadeInSlideUp 500ms 250ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 250ms forwards ease-out;
}
.genimglist.js-active .genimglist__item:nth-child(3) {
  -webkit-animation: listFadeInSlideUp 500ms 500ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 500ms forwards ease-out;
}

/**
 * @file
 * Hero
 *
 * Contains styles for hero object.
 */
.hero {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 8rem;
  background: #385e9d;
  background-image: url("/_resources/assets/img/hero-bg-sm.svg");
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: auto 100%;
  padding-bottom: 1.9rem;
}
@media (min-width: 700px) {
  .hero {
    padding-top: 10rem;
    padding-bottom: 3.6rem;
    background-image: url("/_resources/assets/img/hero-bg-md.svg");
  }
}
@media (min-width: 1025px) {
  .hero {
    padding-top: 11.8rem;
    padding-bottom: 5.9rem;
    background-image: url("/_resources/assets/img/hero-bg-lg.svg");
    background-position: 100% 100%;
    background-size: auto 161%;
  }
}
.hero--has-image {
  padding-top: 10.5rem;
}
@media (min-width: 700px) {
  .hero--has-image {
    padding-top: 17rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1025px) {
  .hero--has-image {
    padding-top: 30.4rem;
    padding-bottom: 3.6rem;
    aspect-ratio: 1200/507;
  }
}
@media (min-width: 1025px) {
  .hero--has-image .hero__title {
    margin-right: 15rem;
  }
}
.hero--home {
  aspect-ratio: 320/277;
  padding-bottom: 0;
}
@media (min-width: 700px) {
  .hero--home {
    margin-bottom: 0;
    aspect-ratio: 700/457;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1025px) {
  .hero--home {
    aspect-ratio: 1200/610;
    padding-top: 8rem;
    padding-bottom: 6.8rem;
  }
}
.hero--home + .container > :first-child {
  margin-top: 0;
  padding-top: 6.5rem;
}
@media (min-width: 700px) {
  .hero--home + .container > :first-child {
    padding-top: 3rem;
  }
}
.hero__title {
  position: relative;
  color: #ffffff;
  z-index: 3;
  margin: 0;
  opacity: 0;
  -webkit-animation: fadeIn 300ms 150ms forwards;
          animation: fadeIn 300ms 150ms forwards;
}
.hero .container {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
}
.hero picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.03)), to(rgba(0, 0, 0, 0.3)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.3) 100%);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.hero picture img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}
.content-loaded .hero picture img {
  -webkit-animation: fadeIn 300ms forwards;
          animation: fadeIn 300ms forwards;
}
.hero.can-play .hero__video-wrapper {
  opacity: 1;
}
.hero.can-play .hero__video-controls {
  display: block;
}
.hero.can-play picture {
  display: none;
}
.hero .cta__list {
  position: relative;
  top: 0;
  width: calc(100% + 4rem);
  margin: 2.5rem -2rem -3.5rem;
  z-index: 2;
  -webkit-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
@media (min-width: 700px) {
  .hero .cta__list {
    width: auto;
    margin: 3.8rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .hero .cta__list {
    margin: 3.4rem 0 0;
  }
}
.hero .cta__list.js-active {
  top: -14rem;
}
.hero .hero__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .hero .hero__video-wrapper {
    overflow: hidden;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
.hero .hero__video-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  inset: 0;
  background: -o-linear-gradient(66.17deg, rgba(0, 0, 0, 0.5) 4.13%, rgba(0, 0, 0, 0) 102.76%);
  background: linear-gradient(23.83deg, rgba(0, 0, 0, 0.5) 4.13%, rgba(0, 0, 0, 0) 102.76%);
  z-index: 2;
}
.hero .hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero .hero__video-controls {
  position: absolute;
  left: 0;
  top: 1.9rem;
  width: 100%;
  display: none;
}
@media (min-width: 700px) {
  .hero .hero__video-controls {
    top: 3.1rem;
  }
}
@media (min-width: 1025px) {
  .hero .hero__video-controls {
    top: 4rem;
  }
}
.hero .hero__video-controls .container {
  max-width: 100%;
}
@media (min-width: 1025px) {
  .hero .hero__video-controls .container {
    padding-left: 3.6rem;
  }
}
.hero .play-video-btn {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  border-radius: 50%;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  z-index: 3;
  outline-color: #ffffff;
}
@media (min-width: 700px) {
  .hero .play-video-btn {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.hero .play-video-btn:hover {
  background-color: #385e9d;
  color: #ffffff;
}
.hero .play-video-btn:hover:before, .hero .play-video-btn:hover:after {
  border-color: #ffffff;
}
.hero .play-video-btn:before, .hero .play-video-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.1rem;
  border-color: #385e9d;
  border-style: solid;
  border-width: 0.6rem 0 0.6rem 0.2rem;
}
@media (min-width: 700px) {
  .hero .play-video-btn:before, .hero .play-video-btn:after {
    left: 1.2rem;
    border-width: 0.7rem 0 0.7rem 0.2rem;
  }
}
.hero .play-video-btn:after {
  left: 1.7rem;
}
@media (min-width: 700px) {
  .hero .play-video-btn:after {
    left: 2rem;
  }
}
.hero.is-paused .play-video-btn:hover {
  background-color: #385e9d;
}
.hero.is-paused .play-video-btn:hover:before {
  border-color: transparent transparent transparent #ffffff;
}
.hero.is-paused .play-video-btn:after {
  opacity: 0;
}
.hero.is-paused .play-video-btn:before {
  border-width: 0.6rem 0 0.6rem 1.2rem;
  border-style: solid;
  border-color: transparent transparent transparent #385e9d;
  background: none !important;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media (min-width: 700px) {
  .hero.is-paused .play-video-btn:before {
    border-width: 0.7rem 0 0.7rem 1.4rem;
  }
}
.hero--has-video {
  padding-top: 6.1rem;
  aspect-ratio: 320/201;
}
@media (min-width: 700px) {
  .hero--has-video {
    padding-top: 10.7rem;
    padding-bottom: 5rem;
    aspect-ratio: 700/377;
  }
}
@media (min-width: 1025px) {
  .hero--has-video {
    padding-top: 17.9rem;
    padding-bottom: 6rem;
    aspect-ratio: 1200/508;
  }
}
.hero--has-video .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hero--has-video .hero__title {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 1025px) {
  .hero--has-video .hero__title {
    max-width: 80%;
  }
}
.hero__open-video-modal {
  position: relative;
  display: block;
  width: 3rem;
  height: 2.8rem;
  margin: 0 0 1.4rem;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  z-index: 2;
  background: #cedc00;
  outline: solid 1px transparent;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.hero__open-video-modal:focus {
  outline-offset: -3px;
}
@media (min-width: 700px) {
  .hero__open-video-modal {
    width: 5rem;
    height: 4.8rem;
    margin: 0 0 1.8rem;
  }
}
@media (min-width: 1025px) {
  .hero__open-video-modal {
    width: 6rem;
    height: 6rem;
    margin: 0 0 2.4rem;
  }
}
.hero__open-video-modal:hover {
  background: #ffffff;
  outline-color: #cedc00;
}
.hero__open-video-modal:hover::before {
  border-color: transparent transparent transparent #002554;
}
.hero__open-video-modal:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 1px);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-width: 0.5rem 0 0.5rem 0.9rem;
  border-style: solid;
  border-color: transparent transparent transparent #002554;
  background: none !important;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (min-width: 700px) {
  .hero__open-video-modal:before {
    border-width: 0.8rem 0 0.8rem 1.4rem;
  }
}
@media (min-width: 1025px) {
  .hero__open-video-modal:before {
    border-width: 1.2rem 0 1.2rem 2rem;
  }
}
.hero__close-video-modal {
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border: none;
  background-color: #f0ede1;
}
.hero__close-video-modal:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
@media (min-width: 700px) {
  .hero__close-video-modal {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media (min-width: 1025px) {
  .hero__close-video-modal {
    width: 6rem;
    height: 6rem;
  }
}
.hero__close-video-modal::before, .hero__close-video-modal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 0.2rem;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  background-color: #002554;
}
@media (min-width: 700px) {
  .hero__close-video-modal::before, .hero__close-video-modal::after {
    width: 2rem;
    height: 0.2rem;
  }
}
@media (min-width: 1025px) {
  .hero__close-video-modal::before, .hero__close-video-modal::after {
    width: 2.6rem;
    height: 0.26rem;
  }
}
@media (forced-colors: active) {
  .hero__close-video-modal::before, .hero__close-video-modal::after {
    background-color: currentColor;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .hero__close-video-modal::before, .hero__close-video-modal::after {
    forced-color-adjust: none;
    background-color: black;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .hero__close-video-modal::before, .hero__close-video-modal::after {
    forced-color-adjust: none;
    background-color: white;
  }
}
.hero__close-video-modal::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.hero__video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 300;
}
.hero__video-modal .modal-content-holder {
  padding: 5rem 3rem;
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 700px) {
  .hero__video-modal .modal-content-holder {
    padding: 6rem;
  }
}
@media (min-width: 1025px) {
  .hero__video-modal .modal-content-holder {
    padding: 9.7rem 7.4rem;
  }
}
.hero__video-modal .modal-content {
  max-height: 100%;
  width: 100%;
  height: 100%;
}
.hero__video-modal .modal-content iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.hero--news-details {
  padding-top: 6.1rem;
  background-image: url("/_resources/assets/img/hero-news-bg-sm.svg");
}
@media (min-width: 700px) {
  .hero--news-details {
    padding-top: 9.6rem;
    padding-bottom: 8.8rem;
    background-image: url("/_resources/assets/img/hero-news-bg-md.svg");
  }
}
@media (min-width: 1025px) {
  .hero--news-details {
    background-image: url("/_resources/assets/img/hero-news-bg-lg.svg");
    background-position-y: 0;
    padding-bottom: 5.8rem;
  }
}
.hero--news-details-has-image {
  padding-top: 5.6rem;
  padding-bottom: 11.8rem;
}
@media (min-width: 700px) {
  .hero--news-details-has-image {
    padding-top: 9.6rem;
    padding-bottom: 8.8rem;
  }
}
@media (min-width: 1025px) {
  .hero--news-details-has-image {
    padding-top: 11.2rem;
    padding-bottom: 5.8rem;
  }
}
.hero--news-details .hero__title {
  margin: 0 0 1.3rem;
  font-size: 2.6rem;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .hero--news-details .hero__title {
    margin: 0 0 2.2rem;
    font-size: 4.4rem;
  }
}
@media (min-width: 1025px) {
  .hero--news-details .hero__title {
    margin: 0 0 2rem;
    font-size: 6rem;
  }
}
.hero--news-details .img-inline {
  margin: 0;
}
.hero--news-details .news-date {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
@media (min-width: 700px) {
  .hero--news-details .news-date {
    font-size: 1.8rem;
    letter-spacing: 0.54px;
  }
}
@media (min-width: 1025px) {
  .hero--news-details .news-date {
    font-size: 2rem;
  }
}
.hero .hero-breadcrumbs {
  display: none;
  margin: 4rem 0;
}
@media (min-width: 1025px) {
  .hero .hero-breadcrumbs {
    display: block;
  }
}
.hero .hero-breadcrumbs__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
}
.hero .hero-breadcrumbs__list a {
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  background: transparent;
  text-decoration: none;
}
.hero .hero-breadcrumbs__list a:hover {
  color: #cedc00;
}
.hero .hero-breadcrumbs__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.hero .hero-breadcrumbs__item:not(:last-child):after {
  content: "/";
  color: #cedc00;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0 1.1rem;
}
.hero .hero-breadcrumbs__item a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.hero--directory-details {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  min-height: 16.9rem;
  padding: 0;
  background-image: url("/_resources/assets/img/directory-detail-hero-bg-sm.svg");
  background-position-y: 100%;
  background-size: auto 131%;
}
@media (min-width: 700px) {
  .hero--directory-details {
    min-height: 24.2rem;
    background-image: url("/_resources/assets/img/directory-detail-hero-bg-md.svg");
    background-size: auto 109%;
  }
}
@media (min-width: 1025px) {
  .hero--directory-details {
    min-height: 36.4rem;
    background-image: url("/_resources/assets/img/directory-detail-hero-bg-lg.svg");
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-size: auto 116%;
  }
}
.hero--directory-details .hero-breadcrumbs {
  margin: 2.2rem 0 0;
}

/**
 * @file
 * Instagram
 *
 * Contains styles for instagram object.
 */
.instagram {
  margin: 30px 0;
}
@media screen and (min-width: 1025px) {
  .instagram {
    margin: 80px 0;
  }
}
.instagram__header {
  margin: 0 0 10px;
}
@media screen and (min-width: 700px) {
  .instagram__header {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .instagram__header {
    margin-bottom: 44px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .instagram__header .cta {
    display: none;
  }
}
.instagram__wrapper {
  margin: 0 -20px 10px 0;
  overflow-x: scroll;
}
@media screen and (min-width: 700px) {
  .instagram__wrapper {
    margin: 0 0 20px;
  }
}
.instagram__feed {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
@media screen and (min-width: 700px) {
  .instagram__feed {
    gap: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .instagram__feed {
    gap: 10px;
  }
}
.instagram__feed::after {
  content: "";
  display: block;
  width: 16px;
  min-width: 16px;
  min-height: 1px;
}
@media screen and (min-width: 700px) {
  .instagram__feed::after {
    content: none;
  }
}
.instagram__tile {
  padding: calc(47.3% - 4px) 0 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(47.3% - 4px);
     -moz-box-flex: 0;
      -ms-flex: 0 0 calc(47.3% - 4px);
          flex: 0 0 calc(47.3% - 4px);
  position: relative;
}
@media screen and (min-width: 700px) {
  .instagram__tile {
    padding-top: calc(33.3333333333% - 4px);
    -webkit-flex-basis: calc(33.3333333333% - 4px);
        -ms-flex-preferred-size: calc(33.3333333333% - 4px);
            flex-basis: calc(33.3333333333% - 4px);
  }
}
@media screen and (min-width: 1025px) {
  .instagram__tile {
    padding-top: calc(33.3333333333% - 6.6666666667px);
    -webkit-flex-basis: calc(33.3333333333% - 6.6666666667px);
        -ms-flex-preferred-size: calc(33.3333333333% - 6.6666666667px);
            flex-basis: calc(33.3333333333% - 6.6666666667px);
  }
}
.instagram__tile:nth-child(4) {
  display: none;
}
.instagram__tile::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 6.5px;
  left: 6.5px;
  background-image: url("/_resources/assets/icons/instagram-white.svg");
  background-size: cover;
  pointer-events: none;
}
@media screen and (min-width: 700px) {
  .instagram__tile::after {
    width: 17px;
    height: 17px;
    bottom: 11px;
    left: 11px;
  }
}
@media screen and (min-width: 1025px) {
  .instagram__tile::after {
    width: 24px;
    height: 24px;
    bottom: 15px;
    left: 15px;
  }
}
.instagram__link {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
}
.instagram__link:focus {
  outline: solid 1px #ffffff;
  outline-offset: -2px;
}
.instagram__link:hover {
  background-position: unset;
}
@media screen and (min-width: 1025px) {
  .instagram__cta {
    display: none;
  }
}

/**
 * @file
 * Program List
 *
 * Styles for Program List display object.
 */
.program-list__item {
  padding: 0.5rem;
  border-bottom: 1px solid #000000;
}
@media (min-width: 700px) {
  .program-list__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.program-list__program {
  -webkit-flex-basis: 60%;
      -ms-flex-preferred-size: 60%;
          flex-basis: 60%;
}

/**
 * @file
 * Statistic: 3 up feature
 *
 * Styles for Statistick: 3 up feature object.
 */
.stat3up__header {
  color: #002554;
  font-size: 2.6rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (min-width: 700px) {
  .stat3up__header {
    font-size: 4.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .stat3up__header {
    font-size: 6rem;
  }
}
.stat3up__intro {
  margin: 1rem 0 1.8rem;
}
@media screen and (min-width: 700px) {
  .stat3up__intro {
    margin: 1.4rem 0 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .stat3up__intro {
    margin: 1.9rem 0 3.7rem;
  }
}
.stat3up__number {
  font-family: "articulat-cf", sans-serif;
  color: #385e9d;
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 700px) {
  .stat3up__number {
    font-size: 6rem;
    margin-bottom: 1.6rem;
  }
}
.stat3up__caption {
  color: #002554;
  margin: 0 0 0.5rem;
}
@media screen and (min-width: 700px) {
  .stat3up__caption {
    font-size: 1.6rem;
    margin-bottom: 1.7rem;
  }
}
@media screen and (min-width: 1025px) {
  .stat3up__caption {
    font-size: 2rem;
    line-height: 1.46;
  }
}
@media screen and (max-width: 699px) {
  .stat3up__item:not(:last-of-type) {
    border-bottom: 0.2rem solid #b3a369;
    padding-bottom: 1.79rem;
  }
}
.stat3up__item:last-of-type {
  margin-bottom: 0;
}
.stat3up__cta a {
  color: #385e9d;
  text-decoration: none;
  background-image: none;
  color: #002554;
  font-size: 1.5rem;
}
.stat3up__cta a:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .stat3up__cta a:hover .last-word span:after {
    left: 1.8rem;
  }
}
.stat3up__cta a .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .stat3up__cta a .last-word {
    gap: 10px;
  }
}
.stat3up__cta a .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .stat3up__cta a .last-word span {
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .stat3up__cta a .last-word span {
    width: 1.5rem;
    height: 1.5rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.stat3up__cta a .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-blue.svg");
}
@media screen and (min-width: 700px) {
  .stat3up__cta a {
    font-size: 2rem;
  }
}
.stat3up .column {
  background: #f8f6f0;
  padding: 2rem;
}
@media screen and (min-width: 700px) {
  .stat3up .column {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 3.9rem 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .stat3up .column {
    padding: 4.4rem 5.2rem;
  }
}
@media screen and (min-width: 700px) {
  .stat3up .column--three .column__col {
    -webkit-flex-basis: calc(33.3333333333% - 27px);
        -ms-flex-preferred-size: calc(33.3333333333% - 27px);
            flex-basis: calc(33.3333333333% - 27px);
  }
}
@media screen and (min-width: 1025px) {
  .stat3up .column--three .column__col {
    -webkit-flex-basis: calc(33.3333333333% - 60px);
        -ms-flex-preferred-size: calc(33.3333333333% - 60px);
            flex-basis: calc(33.3333333333% - 60px);
  }
}
@media screen and (min-width: 700px) {
  .stat3up .column--three .column__col:nth-child(2) {
    position: relative;
  }
}
@media screen and (min-width: 700px) {
  .stat3up .column--three .column__col:nth-child(2):before, .stat3up .column--three .column__col:nth-child(2):after {
    content: "";
    position: absolute;
    top: 0;
    left: -19.5px;
    width: 0px;
    height: 100%;
    border-right: 2px solid #b3a369;
  }
}
@media screen and (min-width: 1025px) {
  .stat3up .column--three .column__col:nth-child(2):before, .stat3up .column--three .column__col:nth-child(2):after {
    left: -45.5px;
  }
}
@media screen and (min-width: 700px) {
  .stat3up .column--three .column__col:nth-child(2):after {
    left: auto;
    right: -21.5px;
  }
}
@media screen and (min-width: 1025px) {
  .stat3up .column--three .column__col:nth-child(2):after {
    left: auto;
    right: -46.5px;
  }
}

/**
 * @file
 * Events 3 Up Feature
 *
 * Contains styles for Events 3 Up content object.
 */
.events3up {
  margin: 30px 0;
}
@media screen and (min-width: 700px) {
  .events3up {
    margin: 40px 0 50px;
  }
}
.events3up__header {
  margin: 0 0 10px;
}
@media screen and (min-width: 700px) {
  .events3up__header {
    margin-bottom: 13px;
  }
}
@media screen and (min-width: 1025px) {
  .events3up__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .events3up__header .cta {
    display: none;
  }
}
.events3up__intro {
  margin: 0 0 20px;
}
@media screen and (min-width: 700px) {
  .events3up__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (min-width: 1025px) {
  .events3up__items {
    gap: 20px;
  }
}
@media screen and (min-width: 700px) {
  .events3up__items .column__col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 5px);
       -moz-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 5px);
            flex: 0 0 calc(50% - 5px);
  }
}
@media screen and (min-width: 1025px) {
  .events3up__items .column__col {
    -webkit-flex-basis: calc(33.3333333333% - 13.3333333333px);
        -ms-flex-preferred-size: calc(33.3333333333% - 13.3333333333px);
            flex-basis: calc(33.3333333333% - 13.3333333333px);
  }
}
.events3up__item {
  margin: 0 0 15px;
  padding: 17px 18px 20px;
  position: relative;
  color: #ffffff;
  background-color: #002554;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 700px) {
  .events3up__item {
    margin: 0;
    padding: 17px 20px 19px;
  }
}
@media screen and (min-width: 1025px) {
  .events3up__item {
    padding: 30px;
  }
}
.events3up__item:hover {
  background-color: #11366A;
}
.events3up__item:hover:before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.events3up__date {
  margin: 0 0 5px;
  padding: 0 0 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  font-family: "articulat-cf", sans-serif;
  line-height: normal;
  font-variant-numeric: lining-nums tabular-nums;
  border-bottom: solid 1px #385e9d;
}
@media screen and (min-width: 700px) {
  .events3up__date {
    margin-bottom: 4px;
    padding-bottom: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .events3up__date {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.events3up__day {
  font-size: 3rem;
  line-height: 1;
}
@media screen and (min-width: 700px) {
  .events3up__day {
    font-size: 5.8rem;
  }
}
.events3up__month {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}
@media screen and (min-width: 700px) {
  .events3up__month {
    font-size: 1.6rem;
  }
}
.events3up__title, .events3up__title a {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width: 700px) {
  .events3up__title, .events3up__title a {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .events3up__title, .events3up__title a {
    font-size: 3.2rem;
  }
}
.events3up__title {
  margin: 0 0 4px;
}
@media screen and (min-width: 700px) {
  .events3up__title {
    margin-bottom: 7px;
  }
}
@media screen and (min-width: 1025px) {
  .events3up__title {
    margin-bottom: 12px;
  }
}
.events3up__title a {
  color: #ffffff;
  text-decoration: none;
  background-image: none;
  background: transparent;
  text-decoration: none;
}
.events3up__title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.events3up__title a:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .events3up__title a:hover .last-word span:after {
    left: 1.8rem;
  }
}
.events3up__title a .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .events3up__title a .last-word {
    gap: 10px;
  }
}
.events3up__title a .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 25px;
  height: 25px;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .events3up__title a .last-word span {
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .events3up__title a .last-word span {
    width: 25px;
    height: 25px;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.events3up__title a .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-green.svg");
}
.events3up__title a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.events3up__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 700px) {
  .events3up__data {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.events3up__time::after {
  content: "/";
  display: inline-block;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #cedc00;
}
@media screen and (min-width: 700px) {
  .events3up__time::after {
    margin-right: 5px;
  }
}
@media screen and (min-width: 700px) {
  .events3up__cta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .events3up__cta {
    display: none;
  }
}

/**
 * @file
 * Story Display
 *
 * Contains styles for Story Display object.
 */
.story-display {
  margin: 0;
  padding: 1rem 0 0;
  position: relative;
}
@media (min-width: 700px) {
  .story-display {
    padding: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .story-display {
    padding: 8rem 0;
  }
}
.story-display:before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100vw - var(--scrollbar-width));
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  height: 1rem;
  background-color: #f0ede1;
}
@media (min-width: 700px) {
  .story-display:before {
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .story-display__intro {
    margin: 2rem 0px 3rem;
  }
}
.story-display__content-holder {
  padding: 2rem 0;
  background-color: #ffffff;
}
@media (min-width: 700px) {
  .story-display__content-holder {
    padding: 3rem;
  }
}
@media (min-width: 1025px) {
  .story-display__content-holder {
    padding: 5rem;
  }
}
.story-display__wrap {
  border-top: 0.2rem solid #b3a369;
}
@media (min-width: 700px) {
  .story-display__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1025px) {
  .story-display__wrap {
    padding: 3.1rem 0 0;
  }
}
.story-display__caption {
  margin: 0 0 2rem;
}
@media (min-width: 1025px) {
  .story-display__caption {
    line-height: 1.5;
    margin: 0 0 1.8rem;
  }
}
.story-display__img {
  margin: 0 0 2.1rem;
  padding-right: 3rem;
}
@media (min-width: 700px) {
  .story-display__img {
    margin: 0;
  }
}
@media (min-width: 1025px) {
  .story-display__img {
    display: none;
    padding-right: 0;
  }
}
.story-display__img--desktop {
  display: none;
}
@media (min-width: 1025px) {
  .story-display__img--desktop {
    display: block;
  }
}
.story-display__img img {
  width: 100%;
  aspect-ratio: 250/213;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 700px) {
  .story-display__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (min-width: 1025px) {
  .story-display__inner {
    padding-right: 5%;
    display: block;
  }
}
@media (min-width: 1025px) {
  .story-display__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
  }
}
@media (min-width: 700px) {
  .story-display__content > * {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .story-display__content > * {
    width: 50%;
    margin-left: auto;
  }
}
@media (min-width: 700px) {
  .story-display__content .story-display__img {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .story-display__content .story-display__img {
    width: 51.4%;
  }
}
@media (min-width: 700px) {
  .story-display__content .story-display__details {
    width: 50%;
  }
}
@media (min-width: 1025px) {
  .story-display__content .story-display__details {
    width: 100%;
  }
}
.story-display__quote {
  position: relative;
  padding: 2rem 0 0;
  margin: 0 0 1rem;
  font-family: "matrix-ii", sans-serif;
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.36;
}
@media (min-width: 700px) {
  .story-display__quote {
    padding-right: 16%;
    margin: 0 0 1.9rem;
    font-size: 2.2rem;
    line-height: 1.4;
  }
}
@media (min-width: 1025px) {
  .story-display__quote {
    padding-right: 0;
    padding-top: 2.5rem;
    margin: 0 0 1rem;
    font-size: 2.4rem;
  }
}
.story-display__quote:before, .story-display__quote:after {
  font-family: inherit;
  font-size: inherit;
}
.story-display__quote:before {
  content: open-quote;
  position: absolute;
  top: 2rem;
  left: -0.8rem;
}
@media screen and (min-width: 1025px) {
  .story-display__quote:before {
    top: 2.5rem;
    left: -1rem;
  }
}
.story-display__quote:after {
  content: close-quote;
  display: inline-block;
  -webkit-transform: translate(-6px, 0);
      -ms-transform: translate(-6px, 0);
          transform: translate(-6px, 0);
}
.story-display__author {
  margin: 0 0 0.9rem;
}
@media (min-width: 700px) {
  .story-display__author {
    margin: 0 0 1.9rem;
  }
}
@media (min-width: 1025px) {
  .story-display__author {
    margin: 0 0 2.1rem;
  }
}
.story-display__author .separator {
  display: inline;
  color: #b3a369;
  font-weight: 600;
  margin-right: 0.4rem;
}
.story-display__title {
  display: inline;
  font-weight: 700;
  margin-right: 0.8rem;
}
.story-display__subtitle {
  display: inline;
}

/**
 * @file
 * Twitter
 *
 * Contains styles for twitter object.
 */
.twitter {
  position: relative;
  padding: 2.8rem 0;
}
@media (min-width: 700px) {
  .twitter {
    padding: 4rem 0 0.6rem;
  }
}
@media (min-width: 1025px) {
  .twitter {
    padding: 8rem 0 5rem;
  }
}
.twitter:before {
  content: "";
  position: absolute;
  top: 0;
  width: calc(100vw - var(--scrollbar-width));
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  height: 100%;
  background-color: #002554;
}
.twitter h2,
.twitter .twitter__body {
  color: #ffffff;
}
.twitter h2 a,
.twitter .twitter__body a {
  color: #ffffff;
}
.twitter h2 a:focus,
.twitter .twitter__body a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.twitter a:hover {
  color: #002554;
}
.twitter__body {
  padding-right: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #385e9d;
}
@media (min-width: 700px) {
  .twitter__body {
    border-bottom: none;
    position: relative;
    height: 100%;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .twitter__body {
    line-height: 1.5;
    padding-right: 0;
  }
}
.twitter__item {
  margin: 0 0 1rem;
}
@media (min-width: 700px) {
  .twitter__item {
    width: 33.3%;
    -webkit-flex-basis: 33.3%;
        -ms-flex-preferred-size: 33.3%;
            flex-basis: 33.3%;
  }
}
.twitter__item:last-child, .twitter__item:nth-child(4) {
  display: none;
}
@media (min-width: 1025px) {
  .twitter__item:nth-child(1) {
    margin-right: 2.3rem;
  }
}
@media (min-width: 700px) {
  .twitter__item:nth-child(2) {
    -webkit-flex-basis: 26%;
        -ms-flex-preferred-size: 26%;
            flex-basis: 26%;
  }
}
@media (min-width: 1025px) {
  .twitter__item:nth-child(2) {
    width: 33.3%;
    -webkit-flex-basis: 36%;
        -ms-flex-preferred-size: 36%;
            flex-basis: 36%;
  }
}
@media (min-width: 700px) {
  .twitter__item:not(:first-child) .twitter__body::before {
    content: "";
    position: absolute;
    height: 16rem;
    max-height: calc(100% - 3rem);
    width: 1px;
    background-color: #385e9d;
    top: 0;
    left: -1.6rem;
  }
}
@media (min-width: 1025px) {
  .twitter__item:not(:first-child) .twitter__body::before {
    max-height: calc(100% - 1rem);
    height: 100%;
    left: -2rem;
  }
}
.twitter__feed {
  margin: 0 0 1rem;
}
@media (min-width: 700px) {
  .twitter__feed {
    gap: 3rem;
  }
}
@media (min-width: 1025px) {
  .twitter__feed {
    gap: 4.05rem;
  }
}
.twitter__account {
  margin: 0 0 2.2rem;
}
@media (min-width: 700px) {
  .twitter__account {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5rem;
    margin: 0 0 2rem;
  }
}
@media (min-width: 1025px) {
  .twitter__account {
    margin: 0 0 2.2rem;
  }
}
.twitter__account h2 {
  margin: 0 0 1rem;
}
.twitter__account .cta {
  display: none;
}
@media (min-width: 700px) {
  .twitter__account .cta {
    display: block;
  }
}
.twitter__time {
  display: block;
  margin-top: 1.6rem;
}
.twitter__cta-holder {
  margin: 1.8rem 0 0;
}
@media (min-width: 700px) {
  .twitter__cta-holder {
    display: none;
  }
}

/**
 * @file
 * Video
 *
 * Contains styles for inline video objects.
 */
.vid-inline {
  overflow: hidden;
  margin-bottom: 3rem;
}
.vid-inline__container {
  position: relative;
  height: 0;
  padding-bottom: 56.5%;
}
.vid-inline__embed {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.vid-inline__embed.js-show {
  z-index: 2;
  opacity: 1;
}
.vid-inline__embed.js-show iframe {
  visibility: visible;
}
.vid-inline iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 0;
  visibility: hidden;
}
.vid-inline__caption {
  color: #002554;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  border-left: 5px solid #f0ede1;
  background: #f8f6f0;
  margin: 0;
  padding: 1rem 1.2rem 1rem 0.7rem;
}
.vid-inline__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.vid-inline__cover:focus {
  outline: solid 1px #ffffff;
  outline-offset: -4px;
}
.vid-inline__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vid-inline__cover:focus {
  outline-offset: -4px;
}
.vid-inline__cover:hover .icon-play {
  outline-color: #cedc00;
}
.vid-inline__cover:hover .icon-play rect {
  fill: #ffffff;
}
.vid-inline__cover:before, .vid-inline__cover:after {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  opacity: 0.7;
}
.vid-inline__cover.js-loading:hover:before {
  opacity: 1;
  z-index: 100;
}
.vid-inline__cover.js-loading:before {
  margin: 0;
  height: 60px;
  width: 60px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.0' width='60px' height='60px' viewBox='0 0 128 128' xml:space='preserve'%3e%3cg%3e%3cpath d='M78.75 16.18V1.56a64.1 64.1 0 0 1 47.7 47.7H111.8a49.98 49.98 0 0 0-33.07-33.08zM16.43 49.25H1.8a64.1 64.1 0 0 1 47.7-47.7V16.2a49.98 49.98 0 0 0-33.07 33.07zm33.07 62.32v14.62A64.1 64.1 0 0 1 1.8 78.5h14.63a49.98 49.98 0 0 0 33.07 33.07zm62.32-33.07h14.62a64.1 64.1 0 0 1-47.7 47.7v-14.63a49.98 49.98 0 0 0 33.08-33.07z' fill='%23000000' fill-opacity='1'/%3e%3canimateTransform attributeName='transform' type='rotate' from='0 64 64' to='-90 64 64' dur='800ms' repeatCount='indefinite'%3e%3c/animateTransform%3e%3c/g%3e%3c/svg%3e");
  background-position: center;
  background-size: contain;
  border: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.vid-inline__cover.js-loading:after {
  display: none;
}
.vid-inline__cover.js-hide {
  display: block;
  z-index: 1;
  opacity: 0;
}
.vid-inline .icon-play {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6rem;
  height: 6rem;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  outline: solid 1px transparent;
  -webkit-transition: outline-color 0.3s ease;
  -o-transition: outline-color 0.3s ease;
  transition: outline-color 0.3s ease;
  outline-offset: -1px;
}
@media screen and (min-width: 700px) {
  .vid-inline .icon-play {
    width: 8rem;
    height: 8rem;
  }
}
.vid-inline .icon-play svg {
  width: 100%;
  height: 100%;
}
.vid-inline .icon-play svg rect {
  -webkit-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

/**
 * @file
 * Pager
 *
 * Contains styles for the pager on listing pages.
 */
.pager__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.pager__list .pager__item {
  margin: 0 5px;
}
.pager__list .icon-arrow-left,
.pager__list .icon-arrow-right {
  display: block;
  position: relative;
  width: 40px;
  top: 50%;
}
.pager__list .icon-arrow-left:after,
.pager__list .icon-arrow-right:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  height: 0.75rem;
  width: 0.75rem;
  background: #000000;
  border: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/**
 * @file
 * Carousel
 *
 * Contains styles for carousel object.
 */
.carousel {
  opacity: 0;
}
.carousel__intro {
  margin-bottom: 2.1rem;
}
.carousel__wrapper--img {
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.carousel__wrapper--img .carousel__item {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
}
@media screen and (min-width: 700px) {
  .carousel__wrapper--img .carousel__item {
    padding-top: 53.9%;
  }
}
.carousel__wrapper--img .carousel__item:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 1.8rem);
  height: calc(100% - 2rem);
  border: 2px solid #ffffff;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (min-width: 700px) {
  .carousel__wrapper--img .carousel__item:after {
    width: calc(100% - 2.5rem);
    height: calc(100% - 2.5rem);
    border: 4px solid #ffffff;
  }
}
@media screen and (min-width: 1025px) {
  .carousel__wrapper--img .carousel__item:after {
    width: calc(100% - 4.5rem);
    height: calc(100% - 4.5rem);
  }
}
.carousel__wrapper--caption {
  -webkit-transition: opacity 0.3s ease 0.3s;
  -o-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
}
@media screen and (min-width: 700px) {
  .carousel__wrapper--caption {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc(100% - 140px);
       -moz-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 140px);
            flex: 1 1 calc(100% - 140px);
    width: calc(100% - 140px);
  }
}
@media screen and (min-width: 1025px) {
  .carousel__wrapper--caption {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 calc(100% - 176px);
       -moz-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 176px);
            flex: 1 1 calc(100% - 176px);
    width: calc(100% - 176px);
  }
}
.carousel__caption {
  position: relative;
  width: 100%;
  bottom: 0;
  font-size: 1.6rem;
  margin: 0;
  padding: 1.1rem 2rem;
}
@media (min-width: 700px) {
  .carousel__caption {
    padding: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .carousel__caption {
    padding: 3rem;
    line-height: 1.5;
  }
}
.carousel__caption a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.carousel__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.carousel__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.carousel__controller {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 2px solid #385e9d;
  padding: 2rem;
}
@media screen and (min-width: 700px) {
  .carousel__controller {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 140px;
       -moz-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
    gap: 0.5rem;
    min-height: 140px;
    padding: 2rem 1.8rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border-top: none;
    border-left: 1px solid #385e9d;
  }
}
@media screen and (min-width: 1025px) {
  .carousel__controller {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 176px;
       -moz-box-flex: 0;
        -ms-flex: 0 0 176px;
            flex: 0 0 176px;
    min-height: 138px;
  }
}
.carousel__top {
  max-width: 1800px;
  margin: 0 auto -1rem;
}
.carousel__bottom {
  color: #ffffff;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (min-width: 700px) {
  .carousel__bottom {
    position: relative;
    top: -3.6rem;
    padding: 0 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .carousel__bottom {
    top: -9.1rem;
    padding: 0 8.1rem;
  }
}
.carousel__bottom__inner {
  background: #002554;
}
@media screen and (min-width: 700px) {
  .carousel__bottom__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.carousel .carousels {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
.carousel .slick-arrow {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  background: #385e9d;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.carousel .slick-arrow:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
@media screen and (min-width: 700px) {
  .carousel .slick-arrow {
    width: 4.9rem;
    height: 4.9rem;
    top: 0;
  }
}
.carousel .slick-arrow:after {
  height: 1rem;
  width: 1rem;
  background: transparent;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  left: calc(50% - 2px);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 700px) {
  .carousel .slick-arrow.slick-prev {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.carousel .slick-arrow.slick-prev:after {
  left: calc(50% + 2px);
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
      -ms-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}
@media screen and (min-width: 700px) {
  .carousel .slick-arrow.slick-next {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.carousel .slick-arrow.slick-disabled {
  pointer-events: none;
  background: #9caece;
}
.carousel .slick-arrow.slick-disabled:after {
  background: transparent;
}
.carousel-counter {
  display: inline-block;
  text-align: center;
  font-weight: 400;
  font-family: "articulat-cf", sans-serif;
}
@media screen and (min-width: 700px) {
  .carousel-counter {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
       -moz-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .carousel-counter {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
}
.carousel-counter__slash {
  color: #cedc00;
  margin: 0 3px;
}
.carousel.js-fadeout-before .carousel__wrapper--caption,
.carousel.js-fadeout-before .carousel__wrapper--img {
  opacity: 0;
}
.carousel.js-fadeout-before .carousel__wrapper--img {
  -webkit-transition: opacity 0.3s ease 0.3s;
  -o-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
}
.carousel.js-fadeout-before .carousel__wrapper--caption {
  -webkit-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.carousel.js-active {
  -webkit-animation: listFadeInSlideUp 500ms 0ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 0ms forwards ease-out;
}

/**
 * @file
 * Hero
 *
 * Contains styles for hero object.
 */
.footer-sock {
  aspect-ratio: 320/232;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 700px) {
  .footer-sock {
    aspect-ratio: 700/405;
    padding: 4rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .footer-sock {
    aspect-ratio: 1200/421;
    padding: 7.6rem 0;
  }
}
.footer-sock .container {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .footer-sock__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4rem;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.footer-sock__image {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-bottom-right-radius: 35px;
}
@media (min-width: 700px) {
  .footer-sock__image {
    border-bottom-right-radius: 0;
  }
}
.footer-sock__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), color-stop(0.01%, rgba(0, 0, 0, 0.04)), color-stop(61.98%, rgba(0, 0, 0, 0.38)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 0.01%, rgba(0, 0, 0, 0.38) 61.98%);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 0.01%, rgba(0, 0, 0, 0.38) 61.98%);
  z-index: 2;
}
.footer-sock__image img {
  width: 100%;
  height: 100%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.footer-sock__title {
  color: #ffffff;
  margin: 2.8rem 0;
}
@media (min-width: 700px) {
  .footer-sock__title {
    margin: 1.9rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .footer-sock__title {
    max-width: 50rem;
    margin: 0;
  }
}
.footer-sock__cta {
  margin-right: -2rem;
  margin-left: -2rem;
  margin-bottom: -1px;
  width: calc(100% + 4rem);
}
@media (min-width: 700px) {
  .footer-sock__cta {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .footer-sock__cta {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-left: auto;
  }
}

.cta__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 14px);
          clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 14px);
}
@media (min-width: 700px) {
  .cta__list {
    width: auto;
    -webkit-clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
            clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  }
}
@media screen and (min-width: 1025px) {
  .cta__list {
    -webkit-clip-path: polygon(19px 0, 100% 0, 100% calc(100% - 19px), calc(100% - 19px) 100%, 0 100%, 0 19px);
            clip-path: polygon(19px 0, 100% 0, 100% calc(100% - 19px), calc(100% - 19px) 100%, 0 100%, 0 19px);
  }
}
.cta__list--horizontal {
  display: block;
}
.cta__list--horizontal .cta__list-item {
  position: relative;
}
.cta__list--horizontal .cta__list-item:not(:last-child, :only-child):before {
  position: absolute;
  content: "";
  width: calc(100% - 4rem);
  height: 1px;
  top: auto;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #002554;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.cta__list--horizontal .cta__list-item:last-child::before {
  display: none;
}
.cta__list-item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.cta__list-item:first-child a {
  padding-left: 25px;
}
@media screen and (min-width: 1025px) {
  .cta__list-item:first-child a {
    padding-left: 35px;
  }
}
.cta__list-item:last-child a {
  padding-right: 25px;
}
@media screen and (min-width: 1025px) {
  .cta__list-item:last-child a {
    padding-right: 37px;
  }
}
.cta__list-item:not(:first-child, :only-child) {
  position: relative;
}
.cta__list-item:not(:first-child, :only-child):before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  width: 1px;
  height: calc(100% - 36px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #002554;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 700px) {
  .cta__list-item:not(:first-child, :only-child):before {
    width: 2px;
    height: calc(100% - 46px);
  }
}
@media screen and (min-width: 1025px) {
  .cta__list-item:not(:first-child, :only-child):before {
    height: calc(100% - 62px);
  }
}
.cta__list-item:hover:before {
  opacity: 0;
}
.cta__list-item:hover + .footer-sock__cta-item:before {
  opacity: 0;
}
.cta__list-item:hover a::before {
  width: 0;
}
.cta__list-item a {
  position: relative;
  display: block;
  padding: 1.8rem 1.4rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  color: #002554;
  text-align: center;
}
.cta__list-item a:focus {
  outline-offset: -5px;
}
@media (min-width: 700px) {
  .cta__list-item a {
    padding: 2rem 3.7rem;
    font-size: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .cta__list-item a {
    padding: 2.6rem 3.5rem 2rem;
    font-size: 2rem;
  }
}
.cta__list-item a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #cedc00;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
  z-index: -1;
}
.cta__list-item a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
  z-index: -2;
}

/**
 * @file
 * Section nav
 *
 * Contains styles for the section-nav component.
 */
.section-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f8f6f0;
}
@media (min-width: 700px) {
  .section-nav {
    position: relative;
  }
}
.section-nav .nav-box {
  width: 100%;
}
@media (min-width: 700px) {
  .section-nav .nav-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1025px) {
  .section-nav .nav-box {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.section-nav__header {
  width: 100%;
  position: relative;
  background-color: #cedc00;
}
@media (min-width: 700px) {
  .section-nav__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #f8f6f0;
    z-index: 11;
  }
}
@media (min-width: 700px) {
  .section-nav-opened .section-nav__header:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    height: 1px;
    background-color: #b3a369;
    width: 100%;
  }
}
.section-nav__opener {
  position: relative;
  padding: 1rem 2rem 0.7rem 4.4rem;
  background-color: transparent;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  border: none;
  background-color: #cedc00;
}
@media screen and (max-width: 699px) {
  .section-nav__opener {
    width: 100%;
    text-align: left;
  }
}
@media (min-width: 700px) {
  .section-nav__opener {
    padding: 1rem 2.3rem 1rem 4.4rem;
    font-size: 2rem;
    line-height: 1;
  }
}
@media (min-width: 1025px) {
  .section-nav__opener {
    padding: 1rem 3.3rem 1rem 5.6rem;
    font-size: 2rem;
  }
}
.section-nav__opener-icon {
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 1.62rem;
  height: 2px;
  background-color: #002554;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (min-width: 700px) {
  .section-nav__opener-icon {
    top: calc(50% - 0.1rem);
    left: 1.9rem;
  }
}
@media (min-width: 1025px) {
  .section-nav__opener-icon {
    top: calc(50% - 0.15rem);
    left: 3.1rem;
  }
}
.section-nav-opened .section-nav__opener-icon {
  background-color: transparent;
}
@media (min-width: 700px) {
  .section-nav-opened .section-nav__opener-icon:before, .section-nav-opened .section-nav__opener-icon:after {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media (min-width: 700px) {
  .section-nav-opened .section-nav__opener-icon:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
        -ms-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.section-nav__opener-icon:before, .section-nav__opener-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, calc(-50% - 0.5rem));
      -ms-transform: translate(-50%, calc(-50% - 0.5rem));
          transform: translate(-50%, calc(-50% - 0.5rem));
  background-color: #002554;
  width: 16px;
  height: 2px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.section-nav__opener-icon:after {
  -webkit-transform: translate(-50%, calc(-50% + 0.5rem));
      -ms-transform: translate(-50%, calc(-50% + 0.5rem));
          transform: translate(-50%, calc(-50% + 0.5rem));
}
.section-nav__box {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #f8f6f0;
  z-index: 1000;
}
@media (min-width: 700px) {
  .section-nav__box {
    position: absolute;
    top: 100%;
    height: auto;
    width: 40rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    background-color: transparent;
    z-index: 101;
  }
}
.section-nav__box-header {
  position: relative;
  padding: 1rem 2rem 0.7rem 2rem;
  background-color: #f0ede1;
}
@media (min-width: 700px) {
  .section-nav__box-header {
    display: none;
  }
}
.section-nav__box-title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
}
.section-nav__box-content {
  padding: 2.1rem 2rem;
}
@media (min-width: 700px) {
  .section-nav__box-content {
    padding: 2.2rem 2rem;
    position: relative;
  }
}
@media (min-width: 1025px) {
  .section-nav__box-content {
    padding: 2.1rem 2rem;
  }
}
@media (min-width: 700px) {
  .section-nav__box-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f6f0;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
    z-index: -1;
  }
}
.section-nav__close {
  position: absolute;
  right: 1.1rem;
  top: 0.9rem;
  width: 1.5rem;
  height: 1.5rem;
  background: none;
  border: none;
}
.section-nav__close:before, .section-nav__close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 1.5rem;
  height: 1px;
  background-color: #002554;
}
.section-nav__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.section-nav__parent {
  margin: 0 0 1.4rem;
}
@media (min-width: 700px) {
  .section-nav__parent {
    margin: 0 0 1rem;
  }
}
.section-nav__parent a {
  position: relative;
  padding-left: 0.9rem;
  background-image: none;
  text-decoration: none;
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
}
.section-nav__parent a:before {
  position: absolute;
  top: calc(50% - 0.1rem);
  left: 0.1rem;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
      -ms-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.1rem solid #385e9d;
  border-left: 0.1rem solid #385e9d;
}
.section-nav__current {
  display: block;
  width: calc(100% + 4rem);
  margin: 0 -2rem 1.1rem;
  padding: 0.6rem 1rem 0.2rem 1.6rem;
  text-transform: uppercase;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.048rem;
  background: #ffffff;
  border-left: 0.5rem solid #cedc00;
}
@media (min-width: 700px) {
  .section-nav__current {
    display: inline-block;
    width: auto;
    margin: 0 0 1.2rem -2rem;
    padding: 0.6rem 2rem 0.2rem 1.5rem;
  }
}
.section-nav__list {
  margin: 0;
  padding: 0;
}
@media (min-width: 700px) {
  .section-nav__item {
    margin-bottom: 0.4rem;
  }
}
.section-nav__item::before {
  display: none;
}
.section-nav__item a {
  color: #385e9d;
  text-decoration: none;
  background-image: none;
  color: #002554;
  font-size: 1.5rem;
}
.section-nav__item a:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .section-nav__item a:hover .last-word span:after {
    left: 1.8rem;
  }
}
.section-nav__item a .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .section-nav__item a .last-word {
    gap: 10px;
  }
}
.section-nav__item a .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .section-nav__item a .last-word span {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .section-nav__item a .last-word span {
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.section-nav__item a .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-blue.svg");
}
@media (min-width: 700px) {
  .section-nav__item a {
    color: #385e9d;
    text-decoration: none;
    background-image: none;
    color: #002554;
    font-size: 1.6rem;
  }
  .section-nav__item a:hover .last-word span:after {
    left: 1rem;
  }
}
@media screen and (min-width: 700px) and (min-width: 1025px) {
  .section-nav__item a:hover .last-word span:after {
    left: 1.8rem;
  }
}
@media (min-width: 700px) {
  .section-nav__item a .last-word {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    -webkit-transition: gap 0.3s;
    -o-transition: gap 0.3s;
    transition: gap 0.3s;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .section-nav__item a .last-word {
    gap: 10px;
  }
}
@media (min-width: 700px) {
  .section-nav__item a .last-word span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 0.7rem;
    height: 0.7rem;
    position: relative;
    -webkit-transition: margin-right 0.3s;
    -o-transition: margin-right 0.3s;
    transition: margin-right 0.3s;
  }
}
@media screen and (min-width: 700px) and (min-width: 700px) {
  .section-nav__item a .last-word span {
    width: 1.7rem;
    height: 1.7rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 700px) and (min-width: 1025px) {
  .section-nav__item a .last-word span {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
@media (min-width: 700px) {
  .section-nav__item a .last-word span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -ms-interpolation-mode: nearest-neighbor;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-pixelated;
        image-rendering: pixelated;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-blue.svg");
  }
}
@media (min-width: 1025px) {
  .section-nav__item a {
    color: #385e9d;
    text-decoration: none;
    background-image: none;
    color: #002554;
  }
  .section-nav__item a:hover .last-word span:after {
    left: 1rem;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .section-nav__item a:hover .last-word span:after {
    left: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .section-nav__item a .last-word {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    -webkit-transition: gap 0.3s;
    -o-transition: gap 0.3s;
    transition: gap 0.3s;
  }
}
@media screen and (min-width: 1025px) and (min-width: 700px) {
  .section-nav__item a .last-word {
    gap: 10px;
  }
}
@media (min-width: 1025px) {
  .section-nav__item a .last-word span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 0.7rem;
    height: 0.7rem;
    position: relative;
    -webkit-transition: margin-right 0.3s;
    -o-transition: margin-right 0.3s;
    transition: margin-right 0.3s;
  }
}
@media screen and (min-width: 1025px) and (min-width: 700px) {
  .section-nav__item a .last-word span {
    width: 1.7rem;
    height: 1.7rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .section-nav__item a .last-word span {
    width: 1.6rem;
    height: 1.6rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
@media (min-width: 1025px) {
  .section-nav__item a .last-word span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    -ms-interpolation-mode: nearest-neighbor;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: -moz-crisp-edges;
        image-rendering: -o-pixelated;
        image-rendering: pixelated;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-blue.svg");
  }
}
.section-nav__item a .last-word span {
  -webkit-transform: translate(-0.4rem, -0.2rem);
      -ms-transform: translate(-0.4rem, -0.2rem);
          transform: translate(-0.4rem, -0.2rem);
}
@media (min-width: 700px) {
  .section-nav__item a .last-word span {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.section-nav .breadcrumbs {
  display: none;
  background-color: #f8f6f0;
  padding: 12px 25px 10px;
}
@media (min-width: 1025px) {
  .section-nav .breadcrumbs {
    display: block;
  }
}
.section-nav .breadcrumbs:only-child {
  padding-left: 4rem;
}
.section-nav .breadcrumbs__list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.section-nav .breadcrumbs__item {
  position: relative;
  margin: 0 2.8rem 0 0;
}
.section-nav .breadcrumbs__item:before {
  display: none;
}
.section-nav .breadcrumbs__item:after {
  content: "/";
  position: absolute;
  right: -17px;
  top: 0px;
  font-weight: 500;
  color: #b3a369;
}
.section-nav .breadcrumbs__item:last-child:after {
  display: none;
}
.section-nav .breadcrumbs__item a {
  font-size: 1.6rem;
  font-weight: 600;
  color: #002554;
  background-image: none;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
  text-decoration-thickness: 1px;
}
.section-nav .breadcrumbs__item a:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: #002554;
     -moz-text-decoration-color: #002554;
          text-decoration-color: #002554;
}

/**
 * @file
 * vertical-carousel
 *
 * Contains styles for Vertical carousel object.
 */
@media (min-width: 700px) {
  .vertical-carousel {
    width: 64%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    height: 100%;
  }
  .vertical-carousel * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel {
    width: 71.3%;
  }
}
.vertical-carousel__section {
  padding: 0;
  margin-bottom: 0;
}
@media (min-width: 700px) {
  .vertical-carousel__section {
    z-index: 4;
  }
}
@media (min-width: 700px) {
  .vertical-carousel__section.vertical-carousel__section.vertical-carousel__section {
    padding-top: 0;
  }
}
.vertical-carousel__section-box {
  position: relative;
  padding-bottom: 2rem;
  padding: 0.05rem 0 1.5rem;
  max-width: 1800px;
}
@media (min-width: 700px) {
  .vertical-carousel__section-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 4.1rem;
    padding-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__section-box {
    padding-top: 7.9rem;
  }
}
.js-fixed .is-fixed .vertical-carousel__section-box {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  z-index: 3;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (min-width: 1025px) {
  .js-fixed .is-fixed .vertical-carousel__section-box {
    padding-left: 8rem;
    padding-right: calc(8rem + var(--scrollbar-width));
    z-index: 299;
  }
}
@media (min-width: 1800px) {
  .js-fixed .is-fixed .vertical-carousel__section-box {
    padding-left: calc(8rem - var(--scrollbar-width) / 2);
    padding-right: calc(8rem + var(--scrollbar-width) / 2);
  }
}
.vertical-carousel__section-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
  background-color: #f0ede1;
  z-index: -1;
}
.vertical-carousel__header {
  margin: 0 0 1.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 20px;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .vertical-carousel__header {
    margin: 0 0 3.8rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 0;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__header {
    margin: 0 0 4.1rem;
    gap: 5rem;
  }
}
@media (min-width: 700px) {
  .vertical-carousel__header + .vertical-carousel__intro {
    margin-top: -2rem;
    margin-bottom: 3.2rem;
  }
}
.vertical-carousel__header h2 {
  margin-right: 1.5rem;
}
@media (min-width: 700px) {
  .vertical-carousel__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(100% + 8rem);
    margin: 0 -4rem;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__box {
    width: calc(100% + 16rem);
    margin: 0 -8rem;
  }
}
.vertical-carousel__item {
  margin: 0 0 1rem;
}
@media (min-width: 700px) {
  .vertical-carousel__item {
    margin: 0 0 1rem;
  }
}
.vertical-carousel__item:last-child {
  margin: 0;
}
@media (min-width: 700px) {
  .vertical-carousel__slide {
    position: relative;
  }
}
.vertical-carousel__image {
  position: relative;
  width: calc(100% + 4rem);
  margin: 0 -2rem;
}
@media (min-width: 700px) {
  .vertical-carousel__image {
    width: 100%;
    margin: 0;
  }
}
.vertical-carousel__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0.42%, rgba(0, 0, 0, 0.6)), color-stop(99.9%, rgba(0, 0, 0, 0.06)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.6) 0.42%, rgba(0, 0, 0, 0.06) 99.9%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0.42%, rgba(0, 0, 0, 0.06) 99.9%);
  z-index: 2;
}
.vertical-carousel__image img {
  position: relative;
  aspect-ratio: 320/170;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media (min-width: 700px) {
  .vertical-carousel__image img {
    aspect-ratio: 447/243;
    width: 100%;
    max-height: 60.605svh;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__image img {
    aspect-ratio: 854/465;
  }
}
.vertical-carousel__body {
  position: relative;
  padding: 1.3rem 2rem 1.1rem;
  margin: 0 -2rem;
  width: calc(100% + 4rem);
  background-color: #ffffff;
}
@media (min-width: 700px) {
  .vertical-carousel__body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem 3rem 3.1rem;
    margin: 0;
    background-color: transparent;
    color: #ffffff;
    z-index: 3;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__body {
    padding: 1.3rem 5rem 4.1rem;
  }
}
.vertical-carousel__title {
  position: absolute;
  left: 2rem;
  bottom: calc(100% + 1.1rem);
  font-variant-numeric: lining-nums proportional-nums;
  -webkit-font-feature-settings: "salt" on;
     -moz-font-feature-settings: "salt" on;
          font-feature-settings: "salt" on;
  color: #ffffff;
  z-index: 2;
}
@media (min-width: 700px) {
  .vertical-carousel__title {
    position: static;
    margin: 0 0 0.6rem;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__title {
    margin: 0 0 1.2rem;
  }
}
.vertical-carousel__title a {
  color: #385e9d;
  text-decoration: none;
  background-image: none;
  color: inherit;
}
.vertical-carousel__title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.vertical-carousel__title a:hover .last-word span:after {
  left: 1rem;
}
@media screen and (min-width: 1025px) {
  .vertical-carousel__title a:hover .last-word span:after {
    left: 1.8rem;
  }
}
.vertical-carousel__title a .last-word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: gap 0.3s;
  -o-transition: gap 0.3s;
  transition: gap 0.3s;
}
@media screen and (min-width: 700px) {
  .vertical-carousel__title a .last-word {
    gap: 10px;
  }
}
.vertical-carousel__title a .last-word span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 1.7rem;
  height: 1.7rem;
  position: relative;
  -webkit-transition: margin-right 0.3s;
  -o-transition: margin-right 0.3s;
  transition: margin-right 0.3s;
}
@media screen and (min-width: 700px) {
  .vertical-carousel__title a .last-word span {
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
@media screen and (min-width: 1025px) {
  .vertical-carousel__title a .last-word span {
    width: 3.2rem;
    height: 3.2rem;
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
}
.vertical-carousel__title a .last-word span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: 100%/contain no-repeat url("/_resources/assets/icons/arrow-blue.svg");
}
.vertical-carousel__title a .last-word span::after {
  background: url("/_resources/assets/icons/arrow-green.svg") no-repeat center;
  background-size: 100%;
}
.vertical-carousel__caption {
  font-weight: 500;
}
@media (min-width: 700px) {
  .vertical-carousel__caption {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__caption {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.vertical-carousel__controls {
  display: none;
}
@media (min-width: 700px) {
  .vertical-carousel__controls {
    display: block;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 36%;
    padding: 2.3rem 0;
    overflow: clip;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__controls {
    padding: 6.2rem 0;
    width: 28.7%;
  }
}
.vertical-carousel__bullets-list-wrapper {
  background-color: #ffffff;
  padding: 1.9rem 0;
}
@media screen and (min-width: 700px) {
  .vertical-carousel__bullets-list-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 40%;
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__bullets-list-wrapper {
    padding: 3.9rem 0 3.9rem 5rem;
    top: 30%;
  }
}
.vertical-carousel__bullets-list-wrapper .loc-bar {
  position: absolute;
  display: block;
  pointer-events: none;
  width: 0.8rem;
  background: #cedc00;
  z-index: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.vertical-carousel__bullets-list-wrapper::before {
  z-index: 1;
}
@media (min-width: 700px) {
  .vertical-carousel__bullets-list-wrapper::before {
    content: "";
    position: absolute;
    background-color: #f0ede1;
    width: 0.8rem;
    top: 1.9rem;
    left: 0;
    height: calc(100% - 3.8rem);
  }
}
@media (min-width: 1025px) {
  .vertical-carousel__bullets-list-wrapper::before {
    top: 3.9rem;
    left: 5rem;
    height: calc(100% - 7.8rem);
  }
}
.vertical-carousel__bullets-list {
  position: relative;
  margin: 0;
  padding: 0;
}
.vertical-carousel__bullets-item {
  padding: 0;
  margin: 0 0 0.2rem;
  background-color: #ffffff;
}
@media (min-width: 1025px) {
  .vertical-carousel__bullets-item:not(:last-child) {
    margin: 0 0 2.3rem;
  }
}
.vertical-carousel__bullets-item:before {
  display: none;
}
.vertical-carousel__bullet {
  position: relative;
  background-color: none;
  padding: 1.3rem 4rem 1.3rem 2.8rem;
  background-color: transparent;
  border: none;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.054rem;
  color: #385e9d;
  text-transform: uppercase;
  text-align: left;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  z-index: 2;
}
@media (min-width: 1025px) {
  .vertical-carousel__bullet {
    padding: 1.3rem 4rem 1.3rem 2.8rem;
    letter-spacing: 0.06rem;
    font-size: 2rem;
  }
}
.vertical-carousel__bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8rem;
  height: 100%;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.vertical-carousel__bullet:hover {
  color: #002554;
}
.vertical-carousel__bullet.active {
  color: #002554;
  font-weight: 900;
}
.vertical-carousel__bullet.active::before {
  background-color: #cedc00;
}
.vertical-carousel .slick-list {
  height: 100% !important;
  width: 100% !important;
}
.vertical-carousel .slick-slide {
  border: none;
}

/**
 * @file
 * sticky cta
 *
 * Contains styles for sticky cta component.
 */
.sticky-cta {
  position: fixed;
  top: 5rem;
  right: 0;
  z-index: 20;
  display: none;
  -webkit-transition: right 0.5s ease, top 0.3s ease;
  -o-transition: right 0.5s ease, top 0.3s ease;
  transition: right 0.5s ease, top 0.3s ease;
}
@media screen and (min-width: 1025px) {
  .sticky-cta {
    display: block;
  }
}
.sticky-cta__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.sticky-cta button.sticky-cta__toggle {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 0 0 0.8rem;
  background: #cedc00;
  border: none;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.sticky-cta button.sticky-cta__toggle:focus {
  outline: solid 1px #000000;
  outline-offset: -4px;
}
.sticky-cta button.sticky-cta__toggle:hover {
  background: #f0ede1;
}
.cta-list--visible .sticky-cta button.sticky-cta__toggle {
  background: #f0ede1;
}
.cta-list--visible .sticky-cta button.sticky-cta__toggle:hover {
  background: #cedc00;
}
.sticky-cta button.sticky-cta__toggle:before, .sticky-cta button.sticky-cta__toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.7rem;
  height: 0.3rem;
  background-color: #002554;
}
@media (forced-colors: active) {
  .sticky-cta button.sticky-cta__toggle:before, .sticky-cta button.sticky-cta__toggle:after {
    background-color: currentColor;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .sticky-cta button.sticky-cta__toggle:before, .sticky-cta button.sticky-cta__toggle:after {
    forced-color-adjust: none;
    background-color: black;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .sticky-cta button.sticky-cta__toggle:before, .sticky-cta button.sticky-cta__toggle:after {
    forced-color-adjust: none;
    background-color: white;
  }
}
.sticky-cta button.sticky-cta__toggle:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
      -ms-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cta-list--visible .sticky-cta button.sticky-cta__toggle:after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
      -ms-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.sticky-cta .cta__list {
  position: absolute;
  top: 66px;
  width: 134px;
  -webkit-clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
          clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 13px), calc(100% - 13px) 100%, 0 100%, 0 13px);
  opacity: 0;
  -webkit-transform: translateY(-3rem);
      -ms-transform: translateY(-3rem);
          transform: translateY(-3rem);
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cta-list--visible .sticky-cta .cta__list {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.sticky-cta .cta__list-item a {
  padding: 10px 21px;
  font-size: 1.6rem;
  letter-spacing: 0.16px;
  font-weight: 600;
}
.sticky-cta .cta__list-item a:focus {
  outline-offset: -5px;
}
.sticky-cta.sticky-cta--hidden {
  right: -100%;
}
.sticky-cta.js-header-visible {
  top: 21rem;
}

/**
 * @file
 * Cta callout
 *
 * Contains styles for cta-callout component.
 */
.cta-callout__section {
  padding: 3rem 0;
  margin-top: 4rem;
  margin-bottom: 0;
  position: relative;
}
@media (min-width: 700px) {
  .cta-callout__section {
    padding: 4rem 0 5.2rem;
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .cta-callout__section {
    padding: 8rem 0;
  }
}
.cta-callout__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background-color: #002554;
  z-index: 1;
}
.cta-callout__section.js-active .cta-callout__item {
  opacity: 1;
  top: 0;
}
.cta-callout__icon-holder {
  position: absolute;
  overflow: hidden;
  top: -5px;
  max-height: calc(100% + 5px);
  left: -2rem;
  height: calc(100% + 5px);
  -o-object-fit: fill;
     object-fit: fill;
  width: calc(100% + 4rem);
  max-width: calc(100% + 4rem);
  z-index: 2;
}
@media (min-width: 700px) {
  .cta-callout__icon-holder {
    height: 100%;
    top: 0;
    left: -4rem;
    width: calc(100% + 8rem);
    max-width: calc(100% + 8rem);
  }
}
@media (min-width: 1025px) {
  .cta-callout__icon-holder {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100vw - var(--scrollbar-width));
    max-width: calc(100vw - var(--scrollbar-width));
  }
}
.cta-callout__icon {
  aspect-ratio: 510/355;
  max-width: unset;
  width: 100%;
}
@media (min-width: 700px) {
  .cta-callout__icon {
    margin-top: -6px;
    width: auto;
    height: 100%;
  }
}
@media (min-width: 1025px) {
  .cta-callout__icon {
    height: 105%;
  }
}
.cta-callout__header {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}
@media (min-width: 1025px) {
  .cta-callout__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 4rem;
  }
}
.cta-callout__header h2 {
  color: #ffffff;
  margin: 0 0 2rem;
}
@media (min-width: 700px) {
  .cta-callout__header h2 {
    margin: 0 0 2.7rem;
  }
}
@media (min-width: 1025px) {
  .cta-callout__header h2 {
    margin: 0;
  }
}
.cta-callout__item {
  position: relative;
  top: 3rem;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, top 0.5s ease;
  -o-transition: opacity 0.5s ease, top 0.5s ease;
  transition: opacity 0.5s ease, top 0.5s ease;
}
.cta-callout__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.cta-callout__item:nth-child(3) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.cta-callout__item:not(:last-child) {
  margin: 0 0 1.4rem;
}
@media (min-width: 700px) {
  .cta-callout__item:not(:last-child) {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1025px) {
  .cta-callout__item:not(:last-child) {
    margin: 0 0 2.1rem;
  }
}

/**
 * @file
 * Featured stats
 *
 * Contains styles for "featured stats" component.
 */
.featured-stats__section {
  background-color: #f8f6f0;
  padding: 2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 699px) {
  .featured-stats__section {
    margin-top: 6.7rem;
  }
}
@media (min-width: 700px) {
  .featured-stats__section {
    padding: 3rem 3rem 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1025px) {
  .featured-stats__section {
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 5rem 5rem 4rem;
  }
}
.hero--home + .container .featured-stats__section:first-child {
  margin-top: 6.5rem;
}
@media (min-width: 700px) {
  .hero--home + .container .featured-stats__section:first-child {
    margin-top: 4rem;
  }
}
@media (min-width: 1025px) {
  .hero--home + .container .featured-stats__section:first-child {
    margin-top: 8rem;
  }
}
.featured-stats__header {
  margin: 0 0 2.1rem;
}
@media (min-width: 700px) {
  .featured-stats__header {
    margin: 0 0 4.2rem;
  }
}
.featured-stats__value {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.04;
  color: #385e9d;
}
@media (min-width: 700px) {
  .featured-stats__value {
    margin: 0 0 0.6rem;
    font-size: 4rem;
  }
}
@media (min-width: 1025px) {
  .featured-stats__value {
    margin: 0 0 1rem;
    font-size: 6rem;
  }
}
@media (min-width: 1025px) {
  .featured-stats__caption {
    font-size: 2rem;
  }
}
.featured-stats__list {
  padding: 0 0 1.8rem;
}
@media (min-width: 700px) {
  .featured-stats__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding: 0 0 3.9rem;
  }
}
@media (min-width: 1025px) {
  .featured-stats__list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 0 3.3rem;
  }
}
.featured-stats__item:not(:last-child) {
  margin: 0 0 2rem;
}
@media (min-width: 700px) {
  .featured-stats__item:not(:last-child) {
    margin: 0;
  }
}
@media (min-width: 700px) {
  .featured-stats__item {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .featured-stats__item {
    width: 26.5%;
  }
}
.featured-stats__subtitle {
  font-style: italic;
  margin: 0 0 1.3rem;
}
@media (min-width: 700px) {
  .featured-stats__subtitle {
    margin: 0;
  }
}
@media (min-width: 1025px) {
  .featured-stats__subtitle {
    font-size: 2rem;
  }
}
.featured-stats__footer {
  padding: 1.5rem 0 0;
  border-top: 1px solid #b3a369;
}
@media (min-width: 700px) {
  .featured-stats__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3rem 0 0;
  }
}

/**
 * @file
 * Cta callout
 *
 * Contains styles for cta-callout component.
 */
.contact-callout__section {
  padding: 3rem 0 3.4rem;
  margin-top: 4rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (min-width: 700px) {
  .contact-callout__section {
    padding: 5rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1025px) {
  .contact-callout__section {
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 5.1rem 5rem 5.2rem;
  }
}
.contact-callout__section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100vw - var(--scrollbar-width));
  height: 100%;
  background-color: #002554;
  z-index: 1;
}
@media (min-width: 700px) {
  .contact-callout__section::before {
    display: none;
  }
}
.contact-callout__section .cta-callout__list {
  margin: 0 0 1.9rem;
}
@media (min-width: 700px) {
  .contact-callout__section .cta-callout__list {
    margin: 0 0 2.5rem;
  }
}
@media (min-width: 1025px) {
  .contact-callout__section .cta-callout__list {
    margin: 0 0 2.8rem;
  }
}
.contact-callout__section.js-active .cta-callout__item {
  opacity: 1;
  top: 0;
}
.contact-callout__icon-holder {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: -2rem;
  -o-object-fit: fill;
     object-fit: fill;
  width: calc(100% + 4rem);
  max-width: calc(100% + 4rem);
  background-color: #002554;
  max-height: 100%;
  z-index: 2;
}
@media (min-width: 700px) {
  .contact-callout__icon-holder {
    height: 100%;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    left: 0;
  }
}
.contact-callout__icon {
  width: 100%;
  display: none;
}
.contact-callout__icon.mobile {
  display: block;
}
@media (min-width: 700px) {
  .contact-callout__icon.mobile {
    display: none;
  }
}
@media (min-width: 700px) {
  .contact-callout__icon.tablet {
    display: block;
  }
}
@media (min-width: 1025px) {
  .contact-callout__icon.tablet {
    display: none;
  }
}
.contact-callout__icon.desktop {
  height: 100%;
  width: auto;
  margin-left: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1025px) {
  .contact-callout__icon.desktop {
    display: block;
  }
}
.contact-callout__wrapper {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
}
@media (min-width: 1025px) {
  .contact-callout__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2.5rem;
  }
}
.contact-callout__wrapper h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.9rem;
}
@media (min-width: 700px) {
  .contact-callout__wrapper h2 {
    margin: 0 0 2.1rem;
    font-size: 3.4rem;
    font-weight: 700;
  }
}
@media (min-width: 1025px) {
  .contact-callout__wrapper h2 {
    font-size: 4.8rem;
  }
}
@media (min-width: 1025px) {
  .contact-callout__box {
    width: calc(50% - 1.2rem);
    padding-left: 5rem;
  }
}
.contact-callout__intro {
  padding-right: 3rem;
  margin: 0 0 1.9rem;
}
@media (min-width: 700px) {
  .contact-callout__intro {
    margin: 0 0 2.5rem;
  }
}
@media (min-width: 1025px) {
  .contact-callout__intro {
    width: calc(50% - 1.2rem);
    margin: 0;
  }
}
.contact-callout__description {
  color: #ffffff;
}
@media (min-width: 700px) {
  .contact-callout__description {
    max-width: 80%;
  }
}
@media (min-width: 1025px) {
  .contact-callout__description {
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.contact-callout__list {
  position: relative;
  padding-left: 2rem;
}
.contact-callout__list::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 0.2rem);
  top: 0.6rem;
  left: 0;
  background-color: #cedc00;
}
@media (min-width: 700px) {
  .contact-callout__list::before {
    height: calc(100% - 0.4rem);
  }
}
.contact-callout__item:not(:last-child) {
  margin: 0 0 0.8rem;
}
@media (min-width: 700px) {
  .contact-callout__item:not(:last-child) {
    margin: 0 0 0.6rem;
  }
}
@media (min-width: 1025px) {
  .contact-callout__item:not(:last-child) {
    margin: 0;
  }
}
.contact-callout__item a {
  color: #ffffff;
}
.contact-callout__item a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.contact-callout__item a:hover {
  color: #002554;
}

/**
 * @file
 * Generic Block: 3 Column
 *
 * Styles for Generic Block: 3 Column object.
 */
.quote-tabs {
  margin: 2.8rem 0;
}
@media (min-width: 700px) {
  .quote-tabs {
    margin: 4.2rem 0;
  }
}
@media (min-width: 1025px) {
  .quote-tabs {
    margin: 8rem 0 4rem;
  }
}
.quote-tabs__header {
  margin: 0 0 2rem;
}
@media (min-width: 700px) {
  .quote-tabs__header {
    margin: 0 0 3.4rem;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__header {
    margin: 0 0 3.8rem;
  }
}
.quote-tabs__header h2 {
  margin: 0;
}
.quote-tabs__nav {
  display: none;
}
@media (min-width: 700px) {
  .quote-tabs__nav {
    position: relative;
    display: block;
    width: 214px;
    background-color: #f0ede1;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .quote-tabs__nav:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #b3a369;
    z-index: 1;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__nav {
    width: 265px;
  }
}
@media screen and (min-width: 700px) {
  .quote-tabs__nav-list {
    height: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.quote-tabs__nav-list-item {
  position: relative;
}
@media screen and (min-width: 700px) {
  .quote-tabs__nav-list-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 33%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}
.quote-tabs__nav-list-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 5.7rem);
  height: 1px;
  background-color: #ffffff;
}
@media screen and (min-width: 700px) {
  .quote-tabs__nav-list-item .quote-tabs__nav-button {
    height: 100%;
  }
}
.quote-tabs__nav-list-item:first-child .quote-tabs__nav-button.active {
  border-top-color: #f8f6f0;
}
.quote-tabs__nav-list-item:last-child:before {
  display: none;
}
.quote-tabs__nav-list-item:last-child .quote-tabs__nav-button {
  margin-bottom: -1px;
}
.quote-tabs__nav-list-item:last-child .quote-tabs__nav-button:after {
  content: none;
}
.quote-tabs__nav-list-item:not(:first-child) {
  margin-top: -1px;
}
.quote-tabs__nav-button {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f0ede1;
  min-height: 157px;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
  text-align: center;
  border-left: none;
  border-bottom: none;
  border-top: 1px solid #f0ede1;
  border-right: 1px solid transparent;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.54px;
  text-transform: uppercase;
  color: #385e9d;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.quote-tabs__nav-button:focus {
  outline: solid 1px #000000;
  outline-offset: -4px;
}
@media (min-width: 1025px) {
  .quote-tabs__nav-button {
    min-height: 145px;
  }
}
.quote-tabs__nav-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 1px);
  height: 1px;
  background-color: #b3a369;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.quote-tabs__nav-button.active {
  letter-spacing: 0.48px;
  color: #002554;
  background-color: #f8f6f0;
  border-top-color: #b3a369;
  border-right-color: #f8f6f0;
  border-bottom-color: #b3a369;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
.quote-tabs__nav-button.active::before, .quote-tabs__nav-button.active::after {
  opacity: 1;
}
.quote-tabs__box {
  z-index: 1;
}
@media (min-width: 700px) {
  .quote-tabs__box {
    width: calc(100% - 157px);
    background-color: #f8f6f0;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__box {
    width: calc(100% - 265px);
  }
}
.quote-tabs__intro-img {
  position: relative;
  width: calc(100vw - var(--scrollbar-width));
  height: 0;
  padding-top: 65%;
  margin-left: calc((100vw - 100%) / 2 * -1 + var(--scrollbar-width) / 2);
  z-index: -1;
  overflow: hidden;
}
.quote-tabs__intro-img:before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  width: calc(100% - 1.8rem);
  height: calc(100% - 2.1rem);
  border: 2px solid #ffffff;
  z-index: 1;
}
@media (min-width: 700px) {
  .quote-tabs__intro-img:before {
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3.6rem);
    height: calc(100% - 3.6rem);
    border: 3px solid #ffffff;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__intro-img:before {
    top: 1.7rem;
    left: 1.7rem;
    width: calc(100% - 4.4rem);
    height: calc(100% - 4.4rem);
    border: 5px solid #ffffff;
  }
}
.quote-tabs__intro-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
}
.quote-tabs__intro-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 320/172;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 700px) {
  .quote-tabs__intro-img img {
    aspect-ratio: 700/377;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__intro-img img {
    aspect-ratio: 1200/645;
  }
}
.quote-tabs__intro-img img.js-active {
  opacity: 1;
}
.quote-tabs__wrapper {
  position: relative;
  top: 3rem;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, top 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, top 0.5s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.5s ease, top 0.5s ease, transform 0.3s ease;
  transition: opacity 0.5s ease, top 0.5s ease, transform 0.3s ease;
  transition: opacity 0.5s ease, top 0.5s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  margin: 0 -2rem;
}
@media (min-width: 700px) {
  .quote-tabs__wrapper {
    margin: -10.2rem 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__wrapper {
    margin: -19rem 0 0;
  }
}
.quote-tabs__wrapper.js-active {
  opacity: 1;
  top: 0;
}
.quote-tabs__item-opener {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.6rem;
  background-color: #f0ede1;
  border: none;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.quote-tabs__item-opener:focus {
  outline: solid 1px #000000;
  outline-offset: -4px;
}
@media (min-width: 700px) {
  .quote-tabs__item-opener {
    display: none;
  }
}
.quote-tabs__item-opener.active {
  background-color: #ffffff;
}
.quote-tabs__item-opener.active .icon {
  background: #f0ede1;
}
.quote-tabs__item-opener.active .icon:after {
  opacity: 0;
}
.quote-tabs__item-opener .icon {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.quote-tabs__item-opener .icon:before, .quote-tabs__item-opener .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.1rem;
  height: 2px;
  background-color: #002554;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.quote-tabs__item-opener .icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
      -ms-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.quote-tabs__item-box {
  display: none;
}
.quote-tabs__item-box {
  position: relative;
  background-color: #f8f6f0;
  padding: 2rem;
}
@media screen and (min-width: 700px) {
  .quote-tabs__item-box {
    padding: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__item-box {
    padding: 5.2rem 4.9rem 2.8rem;
    padding-right: 5.1rem;
  }
}
.quote-tabs__item-box:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #b3a369;
}
@media screen and (min-width: 700px) {
  .quote-tabs__item-box:after {
    display: none;
  }
}
.quote-tabs__quote {
  position: relative;
  margin: 0 0 1.9rem;
  font-family: "matrix-ii", sans-serif;
  font-size: 1.8rem;
  line-height: 1.34;
  font-style: italic;
  font-weight: 400;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 700px) {
  .quote-tabs__quote {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    letter-spacing: unset;
    background-color: #f8f6f0;
    background-color: transparent;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__quote {
    margin-bottom: 13px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.quote-tabs__quote::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -8px;
}
@media screen and (min-width: 700px) {
  .quote-tabs__quote::before {
    left: calc(35% + 1rem);
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__quote::before {
    left: -11px;
  }
}
.quote-tabs__quote::after {
  content: "”";
}
.quote-tabs__title {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 700px) {
  .quote-tabs__title {
    margin: 0 0 1.4rem;
    clear: both;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__title {
    margin: 0 0 2rem;
    display: none;
    clear: none;
  }
}
.quote-tabs__title--desktop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .quote-tabs__title--desktop {
    display: block;
  }
}
.quote-tabs__content-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 700px) {
  .quote-tabs__content-box {
    display: block;
  }
}
.quote-tabs__image {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 700px) {
  .quote-tabs__image {
    float: left;
    width: 35%;
    margin-right: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__image {
    width: 33.5%;
    float: right;
    margin-right: 0;
    margin-left: 2rem;
  }
}
.quote-tabs__image img {
  width: 46.4%;
  aspect-ratio: 130/128;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 700px) {
  .quote-tabs__image img {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__image img {
    aspect-ratio: 226/222;
  }
}
.quote-tabs__body {
  padding: 0 0 2rem;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #b3a369;
}
@media screen and (min-width: 700px) {
  .quote-tabs__body {
    margin: 0 0 2.2rem;
  }
  .quote-tabs__body:after {
    content: "";
    display: block;
    clear: both;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__body {
    margin: 0 0 3.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 2rem 0rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.quote-tabs__footer .quote__attr {
  margin-bottom: 1px;
}
@media screen and (min-width: 700px) {
  .quote-tabs__footer .quote__attr {
    margin-bottom: 0;
  }
}
.quote-tabs__author {
  margin: 0 0 1.4rem;
}
@media screen and (min-width: 700px) {
  .quote-tabs__author {
    margin: 0 0 1.8rem;
  }
}
.quote-tabs__position {
  font-style: italic;
}
@media screen and (min-width: 1025px) {
  .quote-tabs__position {
    margin-top: -3px;
  }
}
.quote-tabs .quote-bar {
  position: absolute;
  display: block;
  pointer-events: none;
  width: 0.8rem;
  background: #cedc00;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.link-list {
  margin: 2rem 0;
}
@media screen and (min-width: 700px) {
  .link-list {
    margin: 4rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .link-list {
    margin: 8rem 0;
  }
}
.link-list__header {
  margin: 0 0 1.9rem;
}
@media screen and (min-width: 700px) {
  .link-list__header {
    margin: 0 0 2.6rem;
  }
}
.link-list__top {
  margin-bottom: 1.3rem;
}
@media screen and (min-width: 700px) {
  .link-list__top {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .link-list__top {
    margin-bottom: 2.7rem;
  }
}
@media screen and (min-width: 700px) {
  .link-list__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
  }
}
@media screen and (max-width: 699px) {
  .link-list__left {
    margin-bottom: 1.7rem;
  }
}
@media screen and (min-width: 700px) {
  .link-list__left {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 700px) {
  .link-list__right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 48.4%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 48.4%;
            flex: 0 0 48.4%;
  }
}
.link-list__right img {
  width: 100%;
}
.link-list__content {
  padding-left: 1.4rem;
  border-left: 1px solid #002554;
}
@media screen and (min-width: 700px) {
  .link-list__content {
    padding-left: 1.9rem;
  }
}
.link-list__content ul {
  padding: 0;
}
.link-list__content li {
  margin-bottom: 1.1rem;
  opacity: 0;
}
@media screen and (min-width: 700px) {
  .link-list__content li {
    margin-bottom: 1.3rem;
  }
}
.link-list__content li:before {
  content: none;
}
.link-list.section--bg-dark {
  background: #002554;
}
.link-list.section--bg-dark .link-list__header {
  color: #ffffff;
}
.link-list.js-active .link-list__content ul > li:nth-child(1) {
  -webkit-animation: listFadeInSlideUp 500ms 0ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 0ms forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(2) {
  -webkit-animation: listFadeInSlideUp 500ms 250ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 250ms forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(3) {
  -webkit-animation: listFadeInSlideUp 500ms 500ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 500ms forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(4) {
  -webkit-animation: listFadeInSlideUp 500ms 750ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 750ms forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(5) {
  -webkit-animation: listFadeInSlideUp 500ms 1000ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 1000ms forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(1) {
  -webkit-animation: listFadeInSlideUp 500ms 0.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 0.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(2) {
  -webkit-animation: listFadeInSlideUp 500ms 0.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 0.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(3) {
  -webkit-animation: listFadeInSlideUp 500ms 0.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 0.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(4) {
  -webkit-animation: listFadeInSlideUp 500ms 1s forwards ease-out;
          animation: listFadeInSlideUp 500ms 1s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(5) {
  -webkit-animation: listFadeInSlideUp 500ms 1.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 1.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(6) {
  -webkit-animation: listFadeInSlideUp 500ms 1.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 1.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(7) {
  -webkit-animation: listFadeInSlideUp 500ms 1.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 1.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(8) {
  -webkit-animation: listFadeInSlideUp 500ms 2s forwards ease-out;
          animation: listFadeInSlideUp 500ms 2s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(9) {
  -webkit-animation: listFadeInSlideUp 500ms 2.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 2.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(10) {
  -webkit-animation: listFadeInSlideUp 500ms 2.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 2.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(11) {
  -webkit-animation: listFadeInSlideUp 500ms 2.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 2.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(12) {
  -webkit-animation: listFadeInSlideUp 500ms 3s forwards ease-out;
          animation: listFadeInSlideUp 500ms 3s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(13) {
  -webkit-animation: listFadeInSlideUp 500ms 3.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 3.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(14) {
  -webkit-animation: listFadeInSlideUp 500ms 3.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 3.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(15) {
  -webkit-animation: listFadeInSlideUp 500ms 3.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 3.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(16) {
  -webkit-animation: listFadeInSlideUp 500ms 4s forwards ease-out;
          animation: listFadeInSlideUp 500ms 4s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(17) {
  -webkit-animation: listFadeInSlideUp 500ms 4.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 4.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(18) {
  -webkit-animation: listFadeInSlideUp 500ms 4.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 4.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(19) {
  -webkit-animation: listFadeInSlideUp 500ms 4.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 4.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(20) {
  -webkit-animation: listFadeInSlideUp 500ms 5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(21) {
  -webkit-animation: listFadeInSlideUp 500ms 5.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 5.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(22) {
  -webkit-animation: listFadeInSlideUp 500ms 5.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 5.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(23) {
  -webkit-animation: listFadeInSlideUp 500ms 5.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 5.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(24) {
  -webkit-animation: listFadeInSlideUp 500ms 6s forwards ease-out;
          animation: listFadeInSlideUp 500ms 6s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(25) {
  -webkit-animation: listFadeInSlideUp 500ms 6.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 6.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(26) {
  -webkit-animation: listFadeInSlideUp 500ms 6.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 6.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(27) {
  -webkit-animation: listFadeInSlideUp 500ms 6.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 6.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(28) {
  -webkit-animation: listFadeInSlideUp 500ms 7s forwards ease-out;
          animation: listFadeInSlideUp 500ms 7s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(29) {
  -webkit-animation: listFadeInSlideUp 500ms 7.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 7.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(30) {
  -webkit-animation: listFadeInSlideUp 500ms 7.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 7.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(31) {
  -webkit-animation: listFadeInSlideUp 500ms 7.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 7.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(32) {
  -webkit-animation: listFadeInSlideUp 500ms 8s forwards ease-out;
          animation: listFadeInSlideUp 500ms 8s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(33) {
  -webkit-animation: listFadeInSlideUp 500ms 8.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 8.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(34) {
  -webkit-animation: listFadeInSlideUp 500ms 8.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 8.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(35) {
  -webkit-animation: listFadeInSlideUp 500ms 8.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 8.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(36) {
  -webkit-animation: listFadeInSlideUp 500ms 9s forwards ease-out;
          animation: listFadeInSlideUp 500ms 9s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(37) {
  -webkit-animation: listFadeInSlideUp 500ms 9.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 9.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(38) {
  -webkit-animation: listFadeInSlideUp 500ms 9.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 9.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(39) {
  -webkit-animation: listFadeInSlideUp 500ms 9.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 9.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(40) {
  -webkit-animation: listFadeInSlideUp 500ms 10s forwards ease-out;
          animation: listFadeInSlideUp 500ms 10s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(41) {
  -webkit-animation: listFadeInSlideUp 500ms 10.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 10.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(42) {
  -webkit-animation: listFadeInSlideUp 500ms 10.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 10.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(43) {
  -webkit-animation: listFadeInSlideUp 500ms 10.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 10.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(44) {
  -webkit-animation: listFadeInSlideUp 500ms 11s forwards ease-out;
          animation: listFadeInSlideUp 500ms 11s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(45) {
  -webkit-animation: listFadeInSlideUp 500ms 11.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 11.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(46) {
  -webkit-animation: listFadeInSlideUp 500ms 11.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 11.5s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(47) {
  -webkit-animation: listFadeInSlideUp 500ms 11.75s forwards ease-out;
          animation: listFadeInSlideUp 500ms 11.75s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(48) {
  -webkit-animation: listFadeInSlideUp 500ms 12s forwards ease-out;
          animation: listFadeInSlideUp 500ms 12s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(49) {
  -webkit-animation: listFadeInSlideUp 500ms 12.25s forwards ease-out;
          animation: listFadeInSlideUp 500ms 12.25s forwards ease-out;
}
.link-list.js-active .link-list__content ul > li:nth-child(50) {
  -webkit-animation: listFadeInSlideUp 500ms 12.5s forwards ease-out;
          animation: listFadeInSlideUp 500ms 12.5s forwards ease-out;
}

/**
 * @file
 * Generic Block: 3 Column
 *
 * Styles for Generic Block: 3 Column object.
 */
.featured-video {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-top: 8rem;
  background: #385e9d;
  margin: 0 -2rem;
  word-wrap: none;
  aspect-ratio: 320/200;
  margin-bottom: calc(var(--caption-height) + 3.6rem);
}
@media (min-width: 700px) {
  .featured-video {
    padding-top: 10rem;
    padding-bottom: 3rem;
    margin-bottom: 0;
    margin: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .featured-video {
    padding-top: 11.8rem;
    margin: 8rem 0;
    aspect-ratio: 1040/465;
  }
}
@media (min-width: 1025px) {
  .featured-video .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.featured-video__title {
  position: relative;
  color: #ffffff;
  margin: 0 0 1.3rem;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  z-index: 3;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .featured-video__title {
    margin: 0 0 1.5rem;
    font-size: 3.4rem;
  }
}
@media (min-width: 1025px) {
  .featured-video__title {
    margin: 0 0 1.1rem;
    font-size: 4.8rem;
  }
}
.featured-video__caption {
  position: absolute;
  left: 0;
  top: 100%;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  padding: 1.1rem 4rem 0.9rem 2rem;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 600;
  background-color: #f8f6f0;
  z-index: 3;
}
@media (min-width: 700px) {
  .featured-video__caption {
    font-size: 1.6rem;
    position: static;
    margin: 0;
    background-color: transparent;
    padding: 0;
    color: #ffffff;
    width: 90%;
  }
}
@media (min-width: 1025px) {
  .featured-video__caption {
    font-size: 2.4rem;
    width: 100%;
  }
}
.featured-video__caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 100%;
  background-color: #f0ede1;
}
@media (min-width: 700px) {
  .featured-video__caption::before {
    display: none;
  }
}
.featured-video .container {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.featured-video picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
}
.featured-video picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.03)), to(rgba(0, 0, 0, 0.3)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.3) 100%);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.featured-video picture img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-video__open-video-modal {
  position: relative;
  display: block;
  width: 6rem;
  height: 6rem;
  margin: 0 0 0.8rem;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  z-index: 2;
  background: #cedc00;
  outline: solid 1px transparent;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.featured-video__open-video-modal:focus {
  outline-offset: -3px;
}
@media (min-width: 700px) {
  .featured-video__open-video-modal {
    width: 8.4rem;
    height: 8rem;
    margin: 0 0 3rem;
  }
}
@media (min-width: 1025px) {
  .featured-video__open-video-modal {
    width: 8rem;
  }
}
.featured-video__open-video-modal:hover {
  background: #ffffff;
  outline-color: #cedc00;
}
.featured-video__open-video-modal:hover::before {
  border-color: transparent transparent transparent #002554;
}
.featured-video__open-video-modal:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 1px);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-width: 1rem 0 1rem 1.8rem;
  border-style: solid;
  border-color: transparent transparent transparent #002554;
  background: none !important;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (min-width: 700px) {
  .featured-video__open-video-modal:before {
    border-width: 1.3rem 0 1.3rem 2.2rem;
  }
}
@media (min-width: 1025px) {
  .featured-video__open-video-modal:before {
    border-width: 1.2rem 0 1.2rem 2rem;
  }
}
.featured-video__close-video-modal {
  position: absolute;
  right: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  border: none;
  background-color: #f0ede1;
}
.featured-video__close-video-modal:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
@media (min-width: 700px) {
  .featured-video__close-video-modal {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media (min-width: 1025px) {
  .featured-video__close-video-modal {
    width: 6rem;
    height: 6rem;
  }
}
.featured-video__close-video-modal::before, .featured-video__close-video-modal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 0.2rem;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  background-color: #002554;
}
@media (min-width: 700px) {
  .featured-video__close-video-modal::before, .featured-video__close-video-modal::after {
    width: 2rem;
    height: 0.2rem;
  }
}
@media (min-width: 1025px) {
  .featured-video__close-video-modal::before, .featured-video__close-video-modal::after {
    width: 2.6rem;
    height: 0.26rem;
  }
}
@media (forced-colors: active) {
  .featured-video__close-video-modal::before, .featured-video__close-video-modal::after {
    background-color: currentColor;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .featured-video__close-video-modal::before, .featured-video__close-video-modal::after {
    forced-color-adjust: none;
    background-color: black;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .featured-video__close-video-modal::before, .featured-video__close-video-modal::after {
    forced-color-adjust: none;
    background-color: white;
  }
}
.featured-video__close-video-modal::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.featured-video__video {
  width: 100%;
  max-height: 100%;
  background-color: #000000;
}
.featured-video__video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 300;
}
.featured-video__video-modal .modal-content-holder {
  padding: 5rem 3rem;
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 700px) {
  .featured-video__video-modal .modal-content-holder {
    padding: 6rem;
  }
}
@media (min-width: 1025px) {
  .featured-video__video-modal .modal-content-holder {
    padding: 9.7rem 7.4rem;
  }
}
.featured-video__video-modal .modal-content {
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.featured-video__video-modal .modal-content iframe {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

/**
 * @file
 * Generic Block: 3 Column
 *
 * Styles for Generic Block: 3 Column object.
 */
.quote-tabs {
  margin: 2.8rem 0;
}
@media (min-width: 700px) {
  .quote-tabs {
    margin: 4.2rem 0;
  }
}
@media (min-width: 1025px) {
  .quote-tabs {
    margin: 8rem 0 4rem;
  }
}
.quote-tabs__header {
  margin: 0 0 2rem;
}
@media (min-width: 700px) {
  .quote-tabs__header {
    margin: 0 0 3.4rem;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__header {
    margin: 0 0 3.8rem;
  }
}
.quote-tabs__header h2 {
  margin: 0;
}
.quote-tabs__nav {
  display: none;
}
@media (min-width: 700px) {
  .quote-tabs__nav {
    position: relative;
    display: block;
    width: 214px;
    background-color: #f0ede1;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .quote-tabs__nav:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #b3a369;
    z-index: 1;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__nav {
    width: 265px;
  }
}
@media screen and (min-width: 700px) {
  .quote-tabs__nav-list {
    height: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.quote-tabs__nav-list-item {
  position: relative;
}
@media screen and (min-width: 700px) {
  .quote-tabs__nav-list-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 33%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 33%;
            flex: 1 0 33%;
  }
}
.quote-tabs__nav-list-item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 5.7rem);
  height: 1px;
  background-color: #ffffff;
}
@media screen and (min-width: 700px) {
  .quote-tabs__nav-list-item .quote-tabs__nav-button {
    height: 100%;
  }
}
.quote-tabs__nav-list-item:first-child .quote-tabs__nav-button.active {
  border-top-color: #f8f6f0;
}
.quote-tabs__nav-list-item:last-child:before {
  display: none;
}
.quote-tabs__nav-list-item:last-child .quote-tabs__nav-button {
  margin-bottom: -1px;
}
.quote-tabs__nav-list-item:last-child .quote-tabs__nav-button:after {
  content: none;
}
.quote-tabs__nav-list-item:not(:first-child) {
  margin-top: -1px;
}
.quote-tabs__nav-button {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f0ede1;
  min-height: 157px;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem;
  text-align: center;
  border-left: none;
  border-bottom: none;
  border-top: 1px solid #f0ede1;
  border-right: 1px solid transparent;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.54px;
  text-transform: uppercase;
  color: #385e9d;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.quote-tabs__nav-button:focus {
  outline: solid 1px #000000;
  outline-offset: -4px;
}
@media (min-width: 1025px) {
  .quote-tabs__nav-button {
    min-height: 145px;
  }
}
.quote-tabs__nav-button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% + 1px);
  height: 1px;
  background-color: #b3a369;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.quote-tabs__nav-button.active {
  letter-spacing: 0.48px;
  color: #002554;
  background-color: #f8f6f0;
  border-top-color: #b3a369;
  border-right-color: #f8f6f0;
  border-bottom-color: #b3a369;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
.quote-tabs__nav-button.active::before, .quote-tabs__nav-button.active::after {
  opacity: 1;
}
.quote-tabs__box {
  z-index: 1;
}
@media (min-width: 700px) {
  .quote-tabs__box {
    width: calc(100% - 157px);
    background-color: #f8f6f0;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__box {
    width: calc(100% - 265px);
  }
}
.quote-tabs__intro-img {
  position: relative;
  width: calc(100vw - var(--scrollbar-width));
  height: 0;
  padding-top: 65%;
  margin-left: calc((100vw - 100%) / 2 * -1 + var(--scrollbar-width) / 2);
  z-index: -1;
  overflow: hidden;
}
.quote-tabs__intro-img:before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  width: calc(100% - 1.8rem);
  height: calc(100% - 2.1rem);
  border: 2px solid #ffffff;
  z-index: 1;
}
@media (min-width: 700px) {
  .quote-tabs__intro-img:before {
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3.6rem);
    height: calc(100% - 3.6rem);
    border: 3px solid #ffffff;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__intro-img:before {
    top: 1.7rem;
    left: 1.7rem;
    width: calc(100% - 4.4rem);
    height: calc(100% - 4.4rem);
    border: 5px solid #ffffff;
  }
}
.quote-tabs__intro-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.5);
      -ms-transform: scale(1.5);
          transform: scale(1.5);
}
.quote-tabs__intro-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 320/172;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 700px) {
  .quote-tabs__intro-img img {
    aspect-ratio: 700/377;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__intro-img img {
    aspect-ratio: 1200/645;
  }
}
.quote-tabs__intro-img img.js-active {
  opacity: 1;
}
.quote-tabs__wrapper {
  position: relative;
  top: 3rem;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, top 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, top 0.5s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.5s ease, top 0.5s ease, transform 0.3s ease;
  transition: opacity 0.5s ease, top 0.5s ease, transform 0.3s ease;
  transition: opacity 0.5s ease, top 0.5s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  margin: 0 -2rem;
}
@media (min-width: 700px) {
  .quote-tabs__wrapper {
    margin: -10.2rem 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  .quote-tabs__wrapper {
    margin: -19rem 0 0;
  }
}
.quote-tabs__wrapper.js-active {
  opacity: 1;
  top: 0;
}
.quote-tabs__item-opener {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.6rem;
  background-color: #f0ede1;
  border: none;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.quote-tabs__item-opener:focus {
  outline: solid 1px #000000;
  outline-offset: -4px;
}
@media (min-width: 700px) {
  .quote-tabs__item-opener {
    display: none;
  }
}
.quote-tabs__item-opener.active {
  background-color: #ffffff;
}
.quote-tabs__item-opener.active .icon {
  background: #f0ede1;
}
.quote-tabs__item-opener.active .icon:after {
  opacity: 0;
}
.quote-tabs__item-opener .icon {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.quote-tabs__item-opener .icon:before, .quote-tabs__item-opener .icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.1rem;
  height: 2px;
  background-color: #002554;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.quote-tabs__item-opener .icon:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
      -ms-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.quote-tabs__item-box {
  display: none;
}
.quote-tabs__item-box {
  position: relative;
  background-color: #f8f6f0;
  padding: 2rem;
}
@media screen and (min-width: 700px) {
  .quote-tabs__item-box {
    padding: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__item-box {
    padding: 5.2rem 4.9rem 2.8rem;
    padding-right: 5.1rem;
  }
}
.quote-tabs__item-box:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #b3a369;
}
@media screen and (min-width: 700px) {
  .quote-tabs__item-box:after {
    display: none;
  }
}
.quote-tabs__quote {
  position: relative;
  margin: 0 0 1.9rem;
  font-family: "matrix-ii", sans-serif;
  font-size: 1.8rem;
  line-height: 1.34;
  font-style: italic;
  font-weight: 400;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 700px) {
  .quote-tabs__quote {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 2.2rem;
    letter-spacing: unset;
    background-color: #f8f6f0;
    background-color: transparent;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__quote {
    margin-bottom: 13px;
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.quote-tabs__quote::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -8px;
}
@media screen and (min-width: 700px) {
  .quote-tabs__quote::before {
    left: calc(35% + 1rem);
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__quote::before {
    left: -11px;
  }
}
.quote-tabs__quote::after {
  content: "”";
}
.quote-tabs__title {
  margin: 0 0 0.8rem;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 700px) {
  .quote-tabs__title {
    margin: 0 0 1.4rem;
    clear: both;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__title {
    margin: 0 0 2rem;
    display: none;
    clear: none;
  }
}
.quote-tabs__title--desktop {
  display: none;
}
@media screen and (min-width: 1025px) {
  .quote-tabs__title--desktop {
    display: block;
  }
}
.quote-tabs__content-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 700px) {
  .quote-tabs__content-box {
    display: block;
  }
}
.quote-tabs__image {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 700px) {
  .quote-tabs__image {
    float: left;
    width: 35%;
    margin-right: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__image {
    width: 33.5%;
    float: right;
    margin-right: 0;
    margin-left: 2rem;
  }
}
.quote-tabs__image img {
  width: 46.4%;
  aspect-ratio: 130/128;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 700px) {
  .quote-tabs__image img {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__image img {
    aspect-ratio: 226/222;
  }
}
.quote-tabs__body {
  padding: 0 0 2rem;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid #b3a369;
}
@media screen and (min-width: 700px) {
  .quote-tabs__body {
    margin: 0 0 2.2rem;
  }
  .quote-tabs__body:after {
    content: "";
    display: block;
    clear: both;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__body {
    margin: 0 0 3.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .quote-tabs__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 2rem 0rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.quote-tabs__footer .quote__attr {
  margin-bottom: 1px;
}
@media screen and (min-width: 700px) {
  .quote-tabs__footer .quote__attr {
    margin-bottom: 0;
  }
}
.quote-tabs__author {
  margin: 0 0 1.4rem;
}
@media screen and (min-width: 700px) {
  .quote-tabs__author {
    margin: 0 0 1.8rem;
  }
}
.quote-tabs__position {
  font-style: italic;
}
@media screen and (min-width: 1025px) {
  .quote-tabs__position {
    margin-top: -3px;
  }
}
.quote-tabs .quote-bar {
  position: absolute;
  display: block;
  pointer-events: none;
  width: 0.8rem;
  background: #cedc00;
  z-index: 2;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/**
 * @file
 * students life 3col-list
 *
 * Styles for students life 3col-list object.
 */
.students-life-3col-list {
  margin: 2.8rem 0;
}
@media (min-width: 700px) {
  .students-life-3col-list {
    margin: 4.2rem 0;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list {
    margin: 0 0 10rem;
  }
}
.students-life-3col-list__header {
  position: relative;
  margin: 0 0 2rem;
  padding-top: 10rem;
  aspect-ratio: 320/148;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (min-width: 700px) {
  .students-life-3col-list__header {
    aspect-ratio: 700/290;
    padding-top: 20.5rem;
    margin: 0 0 2rem;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list__header {
    aspect-ratio: 1200/461;
    padding-top: 32.8rem;
    margin: 0 0 3.8rem;
  }
}
@media screen and (min-width: 1800px) {
  .students-life-3col-list__header {
    aspect-ratio: 1800/900;
  }
}
.students-life-3col-list__header h2 {
  margin: 0;
}
.students-life-3col-list__box {
  z-index: 1;
  width: 100%;
}
.students-life-3col-list__intro-img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100vw - var(--scrollbar-width));
  height: calc(100% + 5rem);
  margin-left: calc((100vw - 100%) / 2 * -1 + var(--scrollbar-width) / 2);
  overflow: hidden;
  z-index: -1;
}
@media screen and (min-width: 700px) {
  .students-life-3col-list__intro-img {
    height: calc(100% + 8.5rem);
  }
}
@media screen and (min-width: 1025px) {
  .students-life-3col-list__intro-img {
    height: calc(100% + 14.3rem);
  }
}
.students-life-3col-list__intro-img:before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  width: calc(100% - 1.8rem);
  height: calc(100% - 1.8rem);
  border: 2px solid #ffffff;
  z-index: 2;
}
@media (min-width: 700px) {
  .students-life-3col-list__intro-img:before {
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3.6rem);
    height: calc(100% - 3.6rem);
    border: 3px solid #ffffff;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list__intro-img:before {
    top: 1.7rem;
    left: 1.7rem;
    width: calc(100% - 4.4rem);
    height: calc(100% - 4.4rem);
    border: 5px solid #ffffff;
  }
}
.students-life-3col-list__intro-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.students-life-3col-list__intro-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
}
.students-life-3col-list__wrapper {
  position: relative;
  margin: 0;
  z-index: 3;
}
@media (min-width: 700px) {
  .students-life-3col-list__wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.students-life-3col-list__header {
  margin: 0 0 1.1rem;
  color: #ffffff;
}
@media (min-width: 700px) {
  .students-life-3col-list__header {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list__header {
    margin: 0 0 4.4rem;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list .students-life-3col__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.students-life-3col-list .students-life-3col__item {
  padding: 2.4rem 4rem 2rem 2rem;
  background-color: #002554;
}
@media (min-width: 700px) {
  .students-life-3col-list .students-life-3col__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
    padding: 2.4rem 3rem 2rem 3rem;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list .students-life-3col__item {
    display: block;
    width: 33.3333333333%;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding: 3rem 3rem 2.8rem;
  }
}
.students-life-3col-list .students-life-3col__item:nth-child(2n) {
  background-color: #385e9d;
}
.students-life-3col-list .students-life-3col__link {
  margin: 0 0 1.4rem;
}
@media screen and (min-width: 700px) {
  .students-life-3col-list .students-life-3col__link {
    margin: 0 0 2.7rem;
  }
}
.students-life-3col-list .link-list.link-list {
  position: relative;
  padding-top: 0.3rem;
  padding-left: 1.4rem;
  padding-bottom: 0;
  padding-right: 0;
  margin: 0;
}
@media (min-width: 700px) {
  .students-life-3col-list .link-list.link-list {
    width: calc(52.7% - 2rem);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding-left: 2rem;
    padding-top: 0;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list .link-list.link-list {
    width: 100%;
  }
}
.students-life-3col-list .link-list.link-list::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 0.9rem);
  top: 0.6rem;
  left: 0;
  background-color: #cedc00;
}
@media (min-width: 700px) {
  .students-life-3col-list .link-list.link-list::before {
    height: calc(100% - 0.4rem);
    top: 0;
  }
}
.students-life-3col-list .link-list.link-list .link-list__item {
  opacity: 0;
}
.students-life-3col-list .link-list.link-list .link-list__item:not(:last-child) {
  margin: 0 0 1rem;
}
@media (min-width: 700px) {
  .students-life-3col-list .link-list.link-list .link-list__item:not(:last-child) {
    margin: 0 0 1.8rem;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list .link-list.link-list .link-list__item:not(:last-child) {
    margin: 0 0 1.5rem;
  }
}
.students-life-3col-list .link-list.link-list .link-list__item .cta--link {
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  background-color: transparent;
  color: #ffffff;
}
.students-life-3col-list .link-list.link-list .link-list__item .cta--link:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
@media (min-width: 700px) {
  .students-life-3col-list .link-list.link-list .link-list__item .cta--link {
    font-size: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .students-life-3col-list .link-list.link-list .link-list__item .cta--link {
    font-size: 2rem;
  }
}
@media (min-width: 700px) {
  .students-life-3col-list .link-list.link-list .link-list__item .cta--link .last-word span {
    -webkit-transform: translateY(-1px);
        -ms-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}
.students-life-3col-list .link-list.link-list .link-list__item .cta--link .last-word span::before, .students-life-3col-list .link-list.link-list .link-list__item .cta--link .last-word span::after {
  border-color: #cedc00;
}
.students-life-3col-list.js-active .students-life-3col__item .link-list__item:nth-child(1) {
  -webkit-animation: listFadeInSlideUp 500ms 250ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 250ms forwards ease-out;
}
.students-life-3col-list.js-active .students-life-3col__item .link-list__item:nth-child(2) {
  -webkit-animation: listFadeInSlideUp 500ms 500ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 500ms forwards ease-out;
}
.students-life-3col-list.js-active .students-life-3col__item .link-list__item:nth-child(3) {
  -webkit-animation: listFadeInSlideUp 500ms 750ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 750ms forwards ease-out;
}

/**
 * @file
 * Featured 2 columns
 *
 * Contains styles for featured-2-columns component.
 */
.featured-2-columns {
  position: relative;
  width: calc(100vw - var(--scrollbar-width));
  padding: 0 0 1rem;
  margin: 0;
  margin-left: calc((100vw - 100%) / 2 * -1 + var(--scrollbar-width) / 2);
}
@media (min-width: 700px) {
  .featured-2-columns {
    padding: 0;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .featured-2-columns {
    margin-bottom: 8rem;
  }
}
.featured-2-columns.section--bg-dark {
  background: url("/_resources/assets/img/featured-2-col-bg-sm.svg") no-repeat top right;
  background-color: #002554;
}
@media (min-width: 700px) {
  .featured-2-columns.section--bg-dark {
    background-image: url("/_resources/assets/img/featured-2-col-bg-md.svg");
    background-size: auto 100%;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns.section--bg-dark {
    background-image: url("/_resources/assets/img/featured-2-col-bg-lg.svg");
    background-size: auto;
  }
}
.featured-2-columns.section--bg-dark a.cta--button {
  color: #002554;
  background: #cedc00;
}
.featured-2-columns.section--bg-dark h2 {
  color: #ffffff;
}
.featured-2-columns.section--bg-dark .featured-2-columns__intro {
  color: #ffffff;
}
.featured-2-columns__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (min-width: 700px) {
  .featured-2-columns__header {
    margin: 0 0 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .featured-2-columns__header {
    margin: 0 0 2rem;
  }
}
.featured-2-columns__intro {
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .featured-2-columns__intro {
    margin-bottom: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns__intro {
    margin-bottom: 4rem;
  }
}
@media (min-width: 700px) {
  .featured-2-columns__columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
}
.featured-2-columns__card {
  position: relative;
  margin: 0 0 2rem;
  background: #385e9d;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (min-width: 700px) {
  .featured-2-columns__card {
    margin: 0;
    width: calc(50% - 0.5rem);
  }
}
.featured-2-columns__card__top {
  position: relative;
}
.featured-2-columns__card:last-child {
  margin-bottom: 0;
}
.featured-2-columns__card:hover:before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.featured-2-columns__card-image {
  position: relative;
  aspect-ratio: 320/218;
  overflow: hidden;
}
@media (min-width: 700px) {
  .featured-2-columns__card-image {
    aspect-ratio: 305/208;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns__card-image {
    aspect-ratio: 515/351;
  }
}
.featured-2-columns__card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), color-stop(65.1%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.featured-2-columns__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.featured-2-columns__card:hover .featured-2-columns__card-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.featured-2-columns__card-body {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem 5rem 1.4rem 1.5rem;
  margin: 0;
  z-index: 4;
}
@media (min-width: 700px) {
  .featured-2-columns__card-body {
    padding: 2rem 5rem 1.2rem 2rem;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns__card-body {
    padding: 2rem 5rem 1.6rem 2rem;
  }
}
.featured-2-columns__card-title {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .featured-2-columns__card-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns__card-title {
    font-size: 3.2rem;
  }
}
.featured-2-columns__card-title a {
  text-decoration: none;
  background: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.featured-2-columns__card-title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.featured-2-columns__card-title a:hover {
  color: inherit;
}
.featured-2-columns__card-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.featured-2-columns__card-text {
  padding: 0.8rem 3rem 1rem 2rem;
  color: #ffffff;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .featured-2-columns__card-text {
    padding: 0;
    line-height: 1.45;
  }
}
@media screen and (max-width: 1024px) {
  .featured-2-columns__card-text--desktop {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .featured-2-columns__card-text--mobile {
    display: none;
  }
}

/**
 * @file
 * Toggle gallery
 *
 * Contains styles for toggle-gallery component.
 */
.toggle-gallery__section {
  width: calc(100vw - var(--scrollbar-width));
  margin-left: calc((100vw - 100%) / 2 * -1 + var(--scrollbar-width) / 2);
}
@media screen and (min-width: 700px) {
  .toggle-gallery__section {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .toggle-gallery__section {
    margin-bottom: 9rem;
  }
}
.toggle-gallery__section [date-toggle-gallery-active] {
  display: none;
}
.toggle-gallery__section [date-toggle-gallery-active="0"] {
  display: block;
}
.toggle-gallery__intro {
  position: relative;
  margin-bottom: 43px;
  aspect-ratio: 320/133;
  background-color: #385e9d;
}
@media screen and (max-width: 699px) {
  .toggle-gallery__intro {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 5;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__intro {
    aspect-ratio: 700/274;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__intro {
    aspect-ratio: 1200/470;
  }
}
.toggle-gallery__intro-img {
  position: relative;
  height: 100%;
  -webkit-animation: fadeIn 300ms 0ms forwards ease-out;
          animation: fadeIn 300ms 0ms forwards ease-out;
  overflow: hidden;
}
.toggle-gallery__intro-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.7rem;
  width: calc(100% - 1.8rem);
  height: calc(100% - 0.9rem);
  border: 2px solid #ffffff;
  border-bottom: none;
  z-index: 2;
}
@media (min-width: 700px) {
  .toggle-gallery__intro-img:before {
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3.6rem);
    height: calc(100% - 1.8rem);
    border-width: 3px;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__intro-img:before {
    top: 1.8rem;
    left: 1.7rem;
    width: calc(100% - 4.4rem);
    height: calc(100% - 2.2rem);
    border-width: 5px;
  }
}
.toggle-gallery__intro-img:before img {
  width: 100%;
  height: 100%;
}
.toggle-gallery__intro-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}
.toggle-gallery__intro-img img {
  width: 100%;
  aspect-ratio: 320/133;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 700px) {
  .toggle-gallery__intro-img img {
    aspect-ratio: 700/274;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__intro-img img {
    aspect-ratio: 1200/470;
  }
}
.toggle-gallery__intro-img.js-fade-out {
  -webkit-animation: fadeOut 300ms 0ms forwards ease-out;
          animation: fadeOut 300ms 0ms forwards ease-out;
}
.toggle-gallery__header {
  position: absolute;
  bottom: -43px;
  width: 100%;
  left: 0;
  z-index: 3;
}
@media (min-width: 700px) {
  .toggle-gallery__header {
    bottom: 0;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__header-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 0 6.6rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.toggle-gallery__header .cta--button {
  display: none;
}
@media (min-width: 1025px) {
  .toggle-gallery__header .cta--button {
    display: block;
  }
}
.toggle-gallery__header-actions {
  width: calc(100% + 4rem);
  margin: 0 -2rem;
  padding: 13px 2rem 9px;
  background: #ffffff;
  border-bottom: 2px solid #385e9d;
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions {
    display: inline-block;
    width: auto;
    margin: 0 0 0 -4rem;
    border-bottom: 0;
    padding: 2.1rem 2rem 0.8rem 4rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__header-actions {
    margin: 0;
    padding: 2.6rem 2rem 1.2rem 2rem;
  }
}
.toggle-gallery__header-actions .actions-box fieldset {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 3.1rem;
  border: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions .actions-box fieldset {
    gap: 2.1rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__header-actions .actions-box fieldset {
    gap: 3rem;
  }
}
.toggle-gallery__header-actions .actions-box__text {
  display: inline-block;
  margin-right: 0.8rem;
  color: #385e9d;
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions .actions-box__text {
    padding-top: 2px;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__header-actions .actions-box__text {
    margin-right: 1rem;
  }
}
.toggle-gallery__header-actions .actions-box__input {
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions .actions-box__input {
    font-weight: 700;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__header-actions .actions-box__input {
    font-size: 2rem;
    letter-spacing: 0.6px;
  }
}
.toggle-gallery__header-actions .actions-box__input:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #385e9d;
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions .actions-box__input:not(:last-child)::before {
    -webkit-transform: translateY(calc(-50% - 1px));
        -ms-transform: translateY(calc(-50% - 1px));
            transform: translateY(calc(-50% - 1px));
    width: 1px;
    height: calc(100% + 8px);
    right: -12px;
  }
}
@media screen and (min-width: 1025px) {
  .toggle-gallery__header-actions .actions-box__input:not(:last-child)::before {
    right: -15px;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions .actions-box__input:not(:first-child) .actions-box__text {
    margin-right: 1.3rem;
  }
}
.toggle-gallery__header-actions .actions-box__input:first-child {
  padding-right: 1.8rem;
}
@media (min-width: 1025px) {
  .toggle-gallery__header-actions .actions-box__input:first-child {
    padding-right: 3.2rem;
  }
}
.toggle-gallery__header-actions .actions-box__input label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}
.toggle-gallery__header-actions .actions-box__input input[type=radio] {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 0;
  border-width: 2px;
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio] {
    height: 2rem;
    width: 2rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio] {
    height: 2.4rem;
    width: 2.4rem;
    border-width: 3px;
  }
}
.toggle-gallery__header-actions .actions-box__input input[type=radio]:checked {
  border-color: #002554;
  background-color: transparent;
}
.toggle-gallery__header-actions .actions-box__input input[type=radio]:checked + .actions-box__text {
  color: #002554;
  font-weight: 800;
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio]:checked + .actions-box__text {
    padding-top: 0;
    font-size: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio]:checked + .actions-box__text {
    font-size: 2rem;
  }
}
.toggle-gallery__header-actions .actions-box__input input[type=radio]::before {
  height: 0.7rem;
  width: 0.7rem;
  border-radius: 0;
  background-color: #cedc00;
  border: none;
}
@media (min-width: 700px) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio]::before {
    height: 1rem;
    width: 1rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio]::before {
    height: 1.4rem;
    width: 1.4rem;
  }
}
@media (forced-colors: active) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio]::before {
    background-color: currentColor;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio]::before {
    forced-color-adjust: none;
    background-color: #000000;
  }
}
@media (forced-colors: active) and (prefers-color-scheme: dark) {
  .toggle-gallery__header-actions .actions-box__input input[type=radio]::before {
    forced-color-adjust: none;
    background-color: #ffffff;
  }
}
.toggle-gallery__title {
  margin: 0 0 1.7rem;
  color: #ffffff;
}
@media (min-width: 700px) {
  .toggle-gallery__title {
    margin: 0 0 2.1rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__title {
    margin: 0;
  }
}
@media screen and (max-width: 699px) {
  .toggle-gallery__gallery {
    overflow: initial;
  }
}
@media screen and (max-width: 699px) {
  .toggle-gallery__gallery-box {
    -webkit-animation: fadeIn 300ms 0ms forwards ease-out;
            animation: fadeIn 300ms 0ms forwards ease-out;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box {
    overflow: hidden;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box .cards-holder {
    margin-bottom: -2px;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--on .cards-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .cards-holder {
    display: -ms-grid;
    display: grid;
    grid: "a b c" "a d c";
    -ms-grid-columns: 3.9fr 3.15fr 3.9fr;
    grid-template-columns: 3.9fr 3.15fr 3.9fr;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card {
    width: calc(50% - 0.5rem);
    margin: 0;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card {
    width: auto;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(1) .toggle-gallery__card-image, .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(4) .toggle-gallery__card-image {
    aspect-ratio: 345/444;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(1) .toggle-gallery__card-image, .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(4) .toggle-gallery__card-image {
    aspect-ratio: 345/447;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(1) .toggle-gallery__card-title a::before, .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(4) .toggle-gallery__card-title a::before {
    aspect-ratio: 345/444;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(1) .toggle-gallery__card-title a::before, .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(4) .toggle-gallery__card-title a::before {
    aspect-ratio: 345/447;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(1) {
    grid-area: a;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(4) {
    margin-top: -25.3%;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(4) {
    margin-top: 0;
    grid-area: c;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(2) .toggle-gallery__card-image, .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(3) .toggle-gallery__card-image {
    aspect-ratio: 345/267;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(2) .toggle-gallery__card-image, .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(3) .toggle-gallery__card-image {
    aspect-ratio: 345/272;
    height: 100%;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(2) .toggle-gallery__card-title a::before, .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(3) .toggle-gallery__card-title a::before {
    aspect-ratio: 345/267;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(2):nth-child(2), .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(3):nth-child(2) {
    grid-area: b;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(2):nth-child(3), .toggle-gallery__gallery-box--on .toggle-gallery__card:nth-child(3):nth-child(3) {
    grid-area: d;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--off .cards-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--off .cards-holder {
    display: -ms-grid;
    display: grid;
    grid: "a b" "a c";
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(1) {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(1) {
    grid-area: a;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(1) .toggle-gallery__card-image {
    aspect-ratio: 345/140;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(1) .toggle-gallery__card-image {
    aspect-ratio: 596/543;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(2) .toggle-gallery__card-image, .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(3) .toggle-gallery__card-image {
    aspect-ratio: 345/240;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(2) .toggle-gallery__card-image, .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(3) .toggle-gallery__card-image {
    aspect-ratio: 595/266;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(2) {
    width: calc(50% - 0.5rem);
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(2) {
    width: auto;
    grid-area: b;
  }
}
@media (min-width: 700px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(3) {
    width: calc(50% - 0.5rem);
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__gallery-box--off .toggle-gallery__card:nth-child(3) {
    width: auto;
    grid-area: c;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box:not(.js-fade-out) .toggle-gallery__card {
    opacity: 0;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box:not(.js-fade-out) .toggle-gallery__card:nth-child(1) {
    -webkit-animation: listFadeInSlideUp 300ms 0ms forwards ease-out;
            animation: listFadeInSlideUp 300ms 0ms forwards ease-out;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box:not(.js-fade-out) .toggle-gallery__card:nth-child(2) {
    -webkit-animation: listFadeInSlideUp 300ms 150ms forwards ease-out;
            animation: listFadeInSlideUp 300ms 150ms forwards ease-out;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box:not(.js-fade-out) .toggle-gallery__card:nth-child(3) {
    -webkit-animation: listFadeInSlideUp 300ms 300ms forwards ease-out;
            animation: listFadeInSlideUp 300ms 300ms forwards ease-out;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box:not(.js-fade-out) .toggle-gallery__card:nth-child(4) {
    -webkit-animation: listFadeInSlideUp 300ms 450ms forwards ease-out;
            animation: listFadeInSlideUp 300ms 450ms forwards ease-out;
  }
}
@media screen and (max-width: 699px) {
  .toggle-gallery__gallery-box.js-fade-out {
    -webkit-animation: fadeOut 300ms 0ms forwards ease-out;
            animation: fadeOut 300ms 0ms forwards ease-out;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box.js-fade-out .toggle-gallery__card:nth-child(1) {
    -webkit-animation: listFadeOutSlideDown 300ms 0ms forwards ease-out;
            animation: listFadeOutSlideDown 300ms 0ms forwards ease-out;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box.js-fade-out .toggle-gallery__card:nth-child(2) {
    -webkit-animation: listFadeOutSlideDown 300ms 150ms forwards ease-out;
            animation: listFadeOutSlideDown 300ms 150ms forwards ease-out;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box.js-fade-out .toggle-gallery__card:nth-child(3) {
    -webkit-animation: listFadeOutSlideDown 300ms 300ms forwards ease-out;
            animation: listFadeOutSlideDown 300ms 300ms forwards ease-out;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__gallery-box.js-fade-out .toggle-gallery__card:nth-child(4) {
    -webkit-animation: listFadeOutSlideDown 300ms 450ms forwards ease-out;
            animation: listFadeOutSlideDown 300ms 450ms forwards ease-out;
  }
}
.toggle-gallery__card {
  position: relative;
  margin: 0 0 0.6rem;
}
.toggle-gallery__card--has-subtitle.toggle-gallery__card--has-subtitle.toggle-gallery__card--has-subtitle {
  margin-bottom: calc(var(--subtitle-height) + 0.6rem);
}
@media (min-width: 700px) {
  .toggle-gallery__card--has-subtitle.toggle-gallery__card--has-subtitle.toggle-gallery__card--has-subtitle {
    margin-bottom: 0;
  }
}
@media (max-width: 699px) {
  .toggle-gallery__card--has-subtitle.toggle-gallery__card--has-subtitle.toggle-gallery__card--has-subtitle::before, .toggle-gallery__card--has-subtitle.toggle-gallery__card--has-subtitle.toggle-gallery__card--has-subtitle::after {
    display: none;
  }
}
.toggle-gallery__card:last-child {
  margin-bottom: 0;
}
.toggle-gallery__card:hover:before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.toggle-gallery__card .bottom-arrow {
  margin-right: -20px;
}
@media (min-width: 700px) {
  .toggle-gallery__card .bottom-arrow {
    width: 3.3rem;
    height: 3.3rem;
    border-width: 3.3rem;
  }
}
@media screen and (min-width: 700px) {
  .toggle-gallery__card .bottom-arrow::before {
    border-width: 2.9rem;
    right: -3.1rem;
    bottom: -3.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .toggle-gallery__card .bottom-arrow::before {
    border-width: 2.8rem;
    bottom: -2.9rem;
  }
}
.toggle-gallery__card .bottom-arrow::after {
  width: 3rem;
  height: 3rem;
}
@media (min-width: 700px) {
  .toggle-gallery__card .bottom-arrow::after {
    right: -3.1rem;
    bottom: -3rem;
    width: 4.2rem;
    height: 3.7rem;
    background-size: 2.4rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__card .bottom-arrow::after {
    width: 4rem;
    height: 4rem;
    background-size: 2.5rem;
  }
}
.toggle-gallery__card-image {
  position: relative;
  aspect-ratio: 320/246;
  overflow: hidden;
}
@media (min-width: 700px) {
  .toggle-gallery__card-image {
    aspect-ratio: 345/270;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__card-image {
    aspect-ratio: 296/232;
  }
}
.toggle-gallery__card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), color-stop(65.1%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.toggle-gallery__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.toggle-gallery__card:hover .toggle-gallery__card-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.toggle-gallery__card-body {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2rem);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem 3rem 1.6rem 2rem;
  margin: 0;
  z-index: 4;
}
.toggle-gallery__card-title {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .toggle-gallery__card-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__card-title {
    font-size: 3.2rem;
  }
}
.toggle-gallery__card-title a {
  text-decoration: none;
  background: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.toggle-gallery__card-title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.toggle-gallery__card-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 320/246;
  height: 100%;
}
@media (min-width: 700px) {
  .toggle-gallery__card-title a::before {
    aspect-ratio: 345/270;
  }
}
.toggle-gallery__card-subtitle {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  width: calc(100% + 7rem);
  margin-left: -2rem;
  margin-right: -2rem;
  padding: 1.5rem 2rem 1rem;
  background-color: #385e9d;
  margin-bottom: calc((var(--subtitle-height) + 1.6rem) * -1);
  margin-top: 1.5rem;
}
@media (min-width: 700px) {
  .toggle-gallery__card-subtitle {
    margin-top: 0.3rem;
    background-color: transparent;
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__card-subtitle {
    margin-top: 0.9rem;
  }
}
.toggle-gallery__footer {
  padding: 1rem 0 1.8rem;
  background-color: #ffffff;
  border-bottom: 2px solid #385e9d;
}
@media (min-width: 700px) {
  .toggle-gallery__footer {
    padding: 3.3rem 0 3rem;
    border-width: 1px;
  }
}
@media (min-width: 1025px) {
  .toggle-gallery__footer {
    display: none;
  }
}

@media screen and (min-width: 700px) {
  .featured-quote {
    margin-left: -4rem;
    margin-right: -4rem;
    padding: 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .featured-quote {
    margin-left: -8rem;
    margin-right: -8rem;
    padding: 8rem;
    margin-top: 8rem;
    margin-bottom: 7rem;
    padding-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .featured-quote__header {
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .featured-quote__head-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.featured-quote__top {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .featured-quote__top {
    padding-bottom: 4.4rem;
  }
}
@media screen and (min-width: 700px) {
  .featured-quote__top:after {
    content: "";
    position: absolute;
    top: -4rem;
    left: -4rem;
    width: calc(100% + 8rem);
    height: calc(100% + 4rem + 12.7rem);
    background: #f0ede1;
    z-index: -1;
  }
}
@media screen and (min-width: 1025px) {
  .featured-quote__top:after {
    top: -8rem;
    left: -8rem;
    width: calc(100% + 16rem);
    height: calc(100% + 16rem + 12.7rem);
  }
}
.featured-quote__content {
  margin-bottom: 1.9rem;
}
@media screen and (min-width: 700px) and (max-width: 1024px) {
  .featured-quote .cta {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 700px) {
  .featured-quote .cta:before, .featured-quote .cta:after {
    border-color: #f0ede1;
  }
}
.featured-quote .quote {
  margin: 0px -20px;
  padding: 15px 20px 25px;
}
@media screen and (min-width: 700px) {
  .featured-quote .quote {
    padding: 20px 20px 25px 30px;
    margin: 0;
  }
}
@media screen and (min-width: 1025px) {
  .featured-quote .quote {
    padding: 50px;
  }
}
.featured-quote .quote__top {
  border-bottom: 2px solid #b3a369;
  padding-bottom: 2rem;
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 700px) {
  .featured-quote .quote__top {
    padding-bottom: 2.8rem;
    margin-bottom: 2.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .featured-quote .quote__top {
    padding-bottom: 3.1rem;
    margin-bottom: 3rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12%;
  }
}
.featured-quote .quote__copy {
  margin: 0 0 20px;
}
@media screen and (min-width: 700px) {
  .featured-quote .quote__copy {
    margin: 1.2rem 0px 2.4rem 0.3rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
       -moz-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
@media screen and (min-width: 1025px) {
  .featured-quote .quote__copy {
    margin: 2.4rem 0;
  }
}
.featured-quote .quote__image {
  max-width: 130px;
}
@media screen and (min-width: 700px) {
  .featured-quote .quote__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 34%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 34%;
            flex: 0 0 34%;
    max-width: none;
    padding-right: 10px;
    margin-top: 14px;
  }
}
@media screen and (min-width: 1025px) {
  .featured-quote .quote__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 24%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 24%;
            flex: 0 0 24%;
    padding-right: 0;
    margin-top: 0;
  }
}
.featured-quote .quote__image img {
  width: 100%;
  height: auto;
}
.featured-quote .quote:before, .featured-quote .quote:after {
  content: none;
}
@media screen and (max-width: 699px) {
  .featured-quote--desktop {
    display: none;
  }
}
@media screen and (min-width: 700px) {
  .featured-quote--mobile {
    display: none;
  }
}
@media screen and (min-width: 700px) {
  .featured-quote--navy .cta:before, .featured-quote--navy .cta:after {
    border-color: #002554;
  }
}
@media screen and (min-width: 700px) {
  .featured-quote--navy .featured-quote__top {
    color: #ffffff;
  }
}
.featured-quote--navy .featured-quote__top:after {
  background: #002554;
}
.featured-quote--quote-only {
  padding-top: 0;
  padding-bottom: 0;
}
.featured-quote--quote-only.featured-quote--navy .quote {
  background: #002554;
  color: #ffffff;
}
.featured-quote--quote-only.featured-quote--navy .quote__top {
  border-bottom: 2px solid #385e9d;
}
.featured-quote--quote-only.featured-quote--navy .quote__copy {
  background: #002554;
}

/**
 * @file
 * Featured 2 columns
 *
 * Contains styles for featured-2-columns component.
 */
.featured-2-columns {
  position: relative;
  width: calc(100vw - var(--scrollbar-width));
  padding: 0 0 1rem;
  margin: 0;
  margin-left: calc((100vw - 100%) / 2 * -1 + var(--scrollbar-width) / 2);
}
@media (min-width: 700px) {
  .featured-2-columns {
    padding: 0;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .featured-2-columns {
    margin-bottom: 8rem;
  }
}
.featured-2-columns.section--bg-dark {
  background: url("/_resources/assets/img/featured-2-col-bg-sm.svg") no-repeat top right;
  background-color: #002554;
}
@media (min-width: 700px) {
  .featured-2-columns.section--bg-dark {
    background-image: url("/_resources/assets/img/featured-2-col-bg-md.svg");
    background-size: auto 100%;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns.section--bg-dark {
    background-image: url("/_resources/assets/img/featured-2-col-bg-lg.svg");
    background-size: auto;
  }
}
.featured-2-columns.section--bg-dark a.cta--button {
  color: #002554;
  background: #cedc00;
}
.featured-2-columns.section--bg-dark h2 {
  color: #ffffff;
}
.featured-2-columns.section--bg-dark .featured-2-columns__intro {
  color: #ffffff;
}
.featured-2-columns__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (min-width: 700px) {
  .featured-2-columns__header {
    margin: 0 0 1.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .featured-2-columns__header {
    margin: 0 0 2rem;
  }
}
.featured-2-columns__intro {
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .featured-2-columns__intro {
    margin-bottom: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns__intro {
    margin-bottom: 4rem;
  }
}
@media (min-width: 700px) {
  .featured-2-columns__columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
}
.featured-2-columns__card {
  position: relative;
  margin: 0 0 2rem;
  background: #385e9d;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (min-width: 700px) {
  .featured-2-columns__card {
    margin: 0;
    width: calc(50% - 0.5rem);
  }
}
.featured-2-columns__card__top {
  position: relative;
}
.featured-2-columns__card:last-child {
  margin-bottom: 0;
}
.featured-2-columns__card:hover:before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.featured-2-columns__card-image {
  position: relative;
  aspect-ratio: 320/218;
  overflow: hidden;
}
@media (min-width: 700px) {
  .featured-2-columns__card-image {
    aspect-ratio: 305/208;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns__card-image {
    aspect-ratio: 515/351;
  }
}
.featured-2-columns__card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), color-stop(65.1%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.featured-2-columns__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.featured-2-columns__card:hover .featured-2-columns__card-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.featured-2-columns__card-body {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem 5rem 1.4rem 1.5rem;
  margin: 0;
  z-index: 4;
}
@media (min-width: 700px) {
  .featured-2-columns__card-body {
    padding: 2rem 5rem 1.2rem 2rem;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns__card-body {
    padding: 2rem 5rem 1.6rem 2rem;
  }
}
.featured-2-columns__card-title {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .featured-2-columns__card-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .featured-2-columns__card-title {
    font-size: 3.2rem;
  }
}
.featured-2-columns__card-title a {
  text-decoration: none;
  background: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.featured-2-columns__card-title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.featured-2-columns__card-title a:hover {
  color: inherit;
}
.featured-2-columns__card-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.featured-2-columns__card-text {
  padding: 0.8rem 3rem 1rem 2rem;
  color: #ffffff;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .featured-2-columns__card-text {
    padding: 0;
    line-height: 1.45;
  }
}
@media screen and (max-width: 1024px) {
  .featured-2-columns__card-text--desktop {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .featured-2-columns__card-text--mobile {
    display: none;
  }
}

/**
 * @file
 * News and Events
 *
 * Contains styles for news-and-events component.
 */
@media (min-width: 700px) {
  .news-and-events {
    margin: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .news-and-events {
    margin: 8rem 0;
  }
}
.news-and-events__header {
  margin: 0 0 1.4rem;
}
@media (min-width: 1025px) {
  .news-and-events__header {
    margin: 0 0 3.7rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .content-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.news-and-events .events__box {
  margin: 0 0 2rem;
}
@media (min-width: 700px) {
  .news-and-events .events__box {
    margin: 0 0 3rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .events__box {
    width: calc(50% - 1rem);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin: 0;
  }
}
.news-and-events .events__list {
  margin: 0 0 1.3rem;
}
@media (min-width: 700px) {
  .news-and-events .events__list {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .events__list {
    margin: 0 0 0.5rem;
  }
}
.news-and-events .events__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.4rem;
  position: relative;
  top: 3rem;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, top 0.5s ease;
  -o-transition: opacity 0.5s ease, top 0.5s ease;
  transition: opacity 0.5s ease, top 0.5s ease;
}
.news-and-events .events__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.news-and-events .events__item:nth-child(3) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
@media (min-width: 700px) {
  .news-and-events .events__item {
    gap: 2rem;
  }
}
.news-and-events .events__item:not(:last-child) {
  margin: 0 0 2rem;
}
@media (min-width: 1025px) {
  .news-and-events .events__item:not(:last-child) {
    margin: 0 0 1.9rem;
  }
}
.news-and-events .events__date {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 9.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 1rem 1.4rem;
  color: #ffffff;
  background-color: #002554;
}
@media (min-width: 700px) {
  .news-and-events .events__date {
    width: 13.2rem;
    padding: 2.3rem 1rem 1.4rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .events__date {
    padding: 2.3rem 1rem 1.2rem;
  }
}
.news-and-events .events__date .date {
  margin-bottom: -3px;
  font-size: 3.6rem;
  line-height: 1;
}
@media (min-width: 700px) {
  .news-and-events .events__date .date {
    font-size: 5.2rem;
    margin-bottom: 1px;
  }
}
@media (min-width: 1025px) {
  .news-and-events .events__date .date {
    font-size: 5.8rem;
  }
}
.news-and-events .events__date .day {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 800;
}
@media (min-width: 700px) {
  .news-and-events .events__date .day {
    font-size: 1.6rem;
  }
}
.news-and-events .events__body {
  padding-top: 2px;
}
.news-and-events .events__title {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  color: #385e9d;
}
@media (min-width: 700px) {
  .news-and-events .events__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .events__title {
    font-size: 3.2rem;
  }
}
.news-and-events .events__title a {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: #385e9d;
}
.news-and-events .events__title a:hover {
  color: #002554;
}
@media (min-width: 700px) {
  .news-and-events .events__title a .last-word.last-word span {
    width: 26px;
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media (min-width: 1025px) {
  .news-and-events .events__title a .last-word.last-word span {
    -webkit-transform: translateY(2px);
        -ms-transform: translateY(2px);
            transform: translateY(2px);
  }
}
.news-and-events .events__title a .last-word.last-word span::after {
  border-color: #002554;
}
@media (min-width: 700px) {
  .news-and-events .events__title a .last-word.last-word span::after {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
}
.news-and-events .events__title a .last-word.last-word span::before {
  border-color: #002554;
}
@media (min-width: 700px) {
  .news-and-events .events__title a .last-word.last-word span::before {
    border-width: 3px;
  }
}
.news-and-events .events__details {
  line-height: 1;
}
.news-and-events .events__time {
  display: inline;
}
.news-and-events .events__time::after {
  content: "/";
  color: #b3a369;
  padding: 0 4px;
}
.news-and-events .events__place {
  display: inline;
}
@media screen and (min-width: 1025px) {
  .news-and-events .cta-holder {
    margin-top: 2rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .news__box {
    width: calc(50% - 1rem);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.news-and-events .news__card {
  position: relative;
  margin: 0 0 1.5rem;
}
@media (min-width: 700px) {
  .news-and-events .news__card {
    margin: 0 0 1.5rem;
    width: 65.8%;
  }
}
@media (min-width: 1025px) {
  .news-and-events .news__card {
    width: 100%;
    margin: 0 0 0.5rem;
  }
}
.news-and-events .news__card:last-child {
  margin-bottom: 0;
}
.news-and-events .news__card:hover .news__card-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.news-and-events .news__card:hover:before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
@media (min-width: 700px) {
  .news-and-events .news__card .bottom-arrow {
    width: 3.3rem;
    height: 3.3rem;
    border-width: 3.3rem;
  }
}
@media screen and (min-width: 700px) {
  .news-and-events .news__card .bottom-arrow::before {
    border-width: 2.9rem;
    right: -3.1rem;
    bottom: -3.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .news-and-events .news__card .bottom-arrow::before {
    border-width: 3rem;
    bottom: -3.1rem;
  }
}
.news-and-events .news__card .bottom-arrow::after {
  width: 3rem;
  height: 3rem;
}
@media (min-width: 700px) {
  .news-and-events .news__card .bottom-arrow::after {
    right: -3.1rem;
    bottom: -3rem;
    width: 4.2rem;
    height: 3.7rem;
    background-size: 2.4rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .news__card .bottom-arrow::after {
    width: 4rem;
    height: 4rem;
    background-size: 2.5rem;
  }
}
.news-and-events .news__card-image {
  position: relative;
  aspect-ratio: 281/222;
  overflow: hidden;
}
@media (min-width: 700px) {
  .news-and-events .news__card-image {
    aspect-ratio: 407/321;
  }
}
@media (min-width: 1025px) {
  .news-and-events .news__card-image {
    aspect-ratio: 509/403;
  }
}
.news-and-events .news__card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), color-stop(65.1%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.news-and-events .news__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.news__card:hover .news-and-events .news__card-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.news-and-events .news__card-body {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem 5rem 1.6rem 2rem;
  margin: 0;
  z-index: 4;
}
@media (min-width: 700px) {
  .news-and-events .news__card-body {
    padding: 2rem 5rem 2rem 3rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .news__card-body {
    padding: 2rem 6rem 2.6rem 3rem;
  }
}
.news-and-events .news__card-title {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .news-and-events .news__card-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .news-and-events .news__card-title {
    font-size: 3.2rem;
  }
}
.news-and-events .news__card-title a {
  text-decoration: none;
  background: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.news-and-events .news__card-title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.news-and-events .news__card-title a:hover {
  color: inherit;
}
.news-and-events .news__card-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news-and-events .news__card-date {
  color: #ffffff;
  margin-bottom: 1px;
}
@media (min-width: 1025px) {
  .news-and-events .news__card-date {
    margin-bottom: 4px;
  }
}
.news-and-events.js-active .events__item {
  opacity: 1;
  top: 0;
}

.student-callout {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background: #385e9d;
  overflow: hidden;
}
@media screen and (min-width: 700px) {
  .student-callout {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .student-callout {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 700px) {
  .student-callout__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
  }
}
.student-callout__top {
  color: #ffffff;
  padding: 3rem 2rem;
}
@media screen and (min-width: 700px) {
  .student-callout__top {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 49.4%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 49.4%;
            flex: 0 0 49.4%;
    padding: 4rem;
  }
}
@media screen and (min-width: 1025px) {
  .student-callout__top {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32.8%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 32.8%;
            flex: 0 0 32.8%;
    padding: 5rem;
  }
}
.student-callout__header {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "matrix-ii", sans-serif;
}
@media screen and (min-width: 700px) {
  .student-callout__header {
    font-size: 4.8rem;
  }
}
.student-callout__content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #ffffff;
  gap: 0.6rem;
}
@media screen and (max-width: 699px) {
  .student-callout__content {
    padding: 0.6rem 0 0;
  }
}
@media screen and (min-width: 700px) {
  .student-callout__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
       -moz-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    gap: 1rem;
    border-left: 1rem solid #ffffff;
  }
}
.student-callout__content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 1rem;
  height: 100%;
  background: #ffffff;
}
.student-callout .img-group {
  width: 50%;
}
@media screen and (min-width: 700px) {
  .student-callout .img-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
  }
}
@media screen and (min-width: 700px) {
  .student-callout .img-group:nth-child(1) {
    width: 54.1%;
  }
}
@media screen and (min-width: 1025px) {
  .student-callout .img-group:nth-child(1) {
    width: 50%;
  }
}
.student-callout .img-group:nth-child(1) .img-container:nth-child(1) {
  padding-bottom: 79%;
  margin-bottom: 0.6rem;
}
@media screen and (min-width: 700px) {
  .student-callout .img-group:nth-child(1) .img-container:nth-child(1) {
    padding-bottom: 96%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .student-callout .img-group:nth-child(1) .img-container:nth-child(1) {
    padding-bottom: 80%;
  }
}
.student-callout .img-group:nth-child(1) .img-container:nth-child(2) {
  padding-bottom: 55%;
}
@media screen and (min-width: 700px) {
  .student-callout .img-group:nth-child(1) .img-container:nth-child(2) {
    padding-bottom: 72%;
  }
}
@media screen and (min-width: 1025px) {
  .student-callout .img-group:nth-child(1) .img-container:nth-child(2) {
    padding-bottom: 47%;
  }
}
@media screen and (min-width: 700px) {
  .student-callout .img-group:nth-child(2) {
    width: 47%;
  }
}
@media screen and (min-width: 1025px) {
  .student-callout .img-group:nth-child(2) {
    width: 50%;
  }
}
.student-callout .img-group:nth-child(2) .img-container:nth-child(1) {
  padding-bottom: 55%;
  margin-bottom: 0.6rem;
}
@media screen and (min-width: 700px) {
  .student-callout .img-group:nth-child(2) .img-container:nth-child(1) {
    padding-bottom: 83%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .student-callout .img-group:nth-child(2) .img-container:nth-child(1) {
    padding-bottom: 60%;
  }
}
.student-callout .img-group:nth-child(2) .img-container:nth-child(2) {
  padding-bottom: 79%;
}
@media screen and (min-width: 700px) {
  .student-callout .img-group:nth-child(2) .img-container:nth-child(2) {
    padding-bottom: 110%;
  }
}
@media screen and (min-width: 1025px) {
  .student-callout .img-group:nth-child(2) .img-container:nth-child(2) {
    padding-bottom: 67%;
  }
}
.student-callout .img-container {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
}
.student-callout .img-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 300px);
  height: calc(100% + 300px);
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: top 0.3s ease;
  -o-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
@media screen and (min-width: 700px) {
  .student-callout .img-container img {
    width: calc(100% + 200px);
    height: calc(100% + 200px);
  }
}
@media screen and (min-width: 1025px) {
  .student-callout .img-container img {
    width: calc(100% + 350px);
    height: calc(100% + 350px);
  }
}

/**
 * @file
 * Parallax gallery
 *
 * Contains styles for Parallax gallery component.
 */
.parallax-gallery {
  margin-top: 6rem;
  width: calc(100vw - var(--scrollbar-width));
  margin-left: calc((100vw - 100%) / 2 * -1 + var(--scrollbar-width) / 2);
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .parallax-gallery {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery {
    margin-bottom: 8rem;
  }
}
.parallax-gallery__intro {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  aspect-ratio: 320/169;
}
@media (min-width: 700px) {
  .parallax-gallery__intro {
    aspect-ratio: 700/278;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__intro {
    margin: 0 0 1rem;
    aspect-ratio: 1200/421;
  }
}
.parallax-gallery__intro-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.parallax-gallery__intro-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.parallax-gallery__intro-img img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.parallax-gallery__header {
  position: relative;
  padding: 2rem;
  z-index: 3;
}
@media (min-width: 700px) {
  .parallax-gallery__header {
    padding: 4rem;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1960px;
    padding: 4rem 8rem 3.6rem;
    margin: 0 auto;
  }
}
.parallax-gallery__title {
  color: #ffffff;
  margin: 0 0 1rem;
}
@media (min-width: 700px) {
  .parallax-gallery__title {
    margin: 0 0 1.6rem;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__title {
    margin: 0 0 2.2rem;
  }
}
.parallax-gallery__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.6rem;
}
@media (min-width: 700px) {
  .parallax-gallery__grid--mobile {
    display: none;
  }
}
.parallax-gallery__grid--tablet {
  display: none;
  overflow: hidden;
}
@media (min-width: 700px) {
  .parallax-gallery__grid--tablet {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__grid--tablet {
    display: none;
  }
}
.parallax-gallery__grid--desktop {
  display: none;
}
@media (min-width: 1025px) {
  .parallax-gallery__grid--desktop {
    display: block;
  }
}
.parallax-gallery__grid .parallax__columns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
  aspect-ratio: 1200/785;
}
.parallax-gallery__grid .parallax__column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem;
  width: calc(25.2% - 0.6666666667rem);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  -o-transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.parallax-gallery__grid .parallax__column:not(.parallax__column--wide) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.parallax-gallery__grid .parallax__column:not(.parallax__column--wide) .parallax-gallery__grid-item {
  width: 100%;
}
.parallax-gallery__grid .parallax__column--wide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(49.7% - 0.6666666667rem);
}
.parallax-gallery__grid .parallax__column--wide .parallax-gallery__short-image {
  aspect-ratio: 290/232;
}
.parallax-gallery__grid .parallax__column--wide .parallax-gallery__grid-item--image img {
  aspect-ratio: 290/386;
}
.parallax-gallery__grid-item {
  width: 100%;
}
@media (min-width: 700px) {
  .parallax-gallery__grid-item {
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 700px) {
  .parallax-gallery__grid-item:nth-child(7), .parallax-gallery__grid-item:nth-child(9) {
    margin-top: -27%;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__grid-item:nth-child(4) {
    margin-top: -26.2%;
  }
}
.parallax-gallery__grid-item img {
  width: 100%;
}
.parallax-gallery__grid-item--half-width {
  width: calc(50% - 0.3rem);
}
@media (min-width: 700px) {
  .parallax-gallery__grid-item--half-width {
    width: calc(50% - 0.5rem);
  }
}
.parallax-gallery__grid-item--quote {
  margin-bottom: -0.6rem;
}
@media (min-width: 700px) {
  .parallax-gallery__grid-item--quote {
    width: 100%;
  }
}
.parallax-gallery__grid-item--quote .quote {
  padding: 2.8rem 1.9rem 2.9rem;
  margin: 0;
  background-color: transparent;
}
@media (min-width: 700px) {
  .parallax-gallery__grid-item--quote .quote {
    padding: 7.2rem 7.6rem 6.8rem;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__grid-item--quote .quote {
    padding: 6.7rem 9.1rem 7.5rem;
  }
}
.parallax-gallery__grid-item--quote .quote__copy {
  font-size: 1.8rem;
  background: transparent;
  line-height: 1.4;
}
@media (min-width: 700px) {
  .parallax-gallery__grid-item--quote .quote__copy {
    font-size: 2.2rem;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__grid-item--quote .quote__copy {
    font-size: 2.4rem;
  }
}
.parallax-gallery__grid-item--quote .bottom-arrow {
  display: none;
}
@media (min-width: 700px) {
  .parallax-gallery__grid-item--image img {
    aspect-ratio: 345/459;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__grid-item--image img {
    aspect-ratio: 295/386;
  }
}
.parallax-gallery__grid-item--short {
  position: relative;
}
@media screen and (min-width: 700px) {
  .parallax-gallery__grid-item--short {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    min-height: 38.8svw;
  }
}
@media screen and (min-width: 1025px) {
  .parallax-gallery__grid-item--short {
    min-height: 19.7svw;
  }
}
.parallax-gallery__grid-item--short:hover:before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.parallax-gallery__short-image {
  position: relative;
  aspect-ratio: 320/247;
  overflow: hidden;
}
@media (min-width: 700px) {
  .parallax-gallery__short-image {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    aspect-ratio: 345/270;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__short-image {
    aspect-ratio: 296/232;
  }
}
.parallax-gallery__short-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), color-stop(65.1%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.parallax-gallery__short-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.parallax-gallery__grid-item:hover .parallax-gallery__short-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.parallax-gallery__card-title {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 5rem);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 2rem 3rem 1.6rem 2rem;
  margin: 0;
  z-index: 4;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .parallax-gallery__card-title {
    position: relative;
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .parallax-gallery__card-title {
    font-size: 3.2rem;
  }
}
.parallax-gallery__card-title a {
  text-decoration: none;
  background: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.parallax-gallery__card-title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.parallax-gallery__card-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 320/247;
  height: 100%;
}
@media (min-width: 700px) {
  .parallax-gallery__card-title a::before {
    aspect-ratio: 345/270;
  }
}
.parallax-gallery .collapse-box {
  width: 100%;
}
.parallax-gallery .collapse-box__wrapper {
  height: 3rem;
  -webkit-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  transition: height 0.3s ease;
  overflow: hidden;
}
@media (min-width: 700px) {
  .parallax-gallery .collapse-box__wrapper {
    height: auto;
  }
}
.parallax-gallery .collapse-box__wrapper.is-expanded {
  height: var(--inner-content-height);
}
@media (min-width: 700px) {
  .parallax-gallery .collapse-box__wrapper.is-expanded {
    height: auto;
  }
}
.parallax-gallery .collapse-box__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.6rem;
}
.parallax-gallery .collapse-box__toggle {
  padding: 1.2rem 1rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  width: 100%;
  background-color: #385e9d;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  border: none;
}
@media (min-width: 700px) {
  .parallax-gallery .collapse-box__toggle {
    display: none;
  }
}
.parallax-gallery .collapse-box__toggle::after {
  width: 7px;
  height: 7px;
  content: "";
  -webkit-transform: translateY(-3px) rotate(-45deg);
      -ms-transform: translateY(-3px) rotate(-45deg);
          transform: translateY(-3px) rotate(-45deg);
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}
.parallax-gallery .is-expanded + .collapse-box__toggle::after {
  -webkit-transform: translateY(1px) rotate(-45deg) scale(-1);
      -ms-transform: translateY(1px) rotate(-45deg) scale(-1);
          transform: translateY(1px) rotate(-45deg) scale(-1);
}

/**
 * @file
 * Highlights and thesis
 *
 * Contains styles for highlights-and-thesis component.
 */
.program-highlights-thesis.has--thesis .highlights {
  padding-bottom: 12.5rem;
}
@media (min-width: 700px) {
  .program-highlights-thesis.has--thesis .highlights {
    padding-bottom: 15rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis.has--thesis .highlights {
    padding-bottom: 17rem;
  }
}
.program-highlights-thesis .highlights {
  position: relative;
  padding: 3rem 0;
  width: calc(100vw - var(--scrollbar-width));
  margin-left: calc((100vw - 100%) / 2 * -1 + var(--scrollbar-width) / 2);
  background-color: #002554;
  background-image: url("/_resources/assets/img/highlights-bg-sm.svg");
  background-repeat: no-repeat;
}
@media (min-width: 700px) {
  .program-highlights-thesis .highlights {
    padding: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights {
    padding: 8rem 0 4.5rem;
  }
}
.program-highlights-thesis .highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/_resources/assets/img/highlights-bg-right.svg");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  display: none;
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights::before {
    display: block;
    z-index: 1;
  }
}
.program-highlights-thesis .highlights .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights .container > .cta {
    display: none;
  }
}
.program-highlights-thesis .highlights__intro {
  margin: 0 0 3rem;
  color: #ffffff;
}
@media (min-width: 700px) {
  .program-highlights-thesis .highlights__intro {
    margin: -2.5rem 0 4rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__intro {
    margin: -2.1rem 0 4rem;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.program-highlights-thesis .highlights__header {
  margin: 0 0 2.1rem;
}
@media (min-width: 700px) {
  .program-highlights-thesis .highlights__header {
    margin: 0 0 4.1rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 5rem;
  }
}
.program-highlights-thesis .highlights__header-title {
  margin: 0;
  color: #ffffff;
}
.program-highlights-thesis .highlights__header .cta {
  display: none;
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__header .cta {
    display: inline-block;
  }
}
.program-highlights-thesis .highlights__title {
  margin: 0 0 0.6rem;
  font-size: 2rem;
}
@media (min-width: 700px) {
  .program-highlights-thesis .highlights__title {
    margin: 0 0 1.3rem;
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__title {
    margin: 0 0 1.2rem;
    font-size: 3.2rem;
  }
}
.program-highlights-thesis .highlights__content {
  color: #ffffff;
}
@media (min-width: 700px) {
  .program-highlights-thesis .highlights__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__content {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    gap: 1.4rem;
  }
}
.program-highlights-thesis .highlights__content ul {
  margin: 0;
  padding-left: 1.1rem;
  padding-right: 5rem;
}
.program-highlights-thesis .highlights__content li {
  color: #ffffff;
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__content li {
    margin: 0 0 0.8rem;
    font-size: 2rem;
  }
}
.program-highlights-thesis .highlights__content li::before {
  background-color: #cedc00;
}
.program-highlights-thesis .highlights__list {
  margin: 0 0 2.1rem;
}
@media (min-width: 700px) {
  .program-highlights-thesis .highlights__list {
    margin: 0 0 2rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: calc(50% - 0.9rem);
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__list {
    width: 33.3333333333%;
    position: relative;
    font-size: 2rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__list::before {
    content: "";
    position: absolute;
    right: 0.6rem;
    width: 1px;
    height: calc(100% - 1rem);
    background-color: #385e9d;
  }
}
.program-highlights-thesis .highlights__list:last-child::before {
  display: none;
}
.program-highlights-thesis .highlights__list a {
  color: #ffffff;
}
.program-highlights-thesis .highlights__list a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.program-highlights-thesis .highlights__list a:hover {
  color: #002554;
}
.program-highlights-thesis .highlights__deadlines-item {
  margin: 0 0 1.1rem;
}
.program-highlights-thesis .highlights .date {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights .date {
    font-size: 3rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .highlights__deadlines {
    font-size: 2rem;
    line-height: 1.4;
  }
}
.program-highlights-thesis .featured-quote {
  margin: 3rem 0;
  position: relative;
  z-index: 2;
  padding: 0;
}
@media (min-width: 700px) {
  .program-highlights-thesis .featured-quote {
    margin: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .featured-quote {
    margin: 8rem 0;
  }
}
.program-highlights-thesis .featured-quote:not(:only-child) {
  margin-top: -8.4rem;
}
@media (min-width: 700px) {
  .program-highlights-thesis .featured-quote:not(:only-child) {
    margin-top: -10.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .featured-quote:not(:only-child) {
    margin-top: -13.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .featured-quote .quote {
    padding-bottom: 3.8rem;
  }
}
@media (min-width: 700px) {
  .program-highlights-thesis .featured-quote .quote__copy {
    margin: 2.4rem 0 1.4rem 2.3rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .featured-quote .quote__copy {
    margin: 3rem 0 0;
  }
}
.program-highlights-thesis .thesis {
  margin: 3rem 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis {
    margin: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis {
    margin: 8rem 0;
  }
}
.program-highlights-thesis .thesis:not(:only-child) {
  margin-top: -8.4rem;
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis:not(:only-child) {
    margin-top: -10.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis:not(:only-child) {
    margin-top: -14.2rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.program-highlights-thesis .thesis__card {
  padding: 2rem;
  background-color: #f8f6f0;
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis__card {
    padding: 3rem 3rem 1.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__card {
    padding: 4.4rem 5rem 4.4rem;
  }
}
.program-highlights-thesis .thesis__card:nth-child(2n) {
  background-color: #f0ede1;
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__card:nth-child(2n) {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 50%;
  }
}
.program-highlights-thesis .thesis__header {
  padding: 0 0 2.8rem;
  margin: 0 0 3.1rem;
  border-bottom: 1px solid #b3a369;
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis__header {
    padding: 0 0 2rem;
    margin: 0 0 3rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__header {
    padding: 0 0 2.3rem;
    margin: 0 0 2.6rem;
  }
}
.program-highlights-thesis .thesis__header--title {
  margin: 0 0 0.5rem;
  font-size: 2rem;
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis__header--title {
    margin: 0 0 0.2rem;
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__header--title {
    font-size: 3.2rem;
    margin: 0 0 1.5rem;
  }
}
.program-highlights-thesis .thesis__header--description {
  font-size: 1.4rem;
  line-height: 1.45;
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis__header--description {
    font-size: 1.6rem;
  }
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__list {
    gap: 2.2rem 2rem;
  }
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis__item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: calc(50% - 0.9rem);
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__item {
    width: calc(50% - 1rem);
  }
}
.program-highlights-thesis .thesis__item:not(:last-child) {
  margin: 0 0 3rem;
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis__item:not(:last-child) {
    margin: 0 0 0.4rem;
  }
}
.program-highlights-thesis .thesis__title {
  font-family: "articulat-cf", sans-serif;
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 700px) {
  .program-highlights-thesis .thesis__title {
    margin: 0 0 1.2rem;
    font-size: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__title {
    font-size: 2rem;
    margin: 0 0 0.8rem;
  }
}
.program-highlights-thesis .thesis__line {
  margin: 0 0 0.6rem;
}
@media (min-width: 1025px) {
  .program-highlights-thesis .thesis__line {
    margin: 0 0 0.1rem;
  }
}
.program-highlights-thesis .thesis .bold {
  margin-right: 6px;
  display: inline-block;
  font-weight: 700;
}

/**
 * @file
 * Accreditation callout
 *
 * Contains styles for accreditation-callout component.
 */
.accreditation-callout {
  margin: 3rem 0;
}
@media screen and (min-width: 700px) {
  .accreditation-callout {
    margin: 4rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .accreditation-callout {
    margin: 8rem 0;
  }
}
.accreditation-callout__inner {
  width: 100%;
  padding: 2.8rem 0 2.4rem;
  border-top: 1px solid #002554;
  border-bottom: 1px solid #002554;
}
@media screen and (min-width: 700px) {
  .accreditation-callout__inner {
    padding: 4rem 0 3.8rem;
    border-width: 2px;
  }
}
@media screen and (min-width: 1025px) {
  .accreditation-callout__inner {
    line-height: 1.5;
  }
}

/**
 * @file
 * intro and quote
 *
 * Contains styles intro-and-quote component.
 */
.intro-and-quote {
  margin: 2rem 0 0;
}
@media screen and (min-width: 700px) {
  .intro-and-quote {
    margin: 4.2rem 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .intro-and-quote {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    margin: 6rem 0 0;
  }
}
.intro-and-quote .intro__holder {
  margin: 0 0 3rem;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (min-width: 700px) {
  .intro-and-quote .intro__holder {
    margin: 0 0 2rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .intro-and-quote .intro__holder {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .intro-and-quote .intro__holder {
    width: calc(50% - 1rem);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .intro-and-quote .quote__holder {
    width: calc(50% - 1rem);
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.intro-and-quote .featured-quote {
  margin: 0;
  padding: 0;
}
.intro-and-quote .featured-quote__content {
  margin: 0;
}
.intro-and-quote .featured-quote .quote {
  padding: 2rem 2rem 2.5rem;
}
@media screen and (min-width: 700px) {
  .intro-and-quote .featured-quote .quote {
    padding: 2rem 2.5rem 2rem 2.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .intro-and-quote .featured-quote .quote {
    padding: 3rem 3rem 3rem 3rem;
  }
}
@media screen and (min-width: 700px) {
  .intro-and-quote .featured-quote .quote__copy {
    margin: 0;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .intro-and-quote .featured-quote .quote__copy {
    padding-right: 0;
  }
}
@media screen and (min-width: 700px) {
  .intro-and-quote .featured-quote .quote__image {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 22%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 22%;
            flex: 0 0 22%;
  }
}
.intro-and-quote .featured-quote .quote__details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.intro-and-quote .featured-quote .quote__top {
  border-width: 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
     -moz-box-orient: vertical;
     -moz-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (min-width: 700px) {
  .intro-and-quote .featured-quote .quote__top {
    padding-bottom: 2.6rem;
    margin-bottom: 2.6rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1025px) {
  .intro-and-quote .featured-quote .quote__top {
    gap: 2rem;
    display: block;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .intro-and-quote .featured-quote .quote__image {
    width: 22%;
    margin-left: 3rem;
    margin-bottom: 1rem;
    float: right;
    position: relative;
    z-index: 2;
  }
}

/**
 * @file
 * faculty staff 2-column
 *
 * Contains styles for faculty-staff-2-column component.
 */
.faculty-staff {
  margin: 3rem 0;
}
@media (min-width: 700px) {
  .faculty-staff {
    margin: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .faculty-staff {
    margin: 8rem 0;
  }
}
@media (min-width: 1025px) {
  .faculty-staff__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 5rem;
  }
}
.faculty-staff__header .cta--button.cta--button {
  display: none;
}
@media (min-width: 1025px) {
  .faculty-staff__header .cta--button.cta--button {
    display: inline-block;
  }
}
@media (min-width: 1025px) {
  .faculty-staff__intro {
    margin: 0 0 3rem;
  }
}
.faculty-staff__card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #f0ede1;
  padding: 2rem;
  overflow: hidden;
}
@media (min-width: 700px) {
  .faculty-staff__card {
    display: block;
    padding: 3.2rem 3rem 3rem;
  }
}
@media (min-width: 1025px) {
  .faculty-staff__card {
    width: calc(50% - 1rem);
  }
}
.faculty-staff__card:not(:last-child) {
  margin: 0 0 2.2rem;
}
@media (min-width: 700px) {
  .faculty-staff__card:not(:last-child) {
    margin: 0 0 2rem;
  }
}
@media (min-width: 1025px) {
  .faculty-staff__card:not(:last-child) {
    margin: 0;
  }
}
.faculty-staff__title {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 0 0.4rem;
  font-size: 2rem;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .faculty-staff__title {
    font-size: 2.8rem;
    margin: 0 0 1rem;
  }
}
@media (min-width: 1025px) {
  .faculty-staff__title {
    font-size: 3.2rem;
  }
}
.faculty-staff__body {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 0 1.9rem;
}
@media (min-width: 700px) {
  .faculty-staff__body {
    margin: 0;
  }
}
@media (min-width: 1025px) {
  .faculty-staff__body {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.faculty-staff__image {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 52%;
}
@media (min-width: 700px) {
  .faculty-staff__image {
    float: right;
    width: 23.3%;
    margin: 0 0 1rem 1rem;
  }
}
@media (min-width: 1025px) {
  .faculty-staff__image {
    width: 31.3%;
    margin: 0 0 1rem 2.5rem;
  }
}
.faculty-staff__image img {
  aspect-ratio: 140/139;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.faculty-staff__box {
  margin: 0 0 2.1rem;
}
@media (min-width: 700px) {
  .faculty-staff__box {
    margin: 0 0 1rem;
  }
}
@media (min-width: 1025px) {
  .faculty-staff__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
  }
}
@media (min-width: 1025px) {
  .faculty-staff .cta {
    display: none;
  }
}

/**
 * @file
 * Featured 3 columns
 *
 * Contains styles for featured-3-columns component.
 */
.featured-3-columns {
  margin: 3rem 0;
}
@media (min-width: 700px) {
  .featured-3-columns {
    margin: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .featured-3-columns {
    margin: 8rem 0;
  }
}
@media (min-width: 1025px) {
  .featured-3-columns__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
  }
}
.featured-3-columns__header .cta--button.cta--button {
  display: none;
}
@media (min-width: 1025px) {
  .featured-3-columns__header .cta--button.cta--button {
    display: inline-block;
  }
}
.featured-3-columns__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (min-width: 700px) {
  .featured-3-columns__header {
    margin: 0 0 1.2rem;
  }
}
.featured-3-columns__intro {
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .featured-3-columns__intro {
    margin-bottom: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .featured-3-columns__intro {
    margin-bottom: 3.2rem;
  }
}
@media (min-width: 700px) {
  .featured-3-columns__columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 1rem;
  }
}
@media (min-width: 1025px) {
  .featured-3-columns__columns {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.featured-3-columns__card {
  position: relative;
  margin: 0 0 1rem;
}
@media (min-width: 700px) {
  .featured-3-columns__card {
    margin: 0;
    width: calc(50% - 0.5rem);
  }
}
@media (min-width: 1025px) {
  .featured-3-columns__card {
    width: calc(33.3333333333% - 0.5rem);
  }
}
.featured-3-columns__card:last-child {
  margin-bottom: 0;
}
.featured-3-columns__card:hover:before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.featured-3-columns__card--link {
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .featured-3-columns__card--link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}
@media (min-width: 1025px) {
  .featured-3-columns__card--link {
    display: none;
  }
}
.featured-3-columns__card--link:before, .featured-3-columns__card--link:after {
  display: none;
}
.featured-3-columns__card-image {
  position: relative;
  aspect-ratio: 280/280;
  overflow: hidden;
}
@media (min-width: 700px) {
  .featured-3-columns__card-image {
    aspect-ratio: 305/305;
  }
}
@media (min-width: 1025px) {
  .featured-3-columns__card-image {
    aspect-ratio: 340/340;
  }
}
.featured-3-columns__card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), color-stop(65.1%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.4) 65.1%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.featured-3-columns__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  -o-transition: transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.featured-3-columns__card:hover .featured-3-columns__card-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.featured-3-columns__card-body {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem 5rem 2.8rem 2rem;
  margin: 0;
  z-index: 4;
}
@media (min-width: 700px) {
  .featured-3-columns__card-body {
    padding: 2rem 5rem 1.8rem 2rem;
  }
}
@media (min-width: 1025px) {
  .featured-3-columns__card-body {
    padding: 2rem 5rem 1.6rem 2rem;
  }
}
.featured-3-columns__card-title {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .featured-3-columns__card-title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1025px) {
  .featured-3-columns__card-title {
    font-size: 3.2rem;
  }
}
.featured-3-columns__card-title a {
  text-decoration: none;
  background: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.featured-3-columns__card-title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.featured-3-columns__card-title a:hover {
  color: inherit;
}
.featured-3-columns__card-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * @file
 * Featured carousel
 *
 * Contains styles for featured-carousel component.
 */
.featured-carousel__section {
  padding: 3rem 0 2rem;
}
@media (max-width: 699px) {
  .featured-carousel__section {
    height: auto !important;
  }
}
@media (min-width: 700px) {
  .featured-carousel__section {
    padding: 4rem 0;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__section {
    padding: 8rem 0;
  }
}
@media (min-width: 700px) {
  .featured-carousel__section.js-is-horizontally-scrollable .featured-carousel__inner {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -webkit-transition: top 0.3s ease;
    -o-transition: top 0.3s ease;
    transition: top 0.3s ease;
    height: 100svh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 700px) {
  .featured-carousel__wrapper {
    width: 100%;
  }
}
.featured-carousel__header {
  margin: 0 0 1rem;
}
@media (min-width: 700px) {
  .featured-carousel__header {
    margin: 0 0 1.3rem 0;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 2.5rem;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__header {
    margin: 0 0 4.5rem;
    width: 100%;
  }
}
.featured-carousel__header-controls {
  display: none;
}
@media (min-width: 700px) {
  .featured-carousel__header-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6rem;
    padding-bottom: 0.3rem;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__header-controls {
    gap: 1rem;
  }
}
.featured-carousel__header-controls .featured-carousel__button {
  position: relative;
  display: block;
  width: 4rem;
  height: 4rem;
  border: 1px solid;
  background: #385e9d;
  -webkit-transition: border 0.3s ease, background 0.3s ease;
  -o-transition: border 0.3s ease, background 0.3s ease;
  transition: border 0.3s ease, background 0.3s ease;
}
.featured-carousel__header-controls .featured-carousel__button:disabled {
  opacity: 0.5;
}
@media (min-width: 1025px) {
  .featured-carousel__header-controls .featured-carousel__button {
    width: 6rem;
    height: 6rem;
  }
}
.featured-carousel__header-controls .featured-carousel__button:not(:disabled):hover {
  background: #ffffff;
  border: 1px solid #385e9d;
}
.featured-carousel__header-controls .featured-carousel__button:not(:disabled):hover:before {
  border-color: #385e9d;
}
.featured-carousel__header-controls .featured-carousel__button--prev {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.featured-carousel__header-controls .featured-carousel__button::before {
  position: absolute;
  content: "";
  border: none;
  border-right: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  width: 9px;
  height: 9px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 3px), calc(-50% + 1px)) rotate(45deg);
      -ms-transform: translate(calc(-50% - 3px), calc(-50% + 1px)) rotate(45deg);
          transform: translate(calc(-50% - 3px), calc(-50% + 1px)) rotate(45deg);
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (min-width: 1025px) {
  .featured-carousel__header-controls .featured-carousel__button::before {
    width: 13px;
    height: 13px;
    border-width: 3px;
  }
}
.featured-carousel__title {
  margin: 0;
}
.featured-carousel__intro {
  margin: 1rem 0 0;
  line-height: 1.4;
}
@media (min-width: 700px) {
  .featured-carousel__intro {
    margin: 1.5rem 0 -2px;
    font-size: 1.8rem;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__intro {
    margin: 2rem 0 -4px;
    font-size: 2rem;
  }
}
@media (min-width: 700px) {
  .featured-carousel__cards-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: hidden;
    width: calc(100% + 8rem);
    margin: 0 -4rem;
    padding: 0 4rem;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__cards-holder {
    width: calc(100% + 16rem);
    margin: 0 -8rem;
    padding: 0 8rem;
  }
}
@media (min-width: 700px) {
  .featured-carousel__card {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    width: 78%;
    margin-right: 1rem;
    position: relative;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__card {
    width: 69rem;
  }
}
.featured-carousel__card:last-child {
  margin-right: 0;
}
.featured-carousel__card-image {
  position: relative;
  width: calc(100% + 4rem);
  margin: 0 -2rem;
  aspect-ratio: 320/170;
}
@media (min-width: 700px) {
  .featured-carousel__card-image {
    margin: 0;
    width: 100%;
    aspect-ratio: 485/387;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__card-image {
    aspect-ratio: 691/552;
  }
}
.featured-carousel__card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0.42%, rgba(0, 0, 0, 0.5)), color-stop(99.9%, rgba(0, 0, 0, 0.05)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0.42%, rgba(0, 0, 0, 0.05) 99.9%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0.42%, rgba(0, 0, 0, 0.05) 99.9%);
  z-index: 2;
}
.featured-carousel__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-carousel__card-title {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  color: #ffffff;
  margin: 0;
  padding: 0 0 1.5rem;
}
@media (min-width: 700px) {
  .featured-carousel__card-title {
    position: static;
    padding: 0;
    margin: 0 0 0.6rem;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__card-title {
    position: static;
    padding: 0;
    margin: 0 0 2.2rem;
  }
}
.featured-carousel__card-title .cta--link {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.featured-carousel__card-title .cta--link:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.featured-carousel__card-title .cta--link::before {
  content: "";
  position: absolute;
  width: calc(100% + 4rem);
  left: -2rem;
  bottom: 0;
  aspect-ratio: 320/170;
}
@media (min-width: 700px) {
  .featured-carousel__card-title .cta--link::before {
    aspect-ratio: unset;
    width: 100%;
    height: 100%;
    left: 0;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__card-title .cta--link .cta__inner .last-word span {
    width: 2.6rem;
    -webkit-transform: translateY();
        -ms-transform: translateY();
            transform: translateY();
  }
}
@media (min-width: 1025px) {
  .featured-carousel__card-title .cta--link .cta__inner .last-word span::before {
    border-width: 3px;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__card-title .cta--link .cta__inner .last-word span::after {
    width: 15px;
    height: 15px;
    border-width: 3px;
  }
}
.featured-carousel__card-title .cta--link .cta__inner .last-word span::before, .featured-carousel__card-title .cta--link .cta__inner .last-word span::after {
  border-color: #cedc00;
}
.featured-carousel__card-body {
  position: relative;
  z-index: 3;
}
@media (min-width: 700px) {
  .featured-carousel__card-body {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
       -moz-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2rem 2rem 1.8rem;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__card-body {
    padding: 2rem 5rem 2.8rem;
  }
}
.featured-carousel__card-caption {
  padding: 1.3rem 0 2.1rem;
  font-weight: 600;
}
@media (min-width: 700px) {
  .featured-carousel__card-caption {
    padding: 0;
    color: #ffffff;
  }
}
@media (min-width: 1025px) {
  .featured-carousel__card-caption {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

/**
 * @file
 * Featured 2 columns
 *
 * Contains styles for related-programs component.
 */
.related-programs {
  position: relative;
  padding: 1rem 0 1.5rem;
}
@media (min-width: 700px) {
  .related-programs {
    padding: 1.9rem 0;
  }
}
@media (min-width: 1025px) {
  .related-programs {
    margin: 0;
    padding: 6.5rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .related-programs__top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 3.2rem;
  }
}
.related-programs__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media (min-width: 700px) {
  .related-programs__header {
    margin: 0 0 1.9rem;
  }
}
@media screen and (min-width: 1025px) {
  .related-programs__header {
    margin: 0;
  }
}
.related-programs__columns {
  margin-bottom: 1.3rem;
}
@media (min-width: 700px) {
  .related-programs__columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media screen and (min-width: 1025px) {
  .related-programs__columns {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}
.related-programs__card {
  position: relative;
  margin: 0 0 1.2rem;
  background: #002554;
}
@media (min-width: 700px) {
  .related-programs__card {
    margin: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 calc(50% - 0.5rem);
       -moz-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.5rem);
            flex: 0 0 calc(50% - 0.5rem);
  }
}
@media screen and (min-width: 1025px) {
  .related-programs__card {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 33%;
       -moz-box-flex: 1;
        -ms-flex: 1 1 33%;
            flex: 1 1 33%;
  }
}
.related-programs__card__top {
  position: relative;
}
.related-programs__card:last-child {
  margin-bottom: 0;
}
.related-programs__card:hover:before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}
.related-programs__card-body {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem 5rem 3rem 2rem;
  margin: 0;
  z-index: 4;
}
@media (min-width: 700px) {
  .related-programs__card-body {
    padding: 2rem 5rem 1.2rem 2rem;
  }
}
@media (min-width: 1025px) {
  .related-programs__card-body {
    padding: 2rem 5rem 1.6rem 2rem;
  }
}
.related-programs__card-title {
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .related-programs__card-title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1025px) {
  .related-programs__card-title {
    font-size: 3.2rem;
  }
}
.related-programs__card-title a {
  text-decoration: none;
  background: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.related-programs__card-title a:focus {
  outline: solid 1px #ffffff;
  outline-offset: 2px;
}
.related-programs__card-title a:hover {
  color: inherit;
}
.related-programs__card-title a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.related-programs .program-type {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.9rem;
}
.related-programs .program-type--blue {
  background-color: #385e9d;
}
.related-programs .program-type--navy {
  background-color: #002554;
}
.related-programs .program-type--gold {
  background-color: #b3a369;
  color: #002554;
}
.related-programs .program-type--green {
  background-color: #cedc00;
  color: #002554;
}
.related-programs .program-type--beige {
  background-color: #f0ede1;
  color: #002554;
}
.related-programs .program-type--beige-light {
  background-color: #f8f6f0;
  color: #002554;
}
@media screen and (max-width: 1024px) {
  .related-programs--desktop {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .related-programs--mobile {
    display: none;
  }
}

.tag {
  background: #000000;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.6rem 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  margin-left: 0.7rem;
  position: relative;
  top: -0.2rem;
}
@media screen and (min-width: 700px) {
  .tag {
    padding: 0.8rem 1.6rem;
    margin-left: 0.9rem;
    top: -1.1rem;
  }
}
@media screen and (min-width: 1025px) {
  .tag {
    padding: 0.8rem 1.6rem;
    margin-left: 1.7rem;
    top: -1.3rem;
    font-size: 2.4rem;
  }
}
.tag--blue {
  background: #385e9d;
}
.tag--gold {
  background: #b3a369;
}
.tag--navy {
  color: #ffffff;
  background: #002554;
}
.tag--green {
  background: #cedc00;
}
.tag--beige {
  background: #f0ede1;
}
.tag--beige-light {
  background: #f8f6f0;
}

/**
 * @file
 * Blog
 *
 * Contains styles for blog detail and view modes.
 */
.blog__image {
  margin: 2rem 0 1rem;
}
.blog__publish-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1rem;
}
.blog__date {
  font-weight: 700;
}
.blog__author:before {
  content: "|";
  font-size: inherit;
  padding: 0 0.5rem;
}
.blog__tags {
  margin: 1rem 0;
}
.blog__tag-label {
  font-weight: 700;
  margin: 0 0 1rem;
}
.blog__tag-list a {
  margin: 0 0.25rem 0 0;
  padding: 0.125rem 0.5rem;
  border: 1px solid #000000;
  border-radius: 3px;
}

@media (min-width: 1025px) {
  .blog-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.blog-list__items {
  list-style: none;
  display: block;
  padding: 0;
}
.blog-list__item {
  margin: 2rem 0;
  display: table;
}
.blog-list__title {
  margin-top: 0.5rem;
}
@media (min-width: 700px) {
  .blog-list__title {
    margin-top: -0.3rem;
  }
}
@media (min-width: 700px) {
  .blog-list__image {
    float: left;
    margin: 0 30px 0 0;
  }
}
.blog-list__text {
  overflow: hidden;
}
.blog-list__date, .blog-list__author {
  display: inline-block;
}
.blog-list__date {
  font-weight: 700;
}
.blog-list__date:after {
  content: "|";
  display: inline-block;
  vertical-align: middle;
  margin: -0.3rem 2px 0 6px;
}
.blog-list__pager {
  clear: both;
}

@media (min-width: 700px) {
  .blog__filters {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1025px) {
  .blog__filters {
    display: block;
  }
}

/**
 * @file
 * Catalog
 *
 * Contains styles for catalog program detail and view modes.
 */
@media (min-width: 700px) {
  .catalog__faculty-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.catalog__faculty-info img {
  margin: 0 0 1rem 0;
}
@media (min-width: 700px) {
  .catalog__faculty-info img {
    margin: 0 1rem 2rem 0;
  }
}
.catalog .faculty-info__title {
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.catalog .faculty-info__email {
  margin: 0 0 0.5rem 0;
}
.catalog .faculty-info__office {
  margin: 0 0 1rem 0;
}

.catalog-course-list__table,
.catalog-program-list__table {
  border-collapse: collapse;
  width: 100%;
}
.catalog-course-list__table thead,
.catalog-program-list__table thead {
  display: none;
}
.catalog-course-list__table tr,
.catalog-program-list__table tr {
  border-bottom: 1px solid;
}
.catalog-course-list__table th,
.catalog-course-list__table td,
.catalog-program-list__table th,
.catalog-program-list__table td {
  text-align: left;
  padding: 20px 10px;
}
.catalog-course-list__table h2,
.catalog-program-list__table h2 {
  margin-top: 0;
}
.catalog-course-list__credit,
.catalog-program-list__credit {
  font-weight: 700;
}
.catalog-course-list__select,
.catalog-program-list__select {
  margin-right: 20px;
}
.catalog-course-list .dataTables_info,
.catalog-program-list .dataTables_info {
  display: none;
}
.catalog-course-list .dataTables_filter,
.catalog-program-list .dataTables_filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.catalog-course-list .dataTables_filter label,
.catalog-program-list .dataTables_filter label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.catalog-course-list .dataTables_filter input[type=search],
.catalog-program-list .dataTables_filter input[type=search] {
  display: block;
}
.catalog-course-list .dataTables_info,
.catalog-program-list .dataTables_info {
  display: none;
}

/**
 * @file
 * Faculty
 *
 * Contains styles for faculty detail and view modes.
 */
.faculty__resume-cta {
  text-align: left;
  margin: 1.5rem 0 0;
}
.faculty__resume-cta a {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: #000000;
  color: #ffffff;
}
.faculty__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 1em;
}
.faculty__image, .faculty__contact {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faculty.faculty--listing .faculty__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 2em;
}
.faculty.faculty--listing .faculty__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
     -moz-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 2em;
}
.faculty.faculty--directory .faculty__list {
  padding: 0 0 2.5em;
}
@media (min-width: 700px) {
  .faculty.faculty--directory .faculty__list {
    padding: 0 0 0.4em;
  }
}
.faculty.faculty--directory .faculty__list .filter-btn-drop {
  display: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f8f6f0;
  padding: 24px 21px;
  margin: 0 0 15px;
  border: none;
  width: 100%;
  max-width: 290px;
  text-align: left;
  color: #000000;
}
@media (min-width: 1025px) {
  .faculty.faculty--directory .faculty__list .filter-btn-drop {
    display: none;
  }
}
.faculty.faculty--directory .faculty__list .filter-btn-drop.expanded span:after {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.faculty.faculty--directory .faculty__list .filter-btn-drop span {
  position: relative;
  display: block;
  font-weight: 700;
}
.faculty.faculty--directory .faculty__list .filter-btn-drop span:after {
  position: absolute;
  display: block;
  top: calc(50% - 4px);
  right: 0;
  width: 3px;
  height: 3px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #000000;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "";
}
.faculty.faculty--directory.js-active .table-holder tbody tr {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.faculty .heading-table {
  position: relative;
  margin: 0 -4rem;
  padding: 2rem;
  background: #385e9d;
}
@media (min-width: 700px) {
  .faculty .heading-table {
    margin: 0 -8rem 0px;
    padding: 6.6rem 3rem 2.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .heading-table {
    margin: 0 -16rem 0px;
    padding: 6.6rem 8rem 2.3rem;
  }
}
.faculty .heading-table:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100svw;
  height: 7.8rem;
  background: #385e9d;
  z-index: -1;
}
@media screen and (min-width: 700px) {
  .faculty .heading-table:after {
    height: 23.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .heading-table:after {
    height: 26.8rem;
  }
}
.faculty .heading-table .toolbar {
  position: relative;
}
@media (min-width: 700px) {
  .faculty .heading-table .toolbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
    padding: 0;
  }
}
.faculty .heading-table .clear-table {
  display: none;
}
.faculty .heading-table .search-title {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  margin: 0 0 7px;
}
@media screen and (min-width: 1025px) {
  .faculty .heading-table .search-title {
    margin: 0 0 12px;
    line-height: 1;
  }
}
.faculty .heading-table .filter-box {
  line-height: 1;
  position: relative;
  margin: 0 0 13px;
}
@media (min-width: 700px) {
  .faculty .heading-table .filter-box {
    margin: 0;
  }
}
.faculty .heading-table .filter-box:nth-child(1):after, .faculty .heading-table .filter-box:nth-child(2):after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4.3rem;
  height: 4.3rem;
  background: #f0ede1;
  pointer-events: none;
}
.faculty .heading-table .filter-box:nth-child(1):before, .faculty .heading-table .filter-box:nth-child(2):before {
  content: "";
  position: absolute;
  bottom: 1.7rem;
  right: 1.7rem;
  width: 0.7rem;
  height: 0.7rem;
  border-left: 2px solid #002554;
  border-bottom: 2px solid #002554;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  pointer-events: none;
  z-index: 1;
}
@media screen and (min-width: 700px) {
  .faculty .heading-table .filter-box:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 31.2%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 31.2%;
            flex: 0 0 31.2%;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .heading-table .filter-box:nth-child(1) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32.1%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 32.1%;
            flex: 0 0 32.1%;
  }
}
@media screen and (min-width: 700px) {
  .faculty .heading-table .filter-box:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 31.2%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 31.2%;
            flex: 0 0 31.2%;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .heading-table .filter-box:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32.1%;
       -moz-box-flex: 0;
        -ms-flex: 0 0 32.1%;
            flex: 0 0 32.1%;
  }
}
.faculty .heading-table .filter-box:nth-child(3), .faculty .heading-table .filter-box:nth-child(4), .faculty .heading-table .filter-box:nth-child(5) {
  display: none;
}
.faculty .heading-table .form__label {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: capitalize;
}
.faculty .heading-table select {
  width: 100%;
  padding: 10px 42px 9px 13px;
  background: #ffffff;
  border: 0;
  background-size: 8px;
}
.faculty .heading-table .dataTables_filter {
  position: relative;
  margin: -5px 0 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.faculty .heading-table .dataTables_filter:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 4.7rem;
  height: 4.7rem;
  background: #cedc00;
  pointer-events: none;
}
@media screen and (min-width: 700px) {
  .faculty .heading-table .dataTables_filter:after {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .heading-table .dataTables_filter:after {
    bottom: 0;
    right: 0;
    width: 4.325rem;
    height: 4.325rem;
  }
}
.faculty .heading-table .dataTables_filter:before {
  content: "";
  position: absolute;
  bottom: 0.1rem;
  right: 0.1rem;
  width: 4.5rem;
  height: 4.5rem;
  background: url("/_resources/assets/icons/search-grey.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .faculty .heading-table .dataTables_filter:before {
    bottom: 0rem;
    right: 0rem;
    width: 4.3rem;
    height: 4.3rem;
  }
}
@media (max-width: 1024px) {
  .faculty .heading-table .dataTables_filter {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
@media (min-width: 1025px) {
  .faculty .heading-table .dataTables_filter {
    max-width: 441.5px;
    margin: 0;
  }
}
.faculty .heading-table input[type=search] {
  padding: 16px 42px 13px 13px;
  margin: 0;
  display: block;
  border: none;
  width: 100%;
  font-family: "articulat-cf", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  border-radius: 0;
  -webkit-appearance: none;
}
@media screen and (max-width: 699px) {
  .faculty .heading-table input[type=search] {
    height: 47px;
  }
}
@media (min-width: 1025px) {
  .faculty .heading-table input[type=search] {
    font-size: 1.5rem;
    padding: 13px 42px 13px 12px;
    margin: 0;
  }
}
.faculty .heading-table input[type=search]::-webkit-input-placeholder {
  color: #000000;
}
.faculty .heading-table input[type=search]:-moz-placeholder {
  color: #000000;
}
.faculty .heading-table input[type=search]::-moz-placeholder {
  color: #000000;
}
.faculty .heading-table input[type=search]:-ms-input-placeholder {
  color: #000000;
}
.faculty .wrapper-table {
  line-height: 1.2;
  background: #ffffff;
  margin: 11px -20px 18px;
  padding: 10px 12px;
}
@media screen and (min-width: 700px) {
  .faculty .wrapper-table {
    padding: 0 2rem;
    margin: 11px -50px 35px;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .wrapper-table {
    margin: 0 -8rem 45px;
    padding: 0 3rem;
  }
  .faculty .wrapper-table:after {
    display: none;
  }
}
.faculty .wrapper-table a.link-name {
  text-decoration: none;
}
@media screen and (min-width: 700px) {
  .faculty .wrapper-table .table-holder {
    position: relative;
  }
}
@media (min-width: 1025px) {
  .faculty .wrapper-table .table-holder {
    margin-right: 0;
  }
}
.faculty .wrapper-table table {
  width: 100% !important;
  border-collapse: collapse;
  border-spacing: 0;
  display: block;
}
@media (min-width: 1025px) {
  .faculty .wrapper-table table {
    display: table;
    min-width: 0;
  }
}
.faculty .wrapper-table th {
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) {
  .faculty .wrapper-table th {
    padding: 20px 0 18px;
    min-width: auto;
    text-align: left;
    max-width: 27svw;
  }
  .faculty .wrapper-table th:last-child {
    display: none;
  }
}
.faculty .wrapper-table td {
  padding: 0;
  display: block;
  margin: 0 0 16px;
  border-bottom: none;
}
@media (min-width: 700px) {
  .faculty .wrapper-table td {
    display: table-cell;
    min-width: auto;
    margin: 0;
    padding: 27px 20px 27px 0;
    max-width: 27svw;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .wrapper-table td {
    padding: 28px 20px 24px 0;
  }
}
.faculty .wrapper-table td:last-child {
  display: none;
  margin: 0;
}
.faculty .wrapper-table tbody {
  display: block;
}
@media (min-width: 700px) {
  .faculty .wrapper-table tbody {
    display: table-row-group;
  }
}
.faculty .wrapper-table tbody tr {
  -webkit-transform: translateY(10vh);
      -ms-transform: translateY(10vh);
          transform: translateY(10vh);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.faculty .wrapper-table thead {
  display: none;
  border-bottom: none;
  position: relative;
}
@media (min-width: 700px) {
  .faculty .wrapper-table thead {
    display: table-header-group;
    background: transparent;
  }
}
.faculty .wrapper-table thead:after {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  width: calc(100% + 4rem);
  border-bottom: solid 3px #b3a369;
  height: 62px;
  background: #f0ede1;
  z-index: 0;
}
@media screen and (min-width: 1025px) {
  .faculty .wrapper-table thead:after {
    left: -3rem;
    width: calc(100% + 6rem);
  }
}
@media (min-width: 700px) {
  .faculty .wrapper-table thead tr {
    border-bottom: none;
  }
}
.faculty .wrapper-table thead tr:after {
  content: none;
}
.faculty .wrapper-table tr {
  position: relative;
  display: block;
  padding: 0 0 18px;
  margin: 0 0 32px;
}
.faculty .wrapper-table tr::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% + 2rem);
  border-bottom: 1px solid #b3a369;
}
@media screen and (min-width: 700px) {
  .faculty .wrapper-table tr::after {
    border-bottom: 2px solid #b3a369;
    width: calc(100% + 4rem);
  }
}
@media screen and (min-width: 1025px) {
  .faculty .wrapper-table tr::after {
    width: calc(100% + 6rem);
  }
}
@supports (font: -apple-system-body) and (-webkit-appearance: none) {
  .faculty .wrapper-table tr {
    border-bottom: 2px solid #b3a369;
  }
  .faculty .wrapper-table tr:after {
    content: none;
  }
}
.faculty .wrapper-table tr:last-child {
  margin: 0;
}
@media (min-width: 700px) {
  .faculty .wrapper-table tr {
    display: table-row;
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 700px) {
  .faculty .wrapper-table .row-section {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.faculty .wrapper-table .row-label {
  font-size: 1.6rem;
  color: #002554;
  font-style: normal;
  font-weight: 700;
  display: block;
  margin: 0 0 3px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
     -moz-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-flex-basis: 41%;
      -ms-flex-preferred-size: 41%;
          flex-basis: 41%;
  max-width: 120px;
}
@media (min-width: 700px) {
  .faculty .wrapper-table .row-label {
    display: none;
  }
}
.faculty .wrapper-table .email {
  word-break: break-all;
}
.faculty .wrapper-table a.tel {
  font-weight: 800;
}
.faculty .wrapper-table .email,
.faculty .wrapper-table .link-name {
  position: relative;
  vertical-align: top;
}
.faculty .wrapper-table .email,
.faculty .wrapper-table a.link-name {
  font-weight: 800;
}
.faculty .wrapper-table .link-name {
  line-height: 1;
}
@media (min-width: 700px) {
  .faculty .wrapper-table .link-name {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .wrapper-table .link-name {
    display: inline-block;
    font-size: 2rem;
    margin: 0 0 9px;
  }
}
.faculty .wrapper-table .type {
  display: none;
}
.faculty .wrapper-table .title {
  display: block;
}
@media (min-width: 700px) {
  .faculty .wrapper-table .title {
    padding: 0;
  }
}
.faculty .footer-table {
  margin: 0 -2rem;
}
@media (min-width: 700px) {
  .faculty .footer-table {
    margin: 0 -4.3rem 4.3rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .faculty .footer-table {
    margin: 0 -7.3rem 7.5rem;
  }
}
.faculty .footer-table select {
  background-color: #f8f6f0;
  margin-bottom: 0.9rem;
}
@media screen and (min-width: 700px) {
  .faculty .footer-table select {
    margin-bottom: 0;
  }
}
.faculty .footer-table .dataTables_length {
  position: relative;
}
.faculty .heading-table-filter {
  position: relative;
}
.faculty .heading-table-filter:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 1025px) {
  .faculty .heading-table-filter {
    display: block !important;
    padding: 0;
  }
}
.faculty .heading-table-filter[aria-hidden=false] .clear-table {
  opacity: 1;
}

.faculty--full {
  margin: 0 auto 3.5rem;
  max-width: 866px;
}
@media (min-width: 700px) {
  .faculty--full {
    margin: 0 auto 4rem;
  }
}
@media (min-width: 1025px) {
  .faculty--full {
    margin: 0 auto 6.7rem;
  }
}
.faculty__content :first-child {
  margin-top: 0;
}
.faculty__content h2 {
  margin-bottom: 1.2rem;
}

.directory-details__intro {
  margin-top: -13.9rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) {
  .directory-details__intro {
    margin-top: -19.2rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1025px) {
  .directory-details__intro {
    margin-top: -28.6rem;
    margin-bottom: 5rem;
  }
}
.directory-details__intro .content-box {
  width: 100%;
  padding: 2rem 2rem 1.5rem;
  background-color: #f0ede1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 866px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .directory-details__intro .content-box {
    overflow: hidden;
    display: block;
    padding: 2rem 3rem 1.7rem;
  }
}
@media (min-width: 1025px) {
  .directory-details__intro .content-box {
    padding: 5rem 5.3rem 4.3rem 5rem;
  }
}
.directory-details__intro .faculty__resume .cta {
  font-weight: 800;
}
.directory-details__intro .faculty__name {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
     -moz-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 0 0.1rem;
  font-size: 2.2rem;
  line-height: 1.2;
}
@media (min-width: 700px) {
  .directory-details__intro .faculty__name {
    font-size: 3.4rem;
    margin: 0 0 1.1rem;
  }
}
@media (min-width: 1025px) {
  .directory-details__intro .faculty__name {
    font-size: 4.8rem;
    margin: 0 0 0.7rem;
  }
}
.directory-details__intro .faculty__title {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
     -moz-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 0 1.1rem;
}
@media (min-width: 700px) {
  .directory-details__intro .faculty__title {
    margin: 0 0 2.6rem;
  }
}
@media (min-width: 1025px) {
  .directory-details__intro .faculty__title {
    font-size: 2rem;
    margin: 0 0 2rem;
  }
}
.directory-details__intro .faculty__image {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
     -moz-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  aspect-ratio: 240/183;
  margin: 0 0 0.6rem;
  background: url("/_resources/assets/icons/m-letter-blue.svg") no-repeat center;
  background-size: 71%;
  background-color: #002554;
}
@media (min-width: 700px) {
  .directory-details__intro .faculty__image {
    float: right;
    width: 43%;
  }
}
@media (min-width: 1025px) {
  .directory-details__intro .faculty__image {
    width: 45.8%;
  }
}
.directory-details__intro .faculty__image img {
  display: block;
  width: 100%;
  height: 100%;
}
.directory-details__intro .faculty__contact {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
     -moz-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.directory-details__intro .faculty__email {
  margin: 0 0 1.4rem;
}
@media (min-width: 1025px) {
  .directory-details__intro .faculty__email {
    margin: 0 0 0.8rem;
  }
}
.directory-details__intro .faculty__email a {
  font-weight: 800;
}
.directory-details__intro .faculty__phone {
  margin: 0 0 1.9rem;
  display: inline-block;
  font-weight: 800;
}
@media (min-width: 1025px) {
  .directory-details__intro .faculty__phone {
    margin: 0 0 1.7rem;
  }
}
@media (min-width: 1025px) {
  .directory-details__intro .faculty__office {
    margin: 0 0 1.2rem;
  }
}

/**
 * @file
 * News
 *
 * Contains styles for news and news view modes.
 */
.news--listing {
  padding: 4rem 0;
}
@media screen and (min-width: 1025px) {
  .news--listing {
    padding: 6rem 0;
  }
}
.news--listing .news__title h2 {
  margin: 0 0 0.7rem;
  line-height: 0;
}
.news--listing .news__title h2 a {
  font-family: "matrix-ii", sans-serif;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 600;
  color: #385e9d;
}
@media screen and (min-width: 1025px) {
  .news--listing .news__title h2 a {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 700px) {
  .news--listing .news__title h2 a .last-word span {
    width: 2.3rem;
    height: 2.3rem;
  }
}
@media screen and (min-width: 1025px) {
  .news--listing .news__title h2 a .last-word span {
    width: 3rem;
    height: 3rem;
  }
}
@media screen and (min-width: 700px) {
  .news--listing .news__title h2 a .last-word span:after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media screen and (min-width: 1025px) {
  .news--listing .news__teaser {
    line-height: 1.5;
  }
}
.news--listing .news__date {
  font-family: "articulat-cf", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1025px) {
  .news--listing .news__date {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
}
.news--listing .news__item {
  margin-bottom: 3.1rem;
  counter-increment: section;
  opacity: 0;
}
@media screen and (min-width: 700px) {
  .news--listing .news__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 1025px) {
  .news--listing .news__item {
    margin-bottom: 3.9rem;
  }
}
.news--listing .news__image {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 29%;
     -moz-box-flex: 1;
      -ms-flex: 1 0 29%;
          flex: 1 0 29%;
  margin: 0 0 0.8rem;
}
@media screen and (min-width: 700px) {
  .news--listing .news__image {
    margin: 0 1.4em 2em 0;
  }
}
@media screen and (min-width: 1025px) {
  .news--listing .news__image {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 32%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 32%;
            flex: 1 0 32%;
    margin: 0 2em 2em 0;
  }
}
@media screen and (min-width: 1025px) {
  .news--listing .news__image {
    margin: 0 2em 0 0;
  }
}
.news--listing.js-active .news__item {
  -webkit-animation: listFadeInSlideUp 500ms 5000ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 5000ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(1) {
  -webkit-animation: listFadeInSlideUp 500ms 500ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 500ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(2) {
  -webkit-animation: listFadeInSlideUp 500ms 1000ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 1000ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(3) {
  -webkit-animation: listFadeInSlideUp 500ms 1500ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 1500ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(4) {
  -webkit-animation: listFadeInSlideUp 500ms 2000ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 2000ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(5) {
  -webkit-animation: listFadeInSlideUp 500ms 2500ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 2500ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(6) {
  -webkit-animation: listFadeInSlideUp 500ms 3000ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 3000ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(7) {
  -webkit-animation: listFadeInSlideUp 500ms 3500ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 3500ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(8) {
  -webkit-animation: listFadeInSlideUp 500ms 4000ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 4000ms forwards ease-out;
}
.news--listing.js-active .news__item:nth-child(9) {
  -webkit-animation: listFadeInSlideUp 500ms 4500ms forwards ease-out;
          animation: listFadeInSlideUp 500ms 4500ms forwards ease-out;
}
.news--full-image {
  position: relative;
  margin-top: -8.7rem;
  max-width: 80rem;
}
@media (min-width: 700px) {
  .news--full-image {
    margin-top: -7rem;
  }
}
@media (min-width: 1025px) {
  .news--full-image {
    margin-top: -5.8rem;
    margin-bottom: 0.8rem;
  }
}
.news--full-image .img-inline--full {
  margin: 0;
}
.news--full-image img {
  aspect-ratio: 280/143;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 700px) {
  .news--full-image img {
    aspect-ratio: 624/354;
  }
}
.news--full .news__content {
  padding: 2rem 0;
  max-width: 80rem;
}
@media (min-width: 700px) {
  .news--full .news__content {
    padding: 2rem 0 4rem;
  }
}

/**
 * @file
 * Program
 *
 * Contains styles for programs and program view modes.
 */
.program-finder {
  padding: 2.2rem 0;
}
@media (min-width: 700px) {
  .program-finder {
    padding: 4rem 0 3.2rem;
  }
}
@media (min-width: 1025px) {
  .program-finder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 5.9rem 0;
  }
}
.program-finder__filter {
  margin: 0 0 1.9rem;
}
@media (min-width: 1025px) {
  .program-finder__filter {
    margin: 0 0 3.2rem;
  }
}
@media (min-width: 1025px) {
  .program-finder__filter {
    margin-left: -8rem;
    max-width: 27rem;
    width: 100%;
  }
}
.program-finder.js-active .program--list__item {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 1025px) {
  .program--list {
    width: calc(100% - 23.5rem);
    margin-left: 5rem;
    padding-top: 1.9rem;
  }
}
.program__filters {
  display: none;
  padding: 2.9rem 2rem 3.4rem;
  margin: 0;
  border-top: 1px solid #b3a369;
  background-color: #f8f6f0;
}
@media (min-width: 700px) {
  .program__filters {
    display: block;
    padding: 3.3rem 3rem 3.4rem;
    border-top: none;
  }
}
@media (min-width: 1025px) {
  .program__filters {
    padding: 3rem 3rem 3.4rem 2.5rem;
    display: block !important;
  }
}
.program__filters__open {
  position: relative;
  display: block;
  width: 100%;
  padding: 2rem;
  background-color: #f8f6f0;
  border: none;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
}
.program__filters__open[aria-expanded=true] .filter-icon::after {
  opacity: 0;
}
@media (min-width: 700px) {
  .program__filters__open {
    display: none;
  }
}
.program__filters__open .filter-icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 5.5rem;
}
.program__filters__open .filter-icon::before, .program__filters__open .filter-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background: #002554;
  -webkit-transform: translate(-50%, calc(-50% + 2px));
      -ms-transform: translate(-50%, calc(-50% + 2px));
          transform: translate(-50%, calc(-50% + 2px));
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.program__filters__open .filter-icon::after {
  opacity: 1;
  -webkit-transform: translate(-50%, calc(-50% + 2px)) rotate(-90deg);
      -ms-transform: translate(-50%, calc(-50% + 2px)) rotate(-90deg);
          transform: translate(-50%, calc(-50% + 2px)) rotate(-90deg);
}
@media (min-width: 1025px) {
  .program__filters .form__checkbox {
    margin: 0 0 4px;
  }
}
.program__filters__fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 2rem;
}
@media (min-width: 700px) {
  .program__filters__fieldset {
    margin: 0 0 3rem;
  }
}
.program__filters__fieldset:nth-child(2), .program__filters__fieldset:nth-child(3) {
  display: none;
}
.program__filters__fieldset:last-child {
  margin: 0;
}
.program__filters__fieldset legend {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.42px;
  text-transform: uppercase;
}
@media (min-width: 700px) {
  .program__filters__fieldset legend {
    font-size: 1.8rem;
    letter-spacing: 0.54px;
  }
}
@media (min-width: 1025px) {
  .program__filters__fieldset legend {
    font-size: 2rem;
    letter-spacing: 0.6px;
  }
}
.program__filters__fieldset input[type=checkbox]:checked {
  background: #385e9d url("/_resources/assets/icons/checkmark-white.svg") no-repeat center;
}
@media (min-width: 700px) {
  .program__filters__fieldset .fields-wrapper {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 1025px) {
  .program__filters__fieldset .fields-wrapper {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.program--list__sort {
  margin: 0 0 1rem;
}
@media (min-width: 1025px) {
  .program--list__sort {
    padding-left: 2rem;
    margin: 0 0 2.4rem;
  }
}
.program--list__sort label {
  font-weight: 700;
}
@media (min-width: 700px) {
  .program--list__sort label {
    display: inline-block;
    margin: 0 0 1rem;
  }
}
@media (min-width: 1025px) {
  .program--list__sort label {
    margin: 0 0 0.7rem;
  }
}
.program--list__sort .sort-by--wrapper select {
  background: #f8f6f0 url("/_resources/assets//icons/select-arrow.svg") no-repeat right top;
  background-size: auto 100%;
}
@media (min-width: 700px) {
  .program--list__sort .sort-by--wrapper select {
    width: 30rem;
  }
}
@media (min-width: 1025px) {
  .program--list__sort .sort-by--wrapper select {
    width: 100%;
  }
}
.program--list__block {
  margin: 0 0 3rem;
}
@media (min-width: 1025px) {
  .program--list__block {
    margin: 0 0 6rem;
  }
}
.program--list__block h2 {
  margin: 0 0 0.9rem;
}
@media (min-width: 700px) {
  .program--list__block h2 {
    margin: 0 0 1.4rem;
  }
}
@media (min-width: 1025px) {
  .program--list__block h2 {
    margin: 0 0 1.7rem;
  }
}
.program--list__items {
  padding: 0;
  margin: 0 0 10px;
  border-top: 1px solid #b3a369;
}
.program--list__item {
  padding: 1rem 0 0.9rem;
  margin: 0;
  border-bottom: 1px solid #b3a369;
  opacity: 0;
  -webkit-transform: translateY(10vh);
      -ms-transform: translateY(10vh);
          transform: translateY(10vh);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 700px) {
  .program--list__item {
    padding: 1.7rem 0 1.4rem;
  }
}
@media (min-width: 1025px) {
  .program--list__item {
    padding: 1.5rem 0 1.4rem;
  }
}
.program--list__item::before {
  display: none;
}
.program--list__item a {
  background: none;
  text-decoration: none;
  font-weight: 800;
}
@media (min-width: 700px) {
  .program--list__item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1025px) {
  .program--list__item a {
    font-size: 2rem;
  }
}
.program--list__item .program--list__cred {
  font-weight: 400;
}

/**
 * @file
 * Calendar
 *
 * Contains styles for the Calendar Detail Page
 */
.event-detail__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 2rem;
}
.event-detail__data {
  width: 100%;
}
.event-detail__tags {
  margin-top: 35px;
}
@media (min-width: 700px) {
  .event-detail__tags {
    margin-top: 40px;
  }
}
@media (min-width: 1025px) {
  .event-detail__tags {
    margin-top: 60px;
  }
}
.event-detail__tags-label, .event-detail__save-label {
  font-weight: 700;
}
.event-detail__date {
  text-align: center;
  width: 61px;
  height: 61px;
  border: 1px solid;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 700px) {
  .event-detail__date {
    width: 86px;
    height: 86px;
  }
}
@media (min-width: 1025px) {
  .event-detail__date {
    width: 129px;
    height: 129px;
  }
}
.event-detail__reg-meter {
  background-color: #f0ede1;
  width: 100%;
}
.event-detail__reg-fill {
  background-color: #cedc00;
  height: 15px;
}
.event-detail__body:after {
  display: table;
  content: "";
  clear: both;
}
.event-detail__body figure.align-right {
  margin: 2rem -15px;
}
@media (min-width: 700px) {
  .event-detail__body figure.align-right {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
.event-detail__body figure.align-right img {
  width: 100%;
}
.event-detail__month {
  text-transform: uppercase;
}

/**
 * @file
 * Blog
 *
 * Contains styles for Event list.
 */
.event-list__items {
  padding: 0;
  list-style: none;
}
.event-list__item {
  margin: 0 0 2rem;
}
.event-list__date {
  width: 80px;
  height: 80px;
  border: 1px solid;
  float: left;
  margin-right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.event-list__data {
  overflow: hidden;
}
.event-list__time {
  font-weight: 700;
}
.event-list__title {
  margin-top: 0;
}
.event-list__location {
  font-style: italic;
}

/**
 * @file
 * Calendar List
 *
 * Contains styles for the Calendar List
 */
@media (min-width: 700px) {
  .calendar h1 {
    float: left;
  }
}
@media (min-width: 1025px) {
  .calendar h1 {
    float: none;
  }
}
@media (min-width: 700px) {
  .calendar__expand-filters {
    float: right;
    clear: right;
    margin-top: 2rem;
  }
}
@media (min-width: 1025px) {
  .calendar__expand-filters {
    display: none;
  }
}
.calendar__left-col {
  clear: left;
}
.calendar__pagination__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}
.calendar__pagination__list li:after {
  content: "|";
  display: inline-block;
  vertical-align: middle;
  margin: -0.3rem 10px 0;
}
.calendar__pagination__list li:last-child:after {
  content: none;
}
.calendar__pagination {
  margin-bottom: 2rem;
}
.calendar__pagination__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -13.5px;
}
.calendar__event__date {
  text-align: center;
  width: 61px;
  height: 61px;
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #000000;
  margin-right: 15px;
}
@media (min-width: 700px) {
  .calendar__event__date {
    width: 86px;
    height: 86px;
  }
}
.calendar__event__text {
  overflow: hidden;
}
.calendar__event__text h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.calendar__category-dates {
  display: none;
}
@media (min-width: 700px) {
  .calendar__category-dates {
    float: right;
    clear: right;
  }
}
@media (min-width: 1025px) {
  .calendar__category-dates {
    display: block !important;
  }
}
.calendar__event {
  margin-bottom: 2rem;
}
.calendar .mini-cal__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.calendar .mini-cal__dates td {
  padding: 0 0.25em;
}
.calendar .mini-cal .current {
  background: #000000;
}
.calendar .mini-cal .current a {
  color: #ffffff;
}
.calendar .icon-arrow-left,
.calendar .icon-arrow-right {
  position: relative;
  width: 40px;
}
.calendar .icon-arrow-left:after,
.calendar .icon-arrow-right:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  height: 0.75rem;
  width: 0.75rem;
  background: #000000;
  border: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.calendar .control-wrap label {
  display: block;
  position: relative;
  padding-left: 30px;
}
.calendar .control-wrap label input[type=checkbox] {
  display: inline;
}
.calendar .control-wrap label input[type=checkbox]:checked + .control-text:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 12px;
  background: #000000;
  width: 8px;
  height: 8px;
  display: block;
}
.calendar .control-wrap label .control-text:before {
  content: "";
  border: 1px solid #000000;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}
.calendar .category__drop fieldset {
  border: 0;
  padding: 0;
}
.calendar__loc-description {
  margin: 0 0 1em;
}
.calendar__loc-description img {
  float: right;
}
.calendar__loc-tools a {
  display: block;
}
.calendar__loc-tools img, .calendar__loc-tools span {
  display: inline;
}
.calendar__loc-list .results__header {
  font-weight: 700;
  border-bottom: 1px solid #000000;
}
.calendar__loc-list .results ul {
  padding: 0;
}
.calendar__loc-list .results li {
  list-style: none;
}
.calendar__loc-list .results time {
  display: block;
}

/**
 * @file
 * Calendar
 *
 * Contains styles for the Calendar search Page
 */
.calendar-search__picker {
  display: inline-block;
  background-image: url("/_resources/assets/icons/calendar.png");
  width: 16px;
  height: 16px;
}
.calendar-search__col {
  margin-left: 20px;
}
.calendar-search label {
  display: block;
}
.calendar-search-results .results__header {
  font-weight: 700;
  border-bottom: 1px solid #000000;
}
.calendar-search-results .results ul {
  padding: 0;
}
.calendar-search-results .results li {
  list-style: none;
}
.calendar-search-results .results time {
  display: block;
}

/**
 * @file
 * Calendar Submit
 *
 * Contains styles for the Calendar Submit Event page
 */
.calendar-submit textarea {
  width: 100%;
  margin: 0.625em 0;
}
.calendar-submit input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  margin: 0 5px 0 0;
}
.calendar-submit input[type=radio] {
  -webkit-appearance: radio;
     -moz-appearance: radio;
          appearance: radio;
  margin: 0 5px 0 0;
}
.calendar-submit select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.calendar-submit label {
  display: block;
}
.calendar-submit label[for=eventDate] {
  display: inline-block;
}
.calendar-submit .onote {
  display: block;
}
.calendar-submit .catCol .sub {
  margin-left: 1rem;
}

/**
 * @file
 * Calendar Email Event
 *
 * Contains styles for the Calendar email an event page.
 */
.calendar-email textarea {
  width: calc(100% - 100px);
  margin-left: 100px;
  float: left;
}
.calendar-email .output {
  display: block;
}
.calendar-email label,
.calendar-email .label {
  clear: both;
  float: left;
  padding: 0 5px 0 0;
  width: 100px;
  text-align: right;
}
.calendar-email input, .calendar-email select, .calendar-email textarea {
  float: left;
  margin: 3px 0 5px 3px;
}
.calendar-email #capChk {
  display: block;
  float: left;
  margin: 0 0 0 5px;
}

/**
 * @file
 * Slick
 *
 * Slick carousel styles.
 */
.slick {
  position: relative;
}

.slick-slide {
  position: relative;
}

.slick-dots {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots button {
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  height: 40px;
  width: 40px;
  padding: 0;
}
.slick-dots button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  height: 0.5rem;
  width: 0.5rem;
  background: #000000;
  border: 0;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
li:not(.slick-active) button:after {
  background: rgba(0, 0, 0, 0.5);
}

.slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  height: 40px;
  width: 40px;
  padding: 0;
  z-index: 5;
}
.slick-arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  height: 0.75rem;
  width: 0.75rem;
  background: #000000;
  border: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slick-arrow.slick-disabled:after {
  background: rgba(0, 0, 0, 0.5);
}

.slick-next {
  right: 0;
}
/*# sourceMappingURL=maps/main.css.map */
