/* @license GPL-2.0-or-later https://www.drupal.org/licensing/faq */
:root {
    --f-spinner-width: 36px;
    --f-spinner-height: 36px;
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
    --f-spinner-stroke: 2.75
}

.f-spinner {
    margin: auto;
    padding: 0;
    width: var(--f-spinner-width);
    height: var(--f-spinner-height)
}

.f-spinner svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    animation: f-spinner-rotate 2s linear infinite
}

.f-spinner svg * {
    stroke-width: var(--f-spinner-stroke);
    fill: none
}

.f-spinner svg *:first-child {
    stroke: var(--f-spinner-color-1)
}

.f-spinner svg *:last-child {
    stroke: var(--f-spinner-color-2);
    animation: f-spinner-dash 2s ease-in-out infinite
}

@keyframes f-spinner-rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes f-spinner-dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}

.f-throwOutUp {
    animation: .175s ease-out both f-throwOutUp
}

.f-throwOutDown {
    animation: .175s ease-out both f-throwOutDown
}

@keyframes f-throwOutUp {
    to {
        transform: translate3d(0, -150px, 0);
        opacity: 0
    }
}

@keyframes f-throwOutDown {
    to {
        transform: translate3d(0, 150px, 0);
        opacity: 0
    }
}

.f-zoomInUp {
    animation: var(--f-transition-duration, 0.2s) ease-out .1s both f-zoomInUp
}

.f-zoomOutDown {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown
}

@keyframes f-zoomInUp {
    from {
        transform: scale(0.975) translate3d(0, 16px, 0);
        opacity: 0
    }

    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-zoomOutDown {
    to {
        transform: scale(0.975) translate3d(0, 16px, 0);
        opacity: 0
    }
}

.f-fadeIn {
    animation: var(--f-transition-duration, 0.2s) ease both f-fadeIn;
    z-index: 2
}

.f-fadeOut {
    animation: var(--f-transition-duration, 0.2s) ease both f-fadeOut;
    z-index: 1
}

@keyframes f-fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes f-fadeOut {
    100% {
        opacity: 0
    }
}

.f-fadeSlowIn {
    animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
    z-index: 2
}

.f-fadeSlowOut {
    animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
    z-index: 1
}

@keyframes f-fadeSlowIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes f-fadeSlowOut {
    100% {
        opacity: 0
    }
}

.f-fadeFastIn {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
    z-index: 2
}

.f-fadeFastOut {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;
    z-index: 2
}

@keyframes f-fadeFastIn {
    0% {
        opacity: .75
    }

    100% {
        opacity: 1
    }
}

@keyframes f-fadeFastOut {
    100% {
        opacity: 0
    }
}

.f-crossfadeIn {
    animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
    z-index: 2
}

.f-crossfadeOut {
    animation: calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;
    z-index: 1
}

@keyframes f-crossfadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes f-crossfadeOut {
    100% {
        opacity: 0
    }
}

.f-slideIn.from-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext
}

.f-slideIn.from-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev
}

.f-slideOut.to-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext
}

.f-slideOut.to-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev
}

@keyframes f-slideInPrev {
    0% {
        transform: translateX(100%)
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes f-slideInNext {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translate3d(0, 0, 0)
    }
}

@keyframes f-slideOutNext {
    100% {
        transform: translateX(-100%)
    }
}

@keyframes f-slideOutPrev {
    100% {
        transform: translateX(100%)
    }
}

.f-classicIn.from-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
    z-index: 2
}

.f-classicIn.from-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
    z-index: 2
}

.f-classicOut.to-next {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
    z-index: 1
}

.f-classicOut.to-prev {
    animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
    z-index: 1
}

@keyframes f-classicInNext {
    0% {
        transform: translateX(-75px);
        opacity: 0
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-classicInPrev {
    0% {
        transform: translateX(75px);
        opacity: 0
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes f-classicOutNext {
    100% {
        transform: translateX(-75px);
        opacity: 0
    }
}

@keyframes f-classicOutPrev {
    100% {
        transform: translateX(75px);
        opacity: 0
    }
}

:root {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border: 0;
    --f-button-border-radius: 0;
    --f-button-color: #374151;
    --f-button-bg: #f8f8f8;
    --f-button-hover-bg: #e0e0e0;
    --f-button-active-bg: #d0d0d0;
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: none;
    --f-button-svg-disabled-opacity: 0.65
}

.f-button {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
    position: relative;
    margin: 0;
    padding: 0;
    width: var(--f-button-width);
    height: var(--f-button-height);
    border: var(--f-button-border);
    border-radius: var(--f-button-border-radius);
    color: var(--f-button-color);
    background: var(--f-button-bg);
    box-shadow: var(--f-button-shadow);
    pointer-events: all;
    cursor: pointer;
    transition: var(--f-button-transition)
}

@media(hover:hover) {
    .f-button:hover:not([disabled]) {
        color: var(--f-button-hover-color);
        background-color: var(--f-button-hover-bg)
    }
}

.f-button:active:not([disabled]) {
    background-color: var(--f-button-active-bg)
}

.f-button:focus:not(:focus-visible) {
    outline: none
}

.f-button:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))
}

.f-button svg {
    width: var(--f-button-svg-width);
    height: var(--f-button-svg-height);
    fill: var(--f-button-svg-fill);
    stroke: currentColor;
    stroke-width: var(--f-button-svg-stroke-width);
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: opacity .15s ease;
    transform: var(--f-button-transform);
    filter: var(--f-button-svg-filter);
    pointer-events: none
}

.f-button[disabled] {
    cursor: default
}

.f-button[disabled] svg {
    opacity: var(--f-button-svg-disabled-opacity)
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
    position: absolute;
    z-index: 1
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
    top: 50%;
    transform: translateY(-50%)
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
    left: var(--f-button-prev-pos)
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
    left: auto;
    right: var(--f-button-next-pos)
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
    right: auto;
    left: var(--f-button-prev-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
    top: auto;
    left: 50%;
    transform: translateX(-50%)
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
    top: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
    bottom: var(--f-button-next-pos)
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
    transform: rotate(90deg)
}

html.with-fancybox {
    width: auto;
    overflow: visible;
    scroll-behavior: auto
}

html.with-fancybox body {
    touch-action: none
}

html.with-fancybox body.hide-scrollbar {
    width: auto;
    margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
    overflow: hidden !important;
    overscroll-behavior-y: none
}

.fancybox__container {
    --fancybox-color: #dbdbdb;
    --fancybox-hover-color: #fff;
    --fancybox-bg: rgba(24, 24, 27, 0.98);
    --fancybox-slide-gap: 10px;
    --f-spinner-width: 50px;
    --f-spinner-height: 50px;
    --f-spinner-color-1: rgba(255, 255, 255, 0.1);
    --f-spinner-color-2: #bbb;
    --f-spinner-stroke: 3.65;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: visible;
    z-index: var(--fancybox-zIndex, 1050);
    outline: none;
    transform-origin: top left;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overscroll-behavior-y: contain
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
    box-sizing: inherit
}

.fancybox__container::backdrop {
    background-color: rgba(0, 0, 0, 0)
}

.fancybox__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--fancybox-bg);
    opacity: var(--fancybox-opacity, 1);
    will-change: opacity
}

.fancybox__carousel {
    position: relative;
    box-sizing: border-box;
    flex: 1;
    min-height: 0;
    z-index: 10;
    overflow-y: visible;
    overflow-x: clip
}

.fancybox__viewport {
    width: 100%;
    height: 100%
}

.fancybox__viewport.is-draggable {
    cursor: move;
    cursor: grab
}

.fancybox__viewport.is-dragging {
    cursor: move;
    cursor: grabbing
}

.fancybox__track {
    display: flex;
    margin: 0 auto;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0 var(--fancybox-slide-gap) 0 0;
    padding: 4px;
    overflow: auto;
    overscroll-behavior: contain;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
    padding-top: 40px
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
    overflow: hidden
}

.fancybox__slide.has-image {
    overflow: hidden
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
    overflow: visible
}

.fancybox__slide::before,
.fancybox__slide::after {
    content: "";
    flex: 0 0 0;
    margin: auto
}

.fancybox__content {
    align-self: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    padding: 2rem;
    max-width: 100%;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    cursor: default;
    border-radius: 0;
    z-index: 20
}

.is-loading .fancybox__content {
    opacity: 0
}

.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
    cursor: auto
}

.fancybox__slide.has-image>.fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: 1px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden
}

.fancybox__slide.has-image>.fancybox__content>picture>img {
    width: 100%;
    height: auto;
    max-height: 100%
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
    visibility: hidden
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
    filter: blur(0px);
    will-change: transform, width, height
}

.fancybox-image {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    user-select: none
}

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    flex-shrink: 0;
    margin: 0;
    padding: 14px 0 4px 0;
    overflow-wrap: anywhere;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    cursor: auto;
    visibility: visible
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
    opacity: 0;
    visibility: hidden
}

.is-compact .fancybox__caption {
    padding-bottom: 0
}

.f-button.is-close-btn {
    --f-button-svg-stroke-width: 2;
    position: absolute;
    top: 0;
    right: 8px;
    z-index: 40
}

.fancybox__content>.f-button.is-close-btn {
    --f-button-width: 34px;
    --f-button-height: 34px;
    --f-button-border-radius: 4px;
    --f-button-color: var(--fancybox-color, #fff);
    --f-button-hover-color: var(--fancybox-color, #fff);
    --f-button-bg: transparent;
    --f-button-hover-bg: transparent;
    --f-button-active-bg: transparent;
    --f-button-svg-width: 22px;
    --f-button-svg-height: 22px;
    position: absolute;
    top: -38px;
    right: 0;
    opacity: .75
}

.is-loading .fancybox__content>.f-button.is-close-btn {
    visibility: hidden
}

.is-zooming-out .fancybox__content>.f-button.is-close-btn {
    visibility: hidden
}

.fancybox__content>.f-button.is-close-btn:hover {
    opacity: 1
}

.fancybox__footer {
    padding: 0;
    margin: 0;
    position: relative
}

.fancybox__footer .fancybox__caption {
    width: 100%;
    padding: 24px;
    opacity: var(--fancybox-opacity, 1);
    transition: all .25s ease
}

.is-compact .fancybox__footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(24, 24, 27, .5)
}

.is-compact .fancybox__footer .fancybox__caption {
    padding: 12px
}

.is-compact .fancybox__content>.f-button.is-close-btn {
    --f-button-border-radius: 50%;
    --f-button-color: #fff;
    --f-button-hover-color: #fff;
    --f-button-outline-color: #000;
    --f-button-bg: rgba(0, 0, 0, 0.6);
    --f-button-active-bg: rgba(0, 0, 0, 0.6);
    --f-button-hover-bg: rgba(0, 0, 0, 0.6);
    --f-button-svg-width: 18px;
    --f-button-svg-height: 18px;
    --f-button-svg-filter: none;
    top: 5px;
    right: 5px
}

.fancybox__nav {
    --f-button-width: 50px;
    --f-button-height: 50px;
    --f-button-border: 0;
    --f-button-border-radius: 50%;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: transparent;
    --f-button-hover-bg: rgba(24, 24, 27, 0.3);
    --f-button-active-bg: rgba(24, 24, 27, 0.5);
    --f-button-shadow: none;
    --f-button-transition: all 0.15s ease;
    --f-button-transform: none;
    --f-button-svg-width: 26px;
    --f-button-svg-height: 26px;
    --f-button-svg-stroke-width: 2.5;
    --f-button-svg-fill: none;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
    --f-button-svg-disabled-opacity: 0.65;
    --f-button-next-pos: 1rem;
    --f-button-prev-pos: 1rem;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__nav .f-button:before {
    position: absolute;
    content: "";
    top: -30px;
    right: -20px;
    left: -20px;
    bottom: -30px;
    z-index: 1
}

.is-idle .fancybox__nav {
    animation: .15s ease-out both f-fadeOut
}

.is-idle.is-compact .fancybox__footer {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__slide>.f-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
    z-index: 30;
    cursor: pointer
}

.fancybox-protected {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    user-select: none
}

.fancybox-ghost {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    z-index: 40;
    user-select: none;
    pointer-events: none
}

.fancybox-focus-guard {
    outline: none;
    opacity: 0;
    position: fixed;
    pointer-events: none
}

.fancybox__container:not([aria-hidden]) {
    opacity: 0
}

.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content) {
    animation: .25s ease .1s backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
    animation: .35s ease backwards f-fadeIn
}

.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content) {
    animation: .15s ease forwards f-fadeOut
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
    animation: .35s ease forwards f-fadeOut
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
    width: 100%;
    height: 100%
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
    width: calc(100% - 120px);
    height: 90%
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, .9);
    color: #fff
}

.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video,
.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0)
}

.fancybox-placeholder {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.f-carousel__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-outline: 0;
    --f-thumb-outline-color: #5eb0ef;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1;
    --f-thumb-border-radius: 2px;
    --f-thumb-offset: 0px;
    --f-button-next-pos: 0;
    --f-button-prev-pos: 0
}

.f-carousel__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1;
    --f-thumb-selected-opacity: 1
}

.f-carousel__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 20px;
    --f-thumb-clip-width: 46px
}

.f-thumbs {
    position: relative;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    user-select: none;
    perspective: 1000px;
    transform: translateZ(0)
}

.f-thumbs .f-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-image: linear-gradient(#ebeff2, #e2e8f0);
    z-index: -1
}

.f-thumbs .f-spinner svg {
    display: none
}

.f-thumbs.is-vertical {
    height: 100%
}

.f-thumbs__viewport {
    width: 100%;
    height: auto;
    overflow: hidden
}

.f-thumbs__track {
    display: flex;
    will-change: transform
}

.f-thumbs__slide {
    position: relative;
    flex: 0 0 auto;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: var(--f-thumb-width);
    min-width: var(--f-thumb-width);
    height: var(--f-thumb-height);
    overflow: visible;
    cursor: pointer
}

.f-thumbs__slide.is-loading img {
    opacity: 0
}

.is-classic .f-thumbs__viewport {
    height: 100%
}

.is-modern .f-thumbs__track {
    width: max-content
}

.is-modern .f-thumbs__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--left, 0)*1px);
    width: calc(100% - var(--width, 0)*1px);
    cursor: pointer
}

.is-modern .f-thumbs__slide {
    --clip-path: inset(0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round var(--f-thumb-border-radius, 0));
    transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
    transition: none;
    pointer-events: none
}

.is-modern .f-thumbs__slide>* {
    clip-path: var(--clip-path)
}

.is-modern:not(.is-using-mouse) .f-thumbs__slide:focus-within {
    filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))
}

.is-modern.in-touch .f-thumbs__slide {
    filter: none
}

.is-modern.is-resting .f-thumbs__slide {
    transition: all .33s ease
}

.is-modern.is-resting .f-thumbs__slide>* {
    transition: all .33s ease
}

.f-thumbs__slide__button {
    appearance: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
    border-radius: var(--f-thumb-border-radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    outline: none;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    opacity: var(--f-thumb-opacity);
    transition: opacity .2s ease
}

.f-thumbs__slide__button:hover {
    opacity: var(--f-thumb-hover-opacity)
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
    outline: none
}

.f-thumbs__slide__button:focus-visible {
    outline: none;
    opacity: var(--f-thumb-selected-opacity)
}

.is-nav-selected .f-thumbs__slide__button {
    opacity: var(--f-thumb-selected-opacity)
}

.is-nav-selected .f-thumbs__slide__button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    bottom: 0;
    border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
    border-radius: var(--f-thumb-border-radius);
    animation: f-fadeIn .2s ease-out;
    z-index: 10
}

.f-thumbs__slide__img {
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--f-thumb-offset);
    box-sizing: border-box;
    pointer-events: none;
    object-fit: cover
}

.f-thumbs.is-horizontal .f-thumbs__track {
    margin: 0 auto;
    padding: 8px 0 12px 0
}

.f-thumbs.is-horizontal .f-thumbs__slide {
    margin: 0 var(--f-thumb-gap) 0 0
}

.f-thumbs.is-vertical .f-thumbs__track {
    flex-wrap: wrap;
    margin: auto 0;
    padding: 0 8px
}

.f-thumbs.is-vertical .f-thumbs__slide {
    margin: 0 0 var(--f-thumb-gap) 0
}

.fancybox__thumbs {
    --f-thumb-width: 96px;
    --f-thumb-height: 72px;
    --f-thumb-border-radius: 2px;
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: #ededed;
    position: relative;
    opacity: var(--fancybox-opacity, 1);
    transition: max-height .35s cubic-bezier(0.23, 1, 0.32, 1)
}

.fancybox__thumbs.is-classic {
    --f-thumb-gap: 8px;
    --f-thumb-opacity: 0.5;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-classic .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))
}

.fancybox__thumbs.is-modern {
    --f-thumb-gap: 4px;
    --f-thumb-extra-gap: 20px;
    --f-thumb-clip-width: 46px;
    --f-thumb-opacity: 1;
    --f-thumb-hover-opacity: 1
}

.fancybox__thumbs.is-modern .f-spinner {
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))
}

.fancybox__thumbs.is-horizontal {
    padding: 0 var(--f-thumb-gap)
}

.fancybox__thumbs.is-vertical {
    padding: var(--f-thumb-gap) 0
}

.is-compact .fancybox__thumbs {
    --f-thumb-width: 64px;
    --f-thumb-clip-width: 32px;
    --f-thumb-height: 48px;
    --f-thumb-extra-gap: 10px
}

.fancybox__thumbs.is-masked {
    max-height: 0px !important
}

.is-closing .fancybox__thumbs {
    transition: none !important
}

.fancybox__toolbar {
    --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
    --f-button-width: 46px;
    --f-button-height: 46px;
    --f-button-color: var(--fancybox-color);
    --f-button-hover-color: var(--fancybox-hover-color);
    --f-button-bg: rgba(24, 24, 27, 0.65);
    --f-button-hover-bg: rgba(70, 70, 73, 0.65);
    --f-button-active-bg: rgba(90, 90, 93, 0.65);
    --f-button-border-radius: 0;
    --f-button-svg-width: 24px;
    --f-button-svg-height: 24px;
    --f-button-svg-stroke-width: 1.5;
    --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
    --f-button-svg-fill: none;
    --f-button-svg-disabled-opacity: 0.65;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
    color: var(--fancybox-color, currentColor);
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
    pointer-events: none;
    z-index: 20
}

.fancybox__toolbar :focus-visible {
    z-index: 1
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.is-idle .fancybox__toolbar {
    pointer-events: none;
    animation: .15s ease-out both f-fadeOut
}

.fancybox__toolbar__column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
    flex-grow: 1;
    flex-basis: 0
}

.fancybox__toolbar__column.is-right {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap
}

.fancybox__infobar {
    padding: 0 5px;
    line-height: var(--f-button-height);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
    cursor: default;
    user-select: none
}

.fancybox__infobar span {
    padding: 0 5px
}

.fancybox__infobar:not(:first-child):not(:last-child) {
    background: var(--f-button-bg)
}

[data-fancybox-toggle-slideshow] {
    position: relative
}

[data-fancybox-toggle-slideshow] .f-progress {
    height: 100%;
    opacity: .3
}

[data-fancybox-toggle-slideshow] svg g:first-child {
    display: flex
}

[data-fancybox-toggle-slideshow] svg g:last-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
    display: none
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
    display: flex
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
    display: flex
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
    display: none
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
    display: flex
}

.f-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
    z-index: 30;
    user-select: none;
    pointer-events: none
}

@font-face {
    font-family: 'swiper-icons';
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal;
}

:root {
    --swiper-theme-color: #007aff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.grid-container .grid-container {
    padding-right: 0;
    padding-left: 0
}

.small-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.small-text p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.tiny-text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.tiny-text p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.stat {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 0.8
}

@media print,
screen and (min-width:48.0625em) {
    .stat {
        font-size: 5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .stat {
        font-size: 6rem
    }
}

* {
    box-sizing: border-box
}

@media(prefers-reduced-motion:no-preference) {
    * {
        scroll-behavior: smooth
    }
}

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

body {
    margin: 0;
    color: #000;
    font-family: "franklin-gothic-atf", sans-serif;
    font-size: 16px;
    display: block
}

main {
    display: block
}

h1,
.h1 {
    font-family: aleo, serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1
}

@media print,
screen and (min-width:48.0625em) {

    h1,
    .h1 {
        font-size: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    h1,
    .h1 {
        font-size: 4rem
    }
}

h2,
.h2 {
    font-family: aleo, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    h2,
    .h2 {
        font-size: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    h2,
    .h2 {
        font-size: 2.75rem
    }
}

h3,
.h3 {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    h3,
    .h3 {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    h3,
    .h3 {
        font-size: 2.5rem
    }
}

h4,
.h4 {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    h4,
    .h4 {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    h4,
    .h4 {
        font-size: 2rem
    }
}

h5,
.h5 {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    h5,
    .h5 {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    h5,
    .h5 {
        font-size: 1.5rem
    }
}

h6,
.h6 {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    h6,
    .h6 {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    h6,
    .h6 {
        font-size: 1.375rem
    }
}

p,
.p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {

    p,
    .p {
        font-size: 1.125rem
    }
}

strong,
.strong {
    font-weight: 500
}

.skip-link a:focus {
    position: absolute !important;
    z-index: 999;
    overflow: visible;
    clip: unset;
    width: auto;
    height: auto;
    padding: 10px;
    color: #fff;
    background: #000;
    font-family: "franklin-gothic-atf", sans-serif;
    font-size: 22px;
    font-weight: 700
}

strong {
    font-weight: 500
}

a {
    color: #002855
}

a:hover {
    color: #063d7a
}

button {
    cursor: pointer;
    font-size: 1rem
}

ol,
ul {
    list-style-type: none
}

iframe {
    max-width: 100%
}

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

dl,
pre,
figure {
    margin: 0;
    padding: 0
}

[data-fancybox-modal] {
    display: none
}

:root {
    --iframe-height: 9;
    --iframe-width: 16
}

.grid-container {
    max-width: 86rem;
    margin-left: auto;
    margin-right: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-container {
        padding-right: 2rem;
        padding-left: 2rem
    }
}

.grid-container.fluid {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 1.25rem;
    padding-left: 1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-container.fluid {
        padding-right: 2rem;
        padding-left: 2rem
    }
}

.grid-container.full {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0
}

.grid-x {
    display: flex;
    flex-flow: row wrap
}

.cell {
    flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
    width: 100%
}

.cell.auto {
    flex: 1 1 0
}

.cell.shrink {
    flex: 0 0 auto
}

.grid-x>.auto {
    width: auto
}

.grid-x>.shrink {
    width: auto
}

.grid-x>.initial-shrink,
.grid-x>.initial-full,
.grid-x>.initial-1,
.grid-x>.initial-2,
.grid-x>.initial-3,
.grid-x>.initial-4,
.grid-x>.initial-5,
.grid-x>.initial-6,
.grid-x>.initial-7,
.grid-x>.initial-8,
.grid-x>.initial-9,
.grid-x>.initial-10,
.grid-x>.initial-11,
.grid-x>.initial-12 {
    flex-basis: auto
}

@media print,
screen and (min-width:20.0625em) {

    .grid-x>.tiny-shrink,
    .grid-x>.tiny-full,
    .grid-x>.tiny-1,
    .grid-x>.tiny-2,
    .grid-x>.tiny-3,
    .grid-x>.tiny-4,
    .grid-x>.tiny-5,
    .grid-x>.tiny-6,
    .grid-x>.tiny-7,
    .grid-x>.tiny-8,
    .grid-x>.tiny-9,
    .grid-x>.tiny-10,
    .grid-x>.tiny-11,
    .grid-x>.tiny-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width:40.0625em) {

    .grid-x>.small-shrink,
    .grid-x>.small-full,
    .grid-x>.small-1,
    .grid-x>.small-2,
    .grid-x>.small-3,
    .grid-x>.small-4,
    .grid-x>.small-5,
    .grid-x>.small-6,
    .grid-x>.small-7,
    .grid-x>.small-8,
    .grid-x>.small-9,
    .grid-x>.small-10,
    .grid-x>.small-11,
    .grid-x>.small-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width:48.0625em) {

    .grid-x>.medium-shrink,
    .grid-x>.medium-full,
    .grid-x>.medium-1,
    .grid-x>.medium-2,
    .grid-x>.medium-3,
    .grid-x>.medium-4,
    .grid-x>.medium-5,
    .grid-x>.medium-6,
    .grid-x>.medium-7,
    .grid-x>.medium-8,
    .grid-x>.medium-9,
    .grid-x>.medium-10,
    .grid-x>.medium-11,
    .grid-x>.medium-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width:64.0625em) {

    .grid-x>.large-shrink,
    .grid-x>.large-full,
    .grid-x>.large-1,
    .grid-x>.large-2,
    .grid-x>.large-3,
    .grid-x>.large-4,
    .grid-x>.large-5,
    .grid-x>.large-6,
    .grid-x>.large-7,
    .grid-x>.large-8,
    .grid-x>.large-9,
    .grid-x>.large-10,
    .grid-x>.large-11,
    .grid-x>.large-12 {
        flex-basis: auto
    }
}

.grid-x>.initial-12,
.grid-x>.initial-11,
.grid-x>.initial-10,
.grid-x>.initial-9,
.grid-x>.initial-8,
.grid-x>.initial-7,
.grid-x>.initial-6,
.grid-x>.initial-5,
.grid-x>.initial-4,
.grid-x>.initial-3,
.grid-x>.initial-2,
.grid-x>.initial-1 {
    flex: 0 0 auto
}

.grid-x>.initial-1 {
    width: 8.3333333333%
}

.grid-x>.initial-2 {
    width: 16.6666666667%
}

.grid-x>.initial-3 {
    width: 25%
}

.grid-x>.initial-4 {
    width: 33.3333333333%
}

.grid-x>.initial-5 {
    width: 41.6666666667%
}

.grid-x>.initial-6 {
    width: 50%
}

.grid-x>.initial-7 {
    width: 58.3333333333%
}

.grid-x>.initial-8 {
    width: 66.6666666667%
}

.grid-x>.initial-9 {
    width: 75%
}

.grid-x>.initial-10 {
    width: 83.3333333333%
}

.grid-x>.initial-11 {
    width: 91.6666666667%
}

.grid-x>.initial-12 {
    width: 100%
}

@media print,
screen and (min-width:20.0625em) {
    .grid-x>.tiny-auto {
        flex: 1 1 0;
        width: auto
    }

    .grid-x>.tiny-12,
    .grid-x>.tiny-11,
    .grid-x>.tiny-10,
    .grid-x>.tiny-9,
    .grid-x>.tiny-8,
    .grid-x>.tiny-7,
    .grid-x>.tiny-6,
    .grid-x>.tiny-5,
    .grid-x>.tiny-4,
    .grid-x>.tiny-3,
    .grid-x>.tiny-2,
    .grid-x>.tiny-1,
    .grid-x>.tiny-shrink {
        flex: 0 0 auto
    }

    .grid-x>.tiny-shrink {
        width: auto
    }

    .grid-x>.tiny-1 {
        width: 8.3333333333%
    }

    .grid-x>.tiny-2 {
        width: 16.6666666667%
    }

    .grid-x>.tiny-3 {
        width: 25%
    }

    .grid-x>.tiny-4 {
        width: 33.3333333333%
    }

    .grid-x>.tiny-5 {
        width: 41.6666666667%
    }

    .grid-x>.tiny-6 {
        width: 50%
    }

    .grid-x>.tiny-7 {
        width: 58.3333333333%
    }

    .grid-x>.tiny-8 {
        width: 66.6666666667%
    }

    .grid-x>.tiny-9 {
        width: 75%
    }

    .grid-x>.tiny-10 {
        width: 83.3333333333%
    }

    .grid-x>.tiny-11 {
        width: 91.6666666667%
    }

    .grid-x>.tiny-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:40.0625em) {
    .grid-x>.small-auto {
        flex: 1 1 0;
        width: auto
    }

    .grid-x>.small-12,
    .grid-x>.small-11,
    .grid-x>.small-10,
    .grid-x>.small-9,
    .grid-x>.small-8,
    .grid-x>.small-7,
    .grid-x>.small-6,
    .grid-x>.small-5,
    .grid-x>.small-4,
    .grid-x>.small-3,
    .grid-x>.small-2,
    .grid-x>.small-1,
    .grid-x>.small-shrink {
        flex: 0 0 auto
    }

    .grid-x>.small-shrink {
        width: auto
    }

    .grid-x>.small-1 {
        width: 8.3333333333%
    }

    .grid-x>.small-2 {
        width: 16.6666666667%
    }

    .grid-x>.small-3 {
        width: 25%
    }

    .grid-x>.small-4 {
        width: 33.3333333333%
    }

    .grid-x>.small-5 {
        width: 41.6666666667%
    }

    .grid-x>.small-6 {
        width: 50%
    }

    .grid-x>.small-7 {
        width: 58.3333333333%
    }

    .grid-x>.small-8 {
        width: 66.6666666667%
    }

    .grid-x>.small-9 {
        width: 75%
    }

    .grid-x>.small-10 {
        width: 83.3333333333%
    }

    .grid-x>.small-11 {
        width: 91.6666666667%
    }

    .grid-x>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .grid-x>.medium-auto {
        flex: 1 1 0;
        width: auto
    }

    .grid-x>.medium-12,
    .grid-x>.medium-11,
    .grid-x>.medium-10,
    .grid-x>.medium-9,
    .grid-x>.medium-8,
    .grid-x>.medium-7,
    .grid-x>.medium-6,
    .grid-x>.medium-5,
    .grid-x>.medium-4,
    .grid-x>.medium-3,
    .grid-x>.medium-2,
    .grid-x>.medium-1,
    .grid-x>.medium-shrink {
        flex: 0 0 auto
    }

    .grid-x>.medium-shrink {
        width: auto
    }

    .grid-x>.medium-1 {
        width: 8.3333333333%
    }

    .grid-x>.medium-2 {
        width: 16.6666666667%
    }

    .grid-x>.medium-3 {
        width: 25%
    }

    .grid-x>.medium-4 {
        width: 33.3333333333%
    }

    .grid-x>.medium-5 {
        width: 41.6666666667%
    }

    .grid-x>.medium-6 {
        width: 50%
    }

    .grid-x>.medium-7 {
        width: 58.3333333333%
    }

    .grid-x>.medium-8 {
        width: 66.6666666667%
    }

    .grid-x>.medium-9 {
        width: 75%
    }

    .grid-x>.medium-10 {
        width: 83.3333333333%
    }

    .grid-x>.medium-11 {
        width: 91.6666666667%
    }

    .grid-x>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .grid-x>.large-auto {
        flex: 1 1 0;
        width: auto
    }

    .grid-x>.large-12,
    .grid-x>.large-11,
    .grid-x>.large-10,
    .grid-x>.large-9,
    .grid-x>.large-8,
    .grid-x>.large-7,
    .grid-x>.large-6,
    .grid-x>.large-5,
    .grid-x>.large-4,
    .grid-x>.large-3,
    .grid-x>.large-2,
    .grid-x>.large-1,
    .grid-x>.large-shrink {
        flex: 0 0 auto
    }

    .grid-x>.large-shrink {
        width: auto
    }

    .grid-x>.large-1 {
        width: 8.3333333333%
    }

    .grid-x>.large-2 {
        width: 16.6666666667%
    }

    .grid-x>.large-3 {
        width: 25%
    }

    .grid-x>.large-4 {
        width: 33.3333333333%
    }

    .grid-x>.large-5 {
        width: 41.6666666667%
    }

    .grid-x>.large-6 {
        width: 50%
    }

    .grid-x>.large-7 {
        width: 58.3333333333%
    }

    .grid-x>.large-8 {
        width: 66.6666666667%
    }

    .grid-x>.large-9 {
        width: 75%
    }

    .grid-x>.large-10 {
        width: 83.3333333333%
    }

    .grid-x>.large-11 {
        width: 91.6666666667%
    }

    .grid-x>.large-12 {
        width: 100%
    }
}

.grid-margin-x:not(.grid-x)>.cell {
    width: auto
}

.grid-margin-y:not(.grid-y)>.cell {
    height: auto
}

.grid-margin-x {
    margin-left: -1.25rem;
    margin-right: -1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-margin-x {
        margin-left: -2rem;
        margin-right: -2rem
    }
}

.grid-margin-x>.cell {
    width: calc(100% - 2.5rem);
    margin-left: 1.25rem;
    margin-right: 1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-margin-x>.cell {
        width: calc(100% - 4rem);
        margin-left: 2rem;
        margin-right: 2rem
    }
}

.grid-margin-x>.auto {
    width: auto
}

.grid-margin-x>.shrink {
    width: auto
}

.grid-margin-x>.initial-1 {
    width: calc(8.3333333333% - 2.5rem)
}

.grid-margin-x>.initial-2 {
    width: calc(16.6666666667% - 2.5rem)
}

.grid-margin-x>.initial-3 {
    width: calc(25% - 2.5rem)
}

.grid-margin-x>.initial-4 {
    width: calc(33.3333333333% - 2.5rem)
}

.grid-margin-x>.initial-5 {
    width: calc(41.6666666667% - 2.5rem)
}

.grid-margin-x>.initial-6 {
    width: calc(50% - 2.5rem)
}

.grid-margin-x>.initial-7 {
    width: calc(58.3333333333% - 2.5rem)
}

.grid-margin-x>.initial-8 {
    width: calc(66.6666666667% - 2.5rem)
}

.grid-margin-x>.initial-9 {
    width: calc(75% - 2.5rem)
}

.grid-margin-x>.initial-10 {
    width: calc(83.3333333333% - 2.5rem)
}

.grid-margin-x>.initial-11 {
    width: calc(91.6666666667% - 2.5rem)
}

.grid-margin-x>.initial-12 {
    width: calc(100% - 2.5rem)
}

@media print,
screen and (min-width:20.0625em) {
    .grid-margin-x>.tiny-auto {
        width: auto
    }

    .grid-margin-x>.tiny-shrink {
        width: auto
    }

    .grid-margin-x>.tiny-1 {
        width: calc(8.3333333333% - 2.5rem)
    }

    .grid-margin-x>.tiny-2 {
        width: calc(16.6666666667% - 2.5rem)
    }

    .grid-margin-x>.tiny-3 {
        width: calc(25% - 2.5rem)
    }

    .grid-margin-x>.tiny-4 {
        width: calc(33.3333333333% - 2.5rem)
    }

    .grid-margin-x>.tiny-5 {
        width: calc(41.6666666667% - 2.5rem)
    }

    .grid-margin-x>.tiny-6 {
        width: calc(50% - 2.5rem)
    }

    .grid-margin-x>.tiny-7 {
        width: calc(58.3333333333% - 2.5rem)
    }

    .grid-margin-x>.tiny-8 {
        width: calc(66.6666666667% - 2.5rem)
    }

    .grid-margin-x>.tiny-9 {
        width: calc(75% - 2.5rem)
    }

    .grid-margin-x>.tiny-10 {
        width: calc(83.3333333333% - 2.5rem)
    }

    .grid-margin-x>.tiny-11 {
        width: calc(91.6666666667% - 2.5rem)
    }

    .grid-margin-x>.tiny-12 {
        width: calc(100% - 2.5rem)
    }
}

@media print,
screen and (min-width:40.0625em) {
    .grid-margin-x>.small-auto {
        width: auto
    }

    .grid-margin-x>.small-shrink {
        width: auto
    }

    .grid-margin-x>.small-1 {
        width: calc(8.3333333333% - 2.5rem)
    }

    .grid-margin-x>.small-2 {
        width: calc(16.6666666667% - 2.5rem)
    }

    .grid-margin-x>.small-3 {
        width: calc(25% - 2.5rem)
    }

    .grid-margin-x>.small-4 {
        width: calc(33.3333333333% - 2.5rem)
    }

    .grid-margin-x>.small-5 {
        width: calc(41.6666666667% - 2.5rem)
    }

    .grid-margin-x>.small-6 {
        width: calc(50% - 2.5rem)
    }

    .grid-margin-x>.small-7 {
        width: calc(58.3333333333% - 2.5rem)
    }

    .grid-margin-x>.small-8 {
        width: calc(66.6666666667% - 2.5rem)
    }

    .grid-margin-x>.small-9 {
        width: calc(75% - 2.5rem)
    }

    .grid-margin-x>.small-10 {
        width: calc(83.3333333333% - 2.5rem)
    }

    .grid-margin-x>.small-11 {
        width: calc(91.6666666667% - 2.5rem)
    }

    .grid-margin-x>.small-12 {
        width: calc(100% - 2.5rem)
    }
}

@media print,
screen and (min-width:48.0625em) {
    .grid-margin-x>.auto {
        width: auto
    }

    .grid-margin-x>.shrink {
        width: auto
    }

    .grid-margin-x>.initial-1 {
        width: calc(8.3333333333% - 4rem)
    }

    .grid-margin-x>.initial-2 {
        width: calc(16.6666666667% - 4rem)
    }

    .grid-margin-x>.initial-3 {
        width: calc(25% - 4rem)
    }

    .grid-margin-x>.initial-4 {
        width: calc(33.3333333333% - 4rem)
    }

    .grid-margin-x>.initial-5 {
        width: calc(41.6666666667% - 4rem)
    }

    .grid-margin-x>.initial-6 {
        width: calc(50% - 4rem)
    }

    .grid-margin-x>.initial-7 {
        width: calc(58.3333333333% - 4rem)
    }

    .grid-margin-x>.initial-8 {
        width: calc(66.6666666667% - 4rem)
    }

    .grid-margin-x>.initial-9 {
        width: calc(75% - 4rem)
    }

    .grid-margin-x>.initial-10 {
        width: calc(83.3333333333% - 4rem)
    }

    .grid-margin-x>.initial-11 {
        width: calc(91.6666666667% - 4rem)
    }

    .grid-margin-x>.initial-12 {
        width: calc(100% - 4rem)
    }

    .grid-margin-x>.tiny-auto {
        width: auto
    }

    .grid-margin-x>.tiny-shrink {
        width: auto
    }

    .grid-margin-x>.tiny-1 {
        width: calc(8.3333333333% - 4rem)
    }

    .grid-margin-x>.tiny-2 {
        width: calc(16.6666666667% - 4rem)
    }

    .grid-margin-x>.tiny-3 {
        width: calc(25% - 4rem)
    }

    .grid-margin-x>.tiny-4 {
        width: calc(33.3333333333% - 4rem)
    }

    .grid-margin-x>.tiny-5 {
        width: calc(41.6666666667% - 4rem)
    }

    .grid-margin-x>.tiny-6 {
        width: calc(50% - 4rem)
    }

    .grid-margin-x>.tiny-7 {
        width: calc(58.3333333333% - 4rem)
    }

    .grid-margin-x>.tiny-8 {
        width: calc(66.6666666667% - 4rem)
    }

    .grid-margin-x>.tiny-9 {
        width: calc(75% - 4rem)
    }

    .grid-margin-x>.tiny-10 {
        width: calc(83.3333333333% - 4rem)
    }

    .grid-margin-x>.tiny-11 {
        width: calc(91.6666666667% - 4rem)
    }

    .grid-margin-x>.tiny-12 {
        width: calc(100% - 4rem)
    }

    .grid-margin-x>.small-auto {
        width: auto
    }

    .grid-margin-x>.small-shrink {
        width: auto
    }

    .grid-margin-x>.small-1 {
        width: calc(8.3333333333% - 4rem)
    }

    .grid-margin-x>.small-2 {
        width: calc(16.6666666667% - 4rem)
    }

    .grid-margin-x>.small-3 {
        width: calc(25% - 4rem)
    }

    .grid-margin-x>.small-4 {
        width: calc(33.3333333333% - 4rem)
    }

    .grid-margin-x>.small-5 {
        width: calc(41.6666666667% - 4rem)
    }

    .grid-margin-x>.small-6 {
        width: calc(50% - 4rem)
    }

    .grid-margin-x>.small-7 {
        width: calc(58.3333333333% - 4rem)
    }

    .grid-margin-x>.small-8 {
        width: calc(66.6666666667% - 4rem)
    }

    .grid-margin-x>.small-9 {
        width: calc(75% - 4rem)
    }

    .grid-margin-x>.small-10 {
        width: calc(83.3333333333% - 4rem)
    }

    .grid-margin-x>.small-11 {
        width: calc(91.6666666667% - 4rem)
    }

    .grid-margin-x>.small-12 {
        width: calc(100% - 4rem)
    }

    .grid-margin-x>.medium-auto {
        width: auto
    }

    .grid-margin-x>.medium-shrink {
        width: auto
    }

    .grid-margin-x>.medium-1 {
        width: calc(8.3333333333% - 4rem)
    }

    .grid-margin-x>.medium-2 {
        width: calc(16.6666666667% - 4rem)
    }

    .grid-margin-x>.medium-3 {
        width: calc(25% - 4rem)
    }

    .grid-margin-x>.medium-4 {
        width: calc(33.3333333333% - 4rem)
    }

    .grid-margin-x>.medium-5 {
        width: calc(41.6666666667% - 4rem)
    }

    .grid-margin-x>.medium-6 {
        width: calc(50% - 4rem)
    }

    .grid-margin-x>.medium-7 {
        width: calc(58.3333333333% - 4rem)
    }

    .grid-margin-x>.medium-8 {
        width: calc(66.6666666667% - 4rem)
    }

    .grid-margin-x>.medium-9 {
        width: calc(75% - 4rem)
    }

    .grid-margin-x>.medium-10 {
        width: calc(83.3333333333% - 4rem)
    }

    .grid-margin-x>.medium-11 {
        width: calc(91.6666666667% - 4rem)
    }

    .grid-margin-x>.medium-12 {
        width: calc(100% - 4rem)
    }
}

@media print,
screen and (min-width:64.0625em) {
    .grid-margin-x>.large-auto {
        width: auto
    }

    .grid-margin-x>.large-shrink {
        width: auto
    }

    .grid-margin-x>.large-1 {
        width: calc(8.3333333333% - 4rem)
    }

    .grid-margin-x>.large-2 {
        width: calc(16.6666666667% - 4rem)
    }

    .grid-margin-x>.large-3 {
        width: calc(25% - 4rem)
    }

    .grid-margin-x>.large-4 {
        width: calc(33.3333333333% - 4rem)
    }

    .grid-margin-x>.large-5 {
        width: calc(41.6666666667% - 4rem)
    }

    .grid-margin-x>.large-6 {
        width: calc(50% - 4rem)
    }

    .grid-margin-x>.large-7 {
        width: calc(58.3333333333% - 4rem)
    }

    .grid-margin-x>.large-8 {
        width: calc(66.6666666667% - 4rem)
    }

    .grid-margin-x>.large-9 {
        width: calc(75% - 4rem)
    }

    .grid-margin-x>.large-10 {
        width: calc(83.3333333333% - 4rem)
    }

    .grid-margin-x>.large-11 {
        width: calc(91.6666666667% - 4rem)
    }

    .grid-margin-x>.large-12 {
        width: calc(100% - 4rem)
    }
}

.grid-padding-x .grid-padding-x {
    margin-right: -1.25rem;
    margin-left: -1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-padding-x .grid-padding-x {
        margin-right: -2rem;
        margin-left: -2rem
    }
}

.grid-container:not(.full)>.grid-padding-x {
    margin-right: -1.25rem;
    margin-left: -1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-container:not(.full)>.grid-padding-x {
        margin-right: -2rem;
        margin-left: -2rem
    }
}

.grid-padding-x>.cell {
    padding-right: 1.25rem;
    padding-left: 1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-padding-x>.cell {
        padding-right: 2rem;
        padding-left: 2rem
    }
}

.initial-up-1>.cell {
    width: 100%
}

.initial-up-2>.cell {
    width: 50%
}

.initial-up-3>.cell {
    width: 33.3333333333%
}

.initial-up-4>.cell {
    width: 25%
}

.initial-up-5>.cell {
    width: 20%
}

.initial-up-6>.cell {
    width: 16.6666666667%
}

.initial-up-7>.cell {
    width: 14.2857142857%
}

.initial-up-8>.cell {
    width: 12.5%
}

@media print,
screen and (min-width:20.0625em) {
    .tiny-up-1>.cell {
        width: 100%
    }

    .tiny-up-2>.cell {
        width: 50%
    }

    .tiny-up-3>.cell {
        width: 33.3333333333%
    }

    .tiny-up-4>.cell {
        width: 25%
    }

    .tiny-up-5>.cell {
        width: 20%
    }

    .tiny-up-6>.cell {
        width: 16.6666666667%
    }

    .tiny-up-7>.cell {
        width: 14.2857142857%
    }

    .tiny-up-8>.cell {
        width: 12.5%
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-up-1>.cell {
        width: 100%
    }

    .small-up-2>.cell {
        width: 50%
    }

    .small-up-3>.cell {
        width: 33.3333333333%
    }

    .small-up-4>.cell {
        width: 25%
    }

    .small-up-5>.cell {
        width: 20%
    }

    .small-up-6>.cell {
        width: 16.6666666667%
    }

    .small-up-7>.cell {
        width: 14.2857142857%
    }

    .small-up-8>.cell {
        width: 12.5%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-up-1>.cell {
        width: 100%
    }

    .medium-up-2>.cell {
        width: 50%
    }

    .medium-up-3>.cell {
        width: 33.3333333333%
    }

    .medium-up-4>.cell {
        width: 25%
    }

    .medium-up-5>.cell {
        width: 20%
    }

    .medium-up-6>.cell {
        width: 16.6666666667%
    }

    .medium-up-7>.cell {
        width: 14.2857142857%
    }

    .medium-up-8>.cell {
        width: 12.5%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-up-1>.cell {
        width: 100%
    }

    .large-up-2>.cell {
        width: 50%
    }

    .large-up-3>.cell {
        width: 33.3333333333%
    }

    .large-up-4>.cell {
        width: 25%
    }

    .large-up-5>.cell {
        width: 20%
    }

    .large-up-6>.cell {
        width: 16.6666666667%
    }

    .large-up-7>.cell {
        width: 14.2857142857%
    }

    .large-up-8>.cell {
        width: 12.5%
    }
}

.grid-margin-x.initial-up-1>.cell {
    width: calc(100% - 2.5rem)
}

.grid-margin-x.initial-up-2>.cell {
    width: calc(50% - 2.5rem)
}

.grid-margin-x.initial-up-3>.cell {
    width: calc(33.3333333333% - 2.5rem)
}

.grid-margin-x.initial-up-4>.cell {
    width: calc(25% - 2.5rem)
}

.grid-margin-x.initial-up-5>.cell {
    width: calc(20% - 2.5rem)
}

.grid-margin-x.initial-up-6>.cell {
    width: calc(16.6666666667% - 2.5rem)
}

.grid-margin-x.initial-up-7>.cell {
    width: calc(14.2857142857% - 2.5rem)
}

.grid-margin-x.initial-up-8>.cell {
    width: calc(12.5% - 2.5rem)
}

@media print,
screen and (min-width:20.0625em) {
    .grid-margin-x.tiny-up-1>.cell {
        width: calc(100% - 2.5rem)
    }

    .grid-margin-x.tiny-up-2>.cell {
        width: calc(50% - 2.5rem)
    }

    .grid-margin-x.tiny-up-3>.cell {
        width: calc(33.3333333333% - 2.5rem)
    }

    .grid-margin-x.tiny-up-4>.cell {
        width: calc(25% - 2.5rem)
    }

    .grid-margin-x.tiny-up-5>.cell {
        width: calc(20% - 2.5rem)
    }

    .grid-margin-x.tiny-up-6>.cell {
        width: calc(16.6666666667% - 2.5rem)
    }

    .grid-margin-x.tiny-up-7>.cell {
        width: calc(14.2857142857% - 2.5rem)
    }

    .grid-margin-x.tiny-up-8>.cell {
        width: calc(12.5% - 2.5rem)
    }
}

@media print,
screen and (min-width:40.0625em) {
    .grid-margin-x.small-up-1>.cell {
        width: calc(100% - 2.5rem)
    }

    .grid-margin-x.small-up-2>.cell {
        width: calc(50% - 2.5rem)
    }

    .grid-margin-x.small-up-3>.cell {
        width: calc(33.3333333333% - 2.5rem)
    }

    .grid-margin-x.small-up-4>.cell {
        width: calc(25% - 2.5rem)
    }

    .grid-margin-x.small-up-5>.cell {
        width: calc(20% - 2.5rem)
    }

    .grid-margin-x.small-up-6>.cell {
        width: calc(16.6666666667% - 2.5rem)
    }

    .grid-margin-x.small-up-7>.cell {
        width: calc(14.2857142857% - 2.5rem)
    }

    .grid-margin-x.small-up-8>.cell {
        width: calc(12.5% - 2.5rem)
    }
}

@media print,
screen and (min-width:48.0625em) {
    .grid-margin-x.initial-up-1>.cell {
        width: calc(100% - 4rem)
    }

    .grid-margin-x.initial-up-2>.cell {
        width: calc(50% - 4rem)
    }

    .grid-margin-x.initial-up-3>.cell {
        width: calc(33.3333333333% - 4rem)
    }

    .grid-margin-x.initial-up-4>.cell {
        width: calc(25% - 4rem)
    }

    .grid-margin-x.initial-up-5>.cell {
        width: calc(20% - 4rem)
    }

    .grid-margin-x.initial-up-6>.cell {
        width: calc(16.6666666667% - 4rem)
    }

    .grid-margin-x.initial-up-7>.cell {
        width: calc(14.2857142857% - 4rem)
    }

    .grid-margin-x.initial-up-8>.cell {
        width: calc(12.5% - 4rem)
    }

    .grid-margin-x.medium-up-1>.cell {
        width: calc(100% - 4rem)
    }

    .grid-margin-x.medium-up-2>.cell {
        width: calc(50% - 4rem)
    }

    .grid-margin-x.medium-up-3>.cell {
        width: calc(33.3333333333% - 4rem)
    }

    .grid-margin-x.medium-up-4>.cell {
        width: calc(25% - 4rem)
    }

    .grid-margin-x.medium-up-5>.cell {
        width: calc(20% - 4rem)
    }

    .grid-margin-x.medium-up-6>.cell {
        width: calc(16.6666666667% - 4rem)
    }

    .grid-margin-x.medium-up-7>.cell {
        width: calc(14.2857142857% - 4rem)
    }

    .grid-margin-x.medium-up-8>.cell {
        width: calc(12.5% - 4rem)
    }
}

@media print,
screen and (min-width:64.0625em) {
    .grid-margin-x.large-up-1>.cell {
        width: calc(100% - 4rem)
    }

    .grid-margin-x.large-up-2>.cell {
        width: calc(50% - 4rem)
    }

    .grid-margin-x.large-up-3>.cell {
        width: calc(33.3333333333% - 4rem)
    }

    .grid-margin-x.large-up-4>.cell {
        width: calc(25% - 4rem)
    }

    .grid-margin-x.large-up-5>.cell {
        width: calc(20% - 4rem)
    }

    .grid-margin-x.large-up-6>.cell {
        width: calc(16.6666666667% - 4rem)
    }

    .grid-margin-x.large-up-7>.cell {
        width: calc(14.2857142857% - 4rem)
    }

    .grid-margin-x.large-up-8>.cell {
        width: calc(12.5% - 4rem)
    }
}

.initial-margin-collapse {
    margin-right: 0;
    margin-left: 0
}

.initial-margin-collapse>.cell {
    margin-right: 0;
    margin-left: 0
}

.initial-margin-collapse>.initial-1 {
    width: 8.3333333333%
}

.initial-margin-collapse>.initial-2 {
    width: 16.6666666667%
}

.initial-margin-collapse>.initial-3 {
    width: 25%
}

.initial-margin-collapse>.initial-4 {
    width: 33.3333333333%
}

.initial-margin-collapse>.initial-5 {
    width: 41.6666666667%
}

.initial-margin-collapse>.initial-6 {
    width: 50%
}

.initial-margin-collapse>.initial-7 {
    width: 58.3333333333%
}

.initial-margin-collapse>.initial-8 {
    width: 66.6666666667%
}

.initial-margin-collapse>.initial-9 {
    width: 75%
}

.initial-margin-collapse>.initial-10 {
    width: 83.3333333333%
}

.initial-margin-collapse>.initial-11 {
    width: 91.6666666667%
}

.initial-margin-collapse>.initial-12 {
    width: 100%
}

@media print,
screen and (min-width:20.0625em) {
    .initial-margin-collapse>.tiny-1 {
        width: 8.3333333333%
    }

    .initial-margin-collapse>.tiny-2 {
        width: 16.6666666667%
    }

    .initial-margin-collapse>.tiny-3 {
        width: 25%
    }

    .initial-margin-collapse>.tiny-4 {
        width: 33.3333333333%
    }

    .initial-margin-collapse>.tiny-5 {
        width: 41.6666666667%
    }

    .initial-margin-collapse>.tiny-6 {
        width: 50%
    }

    .initial-margin-collapse>.tiny-7 {
        width: 58.3333333333%
    }

    .initial-margin-collapse>.tiny-8 {
        width: 66.6666666667%
    }

    .initial-margin-collapse>.tiny-9 {
        width: 75%
    }

    .initial-margin-collapse>.tiny-10 {
        width: 83.3333333333%
    }

    .initial-margin-collapse>.tiny-11 {
        width: 91.6666666667%
    }

    .initial-margin-collapse>.tiny-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:40.0625em) {
    .initial-margin-collapse>.small-1 {
        width: 8.3333333333%
    }

    .initial-margin-collapse>.small-2 {
        width: 16.6666666667%
    }

    .initial-margin-collapse>.small-3 {
        width: 25%
    }

    .initial-margin-collapse>.small-4 {
        width: 33.3333333333%
    }

    .initial-margin-collapse>.small-5 {
        width: 41.6666666667%
    }

    .initial-margin-collapse>.small-6 {
        width: 50%
    }

    .initial-margin-collapse>.small-7 {
        width: 58.3333333333%
    }

    .initial-margin-collapse>.small-8 {
        width: 66.6666666667%
    }

    .initial-margin-collapse>.small-9 {
        width: 75%
    }

    .initial-margin-collapse>.small-10 {
        width: 83.3333333333%
    }

    .initial-margin-collapse>.small-11 {
        width: 91.6666666667%
    }

    .initial-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .initial-margin-collapse>.medium-1 {
        width: 8.3333333333%
    }

    .initial-margin-collapse>.medium-2 {
        width: 16.6666666667%
    }

    .initial-margin-collapse>.medium-3 {
        width: 25%
    }

    .initial-margin-collapse>.medium-4 {
        width: 33.3333333333%
    }

    .initial-margin-collapse>.medium-5 {
        width: 41.6666666667%
    }

    .initial-margin-collapse>.medium-6 {
        width: 50%
    }

    .initial-margin-collapse>.medium-7 {
        width: 58.3333333333%
    }

    .initial-margin-collapse>.medium-8 {
        width: 66.6666666667%
    }

    .initial-margin-collapse>.medium-9 {
        width: 75%
    }

    .initial-margin-collapse>.medium-10 {
        width: 83.3333333333%
    }

    .initial-margin-collapse>.medium-11 {
        width: 91.6666666667%
    }

    .initial-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .initial-margin-collapse>.large-1 {
        width: 8.3333333333%
    }

    .initial-margin-collapse>.large-2 {
        width: 16.6666666667%
    }

    .initial-margin-collapse>.large-3 {
        width: 25%
    }

    .initial-margin-collapse>.large-4 {
        width: 33.3333333333%
    }

    .initial-margin-collapse>.large-5 {
        width: 41.6666666667%
    }

    .initial-margin-collapse>.large-6 {
        width: 50%
    }

    .initial-margin-collapse>.large-7 {
        width: 58.3333333333%
    }

    .initial-margin-collapse>.large-8 {
        width: 66.6666666667%
    }

    .initial-margin-collapse>.large-9 {
        width: 75%
    }

    .initial-margin-collapse>.large-10 {
        width: 83.3333333333%
    }

    .initial-margin-collapse>.large-11 {
        width: 91.6666666667%
    }

    .initial-margin-collapse>.large-12 {
        width: 100%
    }
}

.initial-padding-collapse {
    margin-right: 0;
    margin-left: 0
}

.initial-padding-collapse>.cell {
    padding-right: 0;
    padding-left: 0
}

@media print,
screen and (min-width:20.0625em) {
    .tiny-margin-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .tiny-margin-collapse>.cell {
        margin-right: 0;
        margin-left: 0
    }
}

@media print,
screen and (min-width:20.0625em) {
    .tiny-margin-collapse>.initial-1 {
        width: 8.3333333333%
    }

    .tiny-margin-collapse>.initial-2 {
        width: 16.6666666667%
    }

    .tiny-margin-collapse>.initial-3 {
        width: 25%
    }

    .tiny-margin-collapse>.initial-4 {
        width: 33.3333333333%
    }

    .tiny-margin-collapse>.initial-5 {
        width: 41.6666666667%
    }

    .tiny-margin-collapse>.initial-6 {
        width: 50%
    }

    .tiny-margin-collapse>.initial-7 {
        width: 58.3333333333%
    }

    .tiny-margin-collapse>.initial-8 {
        width: 66.6666666667%
    }

    .tiny-margin-collapse>.initial-9 {
        width: 75%
    }

    .tiny-margin-collapse>.initial-10 {
        width: 83.3333333333%
    }

    .tiny-margin-collapse>.initial-11 {
        width: 91.6666666667%
    }

    .tiny-margin-collapse>.initial-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:20.0625em) {
    .tiny-margin-collapse>.tiny-1 {
        width: 8.3333333333%
    }

    .tiny-margin-collapse>.tiny-2 {
        width: 16.6666666667%
    }

    .tiny-margin-collapse>.tiny-3 {
        width: 25%
    }

    .tiny-margin-collapse>.tiny-4 {
        width: 33.3333333333%
    }

    .tiny-margin-collapse>.tiny-5 {
        width: 41.6666666667%
    }

    .tiny-margin-collapse>.tiny-6 {
        width: 50%
    }

    .tiny-margin-collapse>.tiny-7 {
        width: 58.3333333333%
    }

    .tiny-margin-collapse>.tiny-8 {
        width: 66.6666666667%
    }

    .tiny-margin-collapse>.tiny-9 {
        width: 75%
    }

    .tiny-margin-collapse>.tiny-10 {
        width: 83.3333333333%
    }

    .tiny-margin-collapse>.tiny-11 {
        width: 91.6666666667%
    }

    .tiny-margin-collapse>.tiny-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:40.0625em) {
    .tiny-margin-collapse>.small-1 {
        width: 8.3333333333%
    }

    .tiny-margin-collapse>.small-2 {
        width: 16.6666666667%
    }

    .tiny-margin-collapse>.small-3 {
        width: 25%
    }

    .tiny-margin-collapse>.small-4 {
        width: 33.3333333333%
    }

    .tiny-margin-collapse>.small-5 {
        width: 41.6666666667%
    }

    .tiny-margin-collapse>.small-6 {
        width: 50%
    }

    .tiny-margin-collapse>.small-7 {
        width: 58.3333333333%
    }

    .tiny-margin-collapse>.small-8 {
        width: 66.6666666667%
    }

    .tiny-margin-collapse>.small-9 {
        width: 75%
    }

    .tiny-margin-collapse>.small-10 {
        width: 83.3333333333%
    }

    .tiny-margin-collapse>.small-11 {
        width: 91.6666666667%
    }

    .tiny-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .tiny-margin-collapse>.medium-1 {
        width: 8.3333333333%
    }

    .tiny-margin-collapse>.medium-2 {
        width: 16.6666666667%
    }

    .tiny-margin-collapse>.medium-3 {
        width: 25%
    }

    .tiny-margin-collapse>.medium-4 {
        width: 33.3333333333%
    }

    .tiny-margin-collapse>.medium-5 {
        width: 41.6666666667%
    }

    .tiny-margin-collapse>.medium-6 {
        width: 50%
    }

    .tiny-margin-collapse>.medium-7 {
        width: 58.3333333333%
    }

    .tiny-margin-collapse>.medium-8 {
        width: 66.6666666667%
    }

    .tiny-margin-collapse>.medium-9 {
        width: 75%
    }

    .tiny-margin-collapse>.medium-10 {
        width: 83.3333333333%
    }

    .tiny-margin-collapse>.medium-11 {
        width: 91.6666666667%
    }

    .tiny-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .tiny-margin-collapse>.large-1 {
        width: 8.3333333333%
    }

    .tiny-margin-collapse>.large-2 {
        width: 16.6666666667%
    }

    .tiny-margin-collapse>.large-3 {
        width: 25%
    }

    .tiny-margin-collapse>.large-4 {
        width: 33.3333333333%
    }

    .tiny-margin-collapse>.large-5 {
        width: 41.6666666667%
    }

    .tiny-margin-collapse>.large-6 {
        width: 50%
    }

    .tiny-margin-collapse>.large-7 {
        width: 58.3333333333%
    }

    .tiny-margin-collapse>.large-8 {
        width: 66.6666666667%
    }

    .tiny-margin-collapse>.large-9 {
        width: 75%
    }

    .tiny-margin-collapse>.large-10 {
        width: 83.3333333333%
    }

    .tiny-margin-collapse>.large-11 {
        width: 91.6666666667%
    }

    .tiny-margin-collapse>.large-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:20.0625em) {
    .tiny-padding-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .tiny-padding-collapse>.cell {
        padding-right: 0;
        padding-left: 0
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-margin-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .small-margin-collapse>.cell {
        margin-right: 0;
        margin-left: 0
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-margin-collapse>.initial-1 {
        width: 8.3333333333%
    }

    .small-margin-collapse>.initial-2 {
        width: 16.6666666667%
    }

    .small-margin-collapse>.initial-3 {
        width: 25%
    }

    .small-margin-collapse>.initial-4 {
        width: 33.3333333333%
    }

    .small-margin-collapse>.initial-5 {
        width: 41.6666666667%
    }

    .small-margin-collapse>.initial-6 {
        width: 50%
    }

    .small-margin-collapse>.initial-7 {
        width: 58.3333333333%
    }

    .small-margin-collapse>.initial-8 {
        width: 66.6666666667%
    }

    .small-margin-collapse>.initial-9 {
        width: 75%
    }

    .small-margin-collapse>.initial-10 {
        width: 83.3333333333%
    }

    .small-margin-collapse>.initial-11 {
        width: 91.6666666667%
    }

    .small-margin-collapse>.initial-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-margin-collapse>.tiny-1 {
        width: 8.3333333333%
    }

    .small-margin-collapse>.tiny-2 {
        width: 16.6666666667%
    }

    .small-margin-collapse>.tiny-3 {
        width: 25%
    }

    .small-margin-collapse>.tiny-4 {
        width: 33.3333333333%
    }

    .small-margin-collapse>.tiny-5 {
        width: 41.6666666667%
    }

    .small-margin-collapse>.tiny-6 {
        width: 50%
    }

    .small-margin-collapse>.tiny-7 {
        width: 58.3333333333%
    }

    .small-margin-collapse>.tiny-8 {
        width: 66.6666666667%
    }

    .small-margin-collapse>.tiny-9 {
        width: 75%
    }

    .small-margin-collapse>.tiny-10 {
        width: 83.3333333333%
    }

    .small-margin-collapse>.tiny-11 {
        width: 91.6666666667%
    }

    .small-margin-collapse>.tiny-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-margin-collapse>.small-1 {
        width: 8.3333333333%
    }

    .small-margin-collapse>.small-2 {
        width: 16.6666666667%
    }

    .small-margin-collapse>.small-3 {
        width: 25%
    }

    .small-margin-collapse>.small-4 {
        width: 33.3333333333%
    }

    .small-margin-collapse>.small-5 {
        width: 41.6666666667%
    }

    .small-margin-collapse>.small-6 {
        width: 50%
    }

    .small-margin-collapse>.small-7 {
        width: 58.3333333333%
    }

    .small-margin-collapse>.small-8 {
        width: 66.6666666667%
    }

    .small-margin-collapse>.small-9 {
        width: 75%
    }

    .small-margin-collapse>.small-10 {
        width: 83.3333333333%
    }

    .small-margin-collapse>.small-11 {
        width: 91.6666666667%
    }

    .small-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .small-margin-collapse>.medium-1 {
        width: 8.3333333333%
    }

    .small-margin-collapse>.medium-2 {
        width: 16.6666666667%
    }

    .small-margin-collapse>.medium-3 {
        width: 25%
    }

    .small-margin-collapse>.medium-4 {
        width: 33.3333333333%
    }

    .small-margin-collapse>.medium-5 {
        width: 41.6666666667%
    }

    .small-margin-collapse>.medium-6 {
        width: 50%
    }

    .small-margin-collapse>.medium-7 {
        width: 58.3333333333%
    }

    .small-margin-collapse>.medium-8 {
        width: 66.6666666667%
    }

    .small-margin-collapse>.medium-9 {
        width: 75%
    }

    .small-margin-collapse>.medium-10 {
        width: 83.3333333333%
    }

    .small-margin-collapse>.medium-11 {
        width: 91.6666666667%
    }

    .small-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .small-margin-collapse>.large-1 {
        width: 8.3333333333%
    }

    .small-margin-collapse>.large-2 {
        width: 16.6666666667%
    }

    .small-margin-collapse>.large-3 {
        width: 25%
    }

    .small-margin-collapse>.large-4 {
        width: 33.3333333333%
    }

    .small-margin-collapse>.large-5 {
        width: 41.6666666667%
    }

    .small-margin-collapse>.large-6 {
        width: 50%
    }

    .small-margin-collapse>.large-7 {
        width: 58.3333333333%
    }

    .small-margin-collapse>.large-8 {
        width: 66.6666666667%
    }

    .small-margin-collapse>.large-9 {
        width: 75%
    }

    .small-margin-collapse>.large-10 {
        width: 83.3333333333%
    }

    .small-margin-collapse>.large-11 {
        width: 91.6666666667%
    }

    .small-margin-collapse>.large-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-padding-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .small-padding-collapse>.cell {
        padding-right: 0;
        padding-left: 0
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-margin-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .medium-margin-collapse>.cell {
        margin-right: 0;
        margin-left: 0
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-margin-collapse>.initial-1 {
        width: 8.3333333333%
    }

    .medium-margin-collapse>.initial-2 {
        width: 16.6666666667%
    }

    .medium-margin-collapse>.initial-3 {
        width: 25%
    }

    .medium-margin-collapse>.initial-4 {
        width: 33.3333333333%
    }

    .medium-margin-collapse>.initial-5 {
        width: 41.6666666667%
    }

    .medium-margin-collapse>.initial-6 {
        width: 50%
    }

    .medium-margin-collapse>.initial-7 {
        width: 58.3333333333%
    }

    .medium-margin-collapse>.initial-8 {
        width: 66.6666666667%
    }

    .medium-margin-collapse>.initial-9 {
        width: 75%
    }

    .medium-margin-collapse>.initial-10 {
        width: 83.3333333333%
    }

    .medium-margin-collapse>.initial-11 {
        width: 91.6666666667%
    }

    .medium-margin-collapse>.initial-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-margin-collapse>.tiny-1 {
        width: 8.3333333333%
    }

    .medium-margin-collapse>.tiny-2 {
        width: 16.6666666667%
    }

    .medium-margin-collapse>.tiny-3 {
        width: 25%
    }

    .medium-margin-collapse>.tiny-4 {
        width: 33.3333333333%
    }

    .medium-margin-collapse>.tiny-5 {
        width: 41.6666666667%
    }

    .medium-margin-collapse>.tiny-6 {
        width: 50%
    }

    .medium-margin-collapse>.tiny-7 {
        width: 58.3333333333%
    }

    .medium-margin-collapse>.tiny-8 {
        width: 66.6666666667%
    }

    .medium-margin-collapse>.tiny-9 {
        width: 75%
    }

    .medium-margin-collapse>.tiny-10 {
        width: 83.3333333333%
    }

    .medium-margin-collapse>.tiny-11 {
        width: 91.6666666667%
    }

    .medium-margin-collapse>.tiny-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-margin-collapse>.small-1 {
        width: 8.3333333333%
    }

    .medium-margin-collapse>.small-2 {
        width: 16.6666666667%
    }

    .medium-margin-collapse>.small-3 {
        width: 25%
    }

    .medium-margin-collapse>.small-4 {
        width: 33.3333333333%
    }

    .medium-margin-collapse>.small-5 {
        width: 41.6666666667%
    }

    .medium-margin-collapse>.small-6 {
        width: 50%
    }

    .medium-margin-collapse>.small-7 {
        width: 58.3333333333%
    }

    .medium-margin-collapse>.small-8 {
        width: 66.6666666667%
    }

    .medium-margin-collapse>.small-9 {
        width: 75%
    }

    .medium-margin-collapse>.small-10 {
        width: 83.3333333333%
    }

    .medium-margin-collapse>.small-11 {
        width: 91.6666666667%
    }

    .medium-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-margin-collapse>.medium-1 {
        width: 8.3333333333%
    }

    .medium-margin-collapse>.medium-2 {
        width: 16.6666666667%
    }

    .medium-margin-collapse>.medium-3 {
        width: 25%
    }

    .medium-margin-collapse>.medium-4 {
        width: 33.3333333333%
    }

    .medium-margin-collapse>.medium-5 {
        width: 41.6666666667%
    }

    .medium-margin-collapse>.medium-6 {
        width: 50%
    }

    .medium-margin-collapse>.medium-7 {
        width: 58.3333333333%
    }

    .medium-margin-collapse>.medium-8 {
        width: 66.6666666667%
    }

    .medium-margin-collapse>.medium-9 {
        width: 75%
    }

    .medium-margin-collapse>.medium-10 {
        width: 83.3333333333%
    }

    .medium-margin-collapse>.medium-11 {
        width: 91.6666666667%
    }

    .medium-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .medium-margin-collapse>.large-1 {
        width: 8.3333333333%
    }

    .medium-margin-collapse>.large-2 {
        width: 16.6666666667%
    }

    .medium-margin-collapse>.large-3 {
        width: 25%
    }

    .medium-margin-collapse>.large-4 {
        width: 33.3333333333%
    }

    .medium-margin-collapse>.large-5 {
        width: 41.6666666667%
    }

    .medium-margin-collapse>.large-6 {
        width: 50%
    }

    .medium-margin-collapse>.large-7 {
        width: 58.3333333333%
    }

    .medium-margin-collapse>.large-8 {
        width: 66.6666666667%
    }

    .medium-margin-collapse>.large-9 {
        width: 75%
    }

    .medium-margin-collapse>.large-10 {
        width: 83.3333333333%
    }

    .medium-margin-collapse>.large-11 {
        width: 91.6666666667%
    }

    .medium-margin-collapse>.large-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-padding-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .medium-padding-collapse>.cell {
        padding-right: 0;
        padding-left: 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-margin-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .large-margin-collapse>.cell {
        margin-right: 0;
        margin-left: 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-margin-collapse>.initial-1 {
        width: 8.3333333333%
    }

    .large-margin-collapse>.initial-2 {
        width: 16.6666666667%
    }

    .large-margin-collapse>.initial-3 {
        width: 25%
    }

    .large-margin-collapse>.initial-4 {
        width: 33.3333333333%
    }

    .large-margin-collapse>.initial-5 {
        width: 41.6666666667%
    }

    .large-margin-collapse>.initial-6 {
        width: 50%
    }

    .large-margin-collapse>.initial-7 {
        width: 58.3333333333%
    }

    .large-margin-collapse>.initial-8 {
        width: 66.6666666667%
    }

    .large-margin-collapse>.initial-9 {
        width: 75%
    }

    .large-margin-collapse>.initial-10 {
        width: 83.3333333333%
    }

    .large-margin-collapse>.initial-11 {
        width: 91.6666666667%
    }

    .large-margin-collapse>.initial-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-margin-collapse>.tiny-1 {
        width: 8.3333333333%
    }

    .large-margin-collapse>.tiny-2 {
        width: 16.6666666667%
    }

    .large-margin-collapse>.tiny-3 {
        width: 25%
    }

    .large-margin-collapse>.tiny-4 {
        width: 33.3333333333%
    }

    .large-margin-collapse>.tiny-5 {
        width: 41.6666666667%
    }

    .large-margin-collapse>.tiny-6 {
        width: 50%
    }

    .large-margin-collapse>.tiny-7 {
        width: 58.3333333333%
    }

    .large-margin-collapse>.tiny-8 {
        width: 66.6666666667%
    }

    .large-margin-collapse>.tiny-9 {
        width: 75%
    }

    .large-margin-collapse>.tiny-10 {
        width: 83.3333333333%
    }

    .large-margin-collapse>.tiny-11 {
        width: 91.6666666667%
    }

    .large-margin-collapse>.tiny-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-margin-collapse>.small-1 {
        width: 8.3333333333%
    }

    .large-margin-collapse>.small-2 {
        width: 16.6666666667%
    }

    .large-margin-collapse>.small-3 {
        width: 25%
    }

    .large-margin-collapse>.small-4 {
        width: 33.3333333333%
    }

    .large-margin-collapse>.small-5 {
        width: 41.6666666667%
    }

    .large-margin-collapse>.small-6 {
        width: 50%
    }

    .large-margin-collapse>.small-7 {
        width: 58.3333333333%
    }

    .large-margin-collapse>.small-8 {
        width: 66.6666666667%
    }

    .large-margin-collapse>.small-9 {
        width: 75%
    }

    .large-margin-collapse>.small-10 {
        width: 83.3333333333%
    }

    .large-margin-collapse>.small-11 {
        width: 91.6666666667%
    }

    .large-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-margin-collapse>.medium-1 {
        width: 8.3333333333%
    }

    .large-margin-collapse>.medium-2 {
        width: 16.6666666667%
    }

    .large-margin-collapse>.medium-3 {
        width: 25%
    }

    .large-margin-collapse>.medium-4 {
        width: 33.3333333333%
    }

    .large-margin-collapse>.medium-5 {
        width: 41.6666666667%
    }

    .large-margin-collapse>.medium-6 {
        width: 50%
    }

    .large-margin-collapse>.medium-7 {
        width: 58.3333333333%
    }

    .large-margin-collapse>.medium-8 {
        width: 66.6666666667%
    }

    .large-margin-collapse>.medium-9 {
        width: 75%
    }

    .large-margin-collapse>.medium-10 {
        width: 83.3333333333%
    }

    .large-margin-collapse>.medium-11 {
        width: 91.6666666667%
    }

    .large-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-margin-collapse>.large-1 {
        width: 8.3333333333%
    }

    .large-margin-collapse>.large-2 {
        width: 16.6666666667%
    }

    .large-margin-collapse>.large-3 {
        width: 25%
    }

    .large-margin-collapse>.large-4 {
        width: 33.3333333333%
    }

    .large-margin-collapse>.large-5 {
        width: 41.6666666667%
    }

    .large-margin-collapse>.large-6 {
        width: 50%
    }

    .large-margin-collapse>.large-7 {
        width: 58.3333333333%
    }

    .large-margin-collapse>.large-8 {
        width: 66.6666666667%
    }

    .large-margin-collapse>.large-9 {
        width: 75%
    }

    .large-margin-collapse>.large-10 {
        width: 83.3333333333%
    }

    .large-margin-collapse>.large-11 {
        width: 91.6666666667%
    }

    .large-margin-collapse>.large-12 {
        width: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-padding-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .large-padding-collapse>.cell {
        padding-right: 0;
        padding-left: 0
    }
}

.initial-offset-0 {
    margin-left: 0%
}

.grid-margin-x>.initial-offset-0 {
    margin-left: calc(0% + 2.5rem / 2)
}

.initial-offset-1 {
    margin-left: 8.3333333333%
}

.grid-margin-x>.initial-offset-1 {
    margin-left: calc(8.3333333333% + 2.5rem / 2)
}

.initial-offset-2 {
    margin-left: 16.6666666667%
}

.grid-margin-x>.initial-offset-2 {
    margin-left: calc(16.6666666667% + 2.5rem / 2)
}

.initial-offset-3 {
    margin-left: 25%
}

.grid-margin-x>.initial-offset-3 {
    margin-left: calc(25% + 2.5rem / 2)
}

.initial-offset-4 {
    margin-left: 33.3333333333%
}

.grid-margin-x>.initial-offset-4 {
    margin-left: calc(33.3333333333% + 2.5rem / 2)
}

.initial-offset-5 {
    margin-left: 41.6666666667%
}

.grid-margin-x>.initial-offset-5 {
    margin-left: calc(41.6666666667% + 2.5rem / 2)
}

.initial-offset-6 {
    margin-left: 50%
}

.grid-margin-x>.initial-offset-6 {
    margin-left: calc(50% + 2.5rem / 2)
}

.initial-offset-7 {
    margin-left: 58.3333333333%
}

.grid-margin-x>.initial-offset-7 {
    margin-left: calc(58.3333333333% + 2.5rem / 2)
}

.initial-offset-8 {
    margin-left: 66.6666666667%
}

.grid-margin-x>.initial-offset-8 {
    margin-left: calc(66.6666666667% + 2.5rem / 2)
}

.initial-offset-9 {
    margin-left: 75%
}

.grid-margin-x>.initial-offset-9 {
    margin-left: calc(75% + 2.5rem / 2)
}

.initial-offset-10 {
    margin-left: 83.3333333333%
}

.grid-margin-x>.initial-offset-10 {
    margin-left: calc(83.3333333333% + 2.5rem / 2)
}

.initial-offset-11 {
    margin-left: 91.6666666667%
}

.grid-margin-x>.initial-offset-11 {
    margin-left: calc(91.6666666667% + 2.5rem / 2)
}

@media print,
screen and (min-width:20.0625em) {
    .tiny-offset-0 {
        margin-left: 0%
    }

    .grid-margin-x>.tiny-offset-0 {
        margin-left: calc(0% + 2.5rem / 2)
    }

    .tiny-offset-1 {
        margin-left: 8.3333333333%
    }

    .grid-margin-x>.tiny-offset-1 {
        margin-left: calc(8.3333333333% + 2.5rem / 2)
    }

    .tiny-offset-2 {
        margin-left: 16.6666666667%
    }

    .grid-margin-x>.tiny-offset-2 {
        margin-left: calc(16.6666666667% + 2.5rem / 2)
    }

    .tiny-offset-3 {
        margin-left: 25%
    }

    .grid-margin-x>.tiny-offset-3 {
        margin-left: calc(25% + 2.5rem / 2)
    }

    .tiny-offset-4 {
        margin-left: 33.3333333333%
    }

    .grid-margin-x>.tiny-offset-4 {
        margin-left: calc(33.3333333333% + 2.5rem / 2)
    }

    .tiny-offset-5 {
        margin-left: 41.6666666667%
    }

    .grid-margin-x>.tiny-offset-5 {
        margin-left: calc(41.6666666667% + 2.5rem / 2)
    }

    .tiny-offset-6 {
        margin-left: 50%
    }

    .grid-margin-x>.tiny-offset-6 {
        margin-left: calc(50% + 2.5rem / 2)
    }

    .tiny-offset-7 {
        margin-left: 58.3333333333%
    }

    .grid-margin-x>.tiny-offset-7 {
        margin-left: calc(58.3333333333% + 2.5rem / 2)
    }

    .tiny-offset-8 {
        margin-left: 66.6666666667%
    }

    .grid-margin-x>.tiny-offset-8 {
        margin-left: calc(66.6666666667% + 2.5rem / 2)
    }

    .tiny-offset-9 {
        margin-left: 75%
    }

    .grid-margin-x>.tiny-offset-9 {
        margin-left: calc(75% + 2.5rem / 2)
    }

    .tiny-offset-10 {
        margin-left: 83.3333333333%
    }

    .grid-margin-x>.tiny-offset-10 {
        margin-left: calc(83.3333333333% + 2.5rem / 2)
    }

    .tiny-offset-11 {
        margin-left: 91.6666666667%
    }

    .grid-margin-x>.tiny-offset-11 {
        margin-left: calc(91.6666666667% + 2.5rem / 2)
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-offset-0 {
        margin-left: 0%
    }

    .grid-margin-x>.small-offset-0 {
        margin-left: calc(0% + 2.5rem / 2)
    }

    .small-offset-1 {
        margin-left: 8.3333333333%
    }

    .grid-margin-x>.small-offset-1 {
        margin-left: calc(8.3333333333% + 2.5rem / 2)
    }

    .small-offset-2 {
        margin-left: 16.6666666667%
    }

    .grid-margin-x>.small-offset-2 {
        margin-left: calc(16.6666666667% + 2.5rem / 2)
    }

    .small-offset-3 {
        margin-left: 25%
    }

    .grid-margin-x>.small-offset-3 {
        margin-left: calc(25% + 2.5rem / 2)
    }

    .small-offset-4 {
        margin-left: 33.3333333333%
    }

    .grid-margin-x>.small-offset-4 {
        margin-left: calc(33.3333333333% + 2.5rem / 2)
    }

    .small-offset-5 {
        margin-left: 41.6666666667%
    }

    .grid-margin-x>.small-offset-5 {
        margin-left: calc(41.6666666667% + 2.5rem / 2)
    }

    .small-offset-6 {
        margin-left: 50%
    }

    .grid-margin-x>.small-offset-6 {
        margin-left: calc(50% + 2.5rem / 2)
    }

    .small-offset-7 {
        margin-left: 58.3333333333%
    }

    .grid-margin-x>.small-offset-7 {
        margin-left: calc(58.3333333333% + 2.5rem / 2)
    }

    .small-offset-8 {
        margin-left: 66.6666666667%
    }

    .grid-margin-x>.small-offset-8 {
        margin-left: calc(66.6666666667% + 2.5rem / 2)
    }

    .small-offset-9 {
        margin-left: 75%
    }

    .grid-margin-x>.small-offset-9 {
        margin-left: calc(75% + 2.5rem / 2)
    }

    .small-offset-10 {
        margin-left: 83.3333333333%
    }

    .grid-margin-x>.small-offset-10 {
        margin-left: calc(83.3333333333% + 2.5rem / 2)
    }

    .small-offset-11 {
        margin-left: 91.6666666667%
    }

    .grid-margin-x>.small-offset-11 {
        margin-left: calc(91.6666666667% + 2.5rem / 2)
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-offset-0 {
        margin-left: 0%
    }

    .grid-margin-x>.medium-offset-0 {
        margin-left: calc(0% + 4rem / 2)
    }

    .medium-offset-1 {
        margin-left: 8.3333333333%
    }

    .grid-margin-x>.medium-offset-1 {
        margin-left: calc(8.3333333333% + 4rem / 2)
    }

    .medium-offset-2 {
        margin-left: 16.6666666667%
    }

    .grid-margin-x>.medium-offset-2 {
        margin-left: calc(16.6666666667% + 4rem / 2)
    }

    .medium-offset-3 {
        margin-left: 25%
    }

    .grid-margin-x>.medium-offset-3 {
        margin-left: calc(25% + 4rem / 2)
    }

    .medium-offset-4 {
        margin-left: 33.3333333333%
    }

    .grid-margin-x>.medium-offset-4 {
        margin-left: calc(33.3333333333% + 4rem / 2)
    }

    .medium-offset-5 {
        margin-left: 41.6666666667%
    }

    .grid-margin-x>.medium-offset-5 {
        margin-left: calc(41.6666666667% + 4rem / 2)
    }

    .medium-offset-6 {
        margin-left: 50%
    }

    .grid-margin-x>.medium-offset-6 {
        margin-left: calc(50% + 4rem / 2)
    }

    .medium-offset-7 {
        margin-left: 58.3333333333%
    }

    .grid-margin-x>.medium-offset-7 {
        margin-left: calc(58.3333333333% + 4rem / 2)
    }

    .medium-offset-8 {
        margin-left: 66.6666666667%
    }

    .grid-margin-x>.medium-offset-8 {
        margin-left: calc(66.6666666667% + 4rem / 2)
    }

    .medium-offset-9 {
        margin-left: 75%
    }

    .grid-margin-x>.medium-offset-9 {
        margin-left: calc(75% + 4rem / 2)
    }

    .medium-offset-10 {
        margin-left: 83.3333333333%
    }

    .grid-margin-x>.medium-offset-10 {
        margin-left: calc(83.3333333333% + 4rem / 2)
    }

    .medium-offset-11 {
        margin-left: 91.6666666667%
    }

    .grid-margin-x>.medium-offset-11 {
        margin-left: calc(91.6666666667% + 4rem / 2)
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-offset-0 {
        margin-left: 0%
    }

    .grid-margin-x>.large-offset-0 {
        margin-left: calc(0% + 4rem / 2)
    }

    .large-offset-1 {
        margin-left: 8.3333333333%
    }

    .grid-margin-x>.large-offset-1 {
        margin-left: calc(8.3333333333% + 4rem / 2)
    }

    .large-offset-2 {
        margin-left: 16.6666666667%
    }

    .grid-margin-x>.large-offset-2 {
        margin-left: calc(16.6666666667% + 4rem / 2)
    }

    .large-offset-3 {
        margin-left: 25%
    }

    .grid-margin-x>.large-offset-3 {
        margin-left: calc(25% + 4rem / 2)
    }

    .large-offset-4 {
        margin-left: 33.3333333333%
    }

    .grid-margin-x>.large-offset-4 {
        margin-left: calc(33.3333333333% + 4rem / 2)
    }

    .large-offset-5 {
        margin-left: 41.6666666667%
    }

    .grid-margin-x>.large-offset-5 {
        margin-left: calc(41.6666666667% + 4rem / 2)
    }

    .large-offset-6 {
        margin-left: 50%
    }

    .grid-margin-x>.large-offset-6 {
        margin-left: calc(50% + 4rem / 2)
    }

    .large-offset-7 {
        margin-left: 58.3333333333%
    }

    .grid-margin-x>.large-offset-7 {
        margin-left: calc(58.3333333333% + 4rem / 2)
    }

    .large-offset-8 {
        margin-left: 66.6666666667%
    }

    .grid-margin-x>.large-offset-8 {
        margin-left: calc(66.6666666667% + 4rem / 2)
    }

    .large-offset-9 {
        margin-left: 75%
    }

    .grid-margin-x>.large-offset-9 {
        margin-left: calc(75% + 4rem / 2)
    }

    .large-offset-10 {
        margin-left: 83.3333333333%
    }

    .grid-margin-x>.large-offset-10 {
        margin-left: calc(83.3333333333% + 4rem / 2)
    }

    .large-offset-11 {
        margin-left: 91.6666666667%
    }

    .grid-margin-x>.large-offset-11 {
        margin-left: calc(91.6666666667% + 4rem / 2)
    }
}

.grid-y {
    display: flex;
    flex-flow: column nowrap
}

.grid-y>.cell {
    height: auto;
    max-height: none
}

.grid-y>.auto {
    height: auto
}

.grid-y>.shrink {
    height: auto
}

.grid-y>.initial-shrink,
.grid-y>.initial-full,
.grid-y>.initial-1,
.grid-y>.initial-2,
.grid-y>.initial-3,
.grid-y>.initial-4,
.grid-y>.initial-5,
.grid-y>.initial-6,
.grid-y>.initial-7,
.grid-y>.initial-8,
.grid-y>.initial-9,
.grid-y>.initial-10,
.grid-y>.initial-11,
.grid-y>.initial-12 {
    flex-basis: auto
}

@media print,
screen and (min-width:20.0625em) {

    .grid-y>.tiny-shrink,
    .grid-y>.tiny-full,
    .grid-y>.tiny-1,
    .grid-y>.tiny-2,
    .grid-y>.tiny-3,
    .grid-y>.tiny-4,
    .grid-y>.tiny-5,
    .grid-y>.tiny-6,
    .grid-y>.tiny-7,
    .grid-y>.tiny-8,
    .grid-y>.tiny-9,
    .grid-y>.tiny-10,
    .grid-y>.tiny-11,
    .grid-y>.tiny-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width:40.0625em) {

    .grid-y>.small-shrink,
    .grid-y>.small-full,
    .grid-y>.small-1,
    .grid-y>.small-2,
    .grid-y>.small-3,
    .grid-y>.small-4,
    .grid-y>.small-5,
    .grid-y>.small-6,
    .grid-y>.small-7,
    .grid-y>.small-8,
    .grid-y>.small-9,
    .grid-y>.small-10,
    .grid-y>.small-11,
    .grid-y>.small-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width:48.0625em) {

    .grid-y>.medium-shrink,
    .grid-y>.medium-full,
    .grid-y>.medium-1,
    .grid-y>.medium-2,
    .grid-y>.medium-3,
    .grid-y>.medium-4,
    .grid-y>.medium-5,
    .grid-y>.medium-6,
    .grid-y>.medium-7,
    .grid-y>.medium-8,
    .grid-y>.medium-9,
    .grid-y>.medium-10,
    .grid-y>.medium-11,
    .grid-y>.medium-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width:64.0625em) {

    .grid-y>.large-shrink,
    .grid-y>.large-full,
    .grid-y>.large-1,
    .grid-y>.large-2,
    .grid-y>.large-3,
    .grid-y>.large-4,
    .grid-y>.large-5,
    .grid-y>.large-6,
    .grid-y>.large-7,
    .grid-y>.large-8,
    .grid-y>.large-9,
    .grid-y>.large-10,
    .grid-y>.large-11,
    .grid-y>.large-12 {
        flex-basis: auto
    }
}

.grid-y>.initial-12,
.grid-y>.initial-11,
.grid-y>.initial-10,
.grid-y>.initial-9,
.grid-y>.initial-8,
.grid-y>.initial-7,
.grid-y>.initial-6,
.grid-y>.initial-5,
.grid-y>.initial-4,
.grid-y>.initial-3,
.grid-y>.initial-2,
.grid-y>.initial-1 {
    flex: 0 0 auto
}

.grid-y>.initial-1 {
    height: 8.3333333333%
}

.grid-y>.initial-2 {
    height: 16.6666666667%
}

.grid-y>.initial-3 {
    height: 25%
}

.grid-y>.initial-4 {
    height: 33.3333333333%
}

.grid-y>.initial-5 {
    height: 41.6666666667%
}

.grid-y>.initial-6 {
    height: 50%
}

.grid-y>.initial-7 {
    height: 58.3333333333%
}

.grid-y>.initial-8 {
    height: 66.6666666667%
}

.grid-y>.initial-9 {
    height: 75%
}

.grid-y>.initial-10 {
    height: 83.3333333333%
}

.grid-y>.initial-11 {
    height: 91.6666666667%
}

.grid-y>.initial-12 {
    height: 100%
}

@media print,
screen and (min-width:20.0625em) {
    .grid-y>.tiny-auto {
        flex: 1 1 0;
        height: auto
    }

    .grid-y>.tiny-12,
    .grid-y>.tiny-11,
    .grid-y>.tiny-10,
    .grid-y>.tiny-9,
    .grid-y>.tiny-8,
    .grid-y>.tiny-7,
    .grid-y>.tiny-6,
    .grid-y>.tiny-5,
    .grid-y>.tiny-4,
    .grid-y>.tiny-3,
    .grid-y>.tiny-2,
    .grid-y>.tiny-1,
    .grid-y>.tiny-shrink {
        flex: 0 0 auto
    }

    .grid-y>.tiny-shrink {
        height: auto
    }

    .grid-y>.tiny-1 {
        height: 8.3333333333%
    }

    .grid-y>.tiny-2 {
        height: 16.6666666667%
    }

    .grid-y>.tiny-3 {
        height: 25%
    }

    .grid-y>.tiny-4 {
        height: 33.3333333333%
    }

    .grid-y>.tiny-5 {
        height: 41.6666666667%
    }

    .grid-y>.tiny-6 {
        height: 50%
    }

    .grid-y>.tiny-7 {
        height: 58.3333333333%
    }

    .grid-y>.tiny-8 {
        height: 66.6666666667%
    }

    .grid-y>.tiny-9 {
        height: 75%
    }

    .grid-y>.tiny-10 {
        height: 83.3333333333%
    }

    .grid-y>.tiny-11 {
        height: 91.6666666667%
    }

    .grid-y>.tiny-12 {
        height: 100%
    }
}

@media print,
screen and (min-width:40.0625em) {
    .grid-y>.small-auto {
        flex: 1 1 0;
        height: auto
    }

    .grid-y>.small-12,
    .grid-y>.small-11,
    .grid-y>.small-10,
    .grid-y>.small-9,
    .grid-y>.small-8,
    .grid-y>.small-7,
    .grid-y>.small-6,
    .grid-y>.small-5,
    .grid-y>.small-4,
    .grid-y>.small-3,
    .grid-y>.small-2,
    .grid-y>.small-1,
    .grid-y>.small-shrink {
        flex: 0 0 auto
    }

    .grid-y>.small-shrink {
        height: auto
    }

    .grid-y>.small-1 {
        height: 8.3333333333%
    }

    .grid-y>.small-2 {
        height: 16.6666666667%
    }

    .grid-y>.small-3 {
        height: 25%
    }

    .grid-y>.small-4 {
        height: 33.3333333333%
    }

    .grid-y>.small-5 {
        height: 41.6666666667%
    }

    .grid-y>.small-6 {
        height: 50%
    }

    .grid-y>.small-7 {
        height: 58.3333333333%
    }

    .grid-y>.small-8 {
        height: 66.6666666667%
    }

    .grid-y>.small-9 {
        height: 75%
    }

    .grid-y>.small-10 {
        height: 83.3333333333%
    }

    .grid-y>.small-11 {
        height: 91.6666666667%
    }

    .grid-y>.small-12 {
        height: 100%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .grid-y>.medium-auto {
        flex: 1 1 0;
        height: auto
    }

    .grid-y>.medium-12,
    .grid-y>.medium-11,
    .grid-y>.medium-10,
    .grid-y>.medium-9,
    .grid-y>.medium-8,
    .grid-y>.medium-7,
    .grid-y>.medium-6,
    .grid-y>.medium-5,
    .grid-y>.medium-4,
    .grid-y>.medium-3,
    .grid-y>.medium-2,
    .grid-y>.medium-1,
    .grid-y>.medium-shrink {
        flex: 0 0 auto
    }

    .grid-y>.medium-shrink {
        height: auto
    }

    .grid-y>.medium-1 {
        height: 8.3333333333%
    }

    .grid-y>.medium-2 {
        height: 16.6666666667%
    }

    .grid-y>.medium-3 {
        height: 25%
    }

    .grid-y>.medium-4 {
        height: 33.3333333333%
    }

    .grid-y>.medium-5 {
        height: 41.6666666667%
    }

    .grid-y>.medium-6 {
        height: 50%
    }

    .grid-y>.medium-7 {
        height: 58.3333333333%
    }

    .grid-y>.medium-8 {
        height: 66.6666666667%
    }

    .grid-y>.medium-9 {
        height: 75%
    }

    .grid-y>.medium-10 {
        height: 83.3333333333%
    }

    .grid-y>.medium-11 {
        height: 91.6666666667%
    }

    .grid-y>.medium-12 {
        height: 100%
    }
}

@media print,
screen and (min-width:64.0625em) {
    .grid-y>.large-auto {
        flex: 1 1 0;
        height: auto
    }

    .grid-y>.large-12,
    .grid-y>.large-11,
    .grid-y>.large-10,
    .grid-y>.large-9,
    .grid-y>.large-8,
    .grid-y>.large-7,
    .grid-y>.large-6,
    .grid-y>.large-5,
    .grid-y>.large-4,
    .grid-y>.large-3,
    .grid-y>.large-2,
    .grid-y>.large-1,
    .grid-y>.large-shrink {
        flex: 0 0 auto
    }

    .grid-y>.large-shrink {
        height: auto
    }

    .grid-y>.large-1 {
        height: 8.3333333333%
    }

    .grid-y>.large-2 {
        height: 16.6666666667%
    }

    .grid-y>.large-3 {
        height: 25%
    }

    .grid-y>.large-4 {
        height: 33.3333333333%
    }

    .grid-y>.large-5 {
        height: 41.6666666667%
    }

    .grid-y>.large-6 {
        height: 50%
    }

    .grid-y>.large-7 {
        height: 58.3333333333%
    }

    .grid-y>.large-8 {
        height: 66.6666666667%
    }

    .grid-y>.large-9 {
        height: 75%
    }

    .grid-y>.large-10 {
        height: 83.3333333333%
    }

    .grid-y>.large-11 {
        height: 91.6666666667%
    }

    .grid-y>.large-12 {
        height: 100%
    }
}

.grid-padding-y .grid-padding-y {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-padding-y .grid-padding-y {
        margin-top: -2rem;
        margin-bottom: -2rem
    }
}

.grid-padding-y>.cell {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-padding-y>.cell {
        padding-top: 2rem;
        padding-bottom: 2rem
    }
}

.grid-margin-y {
    margin-top: -1.25rem;
    margin-bottom: -1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-margin-y {
        margin-top: -2rem;
        margin-bottom: -2rem
    }
}

.grid-margin-y>.cell {
    height: calc(100% - 2.5rem);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .grid-margin-y>.cell {
        height: calc(100% - 4rem);
        margin-top: 2rem;
        margin-bottom: 2rem
    }
}

.grid-margin-y>.auto {
    height: auto
}

.grid-margin-y>.shrink {
    height: auto
}

.grid-margin-y>.initial-1 {
    height: calc(8.3333333333% - 2.5rem)
}

.grid-margin-y>.initial-2 {
    height: calc(16.6666666667% - 2.5rem)
}

.grid-margin-y>.initial-3 {
    height: calc(25% - 2.5rem)
}

.grid-margin-y>.initial-4 {
    height: calc(33.3333333333% - 2.5rem)
}

.grid-margin-y>.initial-5 {
    height: calc(41.6666666667% - 2.5rem)
}

.grid-margin-y>.initial-6 {
    height: calc(50% - 2.5rem)
}

.grid-margin-y>.initial-7 {
    height: calc(58.3333333333% - 2.5rem)
}

.grid-margin-y>.initial-8 {
    height: calc(66.6666666667% - 2.5rem)
}

.grid-margin-y>.initial-9 {
    height: calc(75% - 2.5rem)
}

.grid-margin-y>.initial-10 {
    height: calc(83.3333333333% - 2.5rem)
}

.grid-margin-y>.initial-11 {
    height: calc(91.6666666667% - 2.5rem)
}

.grid-margin-y>.initial-12 {
    height: calc(100% - 2.5rem)
}

@media print,
screen and (min-width:20.0625em) {
    .grid-margin-y>.tiny-auto {
        height: auto
    }

    .grid-margin-y>.tiny-shrink {
        height: auto
    }

    .grid-margin-y>.tiny-1 {
        height: calc(8.3333333333% - 2.5rem)
    }

    .grid-margin-y>.tiny-2 {
        height: calc(16.6666666667% - 2.5rem)
    }

    .grid-margin-y>.tiny-3 {
        height: calc(25% - 2.5rem)
    }

    .grid-margin-y>.tiny-4 {
        height: calc(33.3333333333% - 2.5rem)
    }

    .grid-margin-y>.tiny-5 {
        height: calc(41.6666666667% - 2.5rem)
    }

    .grid-margin-y>.tiny-6 {
        height: calc(50% - 2.5rem)
    }

    .grid-margin-y>.tiny-7 {
        height: calc(58.3333333333% - 2.5rem)
    }

    .grid-margin-y>.tiny-8 {
        height: calc(66.6666666667% - 2.5rem)
    }

    .grid-margin-y>.tiny-9 {
        height: calc(75% - 2.5rem)
    }

    .grid-margin-y>.tiny-10 {
        height: calc(83.3333333333% - 2.5rem)
    }

    .grid-margin-y>.tiny-11 {
        height: calc(91.6666666667% - 2.5rem)
    }

    .grid-margin-y>.tiny-12 {
        height: calc(100% - 2.5rem)
    }
}

@media print,
screen and (min-width:40.0625em) {
    .grid-margin-y>.small-auto {
        height: auto
    }

    .grid-margin-y>.small-shrink {
        height: auto
    }

    .grid-margin-y>.small-1 {
        height: calc(8.3333333333% - 2.5rem)
    }

    .grid-margin-y>.small-2 {
        height: calc(16.6666666667% - 2.5rem)
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 2.5rem)
    }

    .grid-margin-y>.small-4 {
        height: calc(33.3333333333% - 2.5rem)
    }

    .grid-margin-y>.small-5 {
        height: calc(41.6666666667% - 2.5rem)
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 2.5rem)
    }

    .grid-margin-y>.small-7 {
        height: calc(58.3333333333% - 2.5rem)
    }

    .grid-margin-y>.small-8 {
        height: calc(66.6666666667% - 2.5rem)
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 2.5rem)
    }

    .grid-margin-y>.small-10 {
        height: calc(83.3333333333% - 2.5rem)
    }

    .grid-margin-y>.small-11 {
        height: calc(91.6666666667% - 2.5rem)
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 2.5rem)
    }
}

@media print,
screen and (min-width:48.0625em) {
    .grid-margin-y>.auto {
        height: auto
    }

    .grid-margin-y>.shrink {
        height: auto
    }

    .grid-margin-y>.initial-1 {
        height: calc(8.3333333333% - 4rem)
    }

    .grid-margin-y>.initial-2 {
        height: calc(16.6666666667% - 4rem)
    }

    .grid-margin-y>.initial-3 {
        height: calc(25% - 4rem)
    }

    .grid-margin-y>.initial-4 {
        height: calc(33.3333333333% - 4rem)
    }

    .grid-margin-y>.initial-5 {
        height: calc(41.6666666667% - 4rem)
    }

    .grid-margin-y>.initial-6 {
        height: calc(50% - 4rem)
    }

    .grid-margin-y>.initial-7 {
        height: calc(58.3333333333% - 4rem)
    }

    .grid-margin-y>.initial-8 {
        height: calc(66.6666666667% - 4rem)
    }

    .grid-margin-y>.initial-9 {
        height: calc(75% - 4rem)
    }

    .grid-margin-y>.initial-10 {
        height: calc(83.3333333333% - 4rem)
    }

    .grid-margin-y>.initial-11 {
        height: calc(91.6666666667% - 4rem)
    }

    .grid-margin-y>.initial-12 {
        height: calc(100% - 4rem)
    }

    .grid-margin-y>.tiny-auto {
        height: auto
    }

    .grid-margin-y>.tiny-shrink {
        height: auto
    }

    .grid-margin-y>.tiny-1 {
        height: calc(8.3333333333% - 4rem)
    }

    .grid-margin-y>.tiny-2 {
        height: calc(16.6666666667% - 4rem)
    }

    .grid-margin-y>.tiny-3 {
        height: calc(25% - 4rem)
    }

    .grid-margin-y>.tiny-4 {
        height: calc(33.3333333333% - 4rem)
    }

    .grid-margin-y>.tiny-5 {
        height: calc(41.6666666667% - 4rem)
    }

    .grid-margin-y>.tiny-6 {
        height: calc(50% - 4rem)
    }

    .grid-margin-y>.tiny-7 {
        height: calc(58.3333333333% - 4rem)
    }

    .grid-margin-y>.tiny-8 {
        height: calc(66.6666666667% - 4rem)
    }

    .grid-margin-y>.tiny-9 {
        height: calc(75% - 4rem)
    }

    .grid-margin-y>.tiny-10 {
        height: calc(83.3333333333% - 4rem)
    }

    .grid-margin-y>.tiny-11 {
        height: calc(91.6666666667% - 4rem)
    }

    .grid-margin-y>.tiny-12 {
        height: calc(100% - 4rem)
    }

    .grid-margin-y>.small-auto {
        height: auto
    }

    .grid-margin-y>.small-shrink {
        height: auto
    }

    .grid-margin-y>.small-1 {
        height: calc(8.3333333333% - 4rem)
    }

    .grid-margin-y>.small-2 {
        height: calc(16.6666666667% - 4rem)
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 4rem)
    }

    .grid-margin-y>.small-4 {
        height: calc(33.3333333333% - 4rem)
    }

    .grid-margin-y>.small-5 {
        height: calc(41.6666666667% - 4rem)
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 4rem)
    }

    .grid-margin-y>.small-7 {
        height: calc(58.3333333333% - 4rem)
    }

    .grid-margin-y>.small-8 {
        height: calc(66.6666666667% - 4rem)
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 4rem)
    }

    .grid-margin-y>.small-10 {
        height: calc(83.3333333333% - 4rem)
    }

    .grid-margin-y>.small-11 {
        height: calc(91.6666666667% - 4rem)
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 4rem)
    }

    .grid-margin-y>.medium-auto {
        height: auto
    }

    .grid-margin-y>.medium-shrink {
        height: auto
    }

    .grid-margin-y>.medium-1 {
        height: calc(8.3333333333% - 4rem)
    }

    .grid-margin-y>.medium-2 {
        height: calc(16.6666666667% - 4rem)
    }

    .grid-margin-y>.medium-3 {
        height: calc(25% - 4rem)
    }

    .grid-margin-y>.medium-4 {
        height: calc(33.3333333333% - 4rem)
    }

    .grid-margin-y>.medium-5 {
        height: calc(41.6666666667% - 4rem)
    }

    .grid-margin-y>.medium-6 {
        height: calc(50% - 4rem)
    }

    .grid-margin-y>.medium-7 {
        height: calc(58.3333333333% - 4rem)
    }

    .grid-margin-y>.medium-8 {
        height: calc(66.6666666667% - 4rem)
    }

    .grid-margin-y>.medium-9 {
        height: calc(75% - 4rem)
    }

    .grid-margin-y>.medium-10 {
        height: calc(83.3333333333% - 4rem)
    }

    .grid-margin-y>.medium-11 {
        height: calc(91.6666666667% - 4rem)
    }

    .grid-margin-y>.medium-12 {
        height: calc(100% - 4rem)
    }
}

@media print,
screen and (min-width:64.0625em) {
    .grid-margin-y>.large-auto {
        height: auto
    }

    .grid-margin-y>.large-shrink {
        height: auto
    }

    .grid-margin-y>.large-1 {
        height: calc(8.3333333333% - 4rem)
    }

    .grid-margin-y>.large-2 {
        height: calc(16.6666666667% - 4rem)
    }

    .grid-margin-y>.large-3 {
        height: calc(25% - 4rem)
    }

    .grid-margin-y>.large-4 {
        height: calc(33.3333333333% - 4rem)
    }

    .grid-margin-y>.large-5 {
        height: calc(41.6666666667% - 4rem)
    }

    .grid-margin-y>.large-6 {
        height: calc(50% - 4rem)
    }

    .grid-margin-y>.large-7 {
        height: calc(58.3333333333% - 4rem)
    }

    .grid-margin-y>.large-8 {
        height: calc(66.6666666667% - 4rem)
    }

    .grid-margin-y>.large-9 {
        height: calc(75% - 4rem)
    }

    .grid-margin-y>.large-10 {
        height: calc(83.3333333333% - 4rem)
    }

    .grid-margin-y>.large-11 {
        height: calc(91.6666666667% - 4rem)
    }

    .grid-margin-y>.large-12 {
        height: calc(100% - 4rem)
    }
}

.align-left {
    justify-content: flex-start
}

.align-right {
    justify-content: flex-end
}

.align-center {
    justify-content: center
}

.align-justify {
    justify-content: space-between
}

.align-spaced {
    justify-content: space-around
}

.align-left.vertical.menu>li>a {
    justify-content: flex-start
}

.align-right.vertical.menu>li>a {
    justify-content: flex-end
}

.align-center.vertical.menu>li>a {
    justify-content: center
}

.align-top {
    align-items: flex-start
}

.align-self-top {
    align-self: flex-start
}

.align-bottom {
    align-items: flex-end
}

.align-self-bottom {
    align-self: flex-end
}

.align-middle {
    align-items: center
}

.align-self-middle {
    align-self: center
}

.align-stretch {
    align-items: stretch
}

.align-self-stretch {
    align-self: stretch
}

.align-center-middle {
    justify-content: center;
    align-items: center;
    align-content: center
}

.initial-order-1 {
    order: 1
}

.initial-order-2 {
    order: 2
}

.initial-order-3 {
    order: 3
}

.initial-order-4 {
    order: 4
}

.initial-order-5 {
    order: 5
}

.initial-order-6 {
    order: 6
}

@media print,
screen and (min-width:20.0625em) {
    .tiny-order-1 {
        order: 1
    }

    .tiny-order-2 {
        order: 2
    }

    .tiny-order-3 {
        order: 3
    }

    .tiny-order-4 {
        order: 4
    }

    .tiny-order-5 {
        order: 5
    }

    .tiny-order-6 {
        order: 6
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-order-1 {
        order: 1
    }

    .small-order-2 {
        order: 2
    }

    .small-order-3 {
        order: 3
    }

    .small-order-4 {
        order: 4
    }

    .small-order-5 {
        order: 5
    }

    .small-order-6 {
        order: 6
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-order-1 {
        order: 1
    }

    .medium-order-2 {
        order: 2
    }

    .medium-order-3 {
        order: 3
    }

    .medium-order-4 {
        order: 4
    }

    .medium-order-5 {
        order: 5
    }

    .medium-order-6 {
        order: 6
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-order-1 {
        order: 1
    }

    .large-order-2 {
        order: 2
    }

    .large-order-3 {
        order: 3
    }

    .large-order-4 {
        order: 4
    }

    .large-order-5 {
        order: 5
    }

    .large-order-6 {
        order: 6
    }
}

.flex-container {
    display: flex
}

.flex-child-auto {
    flex: 1 1 auto
}

.flex-child-grow {
    flex: 1 0 auto
}

.flex-child-shrink {
    flex: 0 1 auto
}

.flex-dir-row {
    flex-direction: row
}

.flex-dir-row-reverse {
    flex-direction: row-reverse
}

.flex-dir-column {
    flex-direction: column
}

.flex-dir-column-reverse {
    flex-direction: column-reverse
}

@media print,
screen and (min-width:20.0625em) {
    .tiny-flex-container {
        display: flex
    }

    .tiny-flex-child-auto {
        flex: 1 1 auto
    }

    .tiny-flex-child-grow {
        flex: 1 0 auto
    }

    .tiny-flex-child-shrink {
        flex: 0 1 auto
    }

    .tiny-flex-dir-row {
        flex-direction: row
    }

    .tiny-flex-dir-row-reverse {
        flex-direction: row-reverse
    }

    .tiny-flex-dir-column {
        flex-direction: column
    }

    .tiny-flex-dir-column-reverse {
        flex-direction: column-reverse
    }
}

@media print,
screen and (min-width:40.0625em) {
    .small-flex-container {
        display: flex
    }

    .small-flex-child-auto {
        flex: 1 1 auto
    }

    .small-flex-child-grow {
        flex: 1 0 auto
    }

    .small-flex-child-shrink {
        flex: 0 1 auto
    }

    .small-flex-dir-row {
        flex-direction: row
    }

    .small-flex-dir-row-reverse {
        flex-direction: row-reverse
    }

    .small-flex-dir-column {
        flex-direction: column
    }

    .small-flex-dir-column-reverse {
        flex-direction: column-reverse
    }
}

@media print,
screen and (min-width:48.0625em) {
    .medium-flex-container {
        display: flex
    }

    .medium-flex-child-auto {
        flex: 1 1 auto
    }

    .medium-flex-child-grow {
        flex: 1 0 auto
    }

    .medium-flex-child-shrink {
        flex: 0 1 auto
    }

    .medium-flex-dir-row {
        flex-direction: row
    }

    .medium-flex-dir-row-reverse {
        flex-direction: row-reverse
    }

    .medium-flex-dir-column {
        flex-direction: column
    }

    .medium-flex-dir-column-reverse {
        flex-direction: column-reverse
    }
}

@media print,
screen and (min-width:64.0625em) {
    .large-flex-container {
        display: flex
    }

    .large-flex-child-auto {
        flex: 1 1 auto
    }

    .large-flex-child-grow {
        flex: 1 0 auto
    }

    .large-flex-child-shrink {
        flex: 0 1 auto
    }

    .large-flex-dir-row {
        flex-direction: row
    }

    .large-flex-dir-row-reverse {
        flex-direction: row-reverse
    }

    .large-flex-dir-column {
        flex-direction: column
    }

    .large-flex-dir-column-reverse {
        flex-direction: column-reverse
    }
}

.global-spacing--15x {
    margin-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--15x {
        margin-top: 5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-spacing--15x {
        margin-top: 7.5rem
    }
}

.global-spacing--12x {
    margin-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--12x {
        margin-top: 4rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-spacing--12x {
        margin-top: 6rem
    }
}

.global-spacing--10x {
    margin-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--10x {
        margin-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-spacing--10x {
        margin-top: 5rem
    }
}

.global-spacing--8x {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--8x {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-spacing--8x {
        margin-top: 4rem
    }
}

.global-spacing--7x {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--7x {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-spacing--7x {
        margin-top: 3.5rem
    }
}

.global-spacing--6x {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--6x {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-spacing--6x {
        margin-top: 3rem
    }
}

.global-spacing--5x {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--5x {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-spacing--5x {
        margin-top: 2.5rem
    }
}

.global-spacing--4x {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--4x {
        margin-top: 2rem
    }
}

.global-spacing--3x {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--3x {
        margin-top: 1.5rem
    }
}

.global-spacing--2x {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-spacing--2x {
        margin-top: 1rem
    }
}

.global-spacing--1x {
    margin-top: 0.5rem
}

.global-margin--15x {
    margin-top: 2.5rem
}

.global-margin--15x {
    margin-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--15x {
        margin-top: 5rem
    }

    .global-margin--15x {
        margin-bottom: 5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-margin--15x {
        margin-top: 7.5rem
    }

    .global-margin--15x {
        margin-bottom: 7.5rem
    }
}

.global-margin--12x {
    margin-top: 2.5rem
}

.global-margin--12x {
    margin-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--12x {
        margin-top: 4rem
    }

    .global-margin--12x {
        margin-bottom: 4rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-margin--12x {
        margin-top: 6rem
    }

    .global-margin--12x {
        margin-bottom: 6rem
    }
}

.global-margin--10x {
    margin-top: 2.5rem
}

.global-margin--10x {
    margin-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--10x {
        margin-top: 3.5rem
    }

    .global-margin--10x {
        margin-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-margin--10x {
        margin-top: 5rem
    }

    .global-margin--10x {
        margin-bottom: 5rem
    }
}

.global-margin--8x {
    margin-top: 2rem
}

.global-margin--8x {
    margin-bottom: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--8x {
        margin-top: 3rem
    }

    .global-margin--8x {
        margin-bottom: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-margin--8x {
        margin-top: 4rem
    }

    .global-margin--8x {
        margin-bottom: 4rem
    }
}

.global-margin--7x {
    margin-top: 1.5rem
}

.global-margin--7x {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--7x {
        margin-top: 2.5rem
    }

    .global-margin--7x {
        margin-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-margin--7x {
        margin-top: 3.5rem
    }

    .global-margin--7x {
        margin-bottom: 3.5rem
    }
}

.global-margin--6x {
    margin-top: 1.5rem
}

.global-margin--6x {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--6x {
        margin-top: 2.5rem
    }

    .global-margin--6x {
        margin-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-margin--6x {
        margin-top: 3rem
    }

    .global-margin--6x {
        margin-bottom: 3rem
    }
}

.global-margin--5x {
    margin-top: 1.5rem
}

.global-margin--5x {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--5x {
        margin-top: 2rem
    }

    .global-margin--5x {
        margin-bottom: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-margin--5x {
        margin-top: 2.5rem
    }

    .global-margin--5x {
        margin-bottom: 2.5rem
    }
}

.global-margin--4x {
    margin-top: 1.5rem
}

.global-margin--4x {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--4x {
        margin-top: 2rem
    }

    .global-margin--4x {
        margin-bottom: 2rem
    }
}

.global-margin--3x {
    margin-top: 1rem
}

.global-margin--3x {
    margin-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--3x {
        margin-top: 1.5rem
    }

    .global-margin--3x {
        margin-bottom: 1.5rem
    }
}

.global-margin--2x {
    margin-top: 0.5rem
}

.global-margin--2x {
    margin-bottom: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-margin--2x {
        margin-top: 1rem
    }

    .global-margin--2x {
        margin-bottom: 1rem
    }
}

.global-margin--1x {
    margin-top: 0.5rem
}

.global-margin--1x {
    margin-bottom: 0.5rem
}

.global-padding--15x {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--15x {
        padding-top: 5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--15x {
        padding-top: 7.5rem
    }
}

.global-padding--15x {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--15x {
        padding-bottom: 5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--15x {
        padding-bottom: 7.5rem
    }
}

.global-padding--12x {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--12x {
        padding-top: 4rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--12x {
        padding-top: 6rem
    }
}

.global-padding--12x {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--12x {
        padding-bottom: 4rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--12x {
        padding-bottom: 6rem
    }
}

.global-padding--10x {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--10x {
        padding-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--10x {
        padding-top: 5rem
    }
}

.global-padding--10x {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--10x {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--10x {
        padding-bottom: 5rem
    }
}

.global-padding--8x {
    padding-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--8x {
        padding-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--8x {
        padding-top: 4rem
    }
}

.global-padding--8x {
    padding-bottom: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--8x {
        padding-bottom: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--8x {
        padding-bottom: 4rem
    }
}

.global-padding--7x {
    padding-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--7x {
        padding-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--7x {
        padding-top: 3.5rem
    }
}

.global-padding--7x {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--7x {
        padding-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--7x {
        padding-bottom: 3.5rem
    }
}

.global-padding--6x {
    padding-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--6x {
        padding-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--6x {
        padding-top: 3rem
    }
}

.global-padding--6x {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--6x {
        padding-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--6x {
        padding-bottom: 3rem
    }
}

.global-padding--5x {
    padding-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--5x {
        padding-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--5x {
        padding-top: 2.5rem
    }
}

.global-padding--5x {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--5x {
        padding-bottom: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .global-padding--5x {
        padding-bottom: 2.5rem
    }
}

.global-padding--4x {
    padding-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--4x {
        padding-top: 2rem
    }
}

.global-padding--4x {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--4x {
        padding-bottom: 2rem
    }
}

.global-padding--3x {
    padding-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--3x {
        padding-top: 1.5rem
    }
}

.global-padding--3x {
    padding-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--3x {
        padding-bottom: 1.5rem
    }
}

.global-padding--2x {
    padding-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--2x {
        padding-top: 1rem
    }
}

.global-padding--2x {
    padding-bottom: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .global-padding--2x {
        padding-bottom: 1rem
    }
}

.global-padding--1x {
    padding-top: 0.5rem
}

.global-padding--1x {
    padding-bottom: 0.5rem
}

.show-for-sr,
.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    font-size: 18px;
    color: #000;
    background-color: #fff
}

.list--comma-separate ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.list--comma-separate li {
    display: inline-block
}

.list--comma-separate li:not(:last-child) {
    margin-right: .25em
}

.list--comma-separate li:nth-last-child(n+2)::after {
    content: ","
}

.text-margin-reset h1,
.text-margin-reset h2,
.text-margin-reset h3,
.text-margin-reset h4,
.text-margin-reset p,
.text-margin-reset span {
    margin: 0
}

.bg-white+.bg-white:has(.section-heading) .section-heading .grid-container,
.bg-white+.bg-white:not(:has(.section-heading))>.grid-container {
    position: relative
}

.bg-white+.bg-white:has(.section-heading) .section-heading .grid-container,
.bg-white+.bg-white:not(:has(.section-heading))>.grid-container {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {

    .bg-white+.bg-white:has(.section-heading) .section-heading .grid-container,
    .bg-white+.bg-white:not(:has(.section-heading))>.grid-container {
        padding-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .bg-white+.bg-white:has(.section-heading) .section-heading .grid-container,
    .bg-white+.bg-white:not(:has(.section-heading))>.grid-container {
        padding-top: 5rem
    }
}

.bg-white+.bg-white:has(.section-heading) .section-heading .grid-container:after,
.bg-white+.bg-white:not(:has(.section-heading))>.grid-container:after {
    content: "";
    display: block;
    border-top: 2px solid #c99700;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: 1.25rem;
    margin-right: 1.25rem
}

@media print,
screen and (min-width:48.0625em) {

    .bg-white+.bg-white:has(.section-heading) .section-heading .grid-container:after,
    .bg-white+.bg-white:not(:has(.section-heading))>.grid-container:after {
        border-top-width: 2px;
        margin-left: 2rem;
        margin-right: 2rem
    }
}

.bg-white+.bg-white:has(.section-heading) .section-heading .grid-container:before,
.bg-white+.bg-white:not(:has(.section-heading))>.grid-container:before {
    content: "";
    display: block;
    background: #fff url(../images/compass-sm.svg) no-repeat center center;
    width: 31px;
    height: 31px;
    position: absolute;
    left: 50%;
    top: -17px;
    transform: translateX(-50%);
    padding: 0 24px;
    z-index: 1
}

@media print,
screen and (min-width:48.0625em) {

    .bg-white+.bg-white:has(.section-heading) .section-heading .grid-container:before,
    .bg-white+.bg-white:not(:has(.section-heading))>.grid-container:before {
        background-image: url(../images/compass.svg);
        width: 50px;
        height: 50px;
        top: -26px;
        padding: 0 41px
    }
}

.angle-box-bottom {
    background: #edf8ff;
    padding: 24px;
    width: 280px
}

.angle-box-bottom {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 52px), 0 100%)
}

.angle-box-top {
    background: #edf8ff;
    padding: 24px;
    width: 280px;
    -webkit-clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 52px, 100% 0, 100% 100%, 0 100%)
}

.oho-animate {
    transition: opacity 550ms cubic-bezier(0.42, 0.08, 0.06, 0.98) 250ms, transform 550ms cubic-bezier(0.42, 0.08, 0.06, 0.98) 250ms;
    transform: none;
    opacity: 1
}

.oho-animate--ready {
    transition: none
}

.oho-animate--ready.fade-in-up,
.oho-animate--out.fade-in-up {
    transform: translateY(5rem);
    opacity: 0
}

.oho-animate--ready.fade-in-right,
.oho-animate--out.fade-in-right {
    transform: translateX(5rem);
    opacity: 0
}

.oho-animate--ready.fade-in-down,
.oho-animate--out.fade-in-down {
    transform: translateY(-5rem);
    opacity: 0
}

.oho-animate--ready.fade-in-left,
.oho-animate--out.fade-in-left {
    transform: translateX(-5rem);
    opacity: 0
}

.oho-animate:focus {
    transform: none !important;
    opacity: 1 !important
}

.btn:before,
.btn--alternate:before {
    font-family: "Font Awesome 6 Pro";
    margin-right: .5rem
}

.btn {
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    font-weight: 500;
    font-size: .875rem;
    padding: .75rem 1.25rem;
    color: #fff;
    background-color: #002855
}

.btn:hover,
.btn:focus {
    text-decoration: none;
    outline: none
}

.btn:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6
}

.btn::before,
.btn::after {
    color: #c99700
}

.btn:hover,
.btn:focus {
    color: #fff;
    background-color: #008755
}

.btn:hover::before,
.btn:hover::after,
.btn:focus::before,
.btn:focus::after {
    color: #fff
}

@media print,
screen and (min-width:48.0625em) {
    .btn {
        font-size: 1rem;
        padding: 1rem 1.5rem
    }
}

.btn--alternate {
    font-size: .875rem;
    padding: .75rem 1.25rem;
    color: #002855;
    background-color: #fff
}

.btn--alternate::before,
.btn--alternate::after {
    color: #008755
}

.btn--alternate:hover,
.btn--alternate:focus {
    color: #fff;
    background-color: #008755
}

.btn--alternate:hover::before,
.btn--alternate:hover::after,
.btn--alternate:focus::before,
.btn--alternate:focus::after {
    color: #fff
}

@media print,
screen and (min-width:48.0625em) {
    .btn--alternate {
        font-size: 1rem;
        padding: 1rem 1.5rem
    }
}

.btn--small {
    font-size: .875rem;
    padding: .75rem 1.25rem
}

.btn--align-right {
    display: table;
    margin-left: auto
}

.btn--align-center {
    display: table;
    margin-right: auto;
    margin-left: auto
}

.btn--centered {
    margin-left: auto;
    margin-right: auto;
    display: table
}

.external {
    position: relative
}

.external:after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    margin-left: .25rem;
    content: "";
    font-weight: 400;
    font-size: 1rem
}

.external:not(.btn):after {
    color: #008755
}

[href^="/documents"]:after,
a[data-entity-type=media]:after,
[href$=".doc"]:after,
[href$=".docx"]:after,
[href$=".pdf"]:after,
[href$=".ppt"]:after,
[href$=".pptx"]:after,
[href$=".xls"]:after,
[href$=".xlsx"]:after,
[href$=".zip"]:after {
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    margin-left: .5rem;
    content: "";
    font-weight: 400
}

.link-arrow {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .link-arrow {
        font-size: 1rem
    }
}

.link-arrow::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.link-arrow:hover,
.link-arrow:focus {
    color: #008755;
    border-color: #008755
}

.link-arrow:hover::after,
.link-arrow:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.link-arrow.btn {
    padding-right: 1.875rem
}

.link-arrow-alt {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .link-arrow-alt {
        font-size: 1rem
    }
}

.link-arrow-alt::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.link-arrow-alt:hover,
.link-arrow-alt:focus {
    color: #008755;
    border-color: #008755
}

.link-arrow-alt:hover::after,
.link-arrow-alt:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.link-arrow-alt.btn {
    padding-right: 1.875rem
}

.link-arrow-alt {
    color: #fff
}

.link-arrow-alt::after {
    color: #c99700
}

.link-arrow-alt:hover,
.link-arrow-alt:focus {
    color: #fff !important;
    border-color: #c99700 !important
}

[type=text],
[type=password],
[type=date],
[type=datetime],
[type=datetime-local],
[type=month],
[type=week],
[type=email],
[type=number],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=color],
[type=file],
[type=image],
[type=submit],
button,
textarea,
select,
fieldset {
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    font-weight: 500;
    font-size: .875rem;
    padding: .75rem 1.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 1.1875rem 1.25rem;
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    border-radius: 0;
    font-family: "franklin-gothic-atf", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: normal;
    text-align: start
}

[type=text]:hover,
[type=text]:focus,
[type=password]:hover,
[type=password]:focus,
[type=date]:hover,
[type=date]:focus,
[type=datetime]:hover,
[type=datetime]:focus,
[type=datetime-local]:hover,
[type=datetime-local]:focus,
[type=month]:hover,
[type=month]:focus,
[type=week]:hover,
[type=week]:focus,
[type=email]:hover,
[type=email]:focus,
[type=number]:hover,
[type=number]:focus,
[type=search]:hover,
[type=search]:focus,
[type=tel]:hover,
[type=tel]:focus,
[type=time]:hover,
[type=time]:focus,
[type=url]:hover,
[type=url]:focus,
[type=color]:hover,
[type=color]:focus,
[type=file]:hover,
[type=file]:focus,
[type=image]:hover,
[type=image]:focus,
[type=submit]:hover,
[type=submit]:focus,
button:hover,
button:focus,
textarea:hover,
textarea:focus,
select:hover,
select:focus,
fieldset:hover,
fieldset:focus {
    text-decoration: none;
    outline: none
}

[type=text]:disabled,
[type=password]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=month]:disabled,
[type=week]:disabled,
[type=email]:disabled,
[type=number]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=color]:disabled,
[type=file]:disabled,
[type=image]:disabled,
[type=submit]:disabled,
button:disabled,
textarea:disabled,
select:disabled,
fieldset:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6
}

@media print,
screen and (min-width:48.0625em) {

    [type=text],
    [type=password],
    [type=date],
    [type=datetime],
    [type=datetime-local],
    [type=month],
    [type=week],
    [type=email],
    [type=number],
    [type=search],
    [type=tel],
    [type=time],
    [type=url],
    [type=color],
    [type=file],
    [type=image],
    [type=submit],
    button,
    textarea,
    select,
    fieldset {
        font-size: 1.125rem
    }
}

textarea {
    border-radius: 4px
}

[type=text],
[type=password],
[type=date],
[type=datetime],
[type=datetime-local],
[type=month],
[type=week],
[type=email],
[type=number],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=color] {
    border-radius: 2.5rem
}

select {
    color: #262626;
    background-color: rgba(0, 0, 0, 0);
    border-color: #063d7a;
    text-transform: none;
    background-color: #fff;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' height='10' viewBox='0 0 18 10' width='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m17.5419 2.36978-7.4609 7.14844c-.23437.19531-.46875.27344-.66406.27344-.23437 0-.46875-.07813-.66406-.23438l-7.5-7.1875c-.390627-.35156-.390627-.97656-.03906-1.32812.35156-.390626.97656-.390626 1.32812-.03906l6.875 6.5625 6.83596-6.5625c.3515-.351566.9765-.351566 1.3281.03906.3516.35156.3516.97656-.0391 1.32812z' fill='%23262626'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - .625em) 50%;
    background-size: 1em
}

select:hover:not(:disabled) {
    border-color: #008755
}

select:focus:not(:disabled) {
    border-color: #008755
}

fieldset {
    display: block;
    color: #262626;
    background-color: rgba(0, 0, 0, 0);
    border-color: #063d7a;
    text-transform: none;
    margin: 0;
    border-color: rgba(0, 0, 0, 0);
    padding: 0
}

fieldset:hover:not(:disabled) {
    border-color: #008755
}

fieldset:focus:not(:disabled) {
    border-color: #008755
}

fieldset:hover:not(:disabled) {
    border-color: rgba(0, 0, 0, 0)
}

fieldset .form-item {
    margin-top: .3125rem
}

legend {
    padding-left: 0
}

button,
[type=submit] {
    color: #fff;
    background-color: #0a1f3a;
    border-color: #0a1f3a;
    margin: 0;
    cursor: pointer;
    border: 0
}

button:hover,
button:focus,
[type=submit]:hover,
[type=submit]:focus {
    color: #fff;
    background-color: #5a5a5a;
    border-color: #5a5a5a
}

label {
    /* display: block;
    color: hsl(0, 0%, 15%);
    font-family: "franklin-gothic-atf", sans-serif;
    margin-bottom: .5rem COMMENTED OUT BY PENTERA */
}

label {
    /* font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2 COMMENTED OUT BY PENTERA */
}

@media print,
screen and (min-width:48.0625em) {
    label {
        /* font-size: 1.375rem COMMENTED OUT BY PENTERA */
    }
}

@media print,
screen and (min-width:64.0625em) {
    label {
        /* font-size: 1.5rem COMMENTED OUT BY PENTERA */
    }
}

@media print,
screen and (min-width:48.0625em) {
    label {
        margin-bottom: 1rem
    }
}

[type=text],
[type=password],
[type=date],
[type=datetime],
[type=datetime-local],
[type=month],
[type=week],
[type=email],
[type=number],
[type=search],
[type=tel],
[type=time],
[type=url],
[type=color],
[type=file],
[type=image],
textarea {
    color: #262626;
    background-color: rgba(0, 0, 0, 0);
    border-color: #063d7a;
    text-transform: none;
    margin: 0
}

[type=text]:hover:not(:disabled),
[type=password]:hover:not(:disabled),
[type=date]:hover:not(:disabled),
[type=datetime]:hover:not(:disabled),
[type=datetime-local]:hover:not(:disabled),
[type=month]:hover:not(:disabled),
[type=week]:hover:not(:disabled),
[type=email]:hover:not(:disabled),
[type=number]:hover:not(:disabled),
[type=search]:hover:not(:disabled),
[type=tel]:hover:not(:disabled),
[type=time]:hover:not(:disabled),
[type=url]:hover:not(:disabled),
[type=color]:hover:not(:disabled),
[type=file]:hover:not(:disabled),
[type=image]:hover:not(:disabled),
textarea:hover:not(:disabled) {
    border-color: #008755
}

[type=text]:focus:not(:disabled),
[type=password]:focus:not(:disabled),
[type=date]:focus:not(:disabled),
[type=datetime]:focus:not(:disabled),
[type=datetime-local]:focus:not(:disabled),
[type=month]:focus:not(:disabled),
[type=week]:focus:not(:disabled),
[type=email]:focus:not(:disabled),
[type=number]:focus:not(:disabled),
[type=search]:focus:not(:disabled),
[type=tel]:focus:not(:disabled),
[type=time]:focus:not(:disabled),
[type=url]:focus:not(:disabled),
[type=color]:focus:not(:disabled),
[type=file]:focus:not(:disabled),
[type=image]:focus:not(:disabled),
textarea:focus:not(:disabled) {
    border-color: #008755
}

[type=text]::-webkit-input-placeholder,
[type=password]::-webkit-input-placeholder,
[type=date]::-webkit-input-placeholder,
[type=datetime]::-webkit-input-placeholder,
[type=datetime-local]::-webkit-input-placeholder,
[type=month]::-webkit-input-placeholder,
[type=week]::-webkit-input-placeholder,
[type=email]::-webkit-input-placeholder,
[type=number]::-webkit-input-placeholder,
[type=search]::-webkit-input-placeholder,
[type=tel]::-webkit-input-placeholder,
[type=time]::-webkit-input-placeholder,
[type=url]::-webkit-input-placeholder,
[type=color]::-webkit-input-placeholder,
[type=file]::-webkit-input-placeholder,
[type=image]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #5a5a5a;
    font-family: "franklin-gothic-atf", sans-serif
}

[type=text]::-moz-placeholder,
[type=password]::-moz-placeholder,
[type=date]::-moz-placeholder,
[type=datetime]::-moz-placeholder,
[type=datetime-local]::-moz-placeholder,
[type=month]::-moz-placeholder,
[type=week]::-moz-placeholder,
[type=email]::-moz-placeholder,
[type=number]::-moz-placeholder,
[type=search]::-moz-placeholder,
[type=tel]::-moz-placeholder,
[type=time]::-moz-placeholder,
[type=url]::-moz-placeholder,
[type=color]::-moz-placeholder,
[type=file]::-moz-placeholder,
[type=image]::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #5a5a5a;
    font-family: "franklin-gothic-atf", sans-serif
}

[type=text]:-ms-input-placeholder,
[type=password]:-ms-input-placeholder,
[type=date]:-ms-input-placeholder,
[type=datetime]:-ms-input-placeholder,
[type=datetime-local]:-ms-input-placeholder,
[type=month]:-ms-input-placeholder,
[type=week]:-ms-input-placeholder,
[type=email]:-ms-input-placeholder,
[type=number]:-ms-input-placeholder,
[type=search]:-ms-input-placeholder,
[type=tel]:-ms-input-placeholder,
[type=time]:-ms-input-placeholder,
[type=url]:-ms-input-placeholder,
[type=color]:-ms-input-placeholder,
[type=file]:-ms-input-placeholder,
[type=image]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #5a5a5a;
    font-family: "franklin-gothic-atf", sans-serif
}

[type=checkbox],
[type=radio] {
    margin: 0;
    cursor: pointer
}

[type=checkbox]+label,
[type=radio]+label {
    display: inline-block;
    margin: 1rem 0 1rem 4px;
    cursor: pointer;
    vertical-align: middle;
    color: #000
}

.form-item [type=radio]+label,
.form-item [type=checkbox]+label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {

    .form-item [type=radio]+label,
    .form-item [type=checkbox]+label {
        font-size: 1.125rem
    }
}

[type=text]:disabled,
[type=password]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=month]:disabled,
[type=week]:disabled,
[type=email]:disabled,
[type=number]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=color]:disabled,
[type=file]:disabled,
[type=image]:disabled,
select:disabled,
textarea:disabled {
    background-color: hsl(0, 0%, 65%)
}

[type=text]:not(:empty):invalid,
[type=password]:not(:empty):invalid,
[type=date]:not(:empty):invalid,
[type=datetime]:not(:empty):invalid,
[type=datetime-local]:not(:empty):invalid,
[type=month]:not(:empty):invalid,
[type=week]:not(:empty):invalid,
[type=email]:not(:empty):invalid,
[type=number]:not(:empty):invalid,
[type=search]:not(:empty):invalid,
[type=tel]:not(:empty):invalid,
[type=time]:not(:empty):invalid,
[type=url]:not(:empty):invalid,
[type=color]:not(:empty):invalid,
[type=file]:not(:empty):invalid,
[type=image]:not(:empty):invalid,
textarea:not(:empty):invalid {
    border-color: #a94442;
    box-shadow: 0 0 0 .0625em #a94442
}

.row-gap {
    row-gap: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .row-gap {
        row-gap: 2rem
    }
}

.row-gap-xlarge {
    row-gap: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .row-gap-xlarge {
        row-gap: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .row-gap-xlarge {
        row-gap: 5rem
    }
}

.btn-wrapper {
    display: flex;
    flex-flow: wrap;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: .5rem
}

@media print,
screen and (max-width:48.06125em) {
    .cell.ng-gutter-mb {
        margin-left: 0;
        width: 100%
    }
}

@media print,
screen and (max-width:48.06125em) {
    .cell.sm-gutter-mb {
        margin-left: 20px;
        width: calc(100% - 40px)
    }
}

@media print,
screen and (max-width:48.06125em) {
    .grid-container.sm-gutter-mb {
        padding-left: 20px;
        padding-right: 20px
    }
}

.pills ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.pills ul {
    display: flex;
    gap: .5rem;
    flex-flow: wrap
}

.pills li {
    display: flex;
    align-items: center
}

.pills a,
.pills span {
    background-color: #d9ede6;
    text-decoration: unset;
    border-radius: 1rem;
    padding: .625rem 1rem .625rem 1rem;
    color: #262626;
    line-height: 1.1
}

.pills a,
.pills span {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

.pills a {
    transition: background-color .25s;
    border: 1px solid #008755
}

.pills a:hover {
    background-color: #a9d4bb
}

.program-types__wrapper.pills li {
    background-color: #d9ede6;
    text-decoration: unset;
    border-radius: 1rem;
    padding: .625rem 1rem .625rem 1rem;
    color: #262626;
    line-height: 1.1
}

.program-types__wrapper.pills li {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

.page--detail__content {
    padding-top: 2.5rem
}

.page--detail__content {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .page--detail__content {
        padding-top: 3.5rem
    }

    .page--detail__content {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .page--detail__content {
        padding-top: 5rem
    }

    .page--detail__content {
        padding-bottom: 5rem
    }
}

.vaf {
    margin-top: 1.5rem;
    padding-top: 1.9375rem;
    padding-right: 0;
    padding-left: 0;
    position: relative
}

@media print,
screen and (min-width:48.0625em) {
    .vaf {
        margin-top: 2.5rem;
        padding-top: 3.0625rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .vaf {
        padding-right: 12.8125rem
    }
}

.vaf::before {
    content: "";
    display: block;
    background: #f7f7f7 url(../images/compass-sm.svg) no-repeat center center;
    width: 31px;
    height: 31px;
    position: absolute;
    left: 50%;
    top: -17px;
    transform: translateX(-50%);
    padding: 0 24px;
    z-index: 1
}

@media print,
screen and (min-width:48.0625em) {
    .vaf::before {
        background: #fff url(../images/compass-sm.svg) no-repeat center center
    }
}

@media print,
screen and (min-width:64.0625em) {
    .vaf::before {
        background: #fff url(../images/compass.svg) no-repeat;
        width: 50px;
        height: 50px;
        top: -24px;
        left: 24px;
        padding: 0
    }
}

.vaf::after {
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #c99700;
    height: 2px
}

@media print,
screen and (min-width:64.0625em) {
    .vaf::after {
        width: calc(100% - 66px)
    }
}

.vaf__heading {
    margin: 0
}

.vaf__heading {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .vaf__heading {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .vaf__heading {
        font-size: 1.5rem
    }
}

.active-filters {
    align-items: flex-start;
    -moz-column-gap: 16px;
    column-gap: 16px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    justify-content: space-between
}

@media print,
screen and (min-width:48.0625em) {
    .active-filters {
        -moz-column-gap: 24px;
        column-gap: 24px;
        row-gap: 1rem;
        justify-content: flex-start
    }
}

.active-filters .vaf__group {
    -moz-column-gap: 8px;
    column-gap: 8px;
    display: flex;
    flex-wrap: wrap;
    flex-basis: 100%;
    margin-top: 0;
    row-gap: .5rem
}

.active-filters .vaf__group {
    list-style: none;
    margin: 0;
    padding: 0
}

.active-filters .vaf__group {
    max-width: 520px
}

@media print,
screen and (min-width:48.0625em) {
    .active-filters .vaf__group {
        max-width: 43.75rem
    }
}

.active-filters .vaf__item:not(:last-child) {
    margin-right: .625rem
}

.active-filters .vaf__item {
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    font-weight: 500;
    color: #002855;
    background-color: #fff;
    color: #262626;
    border: 1px solid #c99700;
    border-radius: 96px;
    padding: .5rem 1rem;
    letter-spacing: normal;
    text-transform: none
}

.active-filters .vaf__item:hover,
.active-filters .vaf__item:focus {
    text-decoration: none;
    outline: none
}

.active-filters .vaf__item:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6
}

.active-filters .vaf__item::before,
.active-filters .vaf__item::after {
    color: #008755
}

.active-filters .vaf__item:hover,
.active-filters .vaf__item:focus {
    color: #fff;
    background-color: #008755
}

.active-filters .vaf__item:hover::before,
.active-filters .vaf__item:hover::after,
.active-filters .vaf__item:focus::before,
.active-filters .vaf__item:focus::after {
    color: #fff
}

.active-filters .vaf__item {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .active-filters .vaf__item {
        font-size: 1.125rem
    }
}

.active-filters .vaf__item::after {
    margin-left: .5rem;
    content: "";
    color: #262626;
    font-family: "Font Awesome 6 Pro"
}

.active-filters .vaf__clear {
    color: #063d7a;
    background-color: rgba(0, 0, 0, 0);
    text-transform: unset;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
    padding-right: 25px;
    letter-spacing: normal
}

.active-filters .vaf__clear:after {
    margin-left: .5rem;
    content: "";
    font-family: "Font Awesome 6 Pro";
    position: absolute
}

.active-filters .vaf__clear:hover {
    -webkit-text-decoration: rgba(0, 0, 0, 0);
    text-decoration: rgba(0, 0, 0, 0)
}

.active-filters .vaf__clear:focus {
    outline: 1px dotted #063d7a
}

@media print,
screen and (min-width:64.0625em) {
    .listing--program-wrap .vaf::before {
        background-image: url(../images/compass.svg)
    }
}

@media print,
screen and (min-width:48.0625em) {
    .listing--news-wrap .vaf::before {
        background: #f7f7f7 url(../images/compass-sm.svg) no-repeat center center
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing--news-wrap .vaf::before {
        background: #f7f7f7 url(../images/compass.svg) no-repeat;
        width: 50px;
        height: 50px;
        top: -24px;
        left: 24px;
        padding: 0
    }
}

.user-login-form,
.page--utility .main-content {
    margin-top: 2.5rem
}

.user-login-form,
.page--utility .main-content {
    margin-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {

    .user-login-form,
    .page--utility .main-content {
        margin-top: 4rem
    }

    .user-login-form,
    .page--utility .main-content {
        margin-bottom: 4rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .user-login-form,
    .page--utility .main-content {
        margin-top: 6rem
    }

    .user-login-form,
    .page--utility .main-content {
        margin-bottom: 6rem
    }
}

@media print,
screen and (max-width:48.06125em) {

    .user-login-form,
    .page--utility .main-content {
        padding-bottom: 40px
    }
}

.user-login-form input:not(.form-submit) {
    width: 100%;
    margin-bottom: 0;
    max-width: 30rem
}

.user-login-form .description {
    width: 100%;
    font-style: italic;
    margin-top: .25rem
}

.user-login-form .form-item+.form-item,
.user-login-form .form-actions {
    margin-top: 1rem
}

.page--utility .main-content .search-form .form-item input {
    padding-bottom: 1.25rem;
    border-color: gray
}

.page--utility .main-content .search-form .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 5px;
    margin-bottom: 5px
}

ol.search-results {
    padding-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    ol.search-results {
        padding-bottom: 1.5rem
    }
}

ol>li.search-result {
    padding-left: 0
}

ol>li.search-result::before {
    display: none
}

.admin-tabs {
    right: calc(2.5rem / 2);
    bottom: calc(2.5rem / 2);
    left: calc(2.5rem / 2)
}

@media print,
screen and (min-width:48.0625em) {
    .admin-tabs {
        right: calc(4rem / 2);
        bottom: calc(4rem / 2);
        left: calc(4rem / 2)
    }
}

.admin-tabs {
    position: fixed;
    z-index: 10;
    margin: 0;
    background: hsl(0, 0%, 15%)
}

.admin-tabs {
    padding: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .admin-tabs {
        padding: 1rem
    }
}

.admin-tabs ul {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none
}

.admin-tabs li {
    display: inline-block
}

.admin-tabs li+li {
    margin-left: 8px
}

.admin-tabs a {
    display: block;
    margin: 0;
    padding: .5rem 16px;
    transition: background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    text-decoration: none;
    color: #fff;
    border-radius: .25rem;
    background-color: #002855;
    font-size: 1.125rem;
    font-weight: 500
}

.admin-tabs a:hover {
    background-color: #063d7a
}

.admin-tabs a.is-active {
    background-color: #5a5a5a
}

@media print,
screen and (min-width:40.0625em) {
    .admin-tabs {
        left: auto
    }
}

.ajax-progress,
.ajax-progress-fullscreen.ajax-progress {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    display: inline-block;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: .0625rem .3125rem .125rem;
    background: hsla(0, 0%, 100%, .75) !important
}

.ajax-progress::before,
.ajax-progress::after,
.ajax-progress-fullscreen.ajax-progress::before,
.ajax-progress-fullscreen.ajax-progress::after {
    position: absolute;
    display: block;
    animation: fa-spin 2000ms infinite cubic-bezier(0.82, 0.06, 0.14, 0.97);
    color: #fe5000;
    font-family: "Font Awesome 6 Pro";
    font-size: 100px
}

.ajax-progress::before,
.ajax-progress::after,
.ajax-progress-fullscreen.ajax-progress::before,
.ajax-progress-fullscreen.ajax-progress::after {
    content: ""
}

.ajax-progress::after,
.ajax-progress-fullscreen.ajax-progress::after {
    animation: fa-spin 1500ms infinite cubic-bezier(0.82, 0.06, 0.14, 0.97);
    opacity: .5
}

.ajax-progress .throbber,
.ajax-progress-fullscreen.ajax-progress .throbber {
    display: none !important
}

[dir=rtl] .ajax-progress,
[dir=rtl] .ajax-progress-fullscreen.ajax-progress {
    float: right
}

.ajax-progress .message,
.ajax-progress-fullscreen.ajax-progress .message {
    display: inline;
    padding: .0625rem .3125rem .125rem
}

tr .ajax-progress-throbber .throbber {
    margin: 0 .125rem
}

.ajax-progress-bar {
    width: 16rem
}

.cookie-compliance-popup {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    background-color: hsl(0, 0%, 15%)
}

.cookie-compliance-popup .grid-x,
.cookie-compliance-popup .grid-container {
    width: 100%
}

.eu-cookie-compliance-message h2 {
    all: unset
}

.eu-cookie-compliance-message h2 {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .eu-cookie-compliance-message h2 {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .eu-cookie-compliance-message h2 {
        font-size: 1.375rem
    }
}

.eu-cookie-compliance-message .btn {
    cursor: pointer
}

.eu-cookie-compliance-buttons,
.eu-cookie-compliance-message {
    all: unset
}

form>.form-item:first-child {
    margin-top: 0
}

form>.form-item:first-child h2,
form>.form-item:first-child h3 {
    margin-top: 0
}

.form-item {
    position: relative
}

.form-item {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .form-item {
        margin-top: 1rem
    }
}

.form-item [type=checkbox],
.form-item [type=radio] {
    position: absolute;
    top: 65%;
    width: 2em;
    height: 2em;
    transition: border-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    transform: translateY(-50%);
    opacity: 0;
    font-size: inherit
}

.form-item [type=checkbox]+label,
.form-item [type=radio]+label {
    position: relative;
    margin-left: 1.5em;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.form-item [type=checkbox]+label::before,
.form-item [type=radio]+label::before {
    position: absolute;
    top: .125em;
    left: -1.5em;
    display: block;
    width: 1em;
    height: 1em;
    content: "";
    transition: background 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), box-shadow 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    border: 1px solid #262626;
    border-radius: 2px
}

.form-item [type=checkbox]:disabled,
.form-item [type=checkbox]:disabled+label,
.form-item [type=radio]:disabled,
.form-item [type=radio]:disabled+label {
    cursor: default
}

.form-item [type=checkbox]:focus+label::before,
.form-item [type=radio]:focus+label::before {
    border-color: #008755
}

.form-item [type=checkbox]:invalid+label,
.form-item [type=radio]:invalid+label {
    color: #a94442
}

.form-item [type=checkbox]:invalid+label::before,
.form-item [type=radio]:invalid+label::before {
    border-color: #a94442;
    box-shadow: 0 0 0 .0625em #a94442
}

.form-item [type=checkbox]:checked+label {
    font-weight: 700
}

.form-item [type=checkbox]:checked+label::before {
    background-color: #002855
}

.form-item [type=checkbox]:checked+label::after {
    position: absolute;
    top: 60%;
    left: -1.125em;
    display: block;
    width: .3125em;
    height: .6875em;
    content: "";
    transform: rotate(45deg) translate(-100%, -50%);
    border-width: 0 .125em .125em 0;
    border-style: solid;
    border-color: #fff
}

@media print,
screen and (min-width:48.0625em) {
    .form-item [type=checkbox]:checked+label::after {
        top: 48%;
        left: -21px
    }
}

.form-item [type=checkbox]:checked:disabled+label::after {
    border-color: hsl(0, 0%, 15%)
}

.form-item [type=checkbox]:disabled+label::before {
    background-color: hsl(0, 0%, 65%)
}

.form-item [type=radio]+label::before {
    border-radius: 50%;
    background-image: radial-gradient(#002855 0.25em, #ffffff 0.25em, #ffffff 0.5em, #002855 0.5em);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0 0
}

.form-item [type=radio]:focus+label::before {
    border: 1px solid #008755
}

.form-item [type=radio]:checked+label {
    font-weight: 700
}

.form-item [type=radio]:checked+label::before {
    border-color: #002855;
    background-size: 1em 1em
}

.form-item [type=radio]:checked:disabled+label::before {
    border-color: hsl(0, 0%, 15%);
    background-image: radial-gradient(rgb(38.25, 38.25, 38.25) 0.25em, rgb(165.75, 165.75, 165.75) 0.25em, rgb(165.75, 165.75, 165.75) 0.5em, rgb(38.25, 38.25, 38.25) 0.5em)
}

.form-item [type=radio]:checked:invalid+label::before {
    background-image: radial-gradient(#a94442 0.25em, #ffffff 0.25em, #ffffff 0.5em, #a94442 0.5em)
}

.form-item [type=radio]:disabled+label::before {
    background-color: hsl(0, 0%, 65%)
}

.form-required::after {
    content: "*";
    color: #a94442
}

.webform-element-description {
    margin-top: .5rem
}

.webform-element-description {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.required>label::after {
    content: "*";
    color: #a94442
}

[type=checkbox][name*="["]+label,
.form-radio+label {
    margin-top: .25em;
    margin-bottom: .25em
}

.webform-managed-file-placeholder {
    color: hsl(0, 0%, 15%);
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 400;
    font-style: italic
}

.form-managed-file [type=submit] {
    padding: .75em
}

.form-managed-file [type=submit] {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .form-managed-file [type=submit] {
        margin-top: 1rem
    }
}

form[class*=webform] .form-item {
    width: 100%
}

form[class*=webform] .form-actions {
    margin-top: 1rem
}

form[class*=webform] .form-actions {
    margin-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    form[class*=webform] .form-actions {
        margin-top: 1.5rem
    }

    form[class*=webform] .form-actions {
        margin-bottom: 1.5rem
    }
}

form[class*=webform] [type=text],
form[class*=webform] [type=password],
form[class*=webform] [type=date],
form[class*=webform] [type=datetime],
form[class*=webform] [type=datetime-local],
form[class*=webform] [type=month],
form[class*=webform] [type=week],
form[class*=webform] [type=email],
form[class*=webform] [type=number],
form[class*=webform] [type=search],
form[class*=webform] [type=tel],
form[class*=webform] [type=time],
form[class*=webform] [type=url],
form[class*=webform] [type=color],
form[class*=webform] [type=file],
form[class*=webform] [type=image],
form[class*=webform] fieldset,
form[class*=webform] select,
form[class*=webform] textarea {
    width: 100%
}

form[class*=webform] .js-form-type-checkbox+.js-form-type-checkbox,
form[class*=webform] .js-form-type-radio+.js-form-type-radio {
    margin-top: 0
}

form[class*=webform] .fieldset-wrapper .js-form-type-checkbox,
form[class*=webform] .fieldset-wrapper .js-form-type-radio {
    margin-top: .5rem
}

.element-invisible {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    font-size: 18px;
    color: #000;
    background-color: #fff
}

.embedded-entity:not([class*=align-]) {
    width: 100%
}

.embedded-entity:not([class*=align-]) {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .embedded-entity:not([class*=align-]) {
        margin-top: 2rem
    }
}

.js .js-hide {
    display: none
}

.js-show {
    display: none
}

.js .js-show {
    display: block
}

.maintenance-page {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100vh
}

.maintenance-page .site-header {
    height: auto
}

.maintenance-page .site-header .site-header__sticky-container {
    height: auto
}

.maintenance-page .site-header .grid-container {
    padding-top: 1.5rem
}

.maintenance-page .site-header .grid-container {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .maintenance-page .site-header .grid-container {
        padding-top: 2rem
    }

    .maintenance-page .site-header .grid-container {
        padding-bottom: 2rem
    }
}

.maintenance-page .hero__content h1,
.maintenance-page .hero__content p {
    padding-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {

    .maintenance-page .hero__content h1,
    .maintenance-page .hero__content p {
        padding-top: 2rem
    }
}

.maintenance-page>.main-content {
    margin-bottom: 6.25rem;
    padding-top: 2.5rem
}

.maintenance-page>footer {
    flex: 1 1 auto;
    align-self: flex-end;
    width: 100%;
    padding-top: 1.25rem
}

.oho-banner {
    padding-top: 0.5rem
}

.oho-banner {
    padding-bottom: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .oho-banner {
        padding-top: 1rem
    }

    .oho-banner {
        padding-bottom: 1rem
    }
}

.pager {
    padding-top: 0.5rem
}

.pager {
    padding-bottom: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .pager {
        padding-top: 1rem
    }

    .pager {
        padding-bottom: 1rem
    }
}

.pager {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .pager {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .pager {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (max-width:64.06125em) {
    .pager {
        margin-left: -80%
    }
}

@media(1025px <=width <=1440px) {
    .pager {
        margin-left: -55%
    }
}

.pager__items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none
}

.pager li:not(.pager__item--next, .pager__item--last, .pager__item--first, .pager__item--previous) a {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center
}

.pager li:not(.pager__item--next, .pager__item--last, .pager__item--first, .pager__item--previous) a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .pager li:not(.pager__item--next, .pager__item--last, .pager__item--first, .pager__item--previous) a {
        font-size: 1.125rem
    }
}

.pager li:not(.pager__item--next, .pager__item--last, .pager__item--first, .pager__item--previous) a:before {
    border-radius: 50%;
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: background-color .25s
}

.pager li:not(.pager__item--next, .pager__item--last, .pager__item--first, .pager__item--previous) a:hover {
    color: #fff;
    font-weight: 600
}

.pager li:not(.pager__item--next, .pager__item--last, .pager__item--first, .pager__item--previous) a:hover:before {
    background-color: #063d7a
}

.pager li.is-active a {
    color: #fff;
    font-weight: 600
}

.pager li.is-active a:before {
    background-color: #063d7a
}

.pager [class*=pager__item--] a {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid #063d7a;
    border-radius: 50px;
    padding: 6px 16px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    transition: color .25s, background-color .25s
}

.pager [class*=pager__item--] a::before,
.pager [class*=pager__item--] a::after {
    font-size: .875rem;
    font-weight: 600;
    position: relative;
    top: -1px;
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased
}

.pager [class*=pager__item--] a:hover {
    background-color: #063d7a;
    color: #fff
}

.pager__item--first a::before {
    content: ""
}

.pager__item--previous {
    margin-left: 4px;
    margin-right: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .pager__item--previous {
        margin-left: 8px;
        margin-right: 1rem
    }
}

.pager__item--previous a::before {
    content: ""
}

.pager__item--next {
    margin-right: 4px;
    margin-left: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .pager__item--next {
        margin-right: 8px;
        margin-left: 1rem
    }
}

@media print,
screen and (max-width:48.06125em) {

    .pager__item--first a,
    .pager__item--previous a,
    .pager__item--next a,
    .pager__item--last a {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 !important;
        height: 40px;
        width: 40px
    }

    .pager__item--first a::after,
    .pager__item--previous a::after,
    .pager__item--next a::after,
    .pager__item--last a::after {
        top: unset !important
    }
}

.pager__item--next a::after {
    content: ""
}

.pager__item--last a::after {
    content: ""
}

@media print,
screen and (max-width:48.06125em) {
    .pager__item span {
        display: none
    }
}

.pager__item:not([class*=pager__item--]),
.pager__item--ellipsis {
    display: none
}

@media screen and (min-width:58.75em) {

    .pager__item:not([class*=pager__item--]),
    .pager__item--ellipsis {
        display: block
    }
}

.pager__item.is-active {
    display: block;
    margin: 0
}

@media screen and (min-width:58.75em) {
    .pager__item.is-active {
        margin: 0
    }
}

.pager__item.is-active a {
    background-color: #063d7a;
    color: #fff;
    font-weight: 600;
    border-radius: 50px
}

.page--search h2 {
    margin-bottom: .5rem
}

.page--search .search-form .form-item {
    display: inline-block
}

.page--search .search-form label {
    display: block
}

.page--search .search-form [type=search] {
    width: 100%;
    font-size: 1rem
}

.page--search .search-form a {
    display: inline-block;
    margin-bottom: 1.25rem
}

.page--search .search-form a {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .page--search .search-form a {
        font-size: 1rem
    }
}

.page--search .search-form a::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.page--search .search-form a:hover,
.page--search .search-form a:focus {
    color: #008755;
    border-color: #008755
}

.page--search .search-form a:hover::after,
.page--search .search-form a:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.page--search .search-form a.btn {
    padding-right: 1.875rem
}

.page--search .search-results {
    padding: 0;
    list-style: none
}

.page--search .search-result {
    padding-left: 0
}

.page--search .search-result::before {
    display: none
}

.page--search .search-result+.search-result {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #5a5a5a
}

.page--search .search-result__title {
    margin: 0
}

.page--search .search-result__title {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .page--search .search-result__title {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .page--search .search-result__title {
        font-size: 1.5rem
    }
}

.page--search .search-result__snippet {
    margin-bottom: 0
}

.alert {
    background-color: #ffe21a;
    position: relative;
    color: #000
}

.alert {
    padding-top: 1rem
}

.alert {
    padding-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .alert {
        padding-top: 1.5rem
    }

    .alert {
        padding-bottom: 1.5rem
    }
}

.alert h2:first-child {
    margin-top: 0
}

@media print,
screen and (min-width:48.0625em) {
    .alert .alert-icon {
        width: 100%;
        max-width: 40px;
        margin-right: 2.5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .alert .alert-content {
        margin: 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .alert .alert-dismiss {
        margin-left: auto;
        width: 100%;
        max-width: 48px
    }
}

.alert .fa,
.alert .fa-regular {
    color: #008755;
    font-size: 1.875rem;
    font-weight: 300
}

@media print,
screen and (min-width:48.0625em) {

    .alert .fa,
    .alert .fa-regular {
        font-size: 2.5rem
    }
}

.alert p:not(:has(.btn)) {
    margin-top: .5rem
}

.alert a:not(.btn) {
    color: #000
}

@media print,
screen and (min-width:48.0625em) {
    .alert .large-9 {
        margin-left: 0
    }
}

.alert .wysiwyg {
    color: #000
}

.alert .wysiwyg h2 {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .alert .wysiwyg h2 {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .alert .wysiwyg h2 {
        font-size: 2.5rem
    }
}

.alert-notice {
    background-color: #d4e8f6
}

.alert-warning {
    background-color: #f7d66f
}

.alert-warning .fa {
    color: #333
}

.oho-banner,
.alert-banner {
    background-color: #e1f3fa
}

@media print,
screen and (min-width:48.0625em) {

    .oho-banner .alert-icon,
    .alert-banner .alert-icon {
        width: 100%;
        max-width: 32px;
        margin-right: 1.5rem
    }
}

.oho-banner .row-gap,
.alert-banner .row-gap {
    align-items: center
}

@media print,
screen and (min-width:48.0625em) {

    .oho-banner .wysiwyg,
    .alert-banner .wysiwyg {
        display: flex;
        flex-wrap: wrap;
        -moz-column-gap: 8px;
        column-gap: 8px
    }
}

.oho-banner .wysiwyg h2,
.alert-banner .wysiwyg h2 {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {

    .oho-banner .wysiwyg h2,
    .alert-banner .wysiwyg h2 {
        font-size: 1.125rem
    }
}

.oho-banner .wysiwyg h2,
.alert-banner .wysiwyg h2 {
    font-family: "franklin-gothic-atf", sans-serif
}

@media print,
screen and (min-width:48.0625em) {

    .oho-banner .wysiwyg h2,
    .alert-banner .wysiwyg h2 {
        flex-basis: auto
    }
}

.oho-banner .wysiwyg h2,
.alert-banner .wysiwyg h2 {
    font-weight: 700
}

@media print,
screen and (min-width:48.0625em) {

    .oho-banner .wysiwyg p:first-of-type,
    .alert-banner .wysiwyg p:first-of-type {
        flex-basis: 80%;
        margin-top: 0
    }
}

.oho-banner .fa-info-circle::before,
.alert-banner .fa-info-circle::before {
    color: #000;
    font-size: 32px
}

.js-dismiss-button {
    border: 2px solid #c99700;
    background-color: rgba(0, 0, 0, 0);
    color: #063d7a;
    font-size: 24px;
    padding: 8px 16px
}

@media print,
screen and (max-width:64.06125em) {
    .js-dismiss-button {
        padding: 4px 8px;
        position: absolute;
        right: 20px;
        top: 20px
    }
}

.system-messages {
    right: calc(2.5rem / 2);
    left: calc(2.5rem / 2)
}

@media print,
screen and (min-width:48.0625em) {
    .system-messages {
        right: calc(4rem / 2);
        left: calc(4rem / 2)
    }
}

.system-messages {
    position: fixed;
    z-index: 10;
    bottom: 9rem
}

@media print,
screen and (min-width:40.0625em) {
    .system-messages {
        bottom: 6.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .system-messages {
        right: auto;
        bottom: 2.5rem
    }
}

.messages-contain-error .system-messages {
    position: static
}

.messages {
    margin-top: 1rem;
    padding: 1rem;
    border: .0625rem solid;
    border-radius: .25rem
}

.messages ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.messages li+li {
    margin-top: 1rem
}

.messages a {
    text-decoration: underline;
    color: inherit;
    font-weight: 700
}

.messages--status {
    color: #3c763d;
    border-color: rgb(82.3820224719, 162.0179775281, 83.7550561798);
    background: rgb(122.9460674157, 187.8539325843, 124.0651685393)
}

.messages--warning {
    color: #e09600;
    border-color: rgb(255, 179.4142857143, 26.2);
    background: rgb(255, 207.7589285714, 112)
}

.messages--error {
    color: #a94442;
    border-color: hsl(1.1650485437, 43.829787234%, 56.862745098%);
    background: hsl(1.1650485437, 43.829787234%, 67.6470588235%)
}

.has-alert .messages {
    position: absolute
}

.messages__close {
    float: right;
    margin: 0 0 1rem 1rem;
    cursor: pointer
}

.messages__close:hover {
    text-decoration: underline
}

.main-content .gsc-input-box>.mobile-table {
    margin-top: 0;
    margin-bottom: 0
}

.main-content .gsc-input-box .gsib_a {
    height: 2.75rem
}

.main-content td.gsc-result-info-container {
    padding-left: 0
}

.main-content .gsc-result-info {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.main-content .gsib_b {
    width: 20px
}

.main-content .gsib_b a.gsst_a {
    text-decoration: none
}

.main-content td.gsc-search-button {
    padding: 0
}

.main-content .gs-watermark {
    margin-top: .5rem;
    padding-left: 2px
}

.main-content .gsc-search-button-v2 {
    padding: 14px 32px;
    background-color: #a94442;
    border-left: none;
    margin-left: 0;
    height: 47px
}

.main-content .gsc-search-button-v2:hover,
.main-content .gsc-search-button-v2:focus {
    background-color: #000
}

.main-content .gsc-control-cse.gsc-control-cse-en {
    max-width: 90rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem
}

.main-content .gsc-control-cse.gsc-control-cse-en {
    padding-top: 2.5rem
}

.main-content .gsc-control-cse.gsc-control-cse-en {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .main-content .gsc-control-cse.gsc-control-cse-en {
        padding-top: 5rem
    }

    .main-content .gsc-control-cse.gsc-control-cse-en {
        padding-bottom: 5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .main-content .gsc-control-cse.gsc-control-cse-en {
        padding-top: 7.5rem
    }

    .main-content .gsc-control-cse.gsc-control-cse-en {
        padding-bottom: 7.5rem
    }
}

.main-content .gsc-control-cse.gsc-control-cse-en table {
    border: none
}

.main-content .gsc-control-cse.gsc-control-cse-en table,
.main-content .gsc-control-cse.gsc-control-cse-en tbody,
.main-content .gsc-control-cse.gsc-control-cse-en tr,
.main-content .gsc-control-cse.gsc-control-cse-en td {
    border: none
}

.main-content .gsc-control-cse.gsc-control-cse-en input.gsc-input {
    background: none !important
}

.main-content table.gsc-input {
    margin: 0
}

.main-content table.gsc-search-box td.gsc-input {
    padding: 0
}

.main-content .gsc-webResult.gsc-result:hover {
    border-color: rgba(0, 0, 0, 0);
    background-color: #fff
}

.main-content .gsc-control-cse .gs-result .gs-title * {
    color: #a94442
}

.main-content .gsc-control-cse .gs-result .gs-title *,
.main-content .gs-title>.gs-title,
.main-content .gs-title>.gs-title b {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #a94442 !important
}

.main-content .gs-title>a.gs-title {
    text-decoration: none;
    position: relative
}

.main-content .gsc-control-cse,
.main-content .gsc-control-cse .gsc-table-result {
    font-family: "franklin-gothic-atf", sans-serif !important
}

.main-content .gsc-control-cse {
    line-height: 1.5
}

.main-content .gs-webResult div.gs-visibleUrl {
    color: #0066bf !important;
    font-weight: 600
}

.main-content .gs-bidi-start-align.gs-snippet {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .main-content .gs-bidi-start-align.gs-snippet {
        font-size: 1.125rem
    }
}

.main-content .gsc-webResult.gsc-result {
    font-size: 1rem
}

.main-content .gsc-webResult.gsc-result {
    padding-top: 1rem
}

.main-content .gsc-webResult.gsc-result {
    padding-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .main-content .gsc-webResult.gsc-result {
        padding-top: 1.5rem
    }

    .main-content .gsc-webResult.gsc-result {
        padding-bottom: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .main-content .gsc-webResult.gsc-result {
        font-size: 1.125rem
    }
}

.main-content .gsc-webResult.gsc-result+.gsc-webResult.gsc-result {
    border-top: 1px solid gray
}

.main-content .gsc-table-cell-thumbnail {
    display: none
}

.main-content .gsc-url-top,
.main-content .gsc-table-result {
    margin-top: 1rem
}

.main-content .gsc-cursor {
    font-size: 1.125rem;
    display: flex;
    flex-wrap: wrap
}

.main-content .gsc-results .gsc-cursor-box {
    margin-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .main-content .gsc-results .gsc-cursor-box {
        margin-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .main-content .gsc-results .gsc-cursor-box {
        margin-bottom: 5rem
    }
}

.main-content .gsc-results .gsc-cursor {
    font-size: 1.125rem;
    display: flex;
    flex-wrap: wrap
}

.main-content .gsc-results .gsc-cursor-box .gsc-cursor-page {
    padding: 0;
    color: #002855;
    display: inline-block;
    font-weight: 400;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    position: relative;
    width: 40px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center
}

.main-content .gsc-results .gsc-cursor-box .gsc-cursor-current-page {
    background-color: #063d7a;
    color: #fff;
    border-radius: 50px
}

.main-content .gcsc-more-maybe-branding-root {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .main-content .gcsc-more-maybe-branding-root {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .main-content .gcsc-more-maybe-branding-root {
        padding-bottom: 5rem
    }
}

:root {
    --aspect-ratio: 1
}

.aspect-ratio-frame {
    position: relative
}

.aspect-ratio-frame::before {
    display: block;
    padding-bottom: calc(1*100%);
    content: ""
}

.aspect-ratio-frame img,
.aspect-ratio-frame video,
.aspect-ratio-frame .autoplay-video-container,
.aspect-ratio-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.aspect-ratio-frame iframe {
    -o-object-fit: unset;
    object-fit: unset
}

@supports(--css:variables) {
    .aspect-ratio-frame::before {
        padding-bottom: calc(var(--aspect-ratio)*100%);
        content: ""
    }
}

.more-less {
    position: relative;
    display: flex;
    flex-direction: column-reverse
}

.more-less [data-more-less-content] {
    position: relative;
    overflow: hidden;
    order: 1
}

.more-less [data-more-less-toggle],
.more-less .more-less__toggle {
    display: none;
    order: 2
}

.more-less [data-more-less-toggle]::before,
.more-less .more-less__toggle::before {
    content: "See More"
}

.more-less[data-more-less-init] [data-more-less-toggle],
.more-less[data-more-less-init] .more-less__toggle {
    display: inline-block
}

.more-less[data-more-less-init=items] [data-more-less-item]:nth-child(3)~[data-more-less-item] {
    display: none
}

.more-less.more-less-open [data-more-less-content] {
    max-height: none !important
}

.more-less.more-less-open [data-more-less-item] {
    display: block !important
}

.more-less.more-less-open [data-more-less-toggle]::before,
.more-less.more-less-open .more-less__toggle::before {
    content: "See Less"
}

:root:not(.oho-js) .more-less__content {
    max-height: none !important
}

:root:not(.oho-js) .more-less__item {
    display: block !important
}

:root:not(.oho-js) .more-less::after,
:root:not(.oho-js) .more-less__toggle,
.more-less--inactive::after,
.more-less--inactive .more-less__toggle {
    display: none
}

.slide-toggle {
    --slide-toggle-offset: 0;
    --slide-toggle-scale: 1;
    position: relative;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none
}

.slide-toggle__button {
    margin: 0;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    background-color: rgba(0, 0, 0, 0)
}

.slide-toggle--line {
    border-bottom: 1px solid #000
}

.slide-toggle--line .slide-toggle__button {
    color: #000
}

.slide-toggle--line .slide-toggle__button[aria-selected=true] {
    color: #002855
}

@supports(--css:variables) {
    .slide-toggle--line::after {
        bottom: 0;
        height: .3125em;
        transform: translate(var(--slide-toggle-offset), 50%) scale(var(--slide-toggle-scale), 1);
        background-color: #002855
    }
}

.slide-toggle--pill {
    padding: 1em;
    background-color: #063d7a
}

.slide-toggle--pill .slide-toggle__button {
    position: relative;
    z-index: 1
}

.slide-toggle--pill .slide-toggle__button:hover {
    background-color: #002855
}

.slide-toggle--pill .slide-toggle__button[aria-selected=true] {
    background-color: #002855
}

@supports(--css:variables) {
    .slide-toggle--pill::after {
        top: 1em;
        bottom: 1em;
        transform: translateX(calc(var(--slide-toggle-offset) - 1em)) scale(var(--slide-toggle-scale), 1);
        background-color: #5a5a5a
    }
}

@supports(--css:variables) {
    .slide-toggle::after {
        position: absolute;
        display: block;
        width: 100px;
        content: "";
        transition: transform 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
        transform-origin: 0 0
    }

    .slide-toggle .slide-toggle__button {
        background-color: rgba(0, 0, 0, 0) !important
    }
}

.slider-navigation {
    display: none;
    line-height: 1.5
}

.swiper-initialized .slider-navigation {
    display: flex
}

.slider-navigation__next i::before,
.slider-navigation__prev i::before {
    color: #002855;
    font-size: 2rem
}

.slider-navigation__next:hover i::before,
.slider-navigation__prev:hover i::before {
    color: #fff
}

.swiper-wrapper {
    list-style: none
}

.swiper-wrapper>li {
    list-style: none
}

.swiper-initialized .slider-navigation:has(.swiper-button-disabled+.swiper-button-disabled) {
    display: none
}

.slider-navigation {
    align-items: center;
    margin-top: 2rem;
    justify-content: center;
    gap: .625rem
}

.slider-navigation__next,
.slider-navigation__prev {
    background-color: rgba(0, 0, 0, 0);
    color: #262626
}

.slider-navigation__next:focus,
.slider-navigation__prev:focus {
    background-color: rgba(0, 0, 0, 0)
}

.slider-navigation__next:hover,
.slider-navigation__next:focus-visible,
.slider-navigation__prev:hover,
.slider-navigation__prev:focus-visible {
    background-color: #008755
}

.slider-navigation__next:hover .fa-regular,
.slider-navigation__next:focus-visible .fa-regular,
.slider-navigation__prev:hover .fa-regular,
.slider-navigation__prev:focus-visible .fa-regular {
    color: #fff
}

@media print,
screen and (max-width:48.06125em) {
    .slider-navigation {
        display: flex
    }
}

.tabs__buttons {
    display: none;
    margin: 0;
    flex: 1
}

@media print,
screen and (min-width:48.0625em) {
    .tabs__buttons {
        display: flex;
        flex-direction: column;
        margin-right: -56px;
        margin-top: -60px
    }

    :root:not(.oho-js) .tabs__buttons {
        display: none
    }
}

@media print,
screen and (min-width:48.0625em) {
    .tabs__button {
        transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
        display: inline-block;
        position: relative;
        line-height: 1.2;
        text-align: center;
        letter-spacing: 1.3px;
        text-decoration: none;
        text-transform: uppercase;
        border-radius: 40px;
        font-weight: 500;
        font-size: 1rem;
        padding: 1rem 1.5rem;
        color: #fff;
        background-color: #002855;
        border-radius: 0;
        border: 8px solid #d4e8f6;
        background-color: #d4e8f6;
        color: #063d7a;
        padding: 1.5rem 3.75rem 1.5rem 1.5rem;
        text-align: left;
        text-transform: none
    }

    .tabs__button:hover,
    .tabs__button:focus {
        text-decoration: none;
        outline: none
    }

    .tabs__button:disabled {
        cursor: not-allowed;
        pointer-events: none;
        opacity: .6
    }

    .tabs__button::before,
    .tabs__button::after {
        color: #c99700
    }

    .tabs__button:hover,
    .tabs__button:focus {
        color: #fff;
        background-color: #008755
    }

    .tabs__button:hover::before,
    .tabs__button:hover::after,
    .tabs__button:focus::before,
    .tabs__button:focus::after {
        color: #fff
    }

    .tabs__button {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .tabs__button {
        font-size: 1.125rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .tabs__button::after {
        content: "";
        font-family: "Font Awesome 6 Pro";
        position: absolute;
        right: 74px
    }

    .tabs__button[aria-selected=true] {
        color: #002855;
        background-color: #fff;
        color: #262626
    }

    .tabs__button[aria-selected=true]::after {
        content: ""
    }

    .tabs__button:focus,
    .tabs__button:hover {
        border-color: #008755
    }

    .tabs__button+.tabs__button {
        border-top: 1px solid #76a6cf;
        padding-top: 31px;
        width: 100%
    }

    .tabs__button+.tabs__button:hover,
    .tabs__button+.tabs__button:focus {
        padding-top: 24px;
        border-top: 8px solid #008755
    }
}

.tabs .accordion--open>.accordion__button .accordion__icon {
    rotate: unset
}

@media print,
screen and (min-width:48.0625em) {
    .tabs .accordion {
        display: block;
        margin-top: 0;
        border: 1px solid #002855;
        width: calc(100% - 239px)
    }

    .tabs .accordion[aria-hidden=true] {
        display: none
    }

    .tabs .accordion__button {
        display: none
    }

    :root:not(.oho-js) .tabs .accordion__button {
        display: block
    }
}

@media print,
screen and (min-width:64.0625em) {
    .tabs .accordion {
        width: calc(100% - 339px)
    }
}

.tabs .accordion--tab .accordion__content {
    display: none !important
}

.tabs .tab-accordion--open .accordion__icon {
    rotate: 180deg !important
}

.tabs .tab-accordion--open .accordion__content {
    display: block !important
}

@media print,
screen and (min-width:48.0625em) {
    .tabs {
        display: flex
    }
}

.tabs--stacked .tabs__buttons {
    display: block
}

.tabs--stacked .tabs__panel {
    display: block;
    margin-top: 0;
    padding: 1.75rem 28px;
    border: 1px solid #002855
}

.tabs--stacked [aria-hidden=true] {
    display: none
}

.tooltip>* {
    display: inline
}

.tooltip {
    position: relative;
    z-index: 3
}

.tooltip p,
.tooltip {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.tooltip__toggle {
    padding: 0;
    color: #002855;
    background: none;
    overflow: visible;
    padding: .1875rem;
    width: 1.5625rem;
    height: 1.5625rem
}

.tooltip__toggle:hover {
    background: none;
    color: #0066bf
}

.tooltip__toggle:focus {
    background: none;
    color: #0066bf
}

.tooltip--open .tooltip__toggle i::before {
    content: ""
}

.tooltip--open .tooltip__toggle::before {
    content: "▲";
    width: 1.5625rem;
    height: 1.5625rem;
    transform: translateY(13px) translateX(1%);
    position: absolute;
    right: 0;
    color: #fff;
    font-size: 23px;
    text-shadow: 0px -3px 5px rgba(0, 0, 0, .08)
}

.tooltip--open {
    z-index: 4
}

.tooltip__content {
    display: none;
    border-top: .625rem solid rgba(0, 0, 0, 0);
    position: absolute;
    width: 26rem;
    max-width: 80vw;
    text-align: center;
    margin-top: -8px
}

@media screen and (min-width:48.0625em) {
    .tooltip__content {
        width: 12rem
    }
}

.tooltip--open .tooltip__content {
    display: block
}

.tooltip__content__inner {
    padding: .5rem;
    background: #fff;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, .21);
    color: #000
}

@media screen and (min-width:48.0625em) {
    .tooltip__content__inner {
        padding: 1rem
    }
}

.checkbox-container .tooltip {
    position: absolute
}

.checkbox-container .tooltip__content {
    transform: translateX(-40px)
}

.checkbox-container [type=checkbox]+label,
.checkbox-container [type=radio]+label {
    display: inline
}

.checkbox-container .tooltip--open .tooltip__toggle:before,
.checkbox-container .tooltip--open .tooltip__toggle:after {
    transform: translateY(20px) translateX(3%)
}

[data-tooltip-active=true] {
    z-index: 5 !important
}

.video-play-button {
    position: absolute;
    z-index: 4;
    bottom: 1.25rem;
    right: 40px;
    background: none
}

.video-play-button::after {
    content: "";
    color: #fff;
    font-family: "Font Awesome 6 Pro";
    font-size: 2.375rem;
    font-weight: 200;
    opacity: .7;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out
}

.video-play-button[aria-label=Pause]:after {
    content: ""
}

.video-play-button:hover,
.video-play-button:focus {
    background-color: rgba(0, 0, 0, 0);
    transform: scale(1.1)
}

.video-play-button:hover::after,
.video-play-button:focus::after {
    color: #f7d66f
}

.play-button {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 2.75rem;
    height: 2.75rem;
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
    opacity: .5;
    z-index: 3
}

.play-button path {
    fill: #fff
}

@media print,
screen and (min-width:64.0625em) {
    .play-button {
        width: 3.375rem;
        height: 3.375rem;
        bottom: 40px;
        right: 40px
    }
}

.play-button.play-button-default {
    width: 3.375rem;
    height: 3.375rem
}

@media print,
screen and (min-width:40.0625em) {
    .play-button.play-button-default {
        width: 5.875rem;
        height: 5.875rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .play-button.play-button-default {
        width: 6.5rem;
        height: 6.5rem
    }
}

a:hover .play-button,
a:focus .play-button {
    transform: scale(1.1);
    opacity: 1
}

a:hover .play-button.play-button-default {
    transform: none
}

a:hover .play-button.play-button-default path {
    fill: #fff
}

a:hover .play-button.play-button-default circle {
    fill: #008755
}

.alpha-filters {
    display: flex;
    justify-content: flex-start
}

@media print,
screen and (min-width:48.0625em) {
    .alpha-filters {
        justify-content: center
    }
}

.alpha-filters .fieldset-wrapper>div {
    display: flex;
    flex-wrap: wrap
}

.alpha-filters .form-item [type=radio]:disabled+label {
    color: #000;
    font-weight: 300
}

.alpha-filters .form-item [type=radio] {
    height: 30px;
    width: 30px;
    top: 50%;
    left: 25%
}

.alpha-filters .form-item [type=radio]+label {
    margin-left: 16px;
    color: #002855
}

.alpha-filters .form-item [type=radio]+label::before {
    display: none
}

.alpha-filters .form-item [type=radio]+label:focus,
.alpha-filters .form-item [type=radio]+label:hover {
    color: #ffe21a
}

.alpha-filters .form-item [type=radio]:checked+label::after {
    content: "";
    position: absolute;
    width: 100%;
    height: .125rem;
    left: 0;
    bottom: 0;
    background-color: #002855
}

.alpha-filters .form-item [type=radio]:checked+label:focus::after,
.alpha-filters .form-item [type=radio]:checked+label:hover::after {
    background-color: #ffe21a
}

.wysiwyg blockquote {
    position: relative;
    border-top: 1.5px solid #c99700;
    border-left: 1.5px solid #c99700;
    margin-left: 0;
    margin-right: 0
}

.wysiwyg blockquote {
    padding-top: 1.5rem
}

.wysiwyg blockquote {
    padding-left: 1.5rem
}

.wysiwyg blockquote {
    padding-right: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg blockquote {
        padding-top: 2rem
    }

    .wysiwyg blockquote {
        padding-left: 2rem
    }

    .wysiwyg blockquote {
        padding-right: 2rem
    }
}

.wysiwyg blockquote {
    margin-top: 1.5rem
}

.wysiwyg blockquote {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg blockquote {
        margin-top: 2.5rem
    }

    .wysiwyg blockquote {
        margin-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg blockquote {
        margin-top: 3rem
    }

    .wysiwyg blockquote {
        margin-bottom: 3rem
    }
}

.wysiwyg blockquote p {
    margin: 0
}

.wysiwyg blockquote p {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg blockquote p {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg blockquote p {
        font-size: 2rem
    }
}

.wysiwyg blockquote::before {
    content: "";
    display: block;
    background: #fff url(../images/compass-sm.svg) no-repeat;
    position: absolute;
    top: -16px;
    left: -16px;
    width: 32px;
    height: 32px;
    padding: 0 40px 40px 0
}

.wysiwyg blockquote .attribution {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg blockquote .attribution {
        margin-top: 1.5rem
    }
}

.wysiwyg blockquote .attribution {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg blockquote .attribution {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg blockquote .attribution {
        font-size: 1.375rem
    }
}

.wysiwyg blockquote .attribution {
    font-weight: 400
}

.date-block {
    display: flex;
    align-items: center;
    text-align: center
}

.eyebrow+.date-block {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .eyebrow+.date-block {
        margin-top: 1rem
    }
}

.date-block .day-number {
    font-size: 2rem;
    line-height: .9
}

@media print,
screen and (min-width:48.0625em) {
    .date-block .day-number {
        font-size: 3.75rem
    }
}

.date-block time+time {
    display: flex;
    align-items: center
}

.date-block time+time::before {
    width: 1.5rem;
    height: .125rem;
    content: "";
    transform: translateY(-14px);
    background-color: currentColor
}

.date-block time+time::before {
    margin-right: 0.5rem
}

.date-block time+time::before {
    margin-left: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .date-block time+time::before {
        margin-right: 1rem
    }

    .date-block time+time::before {
        margin-left: 1rem
    }
}

.date-block span {
    display: block
}

.oho-date-block {
    background-color: #fff;
    text-align: center;
    height: auto;
    width: unset;
    padding: 5px 5px 5px 5px
}

.oho-date-block time {
    width: unset;
    float: none
}

.oho-date-block--day,
.oho-date-block--weekday,
.oho-date-block--month,
.oho-date-block--year {
    line-height: 1;
    text-transform: uppercase
}

.oho-date-block .oho-date-block--weekday,
.oho-date-block .oho-date-block--month,
.oho-date-block .oho-date-block--year {
    font-size: 1.3em
}

.oho-date-block .oho-date-block--day {
    font-size: 2.4em
}

.eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

.icon-list {
    display: block;
    padding-left: 0;
    margin: 0
}

.icon-list li:not(:first-child) {
    margin-top: 0.5rem
}

.icon-list li,
.icon-list a {
    display: block;
    font-family: "franklin-gothic-atf", sans-serif
}

.icon-list li {
    position: relative;
    padding-left: 1.5rem
}

.icon-list a[href^="mailto:"] {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis
}

.icon-list__icon {
    position: absolute;
    left: 0;
    top: .25rem;
    color: #c99700
}

.icon-list--inline {
    display: flex;
    flex-wrap: wrap
}

.icon-list--inline li:not(:first-child) {
    margin-top: 0
}

.icon-list--inline li:not(:last-child) {
    margin-right: 1.875rem
}

.intro-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:48.0625em) {
    .intro-text {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .intro-text {
        font-size: 1.5rem
    }
}

.intro-text p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:48.0625em) {
    .intro-text p {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .intro-text p {
        font-size: 1.5rem
    }
}

.listing--news {
    position: relative
}

.listing--news:before {
    content: "";
    background-image: url(../images/listing-bg.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1
}

.listing form>.form-item {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing form>.form-item {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing form>.form-item {
        margin-top: 2.5rem
    }
}

.listing legend,
.listing label {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    .listing legend,
    .listing label {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .listing legend,
    .listing label {
        font-size: 1.5rem
    }
}

.listing [type=checkbox][name*="["]+label {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .listing [type=checkbox][name*="["]+label {
        font-size: 1.125rem
    }
}

.listing [type=checkbox][name*="["]+label {
    font-family: "franklin-gothic-atf", sans-serif
}

.listing .form-item [type=checkbox]:checked+label {
    font-weight: 600
}

.listing .form-item [type=checkbox]+label::before {
    top: 4px;
    border-width: 2px
}

@media print,
screen and (min-width:48.0625em)and (max-width:64.06125em) {
    .listing .form-item [type=checkbox]+label::before {
        left: -26px
    }
}

.listing .js-form-type-select select {
    cursor: pointer
}

.listing .js-form-type-select select:hover,
.listing .js-form-type-select select:focus,
.listing .js-form-type-select select:focus-visible {
    border-color: #005fcc
}

.listing [type=text],
.listing [type=password],
.listing [type=date],
.listing [type=datetime],
.listing [type=datetime-local],
.listing [type=month],
.listing [type=week],
.listing [type=email],
.listing [type=number],
.listing [type=search],
.listing [type=tel],
.listing [type=time],
.listing [type=url],
.listing [type=color],
.listing [type=file],
.listing [type=image],
.listing select {
    width: 100%
}

.listing [data-drupal-selector=edit-reset] {
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    font-weight: 500;
    color: #002855;
    background-color: #fff
}

.listing [data-drupal-selector=edit-reset]:hover,
.listing [data-drupal-selector=edit-reset]:focus {
    text-decoration: none;
    outline: none
}

.listing [data-drupal-selector=edit-reset]:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6
}

.listing [data-drupal-selector=edit-reset]::before,
.listing [data-drupal-selector=edit-reset]::after {
    color: #008755
}

.listing [data-drupal-selector=edit-reset]:hover,
.listing [data-drupal-selector=edit-reset]:focus {
    color: #fff;
    background-color: #008755
}

.listing [data-drupal-selector=edit-reset]:hover::before,
.listing [data-drupal-selector=edit-reset]:hover::after,
.listing [data-drupal-selector=edit-reset]:focus::before,
.listing [data-drupal-selector=edit-reset]:focus::after {
    color: #fff
}

.listing .listing__form button.multiselect-dropdown__toggle,
.listing .listing__form button.multiselect-dropdown__dialog-close {
    display: none
}

.listing .listing__form .multiselect-dropdown__dialog {
    display: block;
    padding: 0;
    margin: 0;
    position: relative;
    border: none;
    background: none
}

.listing .listing__form ul.multiselect-dropdown__list {
    margin: 0;
    border-left: 1px solid #e3ac04;
    padding-left: 1.125rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing .listing__form ul.multiselect-dropdown__list {
        padding-left: 1.5rem
    }
}

.listing .listing__form .multiselect-dropdown__item .form-item {
    margin-top: 0
}

.listing .listing__form__submit-container {
    display: flex;
    align-items: flex-end
}

.listing .form-actions {
    display: flex
}

.listing [type=submit] {
    margin: 0;
    padding: .796875rem 1.9375rem;
    border-radius: 40px;
    text-transform: none;
    font-weight: 500;
    max-width: 83px;
    max-height: 44px
}

@media print,
screen and (min-width:48.0625em) {
    .listing [type=submit] {
        font-size: 18px;
        max-width: 86px;
        max-height: 47px
    }
}

.listing .form-actions {
    position: absolute;
    right: 6px;
    bottom: 5px
}

@media print,
screen and (min-width:48.0625em) {
    .listing .form-actions {
        bottom: 7px
    }
}

.listing .form-item [type=checkbox]:checked+label::after {
    left: -21px
}

.form-checkboxes {
    border-left: 1px solid #e3ac04;
    padding-left: 1.125rem
}

@media print,
screen and (min-width:48.0625em) {
    .form-checkboxes {
        padding-left: 1.5rem
    }
}

.form-checkboxes .form-checkboxes {
    border-left: none;
    padding-left: 0
}

.fieldset-wrapper {
    margin-top: .5rem
}

@media print,
screen and (min-width:48.0625em) {
    .fieldset-wrapper {
        margin-top: 1rem
    }
}

.alpha-letter {
    color: #262626;
    margin: 0;
    text-transform: uppercase
}

.alpha-letter {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .alpha-letter {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .alpha-letter {
        font-size: 2.5rem
    }
}

.alpha-letter::after {
    content: "";
    width: 100%;
    display: block;
    padding-top: 3px;
    border-bottom: 1px solid #76a6cf
}

.search-wrapper {
    position: relative
}

.search-wrapper label {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .search-wrapper label {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .search-wrapper label {
        font-size: 1.5rem
    }
}

.search-wrapper .form-item-combine input,
.search-wrapper .form-item-name input,
.search-wrapper .form-item-search input {
    position: relative;
    padding-right: 100px;
    padding-left: 45px;
    background-image: url(../images/magnifying-glass.png);
    background-repeat: no-repeat;
    background-position: .9em 50%;
    background-color: #fff;
    max-height: 54px
}

@media print,
screen and (min-width:48.0625em) {

    .search-wrapper .form-item-combine input,
    .search-wrapper .form-item-name input,
    .search-wrapper .form-item-search input {
        max-height: 62px
    }
}

.search-wrapper .form-item-combine input:hover,
.search-wrapper .form-item-combine input:focus,
.search-wrapper .form-item-combine input:focus-visible,
.search-wrapper .form-item-name input:hover,
.search-wrapper .form-item-name input:focus,
.search-wrapper .form-item-name input:focus-visible,
.search-wrapper .form-item-search input:hover,
.search-wrapper .form-item-search input:focus,
.search-wrapper .form-item-search input:focus-visible {
    border-color: #005fcc
}

.filter-column {
    background-color: #d4e8f6;
    width: 100%;
    padding-bottom: 83px
}

.filter-column {
    padding-top: 1.5rem
}

.filter-column {
    padding-right: 1.5rem
}

.filter-column {
    padding-left: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .filter-column {
        padding-top: 2.5rem
    }

    .filter-column {
        padding-right: 2.5rem
    }

    .filter-column {
        padding-left: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .filter-column {
        padding-top: 3rem
    }

    .filter-column {
        padding-right: 3rem
    }

    .filter-column {
        padding-left: 3rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .filter-column {
        margin-top: -3rem;
        margin-left: -32px;
        padding-bottom: 6.25rem;
        width: calc(100% + 32px);
        z-index: 2;
        position: relative
    }
}

.result-column {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .result-column {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .result-column {
        margin-top: 2.5rem
    }
}

.result-column ol {
    list-style: none;
    margin: 0;
    padding: 0
}

.result-column__total {
    padding-right: 20px;
    width: 100%;
    display: flex;
    color: #262626
}

.result-column__total {
    margin-bottom: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .result-column__total {
        margin-bottom: 1rem
    }
}

.result-column__total {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .result-column__total {
        justify-content: flex-end
    }
}

.vaf+.result-column__total {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .vaf+.result-column__total {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .vaf+.result-column__total {
        margin-top: 2.5rem
    }
}

.vaf+.result-column__total {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .vaf+.result-column__total {
        margin-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .vaf+.result-column__total {
        margin-bottom: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .vaf+.result-column__total {
        margin-top: -20px
    }
}

@media print,
screen and (max-width:64.06125em) {
    .vaf+.result-column__total {
        margin-top: 16px
    }
}

.listing--news,
.listing--profile,
.listing--program {
    padding-bottom: 1.5rem
}

@media print,
screen and (max-width:48.06125em) {

    .listing--news,
    .listing--profile,
    .listing--program {
        background-color: #f7f7f7
    }
}

@media print,
screen and (min-width:48.0625em) {
    .section-heading .medium-4 {
        display: flex;
        align-items: center;
        justify-content: flex-end
    }
}

.section-heading__title {
    margin: 0
}

.section-heading__title {
    font-family: aleo, serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .section-heading__title {
        font-size: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .section-heading__title {
        font-size: 2.75rem
    }
}

.section-heading__description p {
    margin-bottom: 0
}

.section-heading__description p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:48.0625em) {
    .section-heading__description p {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .section-heading__description p {
        font-size: 1.5rem
    }
}

.section-heading__description p {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .section-heading__description p {
        margin-top: 1.5rem
    }
}

.section-heading__links {
    list-style: none;
    margin: 0;
    padding: 0
}

.section-heading__links {
    display: inline-flex;
    flex-direction: column
}

.section-heading__link {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content
}

.section-heading__link {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .section-heading__link {
        margin-top: 1.5rem
    }
}

.green-section-heading {
    color: #fff
}

@media print,
screen and (min-width:48.0625em) {
    .green-section-heading {
        padding-top: 120px
    }
}

.green-section-heading a:not(.section__button) {
    color: #fff
}

.green-section-heading a:not(.section__button):after {
    color: #c99700
}

.green-section-heading .cell {
    margin-left: 0;
    padding-left: 2rem
}

.green-section-heading .section-heading {
    background: rgba(0, 135, 85, .9);
    max-width: calc(100% - 40px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

.green-section-heading .section-heading {
    padding-top: 2rem
}

.green-section-heading .section-heading {
    padding-bottom: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .green-section-heading .section-heading {
        padding-top: 3rem
    }

    .green-section-heading .section-heading {
        padding-bottom: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .green-section-heading .section-heading {
        padding-top: 4rem
    }

    .green-section-heading .section-heading {
        padding-bottom: 4rem
    }
}

@media screen and (min-width:66.25em) {
    .green-section-heading .section-heading {
        max-width: 64.5625rem
    }
}

.green-section-heading .section-heading__title {
    display: flex;
    flex-direction: column;
    gap: 16px
}

@media print,
screen and (min-width:48.0625em) {
    .green-section-heading .section-heading__title {
        flex-direction: row;
        flex-wrap: wrap
    }
}

.green-section-heading .section-heading__title:after {
    background: url(../images/waves.svg) no-repeat;
    content: "";
    display: block;
    width: 96px;
    height: 49px
}

.section-heading--narrowed .section-heading__title-container {
    max-width: 1082px
}

.stat {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 0.8
}

@media print,
screen and (min-width:48.0625em) {
    .stat {
        font-size: 5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .stat {
        font-size: 6rem
    }
}

table {
    border-collapse: collapse;
    border-top: 1px solid #76a6cf
}

table {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

table {
    margin-top: 1rem
}

table {
    margin-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    table {
        margin-top: 1.5rem
    }

    table {
        margin-bottom: 1.5rem
    }
}

table[align=left] {
    float: none
}

@media print,
screen and (min-width:48.0625em) {
    table[align=left] {
        float: left;
        margin-right: 32px
    }
}

table[align=right] {
    float: none
}

@media print,
screen and (min-width:48.0625em) {
    table[align=right] {
        float: right;
        margin-left: 32px
    }
}

table+table {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    table+table {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    table+table {
        margin-top: 3rem
    }
}

thead,
tbody {
    vertical-align: top
}

thead {
    border-right: 1px solid #76a6cf;
    border-left: 1px solid #76a6cf
}

thead th {
    background: #d4e8f6
}

tbody {
    border-top: 0;
    border-left: 1px solid #76a6cf
}

tr {
    border-bottom: 1px solid #76a6cf
}

th {
    background: #d4e8f6;
    border-right: 1px solid #76a6cf;
    border-bottom: 0;
    font-weight: 600;
    padding: .5rem 1rem;
    text-align: left
}

td {
    border-right: 1px solid #76a6cf;
    padding: .5rem 1rem
}

.mobile-table--scroll {
    overflow-y: scroll
}

@media print,
screen and (min-width:64.0625em) {
    .mobile-table--scroll {
        overflow-y: hidden
    }
}

.mobile-table {
    padding: 1px 0
}

.mobile-table--scroll {
    position: relative;
    padding: 1px 20px 0 !important;
    overflow-y: scroll;
    margin-left: -1.25rem;
    margin-right: -1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .mobile-table--scroll {
        margin-left: -2rem;
        margin-right: -2rem
    }
}

.mobile-table--scroll::before {
    background-image: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 100%);
    content: "";
    display: block;
    height: 100%;
    opacity: 1;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 0;
    left: 0
}

.mobile-table--scroll.scrolled::before {
    opacity: 0;
    pointer-events: none
}

.mobile-table--scroll.scrolled table {
    pointer-events: initial
}

.mobile-table--scroll table {
    position: relative;
    pointer-events: none
}

.wysiwyg {
    color: #262626
}

.wysiwyg {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg {
        font-size: 1.125rem
    }
}

.wysiwyg strong {
    font-weight: 500
}

.wysiwyg p a:not(.btn):hover {
    color: #008755
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.wysiwyg p,
.wysiwyg ul,
.wysiwyg ol,
.wysiwyg .intro-text,
.wysiwyg article,
.wysiwyg picture,
.wysiwyg .video {
    margin-bottom: 0
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.wysiwyg p,
.wysiwyg ul,
.wysiwyg ol,
.wysiwyg .intro-text,
.wysiwyg article,
.wysiwyg picture,
.wysiwyg .video {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg h1,
    .wysiwyg h2,
    .wysiwyg h3,
    .wysiwyg h4,
    .wysiwyg h5,
    .wysiwyg h6,
    .wysiwyg p,
    .wysiwyg ul,
    .wysiwyg ol,
    .wysiwyg .intro-text,
    .wysiwyg article,
    .wysiwyg picture,
    .wysiwyg .video {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .wysiwyg h1,
    .wysiwyg h2,
    .wysiwyg h3,
    .wysiwyg h4,
    .wysiwyg h5,
    .wysiwyg h6,
    .wysiwyg p,
    .wysiwyg ul,
    .wysiwyg ol,
    .wysiwyg .intro-text,
    .wysiwyg article,
    .wysiwyg picture,
    .wysiwyg .video {
        margin-top: 3rem
    }
}

.wysiwyg ol,
.wysiwyg ul {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg ol,
    .wysiwyg ul {
        margin-top: 1.5rem
    }
}

.wysiwyg p {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg p {
        margin-top: 1.5rem
    }
}

.wysiwyg h2:not(:first-child) {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg h2:not(:first-child) {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg h2:not(:first-child) {
        margin-top: 4rem
    }
}

.wysiwyg h4+p,
.wysiwyg h5+p,
.wysiwyg h6+p {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg h4+p,
    .wysiwyg h5+p,
    .wysiwyg h6+p {
        margin-top: 1rem
    }
}

.wysiwyg>*:first-child {
    margin-top: 0
}

.wysiwyg .btn {
    margin-top: 0
}

.wysiwyg .btn-row {
    align-items: center
}

.wysiwyg ol,
.wysiwyg ul {
    padding-left: 0
}

.wysiwyg ol ol,
.wysiwyg ol ul,
.wysiwyg ul ol,
.wysiwyg ul ul {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg ol ol,
    .wysiwyg ol ul,
    .wysiwyg ul ol,
    .wysiwyg ul ul {
        margin-top: 1.5rem
    }
}

.wysiwyg ol ol,
.wysiwyg ol ul,
.wysiwyg ul ol,
.wysiwyg ul ul {
    margin-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg ol ol,
    .wysiwyg ol ul,
    .wysiwyg ul ol,
    .wysiwyg ul ul {
        margin-bottom: 1.5rem
    }
}

.wysiwyg li {
    position: relative;
    padding-left: 2rem
}

.wysiwyg li {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg li {
        margin-top: 1rem
    }
}

.wysiwyg li::before {
    position: absolute;
    top: 0;
    left: 0
}

.wysiwyg ol {
    counter-reset: li
}

.wysiwyg ol>li {
    counter-increment: li
}

.wysiwyg ol>li::before {
    color: #000;
    content: counter(li) ".";
    color: #008755;
    font-weight: 600
}

.wysiwyg ul>li::before {
    content: url(../images/bullet.svg);
    top: 0
}

.wysiwyg picture {
    display: block
}

.wysiwyg .align-right,
.wysiwyg .obj-right {
    float: none;
    margin-right: 0;
    margin-bottom: 1rem;
    margin-left: 0
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg .align-right,
    .wysiwyg .obj-right {
        float: right;
        margin-left: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .wysiwyg .align-right,
    .wysiwyg .obj-right {
        margin-left: 2rem
    }
}

.wysiwyg .align-right img,
.wysiwyg .obj-right img {
    display: block
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg .align-right.video,
    .wysiwyg .obj-right.video {
        width: 50%
    }
}

@media print,
screen and (min-width:64.0625em) {

    .wysiwyg .align-right.video,
    .wysiwyg .obj-right.video {
        width: calc(var(--iframe-width)*1px)
    }
}

.wysiwyg .align-left,
.wysiwyg .obj-left {
    float: none;
    margin-right: 0;
    margin-bottom: 1rem;
    margin-left: 0
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg .align-left,
    .wysiwyg .obj-left {
        float: left;
        margin-right: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .wysiwyg .align-left,
    .wysiwyg .obj-left {
        margin-right: 2rem
    }
}

.wysiwyg .align-left img,
.wysiwyg .obj-left img {
    display: block
}

@media print,
screen and (min-width:48.0625em) {

    .wysiwyg .align-left.video,
    .wysiwyg .obj-left.video {
        width: 50%
    }
}

@media print,
screen and (min-width:64.0625em) {

    .wysiwyg .align-left.video,
    .wysiwyg .obj-left.video {
        width: calc(var(--iframe-width)*1px)
    }
}

.wysiwyg .align-center,
.wysiwyg .obj-center {
    display: table;
    margin-right: auto;
    margin-bottom: 1rem;
    margin-left: auto
}

.wysiwyg .align-center img,
.wysiwyg .obj-center img {
    display: block
}

.wysiwyg .align-center>.responsive-video-iframe,
.wysiwyg .align-center.video,
.wysiwyg .obj-center>.responsive-video-iframe,
.wysiwyg .obj-center.video {
    width: 100%
}

.wysiwyg figure.align-center:has(.responsive-video-iframe) {
    width: 100%
}

.wysiwyg>figure:has(img) {
    display: table
}

.wysiwyg>figure:has(img) {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg>figure:has(img) {
        margin-top: 1.5rem
    }
}

.wysiwyg>figure:has(img) figcaption {
    display: table-caption
}

.wysiwyg [data-embed-button=ohou_media_embed] .video-embed-field-responsive-video,
.wysiwyg [data-embed-button=ohou_media_embed] .responsive-video-iframe {
    width: 100%
}

.wysiwyg .align-center img {
    margin-right: auto;
    margin-left: auto
}

.wysiwyg figure.align-right,
.wysiwyg figure.alignright,
.wysiwyg figure.obj-right,
.wysiwyg figure.align-left,
.wysiwyg figure.alignleft,
.wysiwyg figure.obj-left,
.wysiwyg figure.align-center,
.wysiwyg figure.obj-center,
.wysiwyg .align-center,
.wysiwyg .obj-center {
    display: table
}

.wysiwyg figure.align-right figcaption,
.wysiwyg figure.alignright figcaption,
.wysiwyg figure.obj-right figcaption,
.wysiwyg figure.align-left figcaption,
.wysiwyg figure.alignleft figcaption,
.wysiwyg figure.obj-left figcaption,
.wysiwyg figure.align-center figcaption,
.wysiwyg figure.obj-center figcaption,
.wysiwyg .align-center figcaption,
.wysiwyg .obj-center figcaption {
    display: table-caption
}

.wysiwyg figure.align-right.responsive-video-iframe,
.wysiwyg figure.alignright.responsive-video-iframe,
.wysiwyg figure.obj-right.responsive-video-iframe,
.wysiwyg figure.align-left.responsive-video-iframe,
.wysiwyg figure.alignleft.responsive-video-iframe,
.wysiwyg figure.obj-left.responsive-video-iframe,
.wysiwyg figure.align-center.responsive-video-iframe,
.wysiwyg figure.obj-center.responsive-video-iframe,
.wysiwyg .align-center.responsive-video-iframe,
.wysiwyg .obj-center.responsive-video-iframe {
    min-width: 40%
}

.wysiwyg figcaption {
    caption-side: bottom;
    background-color: #edf8ff
}

.wysiwyg figcaption {
    padding-left: 0.5rem
}

.wysiwyg figcaption {
    padding-right: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg figcaption {
        padding-left: 1rem
    }

    .wysiwyg figcaption {
        padding-right: 1rem
    }
}

.wysiwyg figcaption {
    padding-top: 0.5rem
}

.wysiwyg figcaption {
    padding-bottom: 0.5rem
}

.wysiwyg figcaption {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.wysiwyg figcaption a {
    color: #063d7a
}

.wysiwyg .responsive-video-iframe {
    position: relative
}

.wysiwyg .responsive-video-iframe::before {
    display: block;
    padding-bottom: calc(0.5625*100%);
    content: ""
}

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

.wysiwyg .responsive-video-iframe iframe {
    -o-object-fit: unset;
    object-fit: unset
}

.wysiwyg .responsive-video-iframe:has([src^="https://player.vimeo"]) {
    position: relative
}

.wysiwyg .responsive-video-iframe:has([src^="https://player.vimeo"])::before {
    display: block;
    padding-bottom: calc(0.6666666667*100%);
    content: ""
}

.wysiwyg .responsive-video-iframe:has([src^="https://player.vimeo"]) iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.wysiwyg .responsive-video-iframe:has([src^="https://player.vimeo"]) iframe {
    -o-object-fit: unset;
    object-fit: unset
}

.wysiwyg .video {
    position: relative
}

.wysiwyg .video::before {
    content: "";
    display: block;
    padding-bottom: calc(var(--iframe-height)/var(--iframe-width)*100%)
}

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

.wysiwyg h4 {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg h4 {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg h4 {
        font-size: 2rem
    }
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem
}

.btn-row a.btn {
    margin: 0 !important
}

[data-entity-type=embed_code] iframe {
    width: 100%;
    border: 0
}

@keyframes slide-in {
    from {
        transform: none
    }

    to {
        transform: translateY(-100%)
    }
}

#sliding-popup p {
    color: #262626
}

.cookie-banner {
    position: fixed;
    transition: transform .1s cubic-bezier(0.42, 0.08, 0.06, 0.98);
    transform: none;
    z-index: 10;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #d9ede6
}

.cookie-banner {
    padding-right: 2rem
}

.cookie-banner {
    padding-left: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .cookie-banner {
        padding-right: 3rem
    }

    .cookie-banner {
        padding-left: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .cookie-banner {
        padding-right: 4rem
    }

    .cookie-banner {
        padding-left: 4rem
    }
}

.cookie-banner__inner {
    width: 100%;
    transition: margin 1s cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:64.0625em) {
    .cookie-banner .wysiwyg {
        display: flex;
        align-items: center;
        justify-content: space-between;
        -moz-column-gap: 20px;
        column-gap: 20px
    }
}

.cookie-banner .wysiwyg p {
    text-align: left
}

@media print,
screen and (min-width:64.0625em) {
    .cookie-banner .wysiwyg p:first-child {
        flex-basis: 50%
    }
}

.cookie-banner .btn-row {
    margin-top: 1.25rem;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

@media print,
screen and (min-width:40.0625em) {
    .cookie-banner .btn-row {
        flex-wrap: wrap;
        flex-direction: row-reverse;
        justify-content: flex-end
    }
}

@media print,
screen and (min-width:64.0625em) {
    .cookie-banner .btn-row {
        margin-top: 0;
        flex-basis: auto
    }
}

.cookie-banner .btn-row a,
.cookie-banner .btn-row .find-more-button {
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    font-weight: 500;
    font-size: .875rem;
    padding: .75rem 1.25rem;
    color: #fff;
    background-color: #002855
}

.cookie-banner .btn-row a:hover,
.cookie-banner .btn-row a:focus,
.cookie-banner .btn-row .find-more-button:hover,
.cookie-banner .btn-row .find-more-button:focus {
    text-decoration: none;
    outline: none
}

.cookie-banner .btn-row a:disabled,
.cookie-banner .btn-row .find-more-button:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6
}

.cookie-banner .btn-row a::before,
.cookie-banner .btn-row a::after,
.cookie-banner .btn-row .find-more-button::before,
.cookie-banner .btn-row .find-more-button::after {
    color: #c99700
}

.cookie-banner .btn-row a:hover,
.cookie-banner .btn-row a:focus,
.cookie-banner .btn-row .find-more-button:hover,
.cookie-banner .btn-row .find-more-button:focus {
    color: #fff;
    background-color: #008755
}

.cookie-banner .btn-row a:hover::before,
.cookie-banner .btn-row a:hover::after,
.cookie-banner .btn-row a:focus::before,
.cookie-banner .btn-row a:focus::after,
.cookie-banner .btn-row .find-more-button:hover::before,
.cookie-banner .btn-row .find-more-button:hover::after,
.cookie-banner .btn-row .find-more-button:focus::before,
.cookie-banner .btn-row .find-more-button:focus::after {
    color: #fff
}

@media print,
screen and (min-width:64.0625em) {

    .cookie-banner .btn-row a,
    .cookie-banner .btn-row .find-more-button {
        font-size: 1rem;
        padding: 1rem 1.5rem
    }
}

.cookie-banner .btn-row a,
.cookie-banner .btn-row .find-more-button {
    background-color: rgba(0, 0, 0, 0);
    color: #002855;
    border: 1px solid #002855
}

.cookie-banner .btn-row a:hover,
.cookie-banner .btn-row a:focus-visible,
.cookie-banner .btn-row .find-more-button:hover,
.cookie-banner .btn-row .find-more-button:focus-visible {
    border: 1px solid #008755
}

.cookie-banner .btn-row .btn--dismiss-cookie {
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    font-weight: 500;
    font-size: .875rem;
    padding: .75rem 1.25rem;
    color: #fff;
    background-color: #002855
}

.cookie-banner .btn-row .btn--dismiss-cookie:hover,
.cookie-banner .btn-row .btn--dismiss-cookie:focus {
    text-decoration: none;
    outline: none
}

.cookie-banner .btn-row .btn--dismiss-cookie:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6
}

.cookie-banner .btn-row .btn--dismiss-cookie::before,
.cookie-banner .btn-row .btn--dismiss-cookie::after {
    color: #c99700
}

.cookie-banner .btn-row .btn--dismiss-cookie:hover,
.cookie-banner .btn-row .btn--dismiss-cookie:focus {
    color: #fff;
    background-color: #008755
}

.cookie-banner .btn-row .btn--dismiss-cookie:hover::before,
.cookie-banner .btn-row .btn--dismiss-cookie:hover::after,
.cookie-banner .btn-row .btn--dismiss-cookie:focus::before,
.cookie-banner .btn-row .btn--dismiss-cookie:focus::after {
    color: #fff
}

@media print,
screen and (min-width:64.0625em) {
    .cookie-banner .btn-row .btn--dismiss-cookie {
        font-size: 1rem;
        padding: 1rem 1.5rem
    }
}

.cookie-banner .btn {
    margin: 0
}

html.oho-js body:not(.cookie-panel-dismissed) .cookie-banner {
    animation: slide-in;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 1s;
    animation-delay: 1s
}

.site-footer {
    background-color: #d4e8f6;
    position: relative;
    z-index: 2
}

@media print,
screen and (min-width:64.0625em) {
    .site-footer {
        padding-top: 80px
    }
}

.site-footer p {
    margin: 0
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.site-footer a {
    text-decoration-color: rgba(0, 0, 0, 0);
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    transition: -webkit-text-decoration .25s;
    transition: text-decoration .25s;
    transition: text-decoration .25s, -webkit-text-decoration .25s;
    font-weight: 600
}

.site-footer a:hover,
.site-footer a:focus {
    text-decoration-color: #002855
}

.footer-image {
    position: relative
}

.footer-image img {
    position: relative;
    z-index: 1
}

.footer-image::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #D4E8F6 6.06%, rgba(212, 232, 246, 0) 24.85%)
}

.footer-image img {
    width: 100%
}

.mission-box {
    max-width: 280px;
    margin-top: -40px;
    background-color: #fff
}

.mission-box {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 43px), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 43px), 0 100%)
}

@media print,
screen and (min-width:64.0625em) {
    .mission-box {
        margin-top: -128px
    }
}

.mission-content {
    padding: 24px 24px 59px 24px
}

.mission-content a {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .mission-content a {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .mission-content a {
        font-size: 1.5rem
    }
}

.mission-content p {
    margin-top: 0.5rem
}

.site-footer__logo {
    max-width: 280px;
    height: 82px;
    display: block;
    margin-top: 48px
}

@media print,
screen and (min-width:64.0625em) {
    .site-footer__logo {
        margin-top: 0
    }
}

.footer-item {
    margin-top: 32px
}

.footer-item {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .footer-item {
        font-size: 1.125rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .footer-item {
        margin-top: 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .footer-item.footer-contact {
        margin-top: 24px
    }
}

p.footer-label {
    margin-top: 0
}

p.footer-label {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

p.footer-label {
    margin-bottom: 0.5rem
}

.footer-address,
.footer-address p {
    color: #002855
}

.footer-address,
.footer-address p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {

    .footer-address,
    .footer-address p {
        font-size: 1.125rem
    }
}

.footer-address,
.footer-address p {
    font-weight: 600
}

@media print,
screen and (min-width:64.0625em) {
    .footer-stretch {
        display: flex;
        flex-direction: column;
        justify-content: space-between
    }
}

.footer-links {
    position: relative;
    gap: 2rem 0
}

.footer-links::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    border-top: .09375rem solid #76a6cf
}

@media print,
screen and (min-width:48.0625em) {
    .footer-links::before {
        left: 32px;
        width: calc(100% - 64px)
    }
}

.footer-links {
    padding-top: 1.5rem
}

.footer-links {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .footer-links {
        padding-top: 2rem
    }

    .footer-links {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .footer-links {
        padding-top: 2.5rem
    }

    .footer-links {
        margin-top: 2.5rem
    }
}

.footer-links .footer-label {
    margin-top: 32px
}

@media print,
screen and (min-width:40.0625em) {
    .footer-links .footer-label {
        margin: 0
    }
}

.footer-main-menu li+li {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .footer-main-menu li+li {
        margin-top: 1.5rem
    }
}

.footer-main-menu a {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .footer-main-menu a {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .footer-main-menu a {
        font-size: 2rem
    }
}

.footer-menu li {
    margin-top: 0.5rem
}

.footer-menu a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .footer-menu a {
        font-size: 1.125rem
    }
}

.footer-menu a {
    font-weight: 600
}

.footer-audience-menu {
    margin-bottom: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .footer-audience-menu {
        margin-bottom: 1.5rem
    }
}

.footer-legal-menu li {
    display: block;
    margin: 8px 0 0 0
}

@media print,
screen and (min-width:64.0625em) {
    .footer-legal-menu li {
        display: inline-block;
        margin: 0 32px 0 0
    }
}

.footer-legal-menu a {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.footer-bottom .cell {
    border-top: 2px solid #76a6cf
}

.footer-bottom .cell {
    padding-top: 1.5rem
}

.footer-bottom .cell {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .footer-bottom .cell {
        padding-top: 2rem
    }

    .footer-bottom .cell {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .footer-bottom .cell {
        padding-top: 2.5rem
    }

    .footer-bottom .cell {
        margin-top: 2.5rem
    }
}

.footer-copyright {
    margin-bottom: 40px
}

@media print,
screen and (min-width:64.0625em) {
    .footer-copyright {
        display: flex;
        align-items: center;
        gap: 40px
    }
}

.site-footer__copyright {
    margin: 0
}

.site-footer__copyright {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.footer-social .social-media a {
    margin-right: 16px;
    margin-left: 0;
    font-size: 1.5rem
}

.footer-social .social-media a:hover,
.footer-social .social-media a:focus {
    color: #008755
}

.site-header {
    position: relative;
    z-index: 10;
    background-color: #fff
}

@media print,
screen and (min-width:64.0625em) {
    .site-header {
        height: 8.75rem
    }
}

.site-header ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.site-header li {
    position: relative
}

.site-header a.external::after {
    display: none
}

.site-header .site-header__sticky-container {
    height: 3.5rem;
    background-color: #fff;
    box-shadow: 0px 16px 25px 0px rgba(0, 0, 0, .05)
}

@media print,
screen and (min-width:64.0625em) {
    .site-header .site-header__sticky-container {
        height: 8.75rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .site-header--beyond-threshold .site-header__sticky-container {
        height: 5rem;
        position: fixed;
        transform: translateY(-100%);
        width: 100%;
        z-index: 10;
        top: 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .site-header--beyond-threshold-animate .site-header__sticky-container {
        transition: transform 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
    }
}

@media print,
screen and (min-width:64.0625em) {

    .site-header--scroll-up .site-header__sticky-container,
    .site-header--at-bottom .site-header__sticky-container {
        transform: translateY(0)
    }
}

.site-header__wrapper {
    align-items: center;
    display: flex;
    height: 100%
}

@media print,
screen and (max-width:64.06125em) {
    .site-header__wrapper {
        padding: 0 20px;
        padding-right: 10px
    }
}

.site-header__logo {
    display: inline-block
}

.site-header--beyond-threshold .site-header__logo {
    width: 208px;
    height: 60px
}

.site-header__logo img {
    display: block
}

@media print,
screen and (max-width:64.06125em) {
    .mobile-menu-open .site-search__toggle {
        opacity: .5;
        pointer-events: none
    }
}

@media print,
screen and (max-width:64.06125em) {
    .site-header__logo {
        margin-right: auto;
        width: 130px;
        height: 38px
    }
}

.mobile-menu-button {
    background-color: rgba(0, 0, 0, 0);
    padding: 5px 8.25px;
    margin-left: .5rem;
    width: 100%;
    height: 100%;
    max-width: 34px;
    max-height: 34px
}

@media print,
screen and (max-width:64.06125em) {
    .mobile-menu-button::before {
        content: "";
        font-family: "Font Awesome 6 Pro";
        transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
        color: #008755;
        font-size: 1.25rem
    }

    .mobile-menu-open .mobile-menu-button::before {
        content: "";
        color: #fff
    }
}

.mobile-menu-open .mobile-menu-button,
.mobile-menu-button:hover,
.mobile-menu-button:focus {
    background-color: #008755
}

.mobile-menu-open .mobile-menu-button:before,
.mobile-menu-button:hover:before,
.mobile-menu-button:focus:before {
    color: #fff
}

@media print,
screen and (max-width:64.06125em) {
    .site-header__main {
        display: none;
        flex-direction: column;
        position: absolute;
        width: 50vw;
        z-index: 1;
        top: 3.5rem;
        right: 0;
        background-color: #f7f7f7
    }

    .mobile-menu-open .site-header__main {
        max-height: calc(100dvh - (var(--sitewide-alert-height, 0px) + 3.5rem));
        overflow: auto
    }
}

@media print,
screen and (max-width:48.06125em) {
    .site-header__main {
        width: 100vw
    }
}

@media print,
screen and (max-width:64.06125em) {
    .mobile-menu-open .site-header__main {
        display: flex;
        flex-direction: column
    }
}

@media print,
screen and (max-width:64.06125em) {

    .mobile-menu-open,
    .search-panel-open {
        overflow: hidden
    }
}

@media print,
screen and (max-width:64.06125em) {

    .mobile-menu-open body::after,
    .mobile-menu-open main:after,
    .search-panel-open body::after,
    .search-panel-open main:after {
        background-color: rgba(0, 0, 0, .5);
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        width: 100%;
        z-index: 2;
        top: 0;
        left: 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .site-header__wrapper {
        justify-content: space-between;
        position: relative;
        gap: 0 .5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .site-header__main {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        height: 100%
    }
}

.site-header--beyond-threshold .site-header__main {
    height: auto
}

.site-header__top {
    display: flex;
    flex-direction: column;
    order: 1
}

@media print,
screen and (min-width:64.0625em) {
    .site-header__top {
        flex-direction: unset;
        align-items: center;
        padding: 16px 0
    }
}

.site-header--beyond-threshold .site-header__top {
    display: none
}

@media print,
screen and (min-width:64.0625em) {
    .site-header__bottom {
        display: flex;
        border-top: 1px solid #c99700;
        padding: 23.5px 0 0 0;
        order: 1
    }
}

.site-header--beyond-threshold .site-header__bottom {
    border: none;
    padding: 0;
    align-items: center
}

.site-header__mid {
    padding: 16px
}

div .site-header__mid {
    padding-top: 60px
}

@media print,
screen and (min-width:64.0625em) {
    div .site-header__mid {
        padding-top: 0
    }
}

@media print,
screen and (max-width:64.06125em) {
    .site-header__mid {
        position: relative
    }

    .site-header__mid {
        padding-top: 2.5rem
    }
}

@media print,
screen and (max-width:64.06125em)and (min-width:48.0625em) {
    .site-header__mid {
        padding-top: 3.5rem
    }
}

@media print,
screen and (max-width:64.06125em)and (min-width:64.0625em) {
    .site-header__mid {
        padding-top: 5rem
    }
}

@media print,
screen and (max-width:64.06125em) {
    .site-header__mid:after {
        content: "";
        display: block;
        border-top: 2px solid #c99700;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin-left: 2rem;
        margin-right: 2rem
    }
}

@media print,
screen and (max-width:64.06125em)and (min-width:48.0625em) {
    .site-header__mid:after {
        border-top-width: 2px
    }
}

@media print,
screen and (max-width:64.06125em) {
    .site-header__mid:before {
        content: "";
        display: block;
        background: #fff url(../images/compass-sm.svg) no-repeat center center;
        width: 31px;
        height: 31px;
        position: absolute;
        left: 50%;
        top: -17px;
        transform: translateX(-50%);
        padding: 0 24px;
        z-index: 1
    }
}

@media print,
screen and (max-width:64.06125em)and (min-width:48.0625em) {
    .site-header__mid:before {
        background-image: url(../images/compass.svg);
        width: 50px;
        height: 50px;
        top: -26px;
        padding: 0 41px
    }
}

@media print,
screen and (max-width:64.06125em) {
    .site-header__mid::before {
        background-image: url(../images/compass-mobile.svg);
        background-color: #f7f7f7;
        margin-top: 26px
    }

    .site-header__mid::after {
        border-color: #002855;
        margin: 24px 20px
    }
}

@media print,
screen and (min-width:64.0625em) {
    .site-header__mid {
        display: flex;
        align-items: center;
        padding: 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .mobile-menu-button {
        display: none
    }
}

.btn--give {
    letter-spacing: 1.56px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #c99700;
    padding: 12px 20px;
    font-size: .8125rem;
    color: #262626;
    line-height: 1;
    font-weight: 600;
    margin: 24px 0 0 0;
    max-width: 288px;
    display: block;
    text-align: center
}

@media print,
screen and (min-width:64.0625em) {
    .btn--give {
        margin: 0;
        display: inline-block;
        padding: 8px 16px
    }
}

.btn--give:hover,
.btn--give:focus {
    background-color: #c99700;
    color: #fff
}

.language {
    margin-top: 16px;
    border-bottom: 1px solid #c99700
}

.language:focus-within {
    outline: 2px solid #007bff;
    outline-offset: 1px;
    border-radius: 3px
}

@media print,
screen and (min-width:64.0625em) {
    .language {
        margin: 0 24px;
        border: none
    }
}

.language::before {
    display: inline-block;
    content: "";
    color: #008755;
    font-family: "Font Awesome 6 Pro"
}

@media print,
screen and (max-width:64.06125em) {
    .language::before {
        font-size: .75rem
    }
}

.language span {
    font-size: .8125rem;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    line-height: 1.5;
    font-weight: 600;
    color: #002855;
    margin-left: 8px
}

@media print,
screen and (min-width:64.0625em) {
    .language span {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }
}

.site-search table.gsc-search-box {
    margin-top: 0
}

.site-search table.gsc-input {
    margin-top: 0;
    margin-bottom: 0
}

@media print,
screen and (min-width:64.0625em) {
    .site-search {
        width: 34px;
        height: 34px;
        text-align: right
    }
}

@media print,
screen and (max-width:64.06125em) {
    .site-header__bottom .site-search {
        display: none
    }
}

@media print,
screen and (min-width:64.0625em) {
    .mobile-search .site-search {
        display: none
    }
}

.site-search .site-search__toggle {
    background-color: rgba(0, 0, 0, 0);
    padding: 0
}

.site-search .site-search__toggle::before {
    content: "";
    font-family: "Font Awesome 6 Pro";
    color: #008755;
    font-size: 1.25rem
}

.site-search .site-search__toggle:focus-visible::before {
    background-color: #008755;
    color: #fff;
    padding: 5px 9.5px
}

.search-panel-open .site-search .site-search__toggle::before {
    content: "";
    background-color: #008755;
    color: #fff;
    padding: 5px 9.5px;
    width: 100%;
    height: 100%;
    max-width: 34px;
    max-height: 34px;
    display: block
}

.site-search .search-block-form,
.site-search .google-cse-search-box-form,
.site-search .block-oho-google-search {
    background-color: #d4e8f6;
    display: none;
    padding: .5rem;
    position: absolute;
    z-index: 2;
    top: 100%;
    right: 0;
    box-shadow: -200px 0 0 #d4e8f6, 200px 0 0 #d4e8f6
}

@media print,
screen and (min-width:48.0625em)and (max-width:64.06125em) {

    .site-search .search-block-form,
    .site-search .google-cse-search-box-form,
    .site-search .block-oho-google-search {
        width: 50vw
    }
}

@media print,
screen and (max-width:48.06125em) {

    .site-search .search-block-form,
    .site-search .google-cse-search-box-form,
    .site-search .block-oho-google-search {
        width: 100%
    }
}

.site-search .search-block-form table,
.site-search .search-block-form tbody,
.site-search .search-block-form tr,
.site-search .search-block-form td,
.site-search .google-cse-search-box-form table,
.site-search .google-cse-search-box-form tbody,
.site-search .google-cse-search-box-form tr,
.site-search .google-cse-search-box-form td,
.site-search .block-oho-google-search table,
.site-search .block-oho-google-search tbody,
.site-search .block-oho-google-search tr,
.site-search .block-oho-google-search td {
    border: none
}

.site-search .search-block-form form.gsc-search-box,
.site-search .google-cse-search-box-form form.gsc-search-box,
.site-search .block-oho-google-search form.gsc-search-box {
    background-image: url(../images/search-icon.svg);
    background-size: 14px;
    background-repeat: no-repeat;
    background-position-x: 16px;
    background-position-y: center;
    background-color: #fff;
    border: 1px solid #063d7a;
    border-radius: 40px;
    max-width: 460px;
    max-height: 62px;
    margin: 0
}

@media print,
screen and (min-width:48.0625em) {

    .site-search .search-block-form form.gsc-search-box,
    .site-search .google-cse-search-box-form form.gsc-search-box,
    .site-search .block-oho-google-search form.gsc-search-box {
        background-size: 20px;
        background-position-x: 20px;
        font-size: 1.25rem
    }
}

.site-search .search-block-form form.gsc-search-box .gsc-input-box,
.site-search .google-cse-search-box-form form.gsc-search-box .gsc-input-box,
.site-search .block-oho-google-search form.gsc-search-box .gsc-input-box {
    all: unset
}

.site-search .search-block-form .gsib_a,
.site-search .google-cse-search-box-form .gsib_a,
.site-search .block-oho-google-search .gsib_a {
    background-image: none
}

.site-search .search-block-form td,
.site-search .google-cse-search-box-form td,
.site-search .block-oho-google-search td {
    padding: 0
}

.site-search .search-block-form div:has(.gsc-search-box),
.site-search .google-cse-search-box-form div:has(.gsc-search-box),
.site-search .block-oho-google-search div:has(.gsc-search-box) {
    width: 100%;
    text-align: right;
    text-align: -webkit-right
}

.site-search .search-block-form td:has(>input.gsc-input),
.site-search .google-cse-search-box-form td:has(>input.gsc-input),
.site-search .block-oho-google-search td:has(>input.gsc-input) {
    padding: 8px 16px;
    padding-left: 33px
}

@media print,
screen and (min-width:48.0625em) {

    .site-search .search-block-form td:has(>input.gsc-input),
    .site-search .google-cse-search-box-form td:has(>input.gsc-input),
    .site-search .block-oho-google-search td:has(>input.gsc-input) {
        padding: 19px 16px;
        padding-left: 45px
    }
}

.site-search .search-block-form .gsc-input,
.site-search .google-cse-search-box-form .gsc-input,
.site-search .block-oho-google-search .gsc-input {
    width: 100%;
    background-image: none !important;
    padding-left: 5px !important
}

.site-search .search-block-form .gsc-input input,
.site-search .google-cse-search-box-form .gsc-input input,
.site-search .block-oho-google-search .gsc-input input {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:48.0625em) {

    .site-search .search-block-form .gsc-input input,
    .site-search .google-cse-search-box-form .gsc-input input,
    .site-search .block-oho-google-search .gsc-input input {
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {

    .site-search .search-block-form .gsc-input input,
    .site-search .google-cse-search-box-form .gsc-input input,
    .site-search .block-oho-google-search .gsc-input input {
        font-size: 1.125rem
    }
}

.site-search .search-block-form .gsc-input input::-moz-placeholder,
.site-search .google-cse-search-box-form .gsc-input input::-moz-placeholder,
.site-search .block-oho-google-search .gsc-input input::-moz-placeholder {
    line-height: 2;
    font-size: 24px
}

.site-search .search-block-form .gsc-input input::placeholder,
.site-search .google-cse-search-box-form .gsc-input input::placeholder,
.site-search .block-oho-google-search .gsc-input input::placeholder {
    line-height: 2;
    font-size: 24px
}

.site-search .search-block-form .gsc-input input::-moz-placeholder,
.site-search .google-cse-search-box-form .gsc-input input::-moz-placeholder,
.site-search .block-oho-google-search .gsc-input input::-moz-placeholder {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.site-search .search-block-form .gsc-input input::placeholder,
.site-search .google-cse-search-box-form .gsc-input input::placeholder,
.site-search .block-oho-google-search .gsc-input input::placeholder {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.site-search .search-block-form td.gsc-search-button,
.site-search .google-cse-search-box-form td.gsc-search-button,
.site-search .block-oho-google-search td.gsc-search-button {
    align-content: center;
    padding-right: 4px
}

@media print,
screen and (min-width:48.0625em) {

    .site-search .search-block-form td.gsc-search-button,
    .site-search .google-cse-search-box-form td.gsc-search-button,
    .site-search .block-oho-google-search td.gsc-search-button {
        padding-right: 8px;
        margin-bottom: 2px
    }
}

.site-search .search-block-form button.gsc-search-button-v2,
.site-search .google-cse-search-box-form button.gsc-search-button-v2,
.site-search .block-oho-google-search button.gsc-search-button-v2 {
    all: unset
}

.site-search .search-block-form button.gsc-search-button,
.site-search .search-block-form button.gsc-search-button-v2,
.site-search .google-cse-search-box-form button.gsc-search-button,
.site-search .google-cse-search-box-form button.gsc-search-button-v2,
.site-search .block-oho-google-search button.gsc-search-button,
.site-search .block-oho-google-search button.gsc-search-button-v2 {
    background-color: #002855;
    border-radius: 30px;
    padding: 4px 16px;
    pointer-events: all;
    cursor: pointer
}

@media print,
screen and (min-width:48.0625em) {

    .site-search .search-block-form button.gsc-search-button,
    .site-search .search-block-form button.gsc-search-button-v2,
    .site-search .google-cse-search-box-form button.gsc-search-button,
    .site-search .google-cse-search-box-form button.gsc-search-button-v2,
    .site-search .block-oho-google-search button.gsc-search-button,
    .site-search .block-oho-google-search button.gsc-search-button-v2 {
        padding: 13px 31px;
        margin-bottom: 2px
    }
}

.site-search .search-block-form button.gsc-search-button::after,
.site-search .search-block-form button.gsc-search-button-v2::after,
.site-search .google-cse-search-box-form button.gsc-search-button::after,
.site-search .google-cse-search-box-form button.gsc-search-button-v2::after,
.site-search .block-oho-google-search button.gsc-search-button::after,
.site-search .block-oho-google-search button.gsc-search-button-v2::after {
    display: block;
    content: "Go";
    text-transform: none;
    color: #fff
}

.site-search .search-block-form button.gsc-search-button svg,
.site-search .search-block-form button.gsc-search-button-v2 svg,
.site-search .google-cse-search-box-form button.gsc-search-button svg,
.site-search .google-cse-search-box-form button.gsc-search-button-v2 svg,
.site-search .block-oho-google-search button.gsc-search-button svg,
.site-search .block-oho-google-search button.gsc-search-button-v2 svg {
    display: none
}

.search-panel-open .site-search .search-block-form,
.search-panel-open .site-search .google-cse-search-box-form,
.search-panel-open .site-search .block-oho-google-search {
    display: flex;
    align-items: center;
    padding: 16px 20px
}

@media print,
screen and (min-width:48.0625em) {

    .search-panel-open .site-search .search-block-form,
    .search-panel-open .site-search .google-cse-search-box-form,
    .search-panel-open .site-search .block-oho-google-search {
        padding: 24px 32px
    }
}

.site-search .search-block-form .form-item,
.site-search .google-cse-search-box-form .form-item,
.site-search .block-oho-google-search .form-item {
    margin: 0
}

.site-search .search-block-form label,
.site-search .google-cse-search-box-form label,
.site-search .block-oho-google-search label {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    font-size: 18px;
    color: #000;
    background-color: #fff
}

.site-search .search-block-form input,
.site-search .google-cse-search-box-form input,
.site-search .block-oho-google-search input {
    border: 1px solid #063d7a;
    width: 100%;
    letter-spacing: normal;
    border-radius: 40px;
    padding: 10px 20px
}

.site-search .search-block-form input,
.site-search .google-cse-search-box-form input,
.site-search .block-oho-google-search input {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {

    .site-search .search-block-form input,
    .site-search .google-cse-search-box-form input,
    .site-search .block-oho-google-search input {
        font-size: 1.125rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .site-search .search-block-form input,
    .site-search .google-cse-search-box-form input,
    .site-search .block-oho-google-search input {
        padding: 20px
    }
}

.site-search .search-block-form input::-webkit-input-placeholder,
.site-search .google-cse-search-box-form input::-webkit-input-placeholder,
.site-search .block-oho-google-search input::-webkit-input-placeholder {
    color: #7e7e7e
}

.site-search .search-block-form input::-moz-placeholder,
.site-search .google-cse-search-box-form input::-moz-placeholder,
.site-search .block-oho-google-search input::-moz-placeholder {
    opacity: 1;
    color: #7e7e7e
}

.site-search .search-block-form input:-ms-input-placeholder,
.site-search .google-cse-search-box-form input:-ms-input-placeholder,
.site-search .block-oho-google-search input:-ms-input-placeholder {
    color: #7e7e7e
}

.site-search .search-block-form .form-actions,
.site-search .google-cse-search-box-form .form-actions,
.site-search .block-oho-google-search .form-actions {
    margin-left: -64px
}

@media print,
screen and (min-width:64.0625em) {

    .site-search .search-block-form .form-actions,
    .site-search .google-cse-search-box-form .form-actions,
    .site-search .block-oho-google-search .form-actions {
        margin-left: -94px
    }
}

.site-search .search-block-form .form-actions input,
.site-search .google-cse-search-box-form .form-actions input,
.site-search .block-oho-google-search .form-actions input {
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 1rem;
    text-transform: none
}

@media print,
screen and (min-width:64.0625em) {

    .site-search .search-block-form .form-actions input,
    .site-search .google-cse-search-box-form .form-actions input,
    .site-search .block-oho-google-search .form-actions input {
        padding: 15px 30px
    }
}

@media print,
screen and (min-width:64.0625em) {

    .site-search .search-block-form,
    .site-search .google-cse-search-box-form,
    .site-search .block-oho-google-search {
        display: none;
        position: absolute;
        width: 100%;
        z-index: -1
    }

    .search-panel-open .site-search .search-block-form,
    .search-panel-open .site-search .google-cse-search-box-form,
    .search-panel-open .site-search .block-oho-google-search {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%
    }
}

.search-panel-open .mobile-menu-button {
    opacity: .6;
    pointer-events: none
}

.sock {
    position: relative;
    min-height: 755px
}

.sock .cell:not(:first-child) {
    margin-top: 32px
}

@media print,
screen and (min-width:48.0625em) {
    .sock .cell:not(:first-child) {
        margin-top: 0
    }
}

.sock-inner {
    position: relative;
    z-index: 3
}

.sock-inner {
    padding-top: 2.5rem
}

.sock-inner {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .sock-inner {
        padding-top: 3.5rem
    }

    .sock-inner {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .sock-inner {
        padding-top: 5rem
    }

    .sock-inner {
        padding-bottom: 5rem
    }
}

@media print,
screen and (max-width:48.06125em) {
    .sock-inner {
        padding-bottom: 5rem
    }
}

.sock-bkground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.sock-bkground::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    background-image: linear-gradient(180deg, #D4E8F6 6.06%, rgba(212, 232, 246, 0) 43.17%)
}

.sock-bkground::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    background-image: linear-gradient(180deg, rgba(6, 61, 122, 0) 5.95%, rgba(6, 61, 122, 0.7) 100%)
}

.sock-bkground img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    background-position: center;
    z-index: 1
}

.sock-title {
    text-align: center;
    position: relative;
    border-bottom: 1.5px solid #c99700
}

.sock-title {
    font-family: aleo, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .sock-title {
        font-size: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .sock-title {
        font-size: 2.75rem
    }
}

.sock-title {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .sock-title {
        padding-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .sock-title {
        padding-bottom: 3rem
    }
}

.sock-title {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .sock-title {
        margin-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .sock-title {
        margin-bottom: 3rem
    }
}

.sock-title:after {
    content: "";
    display: block;
    background: url(../images/compass-sm.svg) no-repeat center center;
    width: 31px;
    height: 31px;
    position: absolute;
    left: 50%;
    bottom: -17px;
    transform: translateX(-50%);
    padding: 0 24px
}

@media print,
screen and (min-width:48.0625em) {
    .sock-title:after {
        background-image: url(../images/compass.svg);
        width: 50px;
        height: 50px;
        bottom: -26px;
        padding: 0 41px
    }
}

.sock-card {
    background: rgba(0, 40, 85, .8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #fff;
    height: 100%
}

.sock-card {
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .sock-card {
        padding: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .sock-card {
        padding: 2.5rem
    }
}

.sock-card h3 {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .sock-card h3 {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .sock-card h3 {
        font-size: 2rem
    }
}

.sock-card p {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .sock-card p {
        margin-top: 1rem
    }
}

.sock-card a {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .sock-card a {
        margin-top: 1.5rem
    }
}

.accessible-menu li {
    position: relative
}

.accessible-menu .menu-item__button {
    position: absolute;
    border: none;
    background-color: rgba(0, 0, 0, 0)
}

@media print,
screen and (max-width:64.06125em) {
    .accessible-menu .menu-item__button {
        position: absolute;
        top: 0;
        right: 0;
        width: 2em;
        height: 2em;
        margin: 0;
        padding: .375em;
        color: rgba(0, 0, 0, 0);
        font-size: 1.5rem
    }

    .accessible-menu .menu-item__button::before {
        display: inline-block;
        width: 100%;
        content: "";
        color: #008755;
        font-family: "Font Awesome 6 Pro"
    }
}

@media print,
screen and (min-width:64.0625em) {
    .accessible-menu .menu-item__button {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 1.5rem;
        height: 1rem;
        transition: opacity 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
        transform: translateX(-50%);
        opacity: 0;
        font-size: 0
    }

    .accessible-menu .menu-item__button::before {
        width: 100%;
        content: "";
        color: #008755;
        font-family: "Font Awesome 6 Pro";
        font-size: 16px
    }

    .accessible-menu .menu-item__button:focus {
        opacity: 1
    }
}

.accessible-menu .menu-item--open>ul {
    display: block
}

@media print,
screen and (max-width:64.06125em) {
    .accessible-menu .menu-item--open>.menu-item__button::before {
        content: ""
    }
}

@media print,
screen and (min-width:64.0625em) {
    .accessible-menu .menu-item--open>.menu-item__button::before {
        content: ""
    }
}

.accessible-menu .menu-item__button {
    opacity: 1
}

@media print,
screen and (min-width:64.0625em) {
    .accessible-menu .menu-item__button {
        opacity: 0;
        left: auto;
        right: -1.25rem;
        top: 0;
        height: 100%;
        padding: 0;
        width: 2.5rem
    }

    .accessible-menu .menu-item--expanded>a,
    .accessible-menu .menu-item>a,
    .accessible-menu .menu-item--expanded>span,
    .accessible-menu .menu-item>span {
        margin-right: 1rem
    }
}

@media screen and (min-width:75.0625em) {

    .accessible-menu .menu-item--expanded>a,
    .accessible-menu .menu-item>a,
    .accessible-menu .menu-item--expanded>span,
    .accessible-menu .menu-item>span {
        margin-right: 1.5625rem
    }
}

.audience-menu .menu-item__button:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 1px;
    border-radius: 3px
}

.audience-menu a,
.audience-menu li,
.audience-menu span {
    display: block
}

.audience-menu span {
    cursor: default;
    font-size: .8125rem;
    letter-spacing: 1.04px;
    text-transform: uppercase;
    line-height: 1.5;
    font-weight: 600
}

@media print,
screen and (max-width:64.06125em) {
    .audience-menu span {
        color: #002855
    }
}

.audience-menu .menu-item--expanded {
    border-bottom: 1px solid #c99700
}

.audience-menu .menu-item--expanded:hover::before {
    content: "";
    height: 24px;
    position: absolute;
    width: calc(100% + 50px);
    top: 100%;
    left: -25px
}

.audience-menu .menu-item__button {
    opacity: 1;
    padding-left: 24px
}

@media print,
screen and (max-width:64.06125em) {
    .audience-menu .menu-item__button {
        padding: 0
    }
}

.audience-menu .menu-item__button:before {
    color: #008755;
    font-size: .875rem;
    content: ""
}

@media print,
screen and (max-width:64.06125em) {
    .audience-menu .menu-item__button:before {
        position: relative;
        top: -20px;
        right: -14px
    }
}

.audience-menu .menu-item--expanded:hover .menu-item__button:before,
.audience-menu .menu-item--open .menu-item__button:before {
    content: ""
}

@media print,
screen and (max-width:64.06125em) {

    .audience-menu a,
    .audience-menu span {
        padding-right: 48px
    }

    .audience-menu ul ul {
        display: none
    }

    .audience-menu ul ul li {
        margin: 8px 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .audience-menu ul {
        display: flex
    }

    .audience-menu li:hover>ul {
        display: block
    }

    .audience-menu ul ul {
        display: none;
        position: absolute;
        min-width: 185px;
        z-index: 1;
        left: 0;
        top: 30px;
        background-color: #fff;
        box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, .1);
        padding: 16px
    }

    .audience-menu ul ul li {
        display: block;
        margin: 16px 0
    }

    .audience-menu ul ul li:first-child {
        margin-top: 8px
    }

    .audience-menu ul ul li:last-child {
        margin-bottom: 8px
    }

    .audience-menu ul ul a {
        text-decoration-color: rgba(0, 0, 0, 0);
        text-underline-offset: 4px;
        transition: -webkit-text-decoration .25s;
        transition: text-decoration .25s;
        transition: text-decoration .25s, -webkit-text-decoration .25s;
        font-size: .875rem
    }

    .audience-menu ul ul a:hover,
    .audience-menu ul ul a:focus {
        text-decoration-color: #002855
    }
}

ol.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-flow: wrap
}

ol.breadcrumbs {
    list-style: none;
    margin: 0;
    padding: 0
}

ol.breadcrumbs {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    ol.breadcrumbs {
        margin-bottom: 2rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    ol.breadcrumbs {
        margin-bottom: 2.5rem
    }
}

ol.breadcrumbs li {
    padding-left: 0;
    display: inline-block
}

ol.breadcrumbs li {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

ol.breadcrumbs li:before {
    content: none;
    position: relative
}

ol.breadcrumbs li.active {
    color: #fff
}

ol.breadcrumbs li:not(:nth-last-child(2)) {
    display: none
}

@media print,
screen and (min-width:48.0625em) {
    ol.breadcrumbs li:not(:nth-last-child(2)) {
        display: inline-block
    }
}

@media print,
screen and (min-width:48.0625em) {
    ol.breadcrumbs li:nth-child(n+1):not(:last-of-type)::after {
        font-family: "Font Awesome 6 Pro";
        content: "/";
        display: inline-block;
        color: #c99700;
        padding-left: 12px
    }
}

@media print,
screen and (max-width:48.06125em) {
    ol.breadcrumbs li:nth-last-child(2) a::before {
        font-family: "Font Awesome 6 Pro";
        content: "";
        display: inline-block;
        padding-right: 8px
    }
}

ol.breadcrumbs a {
    color: #f7d66f;
    background-color: rgba(0, 40, 85, .85);
    text-decoration: none;
    transition: color .25s;
    border-radius: 1.5rem;
    padding: .25rem 1rem .3125rem 1rem;
    transition: background-color .25s, color .25s
}

ol.breadcrumbs a:hover,
ol.breadcrumbs a:focus {
    color: #fff;
    background-color: #008755
}

.jump-nav {
    position: sticky
}

.main-menu ul {
    font-family: "aleo", serif;
    font-weight: 600;
    line-height: 1.2
}

.main-menu li,
.main-menu a {
    display: block;
    text-decoration: none;
    color: #262626
}

.main-menu li ul,
.main-menu a ul {
    font-family: "franklin-gothic-atf", sans-serif;
    font-size: 1rem;
    font-weight: 400
}

@media print,
screen and (max-width:64.06125em) {
    .main-menu {
        font-size: 1.125rem
    }

    .main-menu li+li {
        border-top: 1px solid #76a6cf
    }

    .main-menu .menu-item--open+li {
        border-top-color: rgba(0, 0, 0, 0)
    }

    .main-menu .menu-item__button {
        height: min(100%, 2rem);
        font-size: 1rem;
        top: 3px;
        padding: 21px 28px;
        right: -20px
    }

    .main-menu .menu-item__button:before {
        color: #008755;
        top: -9px;
        position: relative;
        left: -7px
    }

    .main-menu .menu-item--open .menu-item__button {
        background-color: #002855;
        border-radius: 24px 24px 0 0
    }

    .main-menu .menu-item--open .menu-item__button:before {
        color: #fff
    }

    .main-menu li {
        padding: 15px 0 10px 0;
        margin: 0 20px
    }

    .main-menu a {
        padding-right: 48px
    }

    .main-menu a:hover,
    .main-menu a:focus-visible {
        text-decoration: underline;
        text-underline-offset: 2px
    }

    .main-menu ul ul {
        display: none;
        background-color: #002855;
        margin: 8px -20px -10px -20px
    }

    .main-menu ul ul li {
        padding-bottom: 14px
    }

    .main-menu ul ul li+li {
        border-top-color: #76a6cf
    }

    .main-menu ul ul a {
        color: #fff
    }
}

@media print,
screen and (min-width:64.0625em) {
    .main-menu {
        font-size: 1rem
    }

    .main-menu>ul {
        display: flex
    }

    .main-menu a {
        box-shadow: 0 2px 0 rgba(0, 0, 0, 0);
        transition: box-shadow .25s;
        display: inline-block
    }

    .main-menu a:hover,
    .main-menu a:focus {
        box-shadow: 0 2px 0 #002855
    }

    .main-menu li.menu-item--active-trail>a {
        box-shadow: 0 2px 0 #c99700
    }

    .main-menu .menu-item--expanded:hover>a {
        box-shadow: 0 2px 0 #002855
    }

    .main-menu .menu-item--expanded:hover::before {
        content: "";
        height: 24px;
        position: absolute;
        width: calc(100% + 50px);
        top: 100%;
        left: -25px
    }

    .main-menu ul li:hover>ul {
        display: block
    }

    .main-menu ul>li:nth-last-child(-n+1)>ul {
        right: 0
    }

    .main-menu ul ul {
        display: none;
        min-width: 288px;
        position: absolute;
        width: auto;
        background-color: #f7f7f7;
        padding: 0 16px;
        top: 32px
    }

    .main-menu ul ul li {
        padding: 12px 0
    }

    .main-menu ul ul li:first-child {
        padding-top: 16px
    }

    .main-menu ul ul li:last-child {
        padding-bottom: 16px
    }

    .main-menu ul ul li+li {
        border-top: 1px solid #d4e8f6;
        padding: 12px 0
    }

    .main-menu ul ul a {
        color: #002855
    }

    .main-menu ul ul a:hover,
    .main-menu ul ul a:focus {
        box-shadow: 0 1px 0 #002855
    }
}

@media screen and (min-width:75.0625em) {
    .main-menu {
        font-size: 1.25rem
    }
}

.menu-item--disabled>a {
    cursor: default
}

.menu-item--disabled>a button {
    left: 0;
    width: auto;
    padding-right: .625em;
    text-align: right;
    background-color: rgba(0, 0, 0, 0)
}

.menu-item--overview {
    display: none !important
}

.menu-item--disabled .menu-item--overview {
    display: block !important
}

.section-nav {
    margin-top: 1.5rem
}

.section-nav {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .section-nav {
        margin-top: 2.5rem
    }

    .section-nav {
        margin-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .section-nav {
        margin-top: 3rem
    }

    .section-nav {
        margin-bottom: 3rem
    }
}

.section-nav h2 {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .section-nav h2 {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .section-nav h2 {
        font-size: 2rem
    }
}

.section-nav ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column
}

.section-nav ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.section-nav ul {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .section-nav ul {
        margin-top: 1.5rem
    }
}

.section-nav ul {
    gap: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .section-nav ul {
        gap: 1.5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .section-nav ul {
        flex-direction: row
    }
}

.section-nav a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .section-nav a {
        font-size: 1.125rem
    }
}

.section-nav a {
    white-space: nowrap;
    display: block;
    text-decoration-color: #008755;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    transition: color .25s;
    font-weight: 500
}

.section-nav a:hover,
.section-nav a:focus {
    color: #008755
}

.section-nav__content {
    background-color: #edf8ff
}

.section-nav__content {
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .section-nav__content {
        padding: 2rem
    }
}

.section-nav:has(+.body-section) {
    margin-bottom: 0
}

.sidebar-menu {
    font-family: "franklin-gothic-atf", sans-serif;
    font-size: 1rem;
    line-height: 1.4
}

.sidebar-menu h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1
}

.sidebar-menu h3 a {
    padding: 1rem
}

.sidebar-menu ul {
    margin: 0;
    padding: 0;
    list-style: none
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-menu>ul {
        margin: 0 0 .625rem 0
    }
}

.sidebar-menu a {
    position: relative;
    display: block;
    padding: 1rem 48px 1rem 0px;
    transition: background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    color: #063d7a;
    text-decoration: none
}

.sidebar-menu a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .sidebar-menu a {
        font-size: 1.125rem
    }
}

.sidebar-menu .menu-item__button {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: -moz-fit-content;
    width: fit-content;
    height: 3.9375rem;
    margin: 0;
    transform: none;
    opacity: 1;
    line-height: 1.6
}

@media print,
screen and (max-width:48.06125em) {
    .sidebar-menu .menu-item__button {
        height: 2.5625rem;
        top: -3px
    }
}

.sidebar-menu .menu-item__button::before {
    content: "";
    font-size: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-menu .menu-item__button::before {
        font-size: 1.125rem
    }
}

.sidebar-menu>ul li:first-child {
    border-top: unset
}

.sidebar-menu>ul>li {
    border-top: 1px solid #76a6cf
}

.sidebar-menu>ul>li.menu-item--open>a {
    font-weight: 600;
    color: #000;
    text-decoration: unset
}

.sidebar-menu>ul ul {
    background-color: #fff
}

.sidebar-menu>ul ul .is-active::before {
    display: none
}

.sidebar-menu>ul ul .menu-item--open>a {
    font-weight: 700;
    color: #000
}

.sidebar-menu>ul ul>li a {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-menu>ul ul>li a {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .sidebar-menu>ul ul>li a {
        font-size: 1.375rem
    }
}

.sidebar-menu>ul ul>li a {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.5
}

.sidebar-menu>ul ul>li .menu-item__button {
    display: flex;
    height: 44px;
    align-items: center
}

.sidebar-menu>ul ul>li:last-child>a:not(.is-active) {
    padding-bottom: 0;
    margin-bottom: 1rem
}

.sidebar-menu>ul ul>li a {
    padding-left: 1rem;
    padding-top: 0px;
    padding-bottom: 8px
}

.sidebar-menu>ul ul>li a::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    background-color: #c99700;
    left: 0;
    top: 0
}

.sidebar-menu__toggle {
    display: none
}

@media print,
screen and (max-width:48.06125em) {
    .sidebar-menu__toggle {
        position: relative;
        display: block;
        width: 100%;
        margin: 0;
        padding: 1rem 16px;
        transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
        color: #002855;
        border: 0;
        background: none
    }

    .sidebar-menu__toggle::after {
        content: "";
        transform: translateY(-50%);
        font-family: "Font Awesome 6 Pro";
        font-size: 1.5em;
        position: absolute;
        top: 50%;
        right: .75em
    }

    .sidebar-menu-open .sidebar-menu__toggle::after {
        content: ""
    }

    .sidebar-menu__toggle:hover {
        color: #767676;
        background: none
    }

    .sidebar-menu__container {
        display: none
    }
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-menu__container {
        display: block !important
    }
}

.sidebar-menu-accordion.accordion--open .accordion__button .accordion__icon {
    rotate: 180deg;
    top: 4px
}

.sidebar-menu-accordion.accordion--open .accordion__button .accordion__icon .fas:before {
    color: #fff;
    content: ""
}

@media print,
screen and (max-width:48.06125em) {
    .sidebar-menu-accordion.accordion--open .accordion__button {
        background-color: #edf8ff
    }
}

@media print,
screen and (max-width:48.06125em) {
    .sidebar-menu-accordion .accordion__icon i:before {
        font-size: 1rem;
        content: "";
        color: #008755
    }
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-menu-accordion .accordion__button {
        border-color: rgba(0, 0, 0, 0)
    }
}

.sidebar-menu-accordion .accordion__content {
    padding: 0 1rem 0 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-menu-accordion .accordion__content {
        border-color: rgba(0, 0, 0, 0);
        padding: 0
    }
}

.sidebar-menu .menu-item--expanded>ul {
    display: none
}

:root:not(.oho-js) .sidebar-menu .menu-item--expanded>ul {
    display: block
}

.sidebar-menu .menu-item--open>ul {
    display: block
}

.sidebar-menu .menu-item--open>.menu-item__button::before {
    content: ""
}

.sidebar-parent-link h2 {
    margin: 0;
    padding-bottom: 1rem
}

.sidebar-parent-link h2 {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-parent-link h2 {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .sidebar-parent-link h2 {
        font-size: 2.5rem
    }
}

.sidebar-parent-link span {
    display: none
}

.sidebar-parent-link span {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .sidebar-parent-link span {
        font-size: 1.125rem
    }
}

.sidebar-parent-link span {
    font-weight: 600
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-parent-link span {
        padding-bottom: 1rem;
        display: block
    }
}

.sidebar-parent-link a {
    text-decoration: unset;
    display: block;
    padding-bottom: 1.5rem;
    color: #063d7a
}

.sidebar-parent-link a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .sidebar-parent-link a {
        font-size: 1.125rem
    }
}

.sidebar-parent-link a {
    margin-left: .75rem;
    position: relative;
    padding-left: 8px
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-parent-link a {
        padding-left: 10px
    }
}

.sidebar-parent-link a:before {
    content: "";
    margin-right: .5rem;
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: .0625rem;
    left: -.75rem;
    transition: transform .5s;
    font-weight: 400
}

.sidebar-parent-link a:hover::before,
.sidebar-parent-link a:focus::before {
    transform: translateX(-5px)
}

.sidebar-parent-link a {
    font-weight: 600
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-parent-link a {
        padding-bottom: 1rem
    }
}

.sidebar-parent-link a::before {
    color: #008755;
    top: auto
}

@media print,
screen and (min-width:48.0625em) {
    .sidebar-parent-link {
        border-bottom: 1px solid #76a6cf
    }

    .sidebar-parent-link h2 {
        border: 0;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }
}

.social-media {
    margin: 0;
    padding: 0;
    list-style: none
}

.social-media li {
    display: inline-block
}

.social-media a {
    display: block;
    margin: 0 4px;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    font-size: 1.5rem
}

.social-media a:hover {
    color: #063d7a
}

.utility-label {
    display: none
}

@media print,
screen and (max-width:64.06125em) {
    .utility-label {
        display: block;
        margin-bottom: 8px
    }

    .utility-label {
        font-size: 0.8125rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 1.56px;
        text-transform: uppercase
    }
}

.utility-menu a,
.utility-menu li {
    display: block
}

.utility-menu a {
    text-decoration-color: rgba(0, 0, 0, 0);
    text-underline-offset: 4px;
    transition: -webkit-text-decoration .25s;
    transition: text-decoration .25s;
    transition: text-decoration .25s, -webkit-text-decoration .25s
}

.utility-menu a:hover,
.utility-menu a:focus {
    text-decoration-color: #002855
}

@media print,
screen and (max-width:64.06125em) {
    .utility-menu {
        padding: 16px;
        border-top: 1px solid #76a6cf;
        order: 1
    }

    .utility-menu li {
        display: inline-block;
        margin-right: 16px
    }

    .utility-menu a {
        text-decoration-color: #002855
    }
}

@media print,
screen and (min-width:64.0625em) {
    .utility-menu {
        margin-right: 40px
    }

    .utility-menu ul {
        display: flex;
        -moz-column-gap: 16px;
        column-gap: 16px
    }
}

.accordion {
    clear: both
}

.accordion+.accordion .accordion__button {
    border-top: 0
}

.accordion__button {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 1.4375rem 1.5rem;
    transition: background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 0 cubic-bezier(0.42, 0.08, 0.06, 0.98) 400ms;
    text-align: left;
    border: 1px solid #76a6cf;
    background-color: rgba(0, 0, 0, 0);
    color: #262626;
    border-radius: 0;
    text-transform: unset;
    letter-spacing: normal
}

.accordion__button {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .accordion__button {
        font-size: 1.125rem
    }
}

.accordion__button {
    font-weight: 600
}

.accordion__button:hover,
.accordion__button:focus {
    color: #000;
    background-color: #fff
}

.accordion__button:hover path,
.accordion__button:focus path {
    fill: #000
}

.accordion__icon {
    font-size: 1.375rem;
    color: #262626;
    position: absolute;
    top: 0;
    right: 24px;
    bottom: 0;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto
}

.accordion__icon-path {
    fill: #fff;
    transition: fill 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), transform 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.accordion__icon-path--vertical {
    transform: scaleY(1);
    transform-origin-y: 50%
}

.accordion__content {
    border: 1px solid #76a6cf;
    display: none;
    padding: 1.75rem 28px;
    background-color: #fff;
    overflow: hidden
}

:root:not(.oho-js) .accordion__content {
    display: block
}

.accordion--open>.accordion__button,
:root:not(.oho-js) .accordion__button {
    transition: background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    color: #000;
    border-bottom: 0;
    background-color: #fff
}

.accordion--open>.accordion__button .accordion__icon,
:root:not(.oho-js) .accordion__button .accordion__icon {
    rotate: 45deg;
    color: #008755
}

.accordion--open>.accordion__button .accordion__icon-path,
:root:not(.oho-js) .accordion__button .accordion__icon-path {
    fill: #000
}

.accordion--open>.accordion__button .accordion__icon-path--vertical,
:root:not(.oho-js) .accordion__button .accordion__icon-path--vertical {
    transform: scaleY(0)
}

.accordion--mobile .accordion__button:disabled {
    display: none
}

.accordion--mobile .accordion__button:disabled+.accordion__content {
    display: block !important;
    padding: 0;
    border: 0;
    background-color: rgba(0, 0, 0, 0)
}

.wysiwyg .accordions {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg .accordions {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg .accordions {
        margin-top: 3rem
    }
}

.wysiwyg .accordions .section-heading__heading {
    text-transform: none
}

.wysiwyg .accordions .section-heading__heading {
    font-family: aleo, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .wysiwyg .accordions .section-heading__heading {
        font-size: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg .accordions .section-heading__heading {
        font-size: 2.75rem
    }
}

.wysiwyg .accordions .section-heading__subheading {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .wysiwyg .accordions .section-heading__subheading {
        font-size: 1.125rem
    }
}

.wysiwyg .accordions .grid-container {
    padding: 0
}

@media print,
screen and (min-width:48.0625em) {
    .accordions-vertical {
        display: flex
    }
}

.accordions-vertical .accordion {
    position: relative;
    z-index: 1
}

@media print,
screen and (min-width:64.0625em) {
    .accordions-vertical .accordion {
        min-height: 480px;
        width: 25%;
        display: flex;
        justify-content: center;
        flex-direction: column
    }
}

.accordions-vertical .accordion:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    background-position: top center;
    background-repeat: repeat;
    background-color: gold;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    opacity: 0;
    transform: scale(0.9);
    transition: transform .3s cubic-bezier(1, 0.63, 0.47, 0.8);
    transform-origin: center
}

@media print,
screen and (min-width:64.0625em) {
    .accordions-vertical .accordion:before {
        top: -32px;
        right: -2px;
        bottom: -32px;
        left: -2px
    }
}

.accordions-vertical .accordion .accordion__button {
    position: relative;
    z-index: 2
}

.accordions-vertical .accordion .accordion__button .accordion__button-text {
    color: #000
}

@media print,
screen and (min-width:48.0625em) {
    .accordions-vertical .accordion .accordion__button {
        background-color: rgba(0, 0, 0, 0);
        height: 100%
    }

    .accordions-vertical .accordion .accordion__button:hover .accordion__button-text {
        color: #000;
        text-decoration: underline;
        text-underline-offset: 2px
    }

    .accordions-vertical .accordion .accordion__button:focus .accordion__button-text {
        color: #000
    }
}

.accordions-vertical .accordion .accordion__button-text {
    font-weight: 300;
    font-size: 1.125rem;
    transition: color .3s cubic-bezier(1, 0.63, 0.47, 0.8)
}

@media print,
screen and (min-width:64.0625em) {
    .accordions-vertical .accordion .accordion__button-text {
        font-size: 1.875rem;
        line-height: 1.6
    }
}

@media print,
screen and (min-width:48.0625em) {
    .accordions-vertical .accordion .accordion__icon-path {
        display: none
    }
}

.accordions-vertical .accordion .accordion__content {
    position: relative;
    z-index: 2
}

.accordions-vertical .accordion .accordion__content .btn {
    margin-top: 2.5rem
}

@media print,
screen and (min-width:64.0625em) {
    .accordions-vertical .accordion .accordion__button:not(.accordion--open):focus .accordion__button-text {
        color: #000;
        text-decoration: underline;
        text-underline-offset: 2px
    }
}

.accordions-vertical .accordion.accordion--open {
    z-index: 2
}

@media print,
screen and (min-width:48.0625em) {
    .accordions-vertical .accordion.accordion--open {
        width: 50%;
        flex-direction: column;
        justify-content: center;
        height: -moz-fit-content;
        height: fit-content
    }
}

.accordions-vertical .accordion.accordion--open::before {
    opacity: 1;
    transform: scale(1)
}

.accordions-vertical .accordion.accordion--open>.accordion__button {
    border: none;
    background-color: rgba(0, 0, 0, 0)
}

@media print,
screen and (min-width:48.0625em) {
    .accordions-vertical .accordion.accordion--open>.accordion__button {
        pointer-events: none
    }
}

@media print,
screen and (min-width:48.0625em) {
    .accordions-vertical .accordion.accordion--open>.accordion__button .accordion__icon {
        display: none
    }
}

.accordions-vertical .accordion.accordion--open .accordion__button-text {
    font-weight: 600;
    color: #000;
    text-decoration: none !important
}

.accordions-vertical .accordion.accordion--open .accordion__content {
    display: block;
    border: unset
}

.alumni {
    color: #262626;
    overflow: hidden
}

.alumni .section-heading__link {
    margin-top: .5rem
}

@media print,
screen and (min-width:48.0625em) {
    .alumni .section-heading__link {
        margin-top: unset;
        align-items: center;
        display: flex
    }
}

.alumni .tabs {
    flex-direction: row-reverse;
    position: relative
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .tabs {
        border: 8px solid #d9ede6;
        border-bottom: unset
    }
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .accordion {
        border-bottom: 8px solid #d9ede6
    }
}

@media print,
screen and (min-width:48.0625em) {
    .alumni .accordion {
        border: unset;
        width: calc(100% - 359px)
    }
}

@media print,
screen and (min-width:64.0625em) {
    .alumni .accordion {
        width: calc(100% - 459px)
    }
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .accordion+.accordion {
        position: relative;
        border-top: 8px solid #d9ede6
    }

    .alumni .accordion+.accordion::before {
        content: "";
        position: absolute;
        width: 100%;
        margin: auto;
        height: 2px;
        top: -8px;
        left: 0;
        background-color: #a9d4bb
    }
}

.alumni .accordion__button {
    border: unset
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .accordion__button {
        padding-left: 131px;
        min-height: 110px;
        background-color: #d9ede6
    }
}

.alumni .accordion__content {
    border: none;
    padding: 0
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .accordion__content {
        border-color: rgba(0, 0, 0, 0);
        padding: 8px 8px 0 8px
    }
}

@media print,
screen and (min-width:48.0625em) {
    .alumni .accordion__content {
        overflow: visible
    }
}

.alumni .accordion__icon {
    color: #008755;
    position: absolute;
    bottom: unset;
    top: 8px;
    right: 12px
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .accordion__button-text {
        color: #063d7a
    }
}

@media print,
screen and (min-width:48.0625em) {
    .alumni .tabs__buttons {
        margin-top: 4.5rem;
        margin-left: -50px;
        margin-right: -32px
    }
}

@media print,
screen and (min-width:64.0625em) {
    .alumni .tabs__buttons {
        margin-left: -60px;
        margin-right: unset
    }
}

.alumni .tabs__button {
    display: grid;
    grid-template-columns: 1fr 100px;
    border-color: #d9ede6;
    border-top: 8px solid #d9ede6;
    color: #262626
}

@media print,
screen and (min-width:48.0625em) {
    .alumni .tabs__button {
        padding: 0 0 0 54px
    }
}

@media print,
screen and (min-width:64.0625em) {
    .alumni .tabs__button {
        padding: 0 0 0 74px;
        grid-template-columns: 1fr 155px
    }
}

@media print,
screen and (min-width:48.0625em) {
    .alumni .tabs__button:not(:has(.alumni__thumb--subtitle)) {
        display: flex;
        justify-content: space-between
    }
}

.alumni .tabs__button:not(:has(.alumni__thumb--subtitle)) .tabs__title {
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto 0
}

.alumni .tabs__button:hover {
    color: unset
}

.alumni .tabs__button .tabs__title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .alumni .tabs__button .tabs__title {
        font-size: 1.125rem
    }
}

.alumni .tabs__button .tabs__title {
    font-weight: 600
}

.alumni .tabs__button:not([aria-selected=true]) {
    background-color: #d9ede6
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .alumni .tabs__button:not([aria-selected=true]) .tabs__title {
        font-size: 1rem
    }
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title:hover,
.alumni .tabs__button:not([aria-selected=true]) .tabs__title:focus {
    color: #008755;
    border-color: #008755
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title:hover::after,
.alumni .tabs__button:not([aria-selected=true]) .tabs__title:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title.btn {
    padding-right: 1.875rem
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .alumni .tabs__button:not([aria-selected=true]) .tabs__title {
        font-size: 1.125rem
    }
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title {
    font-weight: 600;
    text-transform: none;
    border: none;
    height: -moz-fit-content;
    height: fit-content;
    align-self: flex-end
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title:hover,
.alumni .tabs__button:not([aria-selected=true]) .tabs__title:focus,
.alumni .tabs__button:not([aria-selected=true]) .tabs__title:focus-visible {
    border: none
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title::after {
    align-self: flex-start;
    padding-right: 1rem
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title span {
    letter-spacing: normal
}

.alumni .tabs__button:not([aria-selected=true]) .tabs__title span:hover,
.alumni .tabs__button:not([aria-selected=true]) .tabs__title span:focus-visible {
    text-decoration: underline;
    text-decoration-color: #008755
}

.alumni .tabs__button img {
    grid-column: 2;
    grid-row: 1/3;
    max-width: 155px
}

@media print,
screen and (max-width:64.06125em) {
    .alumni .tabs__button img {
        max-width: 100px
    }
}

.alumni .tabs__button::after {
    display: none
}

.alumni .tabs__button+.tabs__button {
    position: relative
}

.alumni .tabs__button+.tabs__button:before {
    content: "";
    position: absolute;
    width: 100%;
    margin: auto;
    height: 2px;
    top: -8px;
    left: 0;
    background-color: #a9d4bb
}

.alumni .tabs__button+.tabs__button:hover,
.alumni .tabs__button+.tabs__button:focus {
    border-top-color: #d9ede6;
    padding-top: unset
}

.alumni .tabs__title {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    width: -moz-fit-content;
    width: fit-content;
    align-items: flex-end;
    display: flex;
    position: relative;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1.5
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .alumni__featured--description {
        padding: 1.5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .alumni .alumni__featured--description {
        margin-top: 1rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .alumni .alumni__featured--description {
        margin-top: 1.5rem
    }
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .tabs__button--additional {
        color: #262626
    }

    .alumni .tabs__button--additional img {
        width: 7.1875rem;
        height: 6.875rem;
        position: absolute;
        position: absolute;
        left: 0px;
        top: 0
    }
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .tab-accordion--open .accordion__button {
        background-color: #fff
    }

    .alumni .tab-accordion--open .accordion__icon {
        rotate: 45deg !important
    }
}

@media print,
screen and (max-width:48.06125em) {
    .alumni .alumni__featured__name {
        display: none
    }

    .alumni .alumni__featured--subtitle {
        display: none
    }
}

@media print,
screen and (max-width:48.06125em) {
    .alumni__content .grid-container {
        padding-left: 0px;
        padding-right: 0px
    }
}

.alumni__featured__content {
    border-left: 2px solid #a9d4bb
}

@media print,
screen and (min-width:48.0625em) {
    .alumni__featured__content {
        padding: 40px 80px 99px 40px
    }
}

.alumni__featured__image {
    max-width: 915px
}

@media print,
screen and (min-width:48.0625em) {
    .alumni__featured__image {
        margin-left: -2rem
    }
}

@media screen and (min-width:90em) {
    .alumni__featured__image {
        margin-left: -4rem
    }
}

.alumni__featured__image.video .aspect-ratio-frame:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(238deg, rgba(0, 40, 85, 0) 75.1%, #002855 100%);
    opacity: .9;
    z-index: 1
}

.alumni__featured__image .play-button {
    opacity: 1
}

.alumni__featured--subtitle {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

.alumni__featured--subtitle p {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

.alumni__featured--subtitle p.subtitle {
    line-height: 1.5
}

.alumni__thumb--subtitle {
    grid-row: 2;
    grid-column: 1;
    letter-spacing: normal
}

.alumni__thumb--subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.tab-navigation {
    position: absolute;
    bottom: 40px;
    left: 70px;
    font-size: 1rem;
    line-height: 1.28px;
    display: flex;
    gap: 24px;
    align-items: center
}

@media print,
screen and (max-width:48.06125em) {
    .tab-navigation {
        display: none
    }
}

.tab-nav-next,
.tab-nav-prev {
    font-size: 1.5rem;
    background-color: rgba(0, 0, 0, 0);
    color: #008755;
    padding: 4px 8px;
    border: 1px solid rgba(0, 0, 0, 0)
}

.tab-nav-next:hover,
.tab-nav-next:focus-visible,
.tab-nav-prev:hover,
.tab-nav-prev:focus-visible {
    background-color: rgba(0, 0, 0, 0);
    border-color: #008755
}

.tab-nav-next:hover span::before,
.tab-nav-next:focus-visible span::before,
.tab-nav-prev:hover span::before,
.tab-nav-prev:focus-visible span::before {
    color: #008755
}

.tab-nav-next:focus,
.tab-nav-prev:focus {
    background-color: rgba(0, 0, 0, 0);
    border-color: #008755
}

.tab-nav-next:focus span::before,
.tab-nav-prev:focus span::before {
    color: #008755
}

.tab-nav-next:active,
.tab-nav-prev:active {
    background-color: #008755;
    border-color: #008755
}

.tab-nav-next:active span::before,
.tab-nav-prev:active span::before {
    color: #fff
}

.tab-counter {
    margin-top: -4px;
    color: #262626
}

.alumni__content:has(.tabs__button:only-child) .tab-navigation {
    display: none
}

.alumni .tabs__button:hover .tabs__title span:hover,
.alumni .tabs__button:hover .tabs__title span:focus-visible,
.alumni .tabs__button:focus-visible .tabs__title span:hover,
.alumni .tabs__button:focus-visible .tabs__title span:focus-visible {
    text-decoration: underline;
    text-decoration-color: #008755
}

section:has(+.awards) {
    z-index: 5;
    position: relative
}

.awards {
    position: relative;
    background-color: #002855
}

.awards {
    margin-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .awards {
        margin-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .awards {
        margin-top: 5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .awards {
        padding-top: 0;
        height: 800px;
        overflow: hidden;
        margin-top: 1rem
    }

    .awards::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 3;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #fff
    }
}

@media screen and (min-width:75.0625em) {
    .awards {
        height: 967px
    }
}

.awards h3 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, .25)
}

@media print,
screen and (min-width:48.0625em) {
    .awards h3 {
        width: calc(100% - 216px)
    }
}

.awards .brand-text {
    font-family: "aleo", serif;
    color: #c99700;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
    font-size: 24px
}

@media print,
screen and (min-width:48.0625em) {
    .awards .brand-text {
        font-size: 2.22vw
    }
}

@media screen and (min-width:75.0625em) {
    .awards .brand-text {
        font-size: 32px
    }
}

.awards .section-heading {
    position: relative;
    z-index: 4
}

@media print,
screen and (min-width:48.0625em) {
    .awards .section-heading {
        margin-top: 0;
        top: 0
    }
}

@media screen and (min-width:75em) {
    .awards .section-heading {
        padding-left: calc(50vw - 600px - 7.5rem);
        max-width: calc(50vw - 600px + 64.5rem)
    }
}

@media screen and (max-width:66.1875em) {
    .awards.green-section-heading .section-heading {
        max-width: calc(100% - 32px)
    }
}

.awards .swiper-container {
    position: relative;
    z-index: 3
}

.awards .swiper-slide {
    opacity: .4
}

@media print,
screen and (min-width:48.0625em) {
    .awards .swiper-slide {
        margin-top: 0
    }
}

.awards .swiper-slide h3 {
    transform: translateY(0);
    font-size: 24px
}

@media print,
screen and (min-width:48.0625em) {
    .awards .swiper-slide h3 {
        font-size: 1.94vw;
        width: 100%;
        padding-right: 1.5rem
    }
}

@media screen and (min-width:75.0625em) {
    .awards .swiper-slide h3 {
        font-size: 32px
    }
}

.awards .swiper-slide h3 {
    font-weight: 400 !important
}

.awards .swiper-slide .awards__text span {
    opacity: 0
}

.awards .swiper-slide .badge {
    opacity: 0
}

.awards .swiper-slide-prev {
    visibility: visible;
    z-index: 1;
    opacity: .8
}

.awards .swiper-slide-prev .awards__text span {
    opacity: 0
}

.awards .swiper-slide-prev .badge {
    opacity: 0
}

.awards .swiper-slide-active {
    visibility: visible;
    opacity: 1
}

.awards .swiper-slide-active h3 {
    font-size: 1.75rem
}

@media print,
screen and (min-width:48.0625em) {
    .awards .swiper-slide-active h3 {
        font-size: 2.44vw
    }
}

@media screen and (min-width:75.0625em) {
    .awards .swiper-slide-active h3 {
        font-size: 40px
    }
}

.awards .swiper-slide-active h3 {
    font-weight: 700
}

.awards .swiper-slide-active .badge {
    opacity: 1
}

.awards .swiper-slide-active .awards__text span {
    opacity: 1
}

@media print,
screen and (min-width:48.0625em) {
    .awards .swiper-slide-active .awards__text span {
        opacity: 0
    }
}

.awards .swiper-slide-next {
    visibility: visible;
    opacity: .8
}

.awards .swiper-slide-next .awards__text span {
    opacity: 0
}

.awards .swiper-slide-next .badge {
    opacity: 0
}

.awards .swiper-slide-next+.swiper-slide {
    opacity: .6
}

.awards .swiper-slide-next+.swiper-slide+.swiper-slide {
    opacity: .4
}

.awards .badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: -moz-fit-content;
    width: fit-content;
    order: 1;
    position: relative;
    left: 145px
}

@media print,
screen and (min-width:48.0625em) {
    .awards .badge {
        left: unset;
        align-items: center;
        order: unset;
        width: unset;
        position: unset
    }
}

@media print,
screen and (min-width:48.0625em) {
    .awards .badge::before {
        content: "";
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        z-index: -1;
        width: 150px;
        left: unset;
        height: 140px;
        background-image: url(../images/awards-compass.svg);
        top: 0px
    }
}

.awards .badge .angle-box-bottom {
    margin-top: -1px;
    width: 95px;
    background-color: #fff;
    padding: 10px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%)
}

@media print,
screen and (min-width:48.0625em) {
    .awards .badge .angle-box-bottom {
        padding: 17px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
        width: 100%
    }
}

.awards .badge img {
    flex: 1;
    max-width: 95px
}

@media print,
screen and (min-width:48.0625em) {
    .awards .badge img {
        margin-top: 140px;
        max-width: 150px
    }
}

@media print,
screen and (max-width:48.06125em) {
    .awards .badge-wrap {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center
    }

    .awards .badge-wrap::before {
        content: "";
        display: block;
        background: rgba(0, 0, 0, 0) url(../images/compass-sm.svg) no-repeat center center;
        width: 31px;
        height: 31px;
        padding: 0;
        margin: 0 8px 0 0;
        z-index: 1
    }

    .awards .badge-wrap::after {
        content: "";
        display: block;
        flex: 1;
        border-top: 1px solid #c99700
    }

    .awards .badge-wrap .badge {
        left: unset
    }
}

.awards .badge-wrap img {
    background-color: #fff
}

.awards .slider-navigation {
    position: absolute;
    bottom: 27px;
    z-index: 2;
    width: 100%
}

@media print,
screen and (min-width:48.0625em) {
    .awards .slider-navigation {
        margin-top: 0;
        transform: rotate(90deg);
        left: -40px;
        width: -moz-fit-content;
        width: fit-content;
        position: absolute;
        top: 0;
        height: 70.5%;
        bottom: 0
    }

    .awards .slider-navigation span.brand-text {
        transform: rotate(-90deg);
        font-size: 2.44vw
    }
}

@media print,
screen and (min-width:64.0625em) {
    .awards .slider-navigation {
        left: -60px;
        height: 80%
    }
}

@media screen and (min-width:75.0625em) {
    .awards .slider-navigation span.brand-text {
        font-size: 40px
    }
}

@media screen and (min-width:90em) {
    .awards .slider-navigation {
        left: -63px
    }
}

.awards .slider-navigation__prev,
.awards .slider-navigation__next {
    color: #f7d66f
}

.awards .slider-navigation__prev span::before,
.awards .slider-navigation__next span::before {
    font-size: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {

    .awards .slider-navigation__prev,
    .awards .slider-navigation__next {
        opacity: 0
    }

    .awards .slider-navigation__prev:focus-visible,
    .awards .slider-navigation__next:focus-visible {
        opacity: 1
    }
}

body:not(.safari-no-transition) .awards .swiper-slide h3,
body:not(.safari-no-transition) .awards .swiper-slide-active h3 {
    transition: font-size .6s cubic-bezier(0.215, 0.61, 0.355, 1)
}

.faculty-section+.awards,
.differentiator+.awards {
    background-color: #d4e8f6
}

@media print,
screen and (min-width:48.0625em) {

    .faculty-section+.awards,
    .differentiator+.awards {
        margin-top: -64px
    }
}

@media print,
screen and (min-width:48.0625em) {

    .faculty-section+.awards::before,
    .differentiator+.awards::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 6;
        top: 63px;
        width: 100%;
        height: 2px;
        background-color: #d4e8f6
    }
}

@media print,
screen and (min-width:48.0625em) {
    .section-nav+.awards {
        margin-top: -64px
    }
}

.awards__container {
    position: relative;
    z-index: 3;
    margin-top: -27.5%;
    padding-top: 40%
}

@media print,
screen and (min-width:48.0625em) {
    .awards__container {
        margin-top: 0;
        padding-top: 0
    }
}

.awards__container .swiper {
    height: 350px
}

@media print,
screen and (min-width:48.0625em) {
    .awards__container .swiper {
        height: 820px
    }
}

.awards__item {
    padding-bottom: 98px;
    height: auto
}

@media print,
screen and (min-width:48.0625em) {
    .awards__item {
        padding: 20px 0
    }
}

.awards__content {
    display: flex;
    max-width: 1430px;
    margin: auto;
    padding-left: 32px;
    padding-right: 32px;
    flex-direction: column
}

.awards__text {
    margin-top: 1rem;
    flex: 1;
    display: flex;
    gap: 9px;
    align-items: flex-start;
    order: 2;
    flex-direction: column
}

.awards__text span {
    white-space: nowrap
}

@media print,
screen and (min-width:48.0625em) {
    .awards__text {
        margin-top: unset;
        flex-direction: row;
        order: unset;
        align-items: center
    }

    .awards__text span {
        opacity: 0
    }
}

.awards::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(270deg, rgba(0, 40, 85, 0.3) 0%, rgba(0, 40, 85, 0.7) 100%)
}

.awards>img {
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.awards__container>img {
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

@media print,
screen and (min-width:48.0625em) {
    .awards__container>img {
        display: none
    }
}

@media print,
screen and (min-width:48.0625em) {
    .awards__item .awards__content {
        position: relative
    }

    .awards__item .awards__text {
        padding-right: 190px
    }

    .awards__item .badge-wrap {
        width: 150px;
        position: absolute;
        right: 10px
    }
}

@media screen and (max-width:48em) {
    .awards .slider-navigation span.brand-text {
        display: none
    }
}

@media screen and (min-width:48.0625em) {
    .awards .slider-navigation span.brand-text {
        font-size: 2.44vw
    }
}

@media screen and (min-width:75.0625em) {
    .awards .slider-navigation span.brand-text {
        font-size: 2.5rem
    }
}

@media screen and (max-width:48em) {
    .swiper-driven {
        display: none
    }
}

@media screen and (min-width:48.0625em) {
    .swiper-driven .awards__text {
        display: none
    }

    .swiper-driven .badge-wrap {
        position: relative;
        right: unset
    }

    .swiper-driven .awards__content {
        padding: 0
    }

    .swiper-driven .badge::before {
        display: none
    }
}

.swiper-driver {
    width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
    max-width: 1360px
}

@media screen and (min-width:48.0625em) {
    .swiper-driver .awards__item .badge-wrap {
        display: none
    }
}

.swiper-driver .swiper {
    overflow: visible
}

@media print,
screen and (min-width:48.0625em) {
    .swiper-driver .swiper {
        margin-top: 6em;
        height: 6em
    }
}

@media print,
screen and (min-width:64.0625em) {
    .swiper-driver .swiper {
        margin-top: 7em;
        height: 7em
    }
}

.awards .swiper-container.swiper-driven {
    background: #fff
}

@media screen and (max-width:48em) {
    .awards .swiper-container.swiper-driven {
        display: none
    }
}

@media screen and (min-width:48.0625em) {
    .awards .swiper-container.swiper-driven {
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 20px
    }
}

@media print,
screen and (min-width:64.0625em) {
    .awards .swiper-container.swiper-driven {
        top: 0
    }
}

@media screen and (min-width:82em) {
    .awards .swiper-container.swiper-driven {
        margin-right: calc(50vw - 656px)
    }
}

.awards .swiper-container.swiper-driven .badge .angle-box-bottom {
    display: none
}

.awards .swiper-container.swiper-driven .badge img {
    margin-top: 0
}

.awards .swiper-container.swiper-driven .award__content {
    height: unset
}

.awards .swiper-container.swiper-driven .awards__item {
    padding: 0;
    height: 150px
}

.awards .swiper-container.swiper-driven .swiper {
    background-color: #fff;
    width: 150px;
    height: 150px;
    overflow: visible
}

.awards .swiper-container.swiper-driven .swiper::before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: -1;
    width: 150px;
    left: unset;
    height: 140px;
    background-image: url(../images/awards-compass.svg);
    top: 100%;
    transform: rotate(180deg)
}

.awards .swiper-container.swiper-driven .swiper::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    height: 31px;
    width: 100%;
    background-color: #fff;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 0 100%)
}

@media screen and (min-width:48.0625em) {

    .awards .slider-navigation,
    .slider-navigation:has(.swiper-button-disabled:first-child):has(.swiper-button-disabled:nth-child(3)) {
        display: flex !important
    }
}

@media print,
screen and (min-width:48.0625em) {
    .swiper-driver::before {
        content: "Salve is";
        position: absolute;
        top: 22px;
        left: 25px;
        font-family: "aleo", serif;
        color: #c99700;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
        font-size: 24px
    }
}

@media screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .swiper-driver::before {
        font-size: 2.44vw
    }
}

@media screen and (min-width:48.0625em)and (min-width:75.0625em) {
    .swiper-driver::before {
        font-size: 40px;
        left: 2px
    }
}

.body-section:last-child {
    padding-bottom: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .body-section:last-child {
        padding-bottom: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .body-section:last-child {
        padding-bottom: 4rem
    }
}

.callout {
    background: #d9ede6;
    padding-bottom: 78px
}

.callout {
    padding-top: 1.5rem
}

.callout {
    padding-left: 1.5rem
}

.callout {
    padding-right: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .callout {
        padding-top: 2rem
    }

    .callout {
        padding-left: 2rem
    }

    .callout {
        padding-right: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .callout {
        padding-top: 2.5rem
    }

    .callout {
        padding-left: 2.5rem
    }

    .callout {
        padding-right: 2.5rem
    }
}

.callout {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 57px), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 57px), 0 100%)
}

@media print,
screen and (min-width:48.0625em) {
    .callout {
        padding-bottom: 84px
    }
}

.callout.callout-profile {
    background: #d4e8f6;
    margin-top: -80px;
    padding-bottom: 66px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px));
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px))
}

@media print,
screen and (min-width:48.0625em) {
    .callout.callout-profile {
        margin-top: -90px;
        margin-bottom: 0;
        padding-bottom: 117px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 57px));
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 57px))
    }
}

@media print,
screen and (min-width:64.0625em) {
    .callout.callout-profile {
        margin-top: -128px
    }
}

.callout h2 {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .callout h2 {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .callout h2 {
        font-size: 1.5rem
    }
}

.callout p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .callout p {
        font-size: 1.125rem
    }
}

.callout .social-media a {
    font-size: 36px
}

.callout .social-media a:hover,
.callout .social-media a:focus {
    color: #008755
}

@media print,
screen and (max-width:48.06125em) {
    .profile-section .grid-x {
        flex-direction: column-reverse
    }
}

.callout-section:not(:first-child) {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .callout-section:not(:first-child) {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .callout-section:not(:first-child) {
        margin-top: 2.5rem
    }
}

.callout-section ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.callout-section ul {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .callout-section ul {
        margin-top: 1rem
    }
}

.callout-section li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .callout-section li {
        font-size: 1.125rem
    }
}

.callout-section p+p,
.callout-section li+li {
    margin-top: 0.5rem
}

.callout-section a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .callout-section a {
        font-size: 1.125rem
    }
}

.callout-section a {
    color: #063d7a
}

.callout-section a:hover,
.callout-section a:focus {
    color: #262626
}

.callout-section--dept p+p {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .callout-section--dept p+p {
        margin-top: 1rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .mobile-only {
        display: none
    }
}

.desktop-only {
    display: none
}

@media print,
screen and (min-width:48.0625em) {
    .desktop-only {
        display: block
    }
}

.card-section {
    position: relative
}

.card-section.card-section-home {
    margin: 0
}

.card-section.card-section-home {
    padding-bottom: 2.5rem
}

.card-section.card-section-home {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .card-section.card-section-home {
        padding-bottom: 3.5rem
    }

    .card-section.card-section-home {
        padding-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .card-section.card-section-home {
        padding-bottom: 5rem
    }

    .card-section.card-section-home {
        padding-top: 5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .card-section.card-section-home {
        padding-top: 0
    }
}

.differentiator+.card-section-home {
    z-index: 2;
    margin-top: -1px
}

.card-bkground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1
}

.card-bkground img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1
}

.card-bkground::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #D4E8F6 6.06%, rgba(212, 232, 246, 0) 51.62%)
}

@media print,
screen and (min-width:48.0625em) {
    .card-wrap {
        display: flex;
        align-items: flex-start
    }

    .card-wrap .card-intro,
    .card-wrap .card-section__items {
        flex: 1
    }
}

.card-intro {
    background-color: #edf8ff;
    padding-bottom: 104px
}

.card-intro {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%)
}

.card-intro {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .card-intro {
        padding-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .card-intro {
        padding-top: 5rem
    }
}

.card-intro {
    padding-left: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .card-intro {
        padding-left: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .card-intro {
        padding-left: 4rem
    }
}

.card-intro {
    padding-right: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .card-intro {
        padding-right: 4rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .card-intro {
        padding-right: 6rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .card-intro {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 136px), 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 136px), 0 100%)
    }

    .card-intro {
        padding-bottom: 184px
    }
}

.card-section-home .card-intro {
    background-color: hsla(0, 0%, 100%, .85);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

.card-intro h2 {
    font-family: aleo, serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .card-intro h2 {
        font-size: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .card-intro h2 {
        font-size: 2.75rem
    }
}

.card-intro p {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .card-intro p {
        margin-top: 1.5rem
    }
}

.card-intro a {
    display: inline-block
}

.card-intro a {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .card-intro a {
        margin-top: 1.5rem
    }
}

.card-section__items {
    margin-top: -68px;
    margin-left: 24px;
    margin-right: 24px
}

@media print,
screen and (min-width:48.0625em) {
    .card-section__items {
        margin-left: 0;
        margin-right: 0
    }

    .card-section__items {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .card-section__items {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .card-section__items {
        margin-top: 4rem
    }
}

.card__item {
    background-color: #002855;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    position: relative
}

.card__item {
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .card__item {
        padding: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .card__item {
        padding: 3rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .card__item {
        margin-left: -48px
    }
}

.card-section-home .card__item {
    background-color: rgba(0, 40, 85, .85);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px)
}

.card__content .link-arrow-alt {
    text-transform: none
}

.card__content .link-arrow-alt {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .card__content .link-arrow-alt {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .card__content .link-arrow-alt {
        font-size: 2.5rem
    }
}

.card__content .link-arrow-alt:after {
    font-size: 1.5rem;
    font-weight: 400
}

.card__content p {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .card__content p {
        margin-top: 1rem
    }
}

.card__content .btn {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .card__content .btn {
        margin-top: 1.5rem
    }
}

.checkerboard {
    background-color: #063d7a;
    position: relative;
    overflow: hidden;
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.checkerboard-item {
    position: relative;
    max-width: 86rem;
    margin-left: auto;
    margin-right: auto;
    padding-right: 2rem;
    padding-left: 2rem
}

.checkerboard-item:before {
    content: "";
    position: absolute;
    background-color: #002855;
    width: 100%;
    height: 100%;
    rotate: -9deg;
    z-index: 0;
    bottom: 140px;
    left: -70px
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .checkerboard-item:before {
        bottom: 80px;
        left: -8px;
        height: 140%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item:nth-child(odd):not(:first-child):before {
        height: 110%;
        left: 7px;
        opacity: 0;
        pointer-events: none
    }
}

.checkerboard-item:nth-child(even):before {
    height: 80%;
    rotate: 9deg;
    z-index: 1;
    right: auto;
    left: -70px;
    bottom: 30px
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item:nth-child(even) {
        flex-direction: row-reverse
    }

    .checkerboard-item:nth-child(even):before {
        rotate: -9deg;
        bottom: unset;
        top: 10px;
        left: -46px;
        z-index: 0;
        height: 214%
    }
}

.checkerboard-item:nth-child(even) .checkerboard-item__content {
    z-index: 2
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item:nth-child(even) .checkerboard-item__content {
        margin-left: -3.5rem;
        margin-right: unset
    }
}

.checkerboard-item:nth-child(even) figcaption p {
    text-align: left
}

@media print,
screen and (max-width:48.06125em) {
    .checkerboard-item:nth-child(even) .checkerboard-item__media {
        z-index: 1
    }
}

.checkerboard-item__media {
    position: relative
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item__media {
        width: 53.6%;
        flex: 0 0 auto
    }
}

.checkerboard-item__media figure {
    margin: 0
}

.checkerboard-item__media .play-button {
    opacity: 1
}

.checkerboard-item__media figcaption p {
    margin-top: .5rem;
    color: #fff;
    font-style: italic
}

.checkerboard-item__media figcaption p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item__media figcaption p {
        text-align: right
    }
}

.checkerboard-item__media figcaption p a {
    color: #fff
}

.checkerboard-item__media figcaption p a:hover,
.checkerboard-item__media figcaption p a:focus-visible {
    text-decoration: none
}

.checkerboard-item__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #fff;
    padding: 2.375rem 1.5rem 1.5rem 1.5rem;
    height: -moz-fit-content;
    height: fit-content;
    z-index: 1;
    margin-right: 1rem;
    margin-left: 1rem;
    margin-bottom: -1rem
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item__content {
        margin-bottom: unset;
        margin-left: unset;
        padding: 3.5rem;
        margin-right: -3.5rem
    }
}

.checkerboard-item__content li+li {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item__content li+li {
        margin-top: 1.5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item__content {
        flex: 1
    }
}

.checkerboard-item__content h3 {
    position: relative;
    width: 100%;
    padding-top: 31px
}

.checkerboard-item__content h3::before {
    content: "";
    display: block;
    background: url(../images/compass-sm.svg) no-repeat;
    position: absolute;
    top: -16px;
    width: 32px;
    height: 32px
}

.checkerboard-item__content h3::after {
    content: "";
    position: absolute;
    top: 0;
    background-color: #c99700;
    width: calc(100% - 50px);
    height: 1.5px;
    right: 0
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item__content h3 {
        padding-top: 49px
    }

    .checkerboard-item__content h3::before {
        top: -24px;
        width: 50px;
        height: 50px;
        background: url(../images/compass.svg) no-repeat
    }

    .checkerboard-item__content h3::after {
        width: calc(100% - 74px)
    }
}

.checkerboard-item__content p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .checkerboard-item__content p {
        font-size: 1.125rem
    }
}

.checkerboard-item__content ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.checkerboard-item__content li a {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item__content li a {
        font-size: 1rem
    }
}

.checkerboard-item__content li a::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.checkerboard-item__content li a:hover,
.checkerboard-item__content li a:focus {
    color: #008755;
    border-color: #008755
}

.checkerboard-item__content li a:hover::after,
.checkerboard-item__content li a:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.checkerboard-item__content li a.btn {
    padding-right: 1.875rem
}

.checkerboard__links {
    border-left: 2px solid #c99700;
    padding-left: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item:nth-child(even) .checkerboard-item__media.media--video .play-button {
        right: unset;
        left: 40px
    }
}

.checkerboard-item {
    padding-top: 1.5rem
}

.checkerboard-item {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item {
        padding-top: 2.5rem
    }

    .checkerboard-item {
        padding-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .checkerboard-item {
        padding-top: 3.5rem
    }

    .checkerboard-item {
        padding-bottom: 3.5rem
    }
}

.checkerboard-item:first-child {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item:first-child {
        padding-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .checkerboard-item:first-child {
        padding-top: 5rem
    }
}

.checkerboard-item:last-child {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item:last-child {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .checkerboard-item:last-child {
        padding-bottom: 5rem
    }
}

.checkerboard-item:nth-child(odd) {
    z-index: 3
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item:nth-child(odd) {
        z-index: 2
    }

    .checkerboard-item:nth-child(odd) figcaption {
        position: absolute;
        width: 100%;
        padding-left: 60px
    }
}

.checkerboard-item:nth-child(even) {
    z-index: 2
}

@media print,
screen and (min-width:48.0625em) {
    .checkerboard-item:nth-child(even) {
        z-index: 1
    }

    .checkerboard-item:nth-child(even) figcaption {
        position: absolute;
        width: 100%;
        padding-right: 60px
    }
}

@media print,
screen and (max-width:48.06125em) {
    .checkerboard-item:nth-child(even)~.checkerboard-item:nth-child(odd) {
        z-index: 1
    }
}

.main-content+.sock {
    padding-bottom: 3rem
}

.main-content:not(:has(.sock)):not(:has(+.sock)) section:last-child {
    padding-bottom: 5.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .main-content:not(:has(.sock)):not(:has(+.sock)) section:last-child {
        padding-bottom: 8rem
    }
}

.bg-white {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .bg-white {
        padding-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .bg-white {
        padding-top: 5rem
    }
}

section:not(section.bg-white):not(.hero):not(.hero--general+section):not(.hero--center+.news--detail__content):not(.exclude-global-padding):not(.differentiator+.faculty-section):not(.differentiator+.salve-experience-section) {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    section:not(section.bg-white):not(.hero):not(.hero--general+section):not(.hero--center+.news--detail__content):not(.exclude-global-padding):not(.differentiator+.faculty-section):not(.differentiator+.salve-experience-section) {
        padding-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    section:not(section.bg-white):not(.hero):not(.hero--general+section):not(.hero--center+.news--detail__content):not(.exclude-global-padding):not(.differentiator+.faculty-section):not(.differentiator+.salve-experience-section) {
        padding-top: 5rem
    }
}

section:not(section.bg-white):not(.hero):not(.hero--general+section):not(.hero--center+.news--detail__content):not(.exclude-global-padding):not(section:last-child):not(.differentiator+.faculty-section):not(.differentiator+.salve-experience-section) {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    section:not(section.bg-white):not(.hero):not(.hero--general+section):not(.hero--center+.news--detail__content):not(.exclude-global-padding):not(section:last-child):not(.differentiator+.faculty-section):not(.differentiator+.salve-experience-section) {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    section:not(section.bg-white):not(.hero):not(.hero--general+section):not(.hero--center+.news--detail__content):not(.exclude-global-padding):not(section:last-child):not(.differentiator+.faculty-section):not(.differentiator+.salve-experience-section) {
        padding-bottom: 5rem
    }
}

.bg-white+section:not(section.bg-white):not(.awards):not(.card-section):not(.embed-section):not(.section-nav),
.bg-white+.cta-block {
    margin-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {

    .bg-white+section:not(section.bg-white):not(.awards):not(.card-section):not(.embed-section):not(.section-nav),
    .bg-white+.cta-block {
        margin-top: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .bg-white+section:not(section.bg-white):not(.awards):not(.card-section):not(.embed-section):not(.section-nav),
    .bg-white+.cta-block {
        margin-top: 5rem
    }
}

@media print,
screen and (max-width:48.06125em) {

    .news--detail section.hero--center.hero--img+section,
    .news--detail section.hero--center.hero--video+section {
        padding-top: 4rem
    }
}

.program--detail section.hero--program.hero--img+section,
.program--detail section.hero--program.hero--video+section {
    padding-top: 4rem
}

@media print,
screen and (min-width:48.0625em) {

    .program--detail section.hero--program.hero--img+section,
    .program--detail section.hero--program.hero--video+section {
        padding-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .program--detail section.hero--program.hero--img+section,
    .program--detail section.hero--program.hero--video+section {
        padding-top: 4rem
    }
}

@media print,
screen and (min-width:48.0625em) {

    section.hero--center.hero--img+section,
    section.hero--center.hero--video+section {
        padding-top: 7.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    section.hero--center.hero--img+section,
    section.hero--center.hero--video+section {
        padding-top: 9rem
    }
}

@media print,
screen and (min-width:48.0625em) {

    section.hero--center.hero--img+section.section-nav,
    section.hero--center.hero--video+section.section-nav {
        padding-top: 8rem
    }
}

@media print,
screen and (min-width:48.0625em) {

    section.hero--center.hero--img+section.promo-section,
    section.hero--center.hero--video+section.promo-section {
        padding-top: 7rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    section.hero--hub+section {
        padding-top: 6.5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    section.hero--hub+section.section-nav {
        padding-top: 5.5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    section.hero--hub+section.promo-section {
        padding-top: 4.5rem
    }
}

.cta-block {
    position: relative;
    overflow: clip
}

.cta-block .cell:not(:first-child) {
    margin-top: 32px
}

@media print,
screen and (min-width:48.0625em) {
    .cta-block .cell:not(:first-child) {
        margin-top: 0
    }
}

.cta-block-inner {
    position: relative;
    z-index: 2
}

.cta-block-inner {
    padding-top: 2.5rem
}

.cta-block-inner {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .cta-block-inner {
        padding-top: 3.5rem
    }

    .cta-block-inner {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .cta-block-inner {
        padding-top: 5rem
    }

    .cta-block-inner {
        padding-bottom: 5rem
    }
}

.cta-block-bkground {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.cta-block-bkground img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1
}

.cta-block-bkground::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background: linear-gradient(0deg, rgba(6, 61, 122, 0.82) 0%, rgba(6, 61, 122, 0.82) 100%);
    background-blend-mode: multiply, normal
}

.cta-block-bkground img {
    height: 100%
}

@media screen and (min-width:90.0625em) {
    .cta-block-bkground img {
        height: auto
    }
}

.cta-content {
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .cta-content {
        padding: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .cta-content {
        padding: 2.5rem
    }
}

.cta-block-card {
    background-color: #fff;
    height: 100%
}

.cta-block-card h3 {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .cta-block-card h3 {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .cta-block-card h3 {
        font-size: 2rem
    }
}

.cta-block-card p {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .cta-block-card p {
        margin-top: 1rem
    }
}

.cta-block-card a {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .cta-block-card a {
        margin-top: 1.5rem
    }
}

.differentiator {
    position: relative;
    background-color: #d4e8f6
}

.differentiator::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    max-height: 100%;
    background-image: linear-gradient(to bottom, #002855 0%, #D4E8F6)
}

.differentiator h2 {
    font-family: aleo, serif;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator h2 {
        font-size: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .differentiator h2 {
        font-size: 2.75rem
    }
}

.differentiator h2 {
    color: #fff;
    grid-row: 1;
    max-width: 39rem;
    text-shadow: 1px 1px 2px #002855, 0 0 1em #002855, 0 0 .2em #002855
}

.differentiator .stat {
    color: #c99700
}

.differentiator .svg-wrapper {
    display: flex;
    align-items: center
}

.differentiator .svg-wrapper {
    margin-top: 1rem
}

.differentiator .svg-wrapper {
    margin-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator .svg-wrapper {
        margin-top: 1.5rem
    }

    .differentiator .svg-wrapper {
        margin-bottom: 1.5rem
    }
}

.differentiator .svg-wrapper svg {
    margin: 0
}

.differentiator .svg-wrapper .svg-icon {
    flex-basis: 54px;
    width: 40px;
    height: 40px;
    margin-left: 16px
}

.differentiator__items {
    position: relative;
    z-index: 5
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator__items .differentiator__items--column:last-child {
        max-width: 50%
    }
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator__items .differentiator__items--column:first-child {
        flex: 1
    }
}

.differentiator__items .differentiator__items--column:last-child {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator__items .differentiator__items--column:last-child {
        margin-top: 0;
        flex: 1
    }
}

@media screen and (max-width:31.25em) {
    .differentiator__items .btn {
        width: 100%;
        text-align: center
    }
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator__items {
        display: flex
    }

    .differentiator__items {
        -moz-column-gap: 2rem;
        column-gap: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .differentiator__items {
        -moz-column-gap: 3rem;
        column-gap: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .differentiator__items {
        -moz-column-gap: 4rem;
        column-gap: 4rem
    }
}

.differentiator__items article:not(:first-child) {
    padding-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator__items article:not(:first-child) {
        padding-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .differentiator__items article:not(:first-child) {
        padding-top: 4rem
    }
}

@media print,
screen and (min-width:48.0625em) {

    .differentiator__items:has(article:nth-of-type(2)) .differentiator__items--column:first-child .stat-parent,
    .differentiator__items:has(article:nth-of-type(2)) .differentiator__items--column:first-child .icon-parent {
        padding-left: 48px
    }
}

@media print,
screen and (min-width:64.0625em) {

    .differentiator__items:has(article:nth-of-type(2)) .differentiator__items--column:first-child .stat-parent,
    .differentiator__items:has(article:nth-of-type(2)) .differentiator__items--column:first-child .icon-parent {
        padding-left: 116px
    }
}

@media print,
screen and (min-width:48.0625em) {

    .differentiator__items:has(article:nth-of-type(2)) .differentiator__items--column:last-child .stat-parent,
    .differentiator__items:has(article:nth-of-type(2)) .differentiator__items--column:last-child .icon-parent {
        padding-right: 48px
    }
}

@media print,
screen and (min-width:64.0625em) {

    .differentiator__items:has(article:nth-of-type(2)) .differentiator__items--column:last-child .stat-parent,
    .differentiator__items:has(article:nth-of-type(2)) .differentiator__items--column:last-child .icon-parent {
        padding-right: 116px
    }
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator__items:not(:has(article:nth-of-type(2))) .differentiator__items--column {
        display: flex;
        flex-direction: column;
        justify-content: flex-end
    }
}

.differentiator__item svg {
    width: 100%
}

.differentiator__item svg {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator__item svg {
        margin-top: 1.5rem
    }
}

.differentiator__content {
    position: relative
}

.differentiator .icon {
    border: 3px solid #c99700;
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator .icon {
        padding: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .differentiator .icon {
        padding: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .differentiator .icon {
        padding: 4rem
    }
}

.differentiator .icon .intro-text {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator .icon .intro-text {
        margin-top: 1.5rem
    }
}

.differentiator .icon img {
    height: 4.5rem;
    width: 4.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .differentiator .icon img {
        height: 6.875rem;
        width: 6.875rem
    }
}

.stat-item {
    background-color: #063d7a;
    justify-content: center;
    position: relative;
    color: #fff;
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .stat-item {
        padding-left: 2rem
    }

    .stat-item {
        padding-right: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .stat-item {
        padding-left: 3rem
    }

    .stat-item {
        padding-right: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .stat-item {
        padding-left: 4rem
    }

    .stat-item {
        padding-right: 4rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .stat-item {
        padding-top: 2.5rem
    }

    .stat-item {
        padding-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .stat-item {
        padding-top: 4rem
    }

    .stat-item {
        padding-bottom: 4rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .stat-item {
        padding-top: 6rem
    }

    .stat-item {
        padding-bottom: 6rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .stat-item {
        max-width: 39rem
    }
}

.stat-item::before {
    content: "";
    background: linear-gradient(0deg, rgba(6, 61, 122, 0.85) 0%, rgba(6, 61, 122, 0.85) 100%), url(../images/differentiator-icon-bg.jpg) 50%/cover no-repeat;
    background-blend-mode: multiply, normal;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.stat-item .intro-text {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .stat-item .intro-text {
        margin-top: 1.5rem
    }
}

.stat-item .btn {
    font-size: .875rem;
    padding: .75rem 1.25rem;
    color: #002855;
    background-color: #fff
}

.stat-item .btn::before,
.stat-item .btn::after {
    color: #008755
}

.stat-item .btn:hover,
.stat-item .btn:focus {
    color: #fff;
    background-color: #008755
}

.stat-item .btn:hover::before,
.stat-item .btn:hover::after,
.stat-item .btn:focus::before,
.stat-item .btn:focus::after {
    color: #fff
}

@media print,
screen and (min-width:48.0625em) {
    .stat-item .btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        color: #002855;
        background-color: #fff
    }

    .stat-item .btn::before,
    .stat-item .btn::after {
        color: #008755
    }

    .stat-item .btn:hover,
    .stat-item .btn:focus {
        color: #fff;
        background-color: #008755
    }

    .stat-item .btn:hover::before,
    .stat-item .btn:hover::after,
    .stat-item .btn:focus::before,
    .stat-item .btn:focus::after {
        color: #fff
    }
}

.image-item .differentiator__content {
    background-color: #fff;
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .image-item .differentiator__content {
        padding: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .image-item .differentiator__content {
        padding: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .image-item .differentiator__content {
        padding: 4rem
    }
}

.differentiator__media figcaption {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.differentiator__icon span {
    font-size: 6.875rem
}

.differentiator__btn {
    margin-top: 1.5rem
}

.embed-section .wysiwyg {
    margin-bottom: 1.5rem
}

.embed-section .fsBody {
    color: #000
}

.embed-section .localist_widget_container ul.lw_event_list {
    max-width: 90rem
}

.embed-section .localist_widget_container div.lw_event_item_title {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .embed-section .localist_widget_container div.lw_event_item_title {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .embed-section .localist_widget_container div.lw_event_item_title {
        font-size: 1.375rem
    }
}

.embed-section .localist_widget_container div.lw_event_item_description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .embed-section .localist_widget_container div.lw_event_item_description {
        font-size: 1.125rem
    }
}

.embed-section .localist_widget_container .lw_event_meta {
    float: none;
    margin-top: 8px
}

.embed-section #localist-widget-59646247 .event-list {
    float: none !important;
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.embed-section #localist-widget-59646247 .event-list .event {
    padding: 0;
    margin: 0
}

.embed-section #localist-widget-59646247 .event-list .event .event-card {
    margin: 0
}

.embed-section #localist-widget-59646247 .event::before {
    display: none
}

.embed-section #localist-widget-47555811 .lw_event_list {
    margin: 0
}

.embed-section #localist-widget-47555811 .lw_event_item {
    padding: 10px;
    margin: 25px 0;
    display: flex;
    flex-direction: column
}

@media print,
screen and (min-width:40.0625em) {
    .embed-section #localist-widget-47555811 .lw_event_item {
        align-items: center;
        flex-direction: row;
        -moz-column-gap: 15px;
        column-gap: 15px
    }
}

@media print,
screen and (min-width:40.0625em) {
    .embed-section #localist-widget-47555811 .lw_event_item .lw_event_item_image {
        width: 100%;
        max-width: 225px
    }

    .embed-section #localist-widget-47555811 .lw_event_item .lw_event_item_image img {
        width: 100%
    }
}

.embed-section #localist-widget-47555811 .lw_event_item .lw_event_content {
    padding: 0;
    margin-top: 15px
}

.embed-section #localist-widget-47555811 .lw_event_item::before {
    display: none
}

@media print,
screen and (max-width:48.06125em) {
    .expandable-section .section-heading+.grid-container {
        padding: 0
    }
}

.expandable-section:not(:has(>.section-heading)) .expandable__subsection:first-child {
    margin-top: 0
}

.expandable__subsection {
    background-color: #edf8ff;
    margin-top: 1.5rem
}

.expandable__subsection {
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection {
        padding: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .expandable__subsection {
        padding: 3rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection {
        margin-top: 4rem
    }

    .expandable__subsection {
        padding: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .expandable__subsection {
        padding: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .expandable__subsection {
        padding: 4rem
    }
}

.expandable__subsection .section-heading__title {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection .section-heading__title {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .expandable__subsection .section-heading__title {
        font-size: 2.5rem
    }
}

.expandable__subsection .section-heading__description {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection .section-heading__description {
        margin-top: 1.5rem
    }
}

.expandable__subsection .section-heading__description p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .expandable__subsection .section-heading__description p {
        font-size: 1.125rem
    }
}

.expandable__subsection .section-heading__description a:not(.btn):first-child {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection .section-heading__description a:not(.btn):first-child {
        font-size: 1rem
    }
}

.expandable__subsection .section-heading__description a:not(.btn):first-child::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.expandable__subsection .section-heading__description a:not(.btn):first-child:hover,
.expandable__subsection .section-heading__description a:not(.btn):first-child:focus {
    color: #008755;
    border-color: #008755
}

.expandable__subsection .section-heading__description a:not(.btn):first-child:hover::after,
.expandable__subsection .section-heading__description a:not(.btn):first-child:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.expandable__subsection .section-heading__description a:not(.btn):first-child.btn {
    padding-right: 1.875rem
}

.expandable__subsection .section-heading__description p:has(a:not(.btn):first-child)+p {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection .section-heading__description p:has(a:not(.btn):first-child)+p {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .expandable__subsection .section-heading__description p:has(a:not(.btn):first-child)+p {
        margin-top: 3rem
    }
}

.expandable__subsection .section-heading__description a.btn {
    width: 100%;
    text-align: center
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection .section-heading__description a.btn {
        width: -moz-fit-content;
        width: fit-content
    }
}

.expandable__subsection .section-heading__description a.btn+a.btn {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection .section-heading__description a.btn+a.btn {
        margin-top: 0;
        margin-left: 1rem
    }
}

.expandable__subsection .expandable__subsection-item:first-child {
    margin-top: 0
}

.expandable__subsection-item {
    color: #262626
}

.expandable__subsection__additional-info {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.expandable__subsection__additional-info {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection__additional-info {
        margin-top: 1.5rem
    }
}

.expandable__subsection__additional-info span+span::before {
    content: " | "
}

.expandable__subsection+.expandable__subsection {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .expandable__subsection+.expandable__subsection {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .expandable__subsection+.expandable__subsection {
        margin-top: 2.5rem
    }
}

.differentiator+.salve-experience-section::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 2px;
    top: -1px;
    background-color: #d4e8f6
}

.salve-experience-section {
    background-color: #d4e8f6;
    position: relative
}

@media print,
screen and (max-width:48.06125em) {
    .salve-experience-section:not(section.bg-white) {
        padding-top: 0
    }
}

@media print,
screen and (max-width:48.06125em) {
    .salve-experience-section {
        background-color: #fff
    }

    .salve-experience-section .salve-experience-section--top {
        padding-top: 2.5rem
    }
}

@media print,
screen and (max-width:48.06125em)and (min-width:48.0625em) {
    .salve-experience-section .salve-experience-section--top {
        padding-top: 3.5rem
    }
}

@media print,
screen and (max-width:48.06125em)and (min-width:64.0625em) {
    .salve-experience-section .salve-experience-section--top {
        padding-top: 5rem
    }
}

@media print,
screen and (max-width:48.06125em) {
    .salve-experience-section .salve-experience-section--top {
        background-color: #d4e8f6
    }

    .salve-experience-section .salve-experience-section--bottom {
        padding-top: 2rem
    }
}

@media print,
screen and (max-width:48.06125em)and (min-width:48.0625em) {
    .salve-experience-section .salve-experience-section--bottom {
        padding-top: 3rem
    }
}

@media print,
screen and (max-width:48.06125em)and (min-width:64.0625em) {
    .salve-experience-section .salve-experience-section--bottom {
        padding-top: 4rem
    }
}

@media print,
screen and (max-width:48.06125em) {
    .salve-experience-section .salve-experience-section--bottom {
        position: relative
    }

    .salve-experience-section .salve-experience-section--bottom::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 95vw;
        max-height: 300px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 98%, 0% 40%);
        clip-path: polygon(0 0, 100% 0, 100% 98%, 0% 40%);
        background-color: #d4e8f6
    }

    .salve-experience-section .salve-experience-section--bottom::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 95vw;
        max-height: 300px;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 42%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 42%);
        background-color: #76a6cf
    }
}

@media print,
screen and (min-width:48.0625em) {
    .salve-experience-section::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 36vw;
        max-height: 540px;
        -webkit-clip-path: polygon(0 2%, 100% 44%, 100% 100%, 0% 100%);
        clip-path: polygon(0 2%, 100% 44%, 100% 100%, 0% 100%);
        background-color: #fff
    }

    .salve-experience-section::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 36vw;
        max-height: 540px;
        -webkit-clip-path: polygon(0 0, 100% 42%, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 42%, 100% 100%, 0% 100%);
        background-color: #76a6cf
    }
}

.salve-experience-section .button-close {
    position: absolute;
    z-index: 2;
    cursor: pointer
}

.salve-experience-section .button-close {
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: #000 url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>') no-repeat center;
    display: none
}

.salve-experience-section .button-close:focus-visible {
    outline: none;
    border: 2px solid red
}

.salve-experience-section .button-close.showCloseBtn {
    display: block
}

.salve-experience-section--bottom .grid-container {
    padding-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .salve-experience-section--bottom .grid-container {
        padding-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .salve-experience-section--bottom .grid-container {
        padding-top: 4rem
    }
}

.experience-section__wrap {
    position: relative;
    overflow: clip
}

.experience-section__wrap::before {
    content: "";
    display: block;
    padding-top: 175%
}

.experience-section__wrap .experience-section__card {
    z-index: 2;
    background-repeat: no-repeat;
    background-size: 100% 100%
}

.experience-section__wrap .experience-section__card:focus-within {
    border: 2px solid red
}

.experience-section__wrap .experience-section__card .hoverVideo {
    display: none;
    z-index: 1
}

.experience-section__wrap .experience-section__card .hoverVideo.showHoverVideo {
    display: block;
    z-index: 3
}

.experience-section__wrap .experience-section__card .hoverVideo video {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.experience-section__wrap .experience-section__card .fullVideo {
    display: none;
    z-index: 1
}

.experience-section__wrap .experience-section__card .fullVideo.showFullVideo {
    display: block
}

.experience-section__wrap .experience-section__card .fullVideo.showFullVideo iframe {
    background-color: #000;
    z-index: 3
}

.experience-section__wrap .experience-section__card,
.experience-section__wrap .experience-section__card img,
.experience-section__wrap .experience-section__card .video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.experience-section__wrap .experience-section__card img {
    z-index: 2;
    transition: opacity .6s ease-in-out
}

.experience-section__wrap .experience-section__card .video {
    z-index: 1
}

.experience-section__wrap .experience-section__card:hover img,
.experience-section__wrap .experience-section__card:focus-visible img {
    z-index: -1
}

.experience-section__wrap .experience-section__card-content {
    position: absolute;
    z-index: 3;
    bottom: 0;
    overflow: hidden;
    padding: 50px 24px 24px 24px;
    height: auto;
    width: 100%;
    background-color: #002855
}

.experience-section__wrap .experience-section__card-content.hideCard {
    display: none
}

.experience-section__wrap .experience-section__card-content .play-button {
    position: relative;
    float: right;
    right: unset;
    bottom: 25px
}

.experience-section__wrap .experience-section__card-content .experience-section__text {
    color: #fff;
    margin-top: 23px;
    clear: right;
    height: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transition: max-height .6s ease-in-out, opacity .9s ease-in-out
}

.experience-section__wrap .experience-section__card:hover .experience-section__card-content .experience-section__text,
.experience-section__wrap .experience-section__card:focus .experience-section__card-content .experience-section__text {
    max-height: 400px;
    opacity: 1
}

.differentiator+.faculty-section {
    position: relative;
    padding-top: 0
}

.differentiator+.faculty-section::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 2px;
    top: -1px;
    background-color: #d4e8f6
}

.faculty-section {
    padding-top: 2.5rem
}

.faculty-section {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .faculty-section {
        padding-top: 3.5rem
    }

    .faculty-section {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .faculty-section {
        padding-top: 5rem
    }

    .faculty-section {
        padding-bottom: 5rem
    }
}

.faculty-section {
    background-color: #d4e8f6
}

.faculty-section .swiper-wrapper {
    height: auto
}

.faculty-section ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.faculty-section h3 {
    display: inline-flex;
    width: 100%;
    margin-bottom: -2rem
}

@media screen and (max-width:48em) {
    .faculty-section h3 {
        margin-bottom: 0
    }
}

.faculty-section .aspect-ratio-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, .1);
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%
}

.faculty-section .fa-regular {
    color: #063d7a;
    font-size: 1.4375rem
}

.faculty-section .angle-box-top {
    background-color: #002855;
    padding-top: 4.0625rem;
    padding-bottom: 1rem;
    width: 100%
}

@media print,
screen and (min-width:48.0625em) {
    .faculty-section__items {
        display: flex;
        flex-flow: wrap;
        -moz-column-gap: 2.5rem;
        column-gap: 2.5rem
    }

    .faculty-section__items {
        row-gap: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .faculty-section__items {
        row-gap: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .faculty-section__items {
        row-gap: 4rem
    }
}

.faculty-section__items .link-arrow {
    line-height: 1.2;
    border: none !important
}

.faculty-section__items .link-arrow {
    text-transform: none;
    letter-spacing: normal
}

.faculty-section__items .link-arrow:after {
    font-size: 1.125rem;
    font-weight: 400
}

.faculty-section__items .link-arrow {
    font-size: 18px;
    font-weight: 700
}

.faculty-section__items .link-arrow::after {
    color: #c99700
}

.faculty__item {
    position: relative;
    color: #fff
}

.faculty__item .link-arrow {
    color: #fff
}

@media print,
screen and (min-width:48.0625em) {
    .faculty__item {
        width: calc((100% - 120px)/4)
    }
}

@media print,
screen and (min-width:64.0625em) {
    .faculty__item {
        width: calc((100% - 160px)/5)
    }
}

.faculty__content {
    position: absolute;
    bottom: 0;
    overflow: hidden
}

.faculty__item a {
    color: #fff
}

.faculty__item a:hover h3,
.faculty__item a:focus-visible h3 {
    margin-bottom: 0
}

.faculty__item a:hover .faculty__content-hover,
.faculty__item a:focus-visible .faculty__content-hover {
    max-height: 300px;
    visibility: visible;
    opacity: 1
}

.faculty__item a:hover .link-arrow::after,
.faculty__item a:focus-visible .link-arrow::after {
    color: #fff;
    padding-right: 0;
    margin-left: .75rem
}

.faculty__item a:hover .link-arrow:hover::after,
.faculty__item a:focus-visible .link-arrow:hover::after {
    color: unset
}

.faculty__content-hover {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    padding-top: 1rem;
    border-top: 2px solid #c99700;
    margin-top: 1rem
}

.faculty__content-hover {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

@media screen and (max-width:48em) {
    .faculty__content-hover {
        max-height: 300px;
        visibility: visible;
        opacity: 1;
        margin-top: 1rem
    }
}

.faculty__school p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.faculty__school p {
    margin-top: 8px
}

.slider-navigation:has(.swiper-button-disabled:first-child):has(.swiper-button-disabled:nth-child(3)) {
    display: none
}

.fsform-container .fsBody {
    background-color: rgba(0, 0, 0, 0)
}

.fsform-container .fsLabel {
    font-family: "aleo", serif;
    font-weight: 700;
    margin-bottom: .25rem;
    color: #000
}

.fsform-container .fsOptionLabel {
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    font-size: .9375rem;
    color: #000;
    align-items: start
}

.fsform-container .fsSupporting {
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 400;
    font-size: .875rem;
    margin-top: .5rem;
    color: #5a5a5a
}

.fsform-container .fsSubField label {
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 400;
    font-size: .875rem;
    margin-top: .5rem;
    margin-bottom: 0;
    color: #5a5a5a
}

.fsform-container .fsSupportingSubLabel {
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 400;
    font-size: .875rem;
    margin-top: .5rem;
    margin-bottom: 0
}

.fsform-container .fsSectionText {
    font-family: "franklin-gothic-atf", sans-serif;
    color: #fff
}

.fsform-container input[type=checkbox] {
    width: auto;
    height: auto
}

.fsform-container input[type=checkbox]+span {
    font-size: 1rem;
    line-height: normal
}

.fsform-container input[type=checkbox]:before {
    width: 1.5rem;
    height: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .fsform-container input[type=checkbox]:before {
        width: 1.125rem;
        height: 1.125rem
    }
}

.fsform-container fieldset input[type=radio] {
    margin-top: .3125rem
}

.fsform-container fieldset>label {
    font-family: "franklin-gothic-atf", sans-serif;
    margin-top: 1rem;
    font-weight: 400;
    color: #000;
    font-size: .9375rem;
    line-height: normal
}

.fsform-container fieldset>label:has(+.fsOptionLabel) {
    margin-bottom: .5rem
}

@media print,
screen and (min-width:48.0625em) {
    .fsform-container fieldset>label {
        margin-top: .5rem
    }
}

.fsform-container fieldset div label {
    margin-top: 0
}

.fsform-container fieldset div+div:not(.fsNameLast):not(.fsNameMiddle):not(.fsNameSuffix) {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .fsform-container fieldset div+div:not(.fsNameLast):not(.fsNameMiddle):not(.fsNameSuffix) {
        margin-top: .5rem
    }
}

.fsform-container fieldset div+div.fsNameLast,
.fsform-container fieldset div+div.fsNameMiddle,
.fsform-container fieldset div+div.fsNameSuffix {
    margin-top: 1rem
}

@media(min-width:40.0625rem) {

    .fsform-container fieldset div+div.fsNameLast,
    .fsform-container fieldset div+div.fsNameMiddle,
    .fsform-container fieldset div+div.fsNameSuffix {
        margin-top: 0
    }
}

.fsform-container .fsFieldCell {
    margin-bottom: 1.875rem
}

.fsform-container .fsFieldCell p {
    margin-top: 0
}

.fsform-container .fsFieldCell p:last-child {
    margin-bottom: 0
}

.fsform-container .fsFieldCell:has(input[data-fs-field-name=signature]) .fsSupporting {
    margin-top: 0
}

.fsform-container .fsFieldLongAnswer+div+.fsSupporting {
    margin-top: 0
}

.fsform-container div:has(+.fsFieldFile) {
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    border-color: #5a5a5a
}

.fsform-container div:has(+.fsFieldFile) button {
    color: #002855;
    text-decoration: underline
}

.fsform-container div:has(+.fsFieldFile) button:hover {
    color: #008755
}

.fsform-container div:has(+.fsFieldFile) button:focus-visible {
    outline: 2px solid #002855
}

.fsform-container .fsValidationError div {
    font-size: .875rem
}

.fsform-container input[type=text],
.fsform-container input[type=email],
.fsform-container textarea,
.fsform-container select,
.fsform-container input[type=tel] {
    border: 1px solid #002855
}

.fsform-container div[role=group] {
    row-gap: .5rem
}

.fsform-container h2 {
    margin-bottom: 0
}

.fsform-container .fsSubmitButton {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    color: #fff;
    background-color: #002855
}

.fsform-container .fsSubmitButton::before,
.fsform-container .fsSubmitButton::after {
    color: #c99700
}

.fsform-container .fsSubmitButton:hover,
.fsform-container .fsSubmitButton:focus {
    color: #fff;
    background-color: #008755
}

.fsform-container .fsSubmitButton:hover::before,
.fsform-container .fsSubmitButton:hover::after,
.fsform-container .fsSubmitButton:focus::before,
.fsform-container .fsSubmitButton:focus::after {
    color: #fff
}

.fsform-container .fsSubmitButton:hover {
    background-color: #008755
}

.fsform-container .fsSubmitButton:only-child {
    flex: 0 1
}

.fsform-container .fsSubmitButton:focus-visible {
    outline-offset: 2px
}

.fsform-container .fsPagination {
    margin-top: 0
}

.fsform-container .fsSection .fsSectionHeader {
    background-color: #002855
}

.fsform-container .fsSection .fsSectionHeader .fsSectionHeading {
    color: #fff
}

@media(pointer:fine) {
    .MuiDayCalendar-weekContainer button:hover {
        background-color: #002855 !important;
        color: #fff
    }
}

.MuiPickersDay-today,
.Mui-selected {
    background-color: #002855 !important;
    color: #fff !important
}

.MuiButtonBase-root:hover,
.MuiButtonBase-root:focus,
.MuiButtonBase-root:focus-visible {
    background-color: #002855 !important;
    color: #fff !important
}

.MuiButtonBase-root:hover svg,
.MuiButtonBase-root:focus svg,
.MuiButtonBase-root:focus-visible svg {
    fill: #fff
}

.Mui-focusVisible {
    background-color: #002855 !important;
    color: #fff !important
}

.Mui-focusVisible svg {
    fill: #fff
}

.MuiMonthCalendar-button {
    text-align: center;
    padding: 0
}

.MuiMonthCalendar-button:hover,
.MuiMonthCalendar-button:focus,
.MuiMonthCalendar-button:focus-visible {
    background-color: #002855 !important
}

.gallery {
    overflow-x: clip
}

@media print,
screen and (min-width:48.0625em) {
    .gallery .gallery__tabs-wrapper {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .gallery .gallery__tabs-wrapper {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .gallery .gallery__tabs-wrapper {
        margin-top: 4rem
    }
}

.gallery+.gallery .gallery__tabs-wrapper .grid-container:first-child {
    padding-top: 0
}

.gallery+.gallery .gallery__tabs-wrapper .grid-container:first-child:before,
.gallery+.gallery .gallery__tabs-wrapper .grid-container:first-child:after {
    display: none
}

.gallery__tabs-wrapper {
    padding-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .gallery__tabs-wrapper {
        padding-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .gallery__tabs-wrapper {
        padding-top: 4rem
    }
}

.gallery .tabs__title {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .gallery .tabs__title {
        font-size: 1rem
    }
}

.gallery .tabs__title::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.gallery .tabs__title:hover,
.gallery .tabs__title:focus {
    color: #008755;
    border-color: #008755
}

.gallery .tabs__title:hover::after,
.gallery .tabs__title:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.gallery .tabs__title.btn {
    padding-right: 1.875rem
}

.gallery .tabs__title {
    text-transform: unset;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5
}

.gallery .tabs__button::after {
    display: none;
    color: #008755
}

.gallery .tabs__button:hover::after,
.gallery .tabs__button:focus::after {
    color: #fff
}

.gallery .tabs__button+.tabs__button {
    border-top: 8px solid #d4e8f6;
    padding-top: 24px
}

.gallery .tabs__button+.tabs__button::before {
    content: "";
    position: absolute;
    width: 100%;
    margin: auto;
    height: 1px;
    top: -8px;
    left: 0;
    background-color: #76a6cf
}

.gallery .tabs__button:hover,
.gallery .tabs__button:focus-visible {
    background-color: #d4e8f6;
    border-color: rgba(0, 0, 0, 0)
}

.gallery .tabs__button:hover .tabs__title,
.gallery .tabs__button:focus-visible .tabs__title {
    color: #008755;
    border-color: #008755
}

.gallery .tabs__button:focus {
    border-color: #d4e8f6
}

.gallery .tabs__button[aria-selected=true] {
    pointer-events: none
}

.gallery .tabs__button[aria-selected=true]:hover,
.gallery .tabs__button[aria-selected=true]:focus-visible {
    background-color: #fff
}

@media print,
screen and (min-width:48.0625em) {
    .gallery .accordion {
        border: rgba(0, 0, 0, 0)
    }
}

@media print,
screen and (max-width:48.06125em) {
    .gallery .accordion+.accordion {
        position: relative
    }

    .gallery .accordion+.accordion::before {
        content: "";
        position: absolute;
        top: 0;
        height: 1px;
        background-color: #76a6cf;
        width: calc(100% - 1rem);
        left: 8px;
        z-index: 1
    }
}

.gallery .accordion__content {
    padding: 0 1rem 1rem 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .gallery .accordion__content {
        flex: 1;
        border-color: rgba(0, 0, 0, 0);
        overflow: visible
    }
}

.gallery .accordion__button {
    border: 8px solid #d4e8f6
}

@media print,
screen and (max-width:48.06125em) {
    .gallery .accordion__button {
        color: #063d7a;
        background-color: #d4e8f6
    }
}

.gallery .accordion__icon {
    color: #008755
}

.gallery .tab-accordion--open .accordion__button {
    border: 8px solid #d4e8f6;
    border-bottom: none;
    background-color: #fff
}

@media print,
screen and (max-width:48.06125em) {
    .gallery .tab-accordion--open .accordion__button {
        color: #262626
    }
}

.gallery .tab-accordion--open .accordion__content {
    margin-top: -1px;
    border-top-color: rgba(0, 0, 0, 0)
}

@media print,
screen and (max-width:48.06125em) {
    .gallery .tab-accordion--open .accordion__content {
        border: 8px solid #d4e8f6;
        border-top: none
    }
}

@media print,
screen and (min-width:48.0625em) {
    .gallery .tab-accordion--open .accordion+.accordion .accordion__button {
        border-top: none
    }
}

.gallery .tab-accordion--open .fa-plus {
    rotate: 45deg;
    color: #008755
}

@media print,
screen and (min-width:48.0625em) {
    .gallery .swiper {
        padding-right: 60px;
        margin-right: -60px
    }

    .gallery .swiper .swiper-slide {
        opacity: 0;
        pointer-events: none
    }

    .gallery .swiper .swiper-slide-active {
        opacity: 1;
        pointer-events: initial
    }

    .gallery .swiper .swiper-slide-active~.swiper-slide {
        opacity: 1
    }

    .gallery .swiper .swiper-slide-active~.swiper-slide a {
        pointer-events: none
    }

    .gallery .swiper .swiper-slide-active~.swiper-slide a .play-button {
        opacity: 0
    }
}

@media screen and (min-width:87.5em) {
    .gallery .swiper {
        padding-right: calc(50vw - 600px);
        margin-right: calc(600px - 50vw)
    }
}

.gallery .swiper-wrapper {
    height: auto
}

.gallery .swiper-slide-prev .aspect-ratio-frame::after,
.gallery .swiper-slide-next .aspect-ratio-frame::after {
    content: "";
    width: 100%;
    background: rgba(6, 61, 122, .8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: absolute;
    height: 100%;
    top: 0
}

.gallery .slider-navigation {
    margin-top: 13px
}

@media print,
screen and (min-width:48.0625em) {
    .gallery .slider-navigation {
        gap: 1.5rem;
        justify-content: flex-start;
        margin-top: 1.5rem
    }
}

.gallery .slider-navigation__prev,
.gallery .slider-navigation__next {
    font-size: 1.5rem;
    background-color: rgba(0, 0, 0, 0);
    color: #008755;
    padding: 4px 8px;
    border: 1px solid rgba(0, 0, 0, 0)
}

.gallery .slider-navigation__prev:hover,
.gallery .slider-navigation__prev:focus-visible,
.gallery .slider-navigation__next:hover,
.gallery .slider-navigation__next:focus-visible {
    background-color: rgba(0, 0, 0, 0);
    border-color: #008755
}

.gallery .slider-navigation__prev:hover span::before,
.gallery .slider-navigation__prev:focus-visible span::before,
.gallery .slider-navigation__next:hover span::before,
.gallery .slider-navigation__next:focus-visible span::before {
    color: #008755
}

.gallery .slider-navigation__prev:focus,
.gallery .slider-navigation__next:focus {
    background-color: rgba(0, 0, 0, 0);
    border-color: #008755
}

.gallery .slider-navigation__prev:focus span::before,
.gallery .slider-navigation__next:focus span::before {
    color: #008755
}

.gallery .slider-navigation__prev:active,
.gallery .slider-navigation__next:active {
    background-color: #008755;
    border-color: #008755
}

.gallery .slider-navigation__prev:active span::before,
.gallery .slider-navigation__next:active span::before {
    color: #fff
}

.gallery .fa-arrow-left-long:before {
    content: ""
}

.gallery .fa-arrow-right-long:before {
    content: ""
}

.gallery .play-button {
    opacity: 1
}

.gallery .swiper-pagination {
    margin-top: -1px
}

.gallery .swiper-slide {
    height: auto
}

.gallery__item--video.swiper-slide-active .aspect-ratio-frame::after {
    content: "";
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    background: linear-gradient(238deg, rgba(0, 40, 85, 0) 75.1%, #002855 100%);
    opacity: .9;
    pointer-events: none
}

@media print,
screen and (max-width:48.06125em) {
    .gallery__slider {
        max-height: 80vw
    }

    .gallery__slider .grid-container {
        max-height: 100%
    }
}

.general--detail .general--detail__content:has(.sidebar-parent-link) .callout {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .general--detail .general--detail__content:has(.sidebar-parent-link) .callout {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .general--detail .general--detail__content:has(.sidebar-parent-link) .callout {
        margin-top: 4rem
    }
}

.general--detail .general--detail__content .callout {
    margin-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .general--detail .general--detail__content .callout {
        margin-bottom: 0
    }
}

.language {
    position: relative;
    pointer-events: none
}

.block-gtranslate {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    border: 0;
    overflow: hidden;
    padding: 0;
    width: 18px;
    height: 18px;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
    pointer-events: none
}

.block-gtranslate select {
    opacity: 1;
    cursor: pointer;
    pointer-events: all
}

.hero--center {
    color: #fff;
    position: relative
}

.hero--center {
    padding-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--center {
        padding-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--center {
        padding-top: 4rem
    }
}

.hero--center:not(.hero--img):not(.hero--video) {
    padding-top: 2rem
}

.hero--center:not(.hero--img):not(.hero--video) {
    padding-bottom: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--center:not(.hero--img):not(.hero--video) {
        padding-top: 3rem
    }

    .hero--center:not(.hero--img):not(.hero--video) {
        padding-bottom: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--center:not(.hero--img):not(.hero--video) {
        padding-top: 4rem
    }

    .hero--center:not(.hero--img):not(.hero--video) {
        padding-bottom: 4rem
    }
}

.hero--center .breadcrumbs {
    margin-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--center .breadcrumbs {
        margin-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--center .breadcrumbs {
        margin-bottom: 3rem
    }
}

.hero--center h1 {
    font-family: aleo, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .hero--center h1 {
        font-size: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--center h1 {
        font-size: 2.75rem
    }
}

.hero--center p {
    color: #fff
}

.hero--center p.caption {
    color: #262626;
    background: #edf8ff
}

.hero--center p.caption {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.hero--center p.caption {
    padding-left: 0.5rem
}

.hero--center p.caption {
    padding-right: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--center p.caption {
        padding-left: 1rem
    }

    .hero--center p.caption {
        padding-right: 1rem
    }
}

.hero--center p.caption {
    padding-top: 0.5rem
}

.hero--center p.caption {
    padding-bottom: 0.5rem
}

.hero--center::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 61, 122, .85)
}

.hero--center .hero--center__content,
.hero--center .hero--center__image {
    position: relative;
    z-index: 3
}

.hero--center>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1
}

.hero--center:has(.hero--center__image)>img {
    height: calc(100% - 32px)
}

@media print,
screen and (min-width:48.0625em) {
    .hero--center:has(.hero--center__image)>img {
        height: calc(100% - 64px)
    }
}

.hero--center .hero--center__content {
    width: calc(100% - 40px)
}

.hero--center.hero--video:before,
.hero--center.hero--img:before {
    height: calc(100% - 32px)
}

@media print,
screen and (min-width:48.0625em) {

    .hero--center.hero--video:before,
    .hero--center.hero--img:before {
        height: calc(100% - 64px)
    }
}

.hero--center.hero--video::after,
.hero--center.hero--img::after {
    content: "";
    height: 2rem;
    display: block
}

@media print,
screen and (min-width:48.0625em) {

    .hero--center.hero--video::after,
    .hero--center.hero--img::after {
        height: 4rem
    }
}

.hero--center.hero--video .hero--center__image,
.hero--center.hero--img .hero--center__image {
    margin-bottom: -2rem
}

@media print,
screen and (min-width:48.0625em) {

    .hero--center.hero--video .hero--center__image,
    .hero--center.hero--img .hero--center__image {
        margin-bottom: -4rem
    }
}

.hero--center.hero--video:has(+.promo-section),
.hero--center.hero--img:has(+.promo-section) {
    padding-bottom: 0
}

.hero--center.hero--video .aspect-ratio-frame:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(133deg, rgba(0, 40, 85, 0) 73%, #002855 96.86%);
    opacity: .9;
    z-index: 2
}

@media print,
screen and (min-width:48.0625em) {
    .hero--center.hero--video .aspect-ratio-frame:after {
        background: linear-gradient(133deg, rgba(0, 40, 85, 0) 81.1%, #002855 96.86%)
    }
}

.hero--full .hero--center__content {
    max-width: 67.625rem
}

.hero--narrow .breadcrumbs {
    display: flex;
    justify-content: center
}

.hero--narrow .hero--center__content {
    text-align: center;
    margin: auto;
    max-width: 67.25rem
}

.hero--narrow .hero--center__image {
    max-width: 67.625rem;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto
}

p.hero__date {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

@media print,
screen and (min-width:48.0625em) {

    .hero--center.hero--img+section,
    .hero--center.hero--video+section {
        padding-top: 7rem;
        margin-top: -64px
    }
}

.news--detail .hero--center::after {
    display: none
}

.news--detail .hero--center+section {
    margin-top: 0
}

.landing-page .img {
    z-index: 1;
    overflow: hidden
}

.landing-page video {
    z-index: 2;
    overflow: hidden
}

@media print,
screen and (max-width:48.06125em) {

    .landing-page .hero--img,
    .landing-page .hero--video {
        padding-bottom: 0
    }

    .landing-page .hero--img::before,
    .landing-page .hero--video::before {
        height: 100%
    }

    .landing-page .hero--img .hero--center__image,
    .landing-page .hero--video .hero--center__image {
        margin-bottom: 0
    }
}

.hero--center .wysiwyg a {
    color: #f7d66f
}

.hero--center .wysiwyg a:hover,
.hero--center .wysiwyg a:focus-visible {
    color: #f7d66f;
    text-decoration: none
}

.hero--center .wysiwyg a::after {
    display: none
}

.hero--home {
    position: relative;
    color: #fff;
    overflow: hidden
}

@media screen and (min-width:55.625em) {
    .hero--home {
        display: flex;
        justify-content: center;
        align-items: center
    }
}

.hero--home h2 {
    font-family: aleo, serif;
    font-size: 2.5625rem;
    font-weight: 400;
    line-height: 1.1
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home h2 {
        font-size: 4rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--home h2 {
        font-size: 5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home h2 {
        font-size: 3.5rem
    }
}

.hero--home h2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 700px
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home h2 {
        display: inline-block
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--home h2 {
        display: block
    }
}

.hero--home h2:after {
    content: url(../images/waves.svg);
    position: relative;
    display: inline-block;
    width: 72px;
    height: 34px
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home h2:after {
        width: 96px;
        height: 48px;
        margin-left: .5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--home h2:after {
        margin-left: 1rem
    }
}

.hero--home h2+p {
    margin-top: 1.5rem
}

.hero--home .aspect-ratio-frame {
    height: 75vw
}

@media screen and (min-width:55.625em) {
    .hero--home .aspect-ratio-frame {
        height: 58vw;
        position: relative;
        max-height: 80vh
    }
}

.hero--home img,
.hero--home video {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.hero--home img {
    z-index: 1;
    overflow: hidden
}

.hero--home video {
    z-index: 2;
    overflow: hidden
}

.hero--home.hero--no-img {
    background: none
}

@media screen and (min-width:55.625em) {
    .hero--home.hero--img {
        display: block
    }
}

@media screen and (min-width:55.625em) {
    .hero--home.hero--video img {
        position: absolute;
        top: 0;
        left: 0
    }

    .hero--home.hero--video .aspect-ratio-frame::before {
        display: unset
    }

    .hero--home.hero--video .aspect-ratio-frame:after {
        content: "";
        height: 100%;
        width: 100%;
        position: absolute;
        bottom: -8px;
        background: linear-gradient(133deg, rgba(0, 40, 85, 0) 81.1%, #002855 96.86%);
        opacity: .9;
        z-index: 1
    }
}

.hero--home .hero__content {
    background-color: #002855;
    margin-top: 20px;
    z-index: 3;
    position: relative
}

.hero--home .hero__content {
    padding-top: 1.5rem
}

.hero--home .hero__content {
    padding-bottom: 1.5rem
}

.hero--home .hero__content {
    padding-right: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home .hero__content {
        padding-top: 2.5rem
    }

    .hero--home .hero__content {
        padding-bottom: 2.5rem
    }

    .hero--home .hero__content {
        padding-right: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--home .hero__content {
        padding-top: 3rem
    }

    .hero--home .hero__content {
        padding-bottom: 3rem
    }

    .hero--home .hero__content {
        padding-right: 3rem
    }
}

.hero--home .hero__content {
    bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home .hero__content {
        bottom: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--home .hero__content {
        bottom: 2.5rem
    }
}

@media screen and (max-width:55.5625em) {
    .hero--home .hero__content {
        width: calc(100% - 28px);
        margin-top: -50px
    }
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home .hero__content {
        padding-right: 1.5rem;
        position: absolute;
        margin-top: unset;
        max-width: 90%;
        background-color: rgba(0, 40, 85, .85)
    }
}

@media screen and (min-width:55.625em) {
    .hero--home .hero__content {
        max-width: 43.4375rem
    }
}

@media screen and (min-width:59.375em) {
    .hero--home .hero__content::after {
        content: "";
        position: absolute;
        width: 113px;
        height: 100%;
        right: -113px;
        top: 0;
        -webkit-clip-path: polygon(5% 0, 0% 0, 0% 100%, 100% 100%);
        clip-path: polygon(5% 0, 0% 0, 0% 100%, 100% 100%);
        background-color: rgba(0, 40, 85, .85)
    }
}

.hero--home .hero__content::before {
    content: "";
    background-color: #002855;
    width: 100vw;
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home .hero__content::before {
        background-color: rgba(0, 40, 85, .85)
    }
}

.hero--home .hero__content p {
    font-size: 1.125rem;
    line-height: 27px
}

@media print,
screen and (min-width:64.0625em) {
    .hero--home .hero__content p {
        font-size: 1.25rem;
        line-height: 30px
    }
}

.hero--home .video-play-button {
    left: auto;
    right: 30px
}

.hero--home .hero__links {
    list-style: none;
    margin: 0;
    padding: 0
}

.hero--home .hero__links {
    display: flex;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 1rem;
    margin-top: 24px;
    flex-flow: wrap
}

.hero--home .hero__links a {
    color: #fff
}

.hero--home .link-arrow {
    letter-spacing: 1.8px
}

.hero--home .link-arrow::after {
    color: #c99700
}

.hero--home .link-arrow:hover,
.hero--home .link-arrow:focus,
.hero--home .link-arrow:focus-visible {
    border-color: #c99700
}

.hero--home .hero__media {
    display: block;
    width: 100%
}

.hero--home .aspect-ratio-frame {
    --aspect-ratio: 240/320
}

@media print,
screen and (min-width:48.0625em) {
    .hero--home .aspect-ratio-frame {
        --aspect-ratio: 835/1440
    }
}

.hero--home .autoplay-video-container {
    position: relative;
    display: none
}

@media screen and (min-width:55.625em) {
    .hero--home .autoplay-video-container {
        display: block
    }
}

.hero--home+.differentiator {
    border-top: 8px solid #c99700
}

.hero--landing h1 {
    font-family: aleo, serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.1
}

@media print,
screen and (min-width:48.0625em) {
    .hero--landing h1 {
        font-size: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--landing h1 {
        font-size: 4rem
    }
}

.hero--landing .video-play-button {
    right: 0;
    bottom: 0
}

.hero--landing .video-play-button {
    padding: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--landing .video-play-button {
        padding: 1.5rem
    }
}

@media screen and (min-width:75.0625em) {
    .hero--landing .video-play-button {
        padding: 2.5rem
    }
}

.hero--listing {
    position: relative;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    background-color: #063d7a
}

.hero--listing__bg {
    position: relative
}

.hero--listing__bg .grid-container {
    position: relative;
    z-index: 2
}

@media screen and (max-width:57.5em) {
    .hero--listing__bg .grid-container {
        background-image: linear-gradient(rgba(6, 61, 122, 0.85), rgba(6, 61, 122, 0.85))
    }
}

.hero--listing__bg img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1
}

.hero-listing__content {
    max-width: 51rem;
    position: relative
}

.hero-listing__content {
    padding-top: 2rem
}

.hero-listing__content {
    padding-bottom: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero-listing__content {
        padding-top: 3rem
    }

    .hero-listing__content {
        padding-bottom: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero-listing__content {
        padding-top: 4rem
    }

    .hero-listing__content {
        padding-bottom: 4rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .hero-listing__content {
        padding-left: 4rem;
        padding-right: 4rem;
        padding-bottom: 7.5rem
    }
}

@media screen and (min-width:57.5em) {
    .hero-listing__content {
        background-color: rgba(6, 61, 122, .85)
    }

    .hero-listing__content::before {
        content: "";
        position: absolute;
        background-color: rgba(6, 61, 122, .85);
        height: 100%;
        right: auto;
        width: 50vw;
        left: -50vw;
        bottom: 0
    }

    .hero-listing__content::after {
        content: "";
        position: absolute;
        width: 113px;
        height: 100%;
        right: -113px;
        top: 0;
        -webkit-clip-path: polygon(5% 0, 0% 0, 0% 100%, 100% 100%);
        clip-path: polygon(5% 0, 0% 0, 0% 100%, 100% 100%);
        background-color: rgba(6, 61, 122, .85)
    }
}

.hero--profile {
    color: #fff;
    position: relative
}

.hero--profile {
    padding-bottom: 2rem
}

.hero--profile {
    padding-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--profile {
        padding-bottom: 3rem
    }

    .hero--profile {
        padding-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--profile {
        padding-bottom: 4rem
    }

    .hero--profile {
        padding-top: 4rem
    }
}

@media print,
screen and (max-width:64.06125em) {
    .hero--profile {
        padding-bottom: 4.5rem
    }
}

.hero--profile ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.hero--profile a {
    color: #fff
}

.hero--profile dl {
    display: flex;
    flex-wrap: wrap
}

@media print,
screen and (max-width:48.06125em) {
    .hero--profile dt {
        flex-basis: 100%
    }
}

.hero--profile dd {
    margin-top: .25rem;
    margin-left: 0
}

@media print,
screen and (min-width:48.0625em) {
    .hero--profile dd {
        margin-top: 0;
        margin-left: 8px
    }
}

.hero--profile__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(6, 61, 122, 0.85), rgba(6, 61, 122, 0.85)), url(../images/hero-profile-bg.jpg);
    background-size: cover;
    height: 100%;
    z-index: -1
}

.hero--profile__media {
    max-width: 335px
}

@media print,
screen and (min-width:48.0625em) {
    .hero--profile__media {
        margin-top: 0
    }

    .hero--profile__media .aspect-ratio-frame {
        --aspect-ratio: 1.5
    }
}

.hero--profile__positions-column {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--profile__positions-column {
        margin-top: 1.5rem
    }
}

.hero--profile__positions-column {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .hero--profile__positions-column {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--profile__positions-column {
        font-size: 1.375rem
    }
}

.hero--profile__positions-column {
    font-weight: 400
}

.hero--profile__positions-column ul {
    display: flex;
    gap: .5rem;
    flex-direction: column
}

.profile-types {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .profile-types {
        margin-top: 1.5rem
    }
}

.profile-types ul {
    display: flex;
    flex-flow: wrap;
    gap: 8px
}

.profile-types li {
    display: flex;
    align-items: center
}

.profile-types a {
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #a9d4bb;
    padding: 10px 16px;
    font-size: .8125rem;
    letter-spacing: 1.56px
}

.profile-types a:hover,
.profile-types a:focus {
    text-decoration: none;
    outline: none
}

.profile-types a:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6
}

.profile-types a::before,
.profile-types a::after {
    color: #fff
}

.profile-types a:hover,
.profile-types a:focus {
    color: #262626;
    background-color: #a9d4bb
}

.profile-types a:hover::before,
.profile-types a:hover::after,
.profile-types a:focus::before,
.profile-types a:focus::after {
    color: #fff
}

.hero--profile__contact {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.hero--profile__contact {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:48.0625em) {
    .hero--profile__contact {
        gap: 8px
    }
}

.hero--profile__contact {
    font-weight: 600
}

.hero--profile__contact a {
    color: #f7d66f;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.hero--profile__contact a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.hero--profile__contact a:hover {
    color: #fff
}

.hero--profile__contact .external::after {
    color: #f7d66f;
    content: "";
    font-size: .8125rem
}

.hero--profile__contact p {
    color: #fff
}

.hero--profile__contact p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.office-location {
    display: flex;
    flex-flow: wrap;
    flex-direction: column
}

@media print,
screen and (min-width:48.0625em) {
    .office-location {
        gap: .5rem;
        flex-direction: row
    }
}

.office-location .wysiwyg p+p {
    margin-top: 0
}

.hero--program__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    background-image: linear-gradient(rgba(6, 61, 122, 0.85), rgba(6, 61, 122, 0.85)), url(../images/hero-program-bg-2000.jpg)
}

.hero--general.hero--program {
    padding-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--general.hero--program {
        padding-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--general.hero--program {
        padding-top: 4rem
    }
}

.hero--general.hero--program::before {
    display: none
}

.hero--general.hero--program {
    position: relative
}

@media print,
screen and (max-width:48.06125em) {
    .hero--general.hero--program {
        padding-bottom: 0
    }
}

@media print,
screen and (min-width:48.0625em) {
    .hero--general.hero--program {
        padding-top: 2rem
    }

    .hero--general.hero--program {
        padding-bottom: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .hero--general.hero--program {
        padding-top: 3rem
    }

    .hero--general.hero--program {
        padding-bottom: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .hero--general.hero--program {
        padding-top: 4rem
    }

    .hero--general.hero--program {
        padding-bottom: 4rem
    }
}

.hero--general.hero--program .hero--program__image {
    margin-bottom: -2rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--general.hero--program .hero--program__image {
        margin-bottom: -3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (max-width:64.06125em) {
    .hero--general.hero--program .hero--program__image {
        display: flex;
        flex-direction: column;
        justify-content: flex-end
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--general.hero--program .hero--program__image {
        margin-bottom: -8rem
    }
}

.hero--program__image figure:has(.play-button) a::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(133deg, rgba(0, 40, 85, 0) 81.1%, #002855 96.86%);
    opacity: .9;
    z-index: 2
}

@media print,
screen and (min-width:64.0625em) {
    .program:not(:has(.promo-section)) .hero--general.hero--program .hero--program__image {
        margin-bottom: -6rem
    }
}

.hero--general {
    color: #fff;
    background-color: #002855;
    position: relative
}

.hero--general:has(+.promo-section)::after {
    background-color: #008755
}

.hero--general .play-button {
    opacity: 1
}

.hero--general a:hover .play-button path,
.hero--general a:focus .play-button path {
    fill: #c99700
}

@media print,
screen and (max-width:48.06125em) {
    .hero--general {
        padding-top: 2rem
    }

    .hero--general {
        padding-bottom: 2rem
    }
}

@media print,
screen and (max-width:48.06125em)and (min-width:48.0625em) {
    .hero--general {
        padding-top: 3rem
    }

    .hero--general {
        padding-bottom: 3rem
    }
}

@media print,
screen and (max-width:48.06125em)and (min-width:64.0625em) {
    .hero--general {
        padding-top: 4rem
    }

    .hero--general {
        padding-bottom: 4rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .grid-margin-x>.cell.hero--general__media {
        margin: 0;
        width: 50%
    }
}

.hero--general__media {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--general__media {
        align-self: flex-end
    }
}

@media screen and (min-width:90em) {
    .hero--general__media {
        margin-bottom: -48px
    }
}

.hero--general__media figure {
    width: 100%;
    max-width: 688px
}

@media print,
screen and (min-width:48.0625em) {
    .hero--general__media figure {
        left: 0
    }
}

@media screen and (min-width:90em) {
    .hero--general__media figure {
        width: 688px
    }
}

.hero--general__media figure img {
    z-index: 1
}

.hero--general__media figure .play-button {
    z-index: 3
}

.hero--general__media figure:has(.play-button) a::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(133deg, rgba(0, 40, 85, 0) 81.1%, #002855 96.86%);
    opacity: .9;
    z-index: 2
}

.hero--general::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 61, 122, .85)
}

.hero--general .grid-container {
    position: relative;
    z-index: 3
}

.hero--general>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1
}

@media print,
screen and (min-width:48.0625em) {
    .hero--general__content {
        padding-top: 2rem
    }

    .hero--general__content {
        padding-bottom: 2rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:48.0625em) {
    .hero--general__content {
        padding-top: 3rem
    }

    .hero--general__content {
        padding-bottom: 3rem
    }
}

@media print,
screen and (min-width:48.0625em)and (min-width:64.0625em) {
    .hero--general__content {
        padding-top: 4rem
    }

    .hero--general__content {
        padding-bottom: 4rem
    }
}

.hero--general__content a {
    color: #fff
}

.hero--general__content a:hover,
.hero--general__content a:active,
.hero--general__content a:focus,
.hero--general__content a:focus-visible {
    color: #f7d66f;
    text-decoration: none
}

.hero--hub .hero--general__bg {
    background-image: linear-gradient(rgba(0, 40, 85, 0.85), rgba(0, 40, 85, 0.85)), url(../images/hero--listing-bg.png);
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.hero--hub .hero--general__content {
    max-width: 60.5rem
}

.hero--hub:has(.hero--hub__jumplinks) .hero--general__content {
    padding-bottom: 0
}

.news-hub .hero--hub::after {
    margin-top: -16px;
    background-color: #fff
}

.news-hub .hero--hub:has(+.promo-section)::after {
    background-color: #008755
}

.hero--pell {
    color: #fff;
    position: relative;
    background-color: hsl(0, 0%, 15%)
}

.hero--pell {
    padding-bottom: 1.5rem
}

.hero--pell {
    padding-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--pell {
        padding-bottom: 2.5rem
    }

    .hero--pell {
        padding-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--pell {
        padding-bottom: 3rem
    }

    .hero--pell {
        padding-top: 3rem
    }
}

.hero--pell::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 61, 122, .85)
}

.hero--pell.no-bg-img::before {
    background-color: #002855
}

.hero--pell .grid-container {
    position: relative;
    z-index: 3
}

@media print,
screen and (min-width:48.0625em) {
    .hero--pell .grid-x {
        display: flex;
        justify-content: space-between;
        align-items: center
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--pell .grid-x>.hero--pell__content {
        margin-right: 7.1875rem
    }
}

.hero--pell ol.breadcrumbs {
    margin-bottom: 1.25rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--pell ol.breadcrumbs {
        margin-bottom: 1.75rem
    }
}

.hero--pell>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1
}

.hero--pell__media {
    width: 100%;
    max-width: 395px
}

.hero--pell__content {
    max-width: 39rem
}

.hero--pell__content p {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--pell__content p {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .hero--pell__content p {
        margin-top: 0
    }
}

.hero--pell .hero--general__bg {
    background-image: linear-gradient(rgba(0, 40, 85, 0.85), rgba(0, 40, 85, 0.85)), url(../images/hero-pell-bg.jpeg);
    height: 100%
}

.jump-nav-component {
    background-color: hsl(0, 0%, 85%)
}

.jump-nav-component a {
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap
}

.jump-nav-component a:hover {
    text-decoration: none
}

.jump-nav-component__container {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding-left: 1.25rem;
    position: relative;
    min-height: 60px
}

.jump-nav-component__heading {
    flex: 1;
    min-width: 5rem
}

@media print,
screen and (max-width:48.06125em) {
    .jump-nav-component__heading .jump-nav-component__heading {
        display: none
    }
}

.jump-nav-component .jump-nav {
    display: flex !important;
    flex-flow: wrap;
    row-gap: .8rem;
    overflow: hidden;
    padding-bottom: 1px
}

.jump-nav-component .accordion--open button {
    background-color: #002855;
    color: #fff
}

.jump-nav-component .accordion--open a {
    color: #fff
}

.jump-nav-component .accordion--open .accordion__content {
    background-color: #002855;
    z-index: 9
}

.jump-nav-component .accordion__button-text {
    font-weight: 400
}

@media print,
screen and (max-width:48.06125em) {
    .jump-nav-component .jump-nav {
        flex-direction: column
    }

    .jump-nav-component .accordion {
        position: absolute;
        right: 0;
        top: 0
    }

    .jump-nav-component .accordion__content {
        position: absolute;
        right: 0
    }
}

@media print,
screen and (min-width:48.0625em) {
    .jump-nav-component .jump-nav-component__container {
        max-width: 1160px;
        margin-left: auto;
        margin-right: auto;
        padding-right: 1.25rem;
        padding-left: 1.25rem
    }

    .jump-nav-component .accordion {
        flex: 85%
    }

    .jump-nav-component .jump-nav__item:not(:last-child) {
        margin-left: -0.8rem;
        padding-left: .8rem
    }

    .jump-nav-component .jump-nav__item:not(:last-child):after {
        content: "|";
        margin-right: .8rem;
        margin-left: .8rem
    }

    .jump-nav-component__heading a {
        display: none
    }
}

.sticky-header__wrapper {
    position: sticky;
    top: 0
}

.process-steps__jumplinks {
    z-index: 9;
    position: sticky;
    top: 0;
    margin-bottom: -32px
}

@media print,
screen and (min-width:48.0625em) {
    .process-steps__jumplinks {
        position: sticky;
        margin-bottom: -23px
    }
}

@media print,
screen and (max-width:48.06125em) {
    .jump-nav__link--active {
        border: 2px solid #fff;
        padding: 4px
    }
}

@media print,
screen and (min-width:48.0625em) {
    .jump-nav__link--active a {
        background-color: #002855;
        color: #fff
    }
}

.current-section {
    padding: .9375rem 1.875rem;
    width: 100%;
    display: block;
    font-weight: 700
}

@media print,
screen and (min-width:48.0625em) {
    .current-section {
        display: none
    }
}

.listing-section {
    padding-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing-section {
        padding-top: 4rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-section {
        padding-top: 6rem
    }
}

.listing-section .listing__container {
    padding-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing-section .listing__container {
        padding-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-section .listing__container {
        padding-top: 4rem
    }
}

.listing-section .listing__row {
    display: flex;
    flex-direction: column
}

.listing-section .listing__row {
    padding-top: 1.5rem
}

.listing-section .listing__row {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing-section .listing__row {
        padding-top: 2.5rem
    }

    .listing-section .listing__row {
        padding-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-section .listing__row {
        padding-top: 3rem
    }

    .listing-section .listing__row {
        padding-bottom: 3rem
    }
}

.listing-section .listing__row {
    gap: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing-section .listing__row {
        gap: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-section .listing__row {
        gap: 4rem
    }
}

.listing-section .listing__row:not(:last-of-type) {
    border-bottom: 1px solid #76a6cf
}

@media print,
screen and (min-width:48.0625em) {
    .listing-section .listing__row {
        flex-direction: row
    }
}

.listing-section .listing__row:first-child {
    border-top: 1px solid #76a6cf
}

.listing-section .listing__row .link-arrow {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .listing-section .listing__row .link-arrow {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-section .listing__row .link-arrow {
        font-size: 2.5rem
    }
}

.listing-section .listing__row .link-arrow {
    letter-spacing: 0;
    text-transform: unset
}

.listing-section .listing__row .link-arrow::after {
    font-size: 24px
}

.listing-section .listing__content {
    flex: 1
}

.listing-section .listing__media {
    flex: 1
}

.listing-section .listing__media img {
    width: 100%;
    height: auto
}

@media print,
screen and (min-width:48.0625em) {
    .listing-section .listing__media {
        flex-grow: 0;
        min-width: 22.5rem
    }
}

.bg-white+.listing-section.bg-white:not(:has(.section-heading)) .listing__row:first-child {
    border-top: none
}

@media print,
screen and (min-width:48.0625em) {
    .bg-white+.listing-section.bg-white:not(:has(.section-heading)) .listing__row:first-child {
        padding-top: 0
    }
}

.news--detail .news--detail__content {
    padding-top: 2.5rem
}

.news--detail .news--detail__content {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .news--detail .news--detail__content {
        padding-top: 3.5rem
    }

    .news--detail .news--detail__content {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news--detail .news--detail__content {
        padding-top: 5rem
    }

    .news--detail .news--detail__content {
        padding-bottom: 5rem
    }
}

.news--detail .news--detail__content .body-section {
    padding: 0
}

.news--detail .callout-wrapper {
    margin-top: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .news--detail .callout-wrapper {
        margin-top: 0
    }
}

@keyframes hubbounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(0.3em)
    }
}

.hero--hub__jumplinks {
    padding: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .hero--hub__jumplinks {
        padding: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--hub__jumplinks {
        padding: 3.5rem
    }
}

.hero--hub__jumplinks {
    box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, .1019607843);
    background-color: #edf8ff
}

@media print,
screen and (min-width:48.0625em) {
    .hero--hub__jumplinks {
        margin-bottom: -24px
    }
}

.hero--hub__jumplinks h2 {
    color: #262626
}

.hero--hub__jumplinks ul {
    display: flex;
    flex-flow: row wrap;
    margin: -8px -2rem;
    padding-left: 0
}

.hero--hub__jumplinks ul li {
    flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
    width: calc(100% - 2.5rem);
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    padding: .5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

@media print,
screen and (min-width:40.0625em) {
    .hero--hub__jumplinks ul li {
        flex: 0 0 auto;
        width: calc(50% - 2.5rem);
        margin-left: 1.25rem;
        margin-right: 1.25rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .hero--hub__jumplinks ul li {
        flex: 0 0 auto;
        width: calc(33.3333333333% - 4rem);
        margin-left: 2rem;
        margin-right: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .hero--hub__jumplinks ul li {
        flex: 0 0 auto;
        width: calc(25% - 4rem);
        margin-left: 2rem;
        margin-right: 2rem
    }
}

.hero--hub__jumplinks ul a {
    color: #262626;
    font-weight: 500;
    font-size: 1.125rem;
    display: block;
    border-bottom: 1px solid #c99700;
    padding-bottom: .5rem;
    padding-left: 24px;
    text-decoration: none;
    position: relative
}

.hero--hub__jumplinks ul a::before {
    font-family: "Font Awesome 6 Pro";
    content: "";
    color: #c99700;
    display: inline-block;
    margin-right: 8px;
    position: absolute;
    left: 0;
    top: .25em
}

.hero--hub__jumplinks ul a:hover,
.hero--hub__jumplinks ul a:focus-visible {
    color: #000;
    border-bottom: 1px solid #f7d66f
}

.hero--hub__jumplinks ul a:hover::before,
.hero--hub__jumplinks ul a:focus-visible::before {
    animation: hubbounce 1.5s infinite ease-in-out
}

.news__information {
    border-top: 1px solid #76a6cf
}

.news__information {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .news__information {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news__information {
        margin-top: 3rem
    }
}

.news__information h2 {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .news__information h2 {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news__information h2 {
        font-size: 1.5rem
    }
}

.news__information h2 {
    margin: 1.5rem 0 0
}

.news__information ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.news__information ul {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .news__information ul {
        margin-top: 1rem
    }
}

.news__information ul {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.news__information ul a {
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), background-color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98);
    display: inline-block;
    position: relative;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 1.3px;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    color: #262626;
    background-color: #d9ede6;
    border: 1px solid #008755;
    padding: 10px 16px;
    font-size: .8125rem;
    letter-spacing: 1.56px
}

.news__information ul a:hover,
.news__information ul a:focus {
    text-decoration: none;
    outline: none
}

.news__information ul a:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6
}

.news__information ul a::before,
.news__information ul a::after {
    color: #008755
}

.news__information ul a:hover,
.news__information ul a:focus {
    color: #fff;
    background-color: #008755
}

.news__information ul a:hover::before,
.news__information ul a:hover::after,
.news__information ul a:focus::before,
.news__information ul a:focus::after {
    color: #fff
}

.news__information ul a {
    padding-top: .375rem;
    padding-bottom: .375rem
}

.listing--news {
    padding-bottom: 80px
}

@media print,
screen and (min-width:48.0625em) {
    .listing--news {
        padding-bottom: 88px
    }
}

li:has(>.listing-news--item)+li {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    li:has(>.listing-news--item)+li {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    li:has(>.listing-news--item)+li {
        margin-top: 3rem
    }
}

.listing-news--item {
    padding: 8px 0
}

.listing-news--item h3 {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing-news--item .medium-auto {
        margin-right: 24px;
        max-width: 40.625rem
    }
}

.listing-news--item .link-arrow {
    color: #063d7a
}

.listing-news--item .link-arrow {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .listing-news--item .link-arrow {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-news--item .link-arrow {
        font-size: 2rem
    }
}

.listing-news--item .link-arrow {
    text-transform: none;
    letter-spacing: normal
}

.listing-news--item .link-arrow:after {
    font-size: 1.5rem;
    font-weight: 400
}

.listing-news--item .item-eyebrow {
    display: flex;
    gap: .625rem;
    display: flex;
    align-items: center;
    color: #5a5a5a
}

.listing-news--item .item-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

.listing-news--item .item-eyebrow a {
    text-underline-offset: 2px
}

.listing-news--item .item-eyebrow a:hover,
.listing-news--item .item-eyebrow a:focus-visible {
    text-decoration: none
}

.listing-news--item .date {
    display: flex;
    align-items: center;
    gap: .625rem
}

.listing-news--item .date::before {
    content: "";
    background-color: #c99700;
    display: block;
    width: 1px;
    height: 1rem
}

.listing-news--item .pills {
    margin-top: 1rem
}

.news-description {
    margin-top: 1rem
}

.news__media {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .news__media {
        margin-top: -1rem;
        margin-left: -2rem
    }
}

.news-section__featured {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__featured {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news-section__featured {
        margin-top: 4rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__featured {
        position: relative
    }
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__featured:has(.aspect-ratio-frame) .news-section__feat-content {
        margin-top: 112px
    }
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__featured:has(.aspect-ratio-frame)::before {
        content: "";
        position: absolute;
        top: 56px;
        content: "";
        display: block;
        width: 95%;
        height: 2px;
        background-color: #c99700
    }
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__featured .news-section__featured-image {
        margin-left: 0
    }
}

@media screen and (min-width:90em) {
    .news-section__featured .news-section__featured-image {
        margin-left: -2rem
    }
}

.news-section__feat-content {
    border-left: 2px solid #c99700;
    padding: 24px 0 24px 24px;
    margin-left: 24px
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__feat-content {
        margin-left: 0;
        border-left: none;
        padding: 0
    }
}

.news-section__eyebrow {
    margin: 0
}

.news-section__eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

.news-section__title {
    margin-bottom: 0
}

.news-section__title {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__title {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news-section__title {
        font-size: 1.5rem
    }
}

.news-section__title {
    margin-top: 0.5rem
}

.news-section__title a {
    text-transform: none;
    letter-spacing: normal
}

.news-section__title a:after {
    font-size: 1rem;
    font-weight: 400
}

.news-section__title a {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__title a {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news-section__title a {
        font-size: 1.5rem
    }
}

.news-section__featured .news-section__title {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__featured .news-section__title {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news-section__featured .news-section__title {
        font-size: 2rem
    }
}

.news-section__featured .news-section__title a {
    text-transform: none;
    letter-spacing: normal
}

.news-section__featured .news-section__title a:after {
    font-size: 1.5rem;
    font-weight: 400
}

.news-section__featured .news-section__title a {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__featured .news-section__title a {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news-section__featured .news-section__title a {
        font-size: 2rem
    }
}

.news-section__date {
    margin-bottom: 0
}

.news-section__date {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5
}

.news-section__date {
    margin-top: 0.5rem
}

.news-section__summary {
    margin-bottom: 0
}

.news-section__summary {
    margin-top: 0.5rem
}

.news-section__summary a:hover,
.news-section__summary a:focus,
.news-section__summary a:focus-visible {
    text-decoration: none
}

.news-small {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .news-small {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news-small {
        margin-top: 4rem
    }
}

@media print,
screen and (max-width:48.06125em) {
    .news-small {
        margin-top: 0
    }
}

.news-small figure {
    display: none
}

@media print,
screen and (min-width:48.0625em) {
    .news-small figure {
        display: block
    }
}

.news-small__link-wrapper {
    text-align: center
}

.news-section__content {
    border-top: 1px solid #c99700
}

.news-section__content {
    padding-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__content {
        padding-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news-section__content {
        padding-top: 2.5rem
    }
}

.news-section__content {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__content {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .news-section__content {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .news-section__content {
        border-left: 2px solid #c99700;
        border-top: none;
        padding: 24px 0 24px 24px;
        margin-top: 0
    }
}

@media print,
screen and (min-width:48.0625em) {
    a:has(.aspect-ratio-frame)+.news-section__content {
        margin-left: 24px
    }
}

.section__button {
    margin: 0 auto
}

.section__button {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .section__button {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .section__button {
        margin-top: 4rem
    }
}

.home--full .news-section,
.news--detail .news-section {
    background-color: #002855;
    color: #fff;
    margin: 0
}

.home--full .news-section,
.news--detail .news-section {
    padding-top: 2.5rem
}

.home--full .news-section,
.news--detail .news-section {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {

    .home--full .news-section,
    .news--detail .news-section {
        padding-top: 3.5rem
    }

    .home--full .news-section,
    .news--detail .news-section {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .home--full .news-section,
    .news--detail .news-section {
        padding-top: 5rem
    }

    .home--full .news-section,
    .news--detail .news-section {
        padding-bottom: 5rem
    }
}

.home--full .news-section a:not(.section__button),
.news--detail .news-section a:not(.section__button) {
    color: #fff
}

.home--full .news-section a:not(.section__button):after,
.news--detail .news-section a:not(.section__button):after {
    color: #c99700
}

.home--full .news-section .section-heading__title,
.news--detail .news-section .section-heading__title {
    display: flex;
    gap: 16px
}

.home--full .news-section .section-heading__title:after,
.news--detail .news-section .section-heading__title:after {
    background: url(../images/waves.svg) no-repeat;
    content: "";
    display: block;
    width: 96px;
    height: 49px
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)),
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)) {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {

    .home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)),
    .news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)) {
        font-size: 1rem
    }
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img))::after,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img))::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):hover,
.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):focus,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):hover,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):focus {
    color: #008755;
    border-color: #008755
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):hover::after,
.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):focus::after,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):hover::after,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)).btn,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)).btn {
    padding-right: 1.875rem
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)),
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)) {
    color: #fff
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img))::after,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img))::after {
    color: #c99700
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):hover,
.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):focus,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):hover,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):focus {
    color: #fff !important;
    border-color: #c99700 !important
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)),
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)) {
    text-transform: none;
    letter-spacing: normal
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):after,
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)):after {
    font-size: 1rem;
    font-weight: 400
}

.home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)),
.news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)) {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    .home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)),
    .news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)) {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .home--full .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)),
    .news--detail .news-section a:not(.section__button):not(.news-section__summary a):not(:has(img)) {
        font-size: 1.5rem
    }
}

.news-section__featured .home--full .news-section,
.news-section__featured .news--detail .news-section {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    .news-section__featured .home--full .news-section,
    .news-section__featured .news--detail .news-section {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .news-section__featured .home--full .news-section,
    .news-section__featured .news--detail .news-section {
        font-size: 2rem
    }
}

.news-section__featured .home--full .news-section a,
.news-section__featured .news--detail .news-section a {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {

    .news-section__featured .home--full .news-section a,
    .news-section__featured .news--detail .news-section a {
        font-size: 1rem
    }
}

.news-section__featured .home--full .news-section a::after,
.news-section__featured .news--detail .news-section a::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.news-section__featured .home--full .news-section a:hover,
.news-section__featured .home--full .news-section a:focus,
.news-section__featured .news--detail .news-section a:hover,
.news-section__featured .news--detail .news-section a:focus {
    color: #008755;
    border-color: #008755
}

.news-section__featured .home--full .news-section a:hover::after,
.news-section__featured .home--full .news-section a:focus::after,
.news-section__featured .news--detail .news-section a:hover::after,
.news-section__featured .news--detail .news-section a:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.news-section__featured .home--full .news-section a.btn,
.news-section__featured .news--detail .news-section a.btn {
    padding-right: 1.875rem
}

.news-section__featured .home--full .news-section a,
.news-section__featured .news--detail .news-section a {
    color: #fff
}

.news-section__featured .home--full .news-section a::after,
.news-section__featured .news--detail .news-section a::after {
    color: #c99700
}

.news-section__featured .home--full .news-section a:hover,
.news-section__featured .home--full .news-section a:focus,
.news-section__featured .news--detail .news-section a:hover,
.news-section__featured .news--detail .news-section a:focus {
    color: #fff !important;
    border-color: #c99700 !important
}

.news-section__featured .home--full .news-section a,
.news-section__featured .news--detail .news-section a {
    text-transform: none;
    letter-spacing: normal
}

.news-section__featured .home--full .news-section a:after,
.news-section__featured .news--detail .news-section a:after {
    font-size: 1.5rem;
    font-weight: 400
}

.news-section__featured .home--full .news-section a,
.news-section__featured .news--detail .news-section a {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {

    .news-section__featured .home--full .news-section a,
    .news-section__featured .news--detail .news-section a {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .news-section__featured .home--full .news-section a,
    .news-section__featured .news--detail .news-section a {
        font-size: 2rem
    }
}

.home--full .news-section .grid-container,
.news--detail .news-section .grid-container {
    padding-top: 0 !important
}

.home--full .section__button,
.news--detail .section__button {
    font-size: 1rem;
    padding: 1rem 1.5rem;
    color: #002855;
    background-color: #fff
}

.home--full .section__button::before,
.home--full .section__button::after,
.news--detail .section__button::before,
.news--detail .section__button::after {
    color: #008755
}

.home--full .section__button:hover,
.home--full .section__button:focus,
.news--detail .section__button:hover,
.news--detail .section__button:focus {
    color: #fff;
    background-color: #008755
}

.home--full .section__button:hover::before,
.home--full .section__button:hover::after,
.home--full .section__button:focus::before,
.home--full .section__button:focus::after,
.news--detail .section__button:hover::before,
.news--detail .section__button:hover::after,
.news--detail .section__button:focus::before,
.news--detail .section__button:focus::after {
    color: #fff
}

.home--full .bg-white+.news-section.bg-white:has(.section-heading) .section-heading .grid-container:before {
    content: none
}

.home--full .bg-white+.news-section.bg-white:has(.section-heading) .section-heading .grid-container:after {
    border-top-width: 0px
}

.profile--detail .profile--detail__content {
    padding-top: 2.5rem
}

.profile--detail .profile--detail__content {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .profile--detail .profile--detail__content {
        padding-top: 3.5rem
    }

    .profile--detail .profile--detail__content {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .profile--detail .profile--detail__content {
        padding-top: 5rem
    }

    .profile--detail .profile--detail__content {
        padding-bottom: 5rem
    }
}

.profile--detail .profile--detail__content-body {
    order: 2
}

@media print,
screen and (min-width:64.0625em) {
    .profile--detail .profile--detail__content-body {
        order: 1
    }
}

.profile--detail .profile--detail__content-callout {
    order: 1
}

.profile--detail .profile--detail__content-callout .callout-section>h2 {
    margin-bottom: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .profile--detail .profile--detail__content-callout .callout-section>h2 {
        margin-bottom: 1rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .profile--detail .profile--detail__content-callout {
        order: 2
    }
}

.profile--detail .wysiwyg .btn:not(.accordion__button) {
    background-color: #063d7a
}

.listing--profile {
    padding-bottom: 80px
}

@media print,
screen and (min-width:48.0625em) {
    .listing--profile {
        padding-bottom: 88px
    }
}

.listing-profile-wrap ol>li+li {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing-profile-wrap ol>li+li {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-profile-wrap ol>li+li {
        margin-top: 4rem
    }
}

.listing-profile-wrap ol ol {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing-profile-wrap ol ol {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-profile-wrap ol ol {
        margin-top: 2.5rem
    }
}

.listing-profile-wrap ol ol>li+li {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing-profile-wrap ol ol>li+li {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing-profile-wrap ol ol>li+li {
        margin-top: 2.5rem
    }
}

.profile__item {
    display: flex;
    flex-direction: column
}

@media screen and (min-width:37.5em) {
    .profile__item {
        flex-direction: unset;
        align-items: center
    }

    .profile__item {
        gap: 1rem
    }
}

@media screen and (min-width:37.5em)and (min-width:48.0625em) {
    .profile__item {
        gap: 1.5rem
    }
}

.profile__item ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.profile__item .profile-positions {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.profile__item .profile-positions {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .profile__item .profile-positions {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .profile__item .profile-positions {
        font-size: 1.375rem
    }
}

.profile__item .link-arrow {
    font-family: aleo, serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .profile__item .link-arrow {
        font-size: 1.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .profile__item .link-arrow {
        font-size: 2rem
    }
}

.profile__item .link-arrow {
    text-transform: none;
    letter-spacing: normal
}

.profile__item .link-arrow:after {
    font-size: 1.375rem;
    font-weight: 400
}

@media print,
screen and (min-width:48.0625em) {
    .profile__item .link-arrow {
        text-transform: none;
        letter-spacing: normal
    }

    .profile__item .link-arrow:after {
        font-size: 1.5rem;
        font-weight: 400
    }
}

.profile__item .icon-list {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.profile__media {
    flex: 1;
    max-width: 8.125rem;
    height: 11.875rem
}

.profile__content {
    display: flex;
    flex-direction: column;
    flex: 1
}

.profile__header {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .profile__header {
        margin-top: unset
    }
}

.profile__main-info {
    display: flex;
    margin-top: 1rem;
    flex-direction: column;
    row-gap: 1rem
}

.profile__main-info {
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .profile__main-info {
        -moz-column-gap: 2rem;
        column-gap: 2rem
    }
}

@media screen and (min-width:42.5em) {
    .profile__main-info {
        flex-direction: row
    }
}

@media print,
screen and (min-width:48.0625em) {
    .profile__main-info {
        flex-direction: column
    }
}

@media print,
screen and (min-width:64.0625em) {
    .profile__main-info {
        flex-direction: row
    }
}

.profile-item__position-column {
    flex: 1
}

.profile-item__contact-info {
    max-width: 16.25rem
}

@media print,
screen and (min-width:64.0625em) {
    .profile-item__contact-info {
        width: 16.25rem
    }
}

.profile-item__contact-info a {
    color: #063d7a;
    transition: color .25s
}

.profile-item__contact-info a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.profile-item__contact-info a:hover,
.profile-item__contact-info a:focus {
    color: #c99700
}

.profile-item__department {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.profile-item__department a {
    text-decoration-color: rgba(0, 0, 0, 0);
    color: #063d7a;
    transition: -webkit-text-decoration .25s;
    transition: text-decoration .25s;
    transition: text-decoration .25s, -webkit-text-decoration .25s
}

.profile-item__department a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .profile-item__department a {
        font-size: 1.125rem
    }
}

.profile-item__department a:hover,
.profile-item__department a:focus {
    text-decoration-color: #063d7a
}

.result-column ol.program__listing-rows {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .result-column ol.program__listing-rows {
        padding-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .result-column ol.program__listing-rows {
        padding-bottom: 3rem
    }
}

.program__listing-rows>li:not(:first-child) {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .program__listing-rows>li:not(:first-child) {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .program__listing-rows>li:not(:first-child) {
        margin-top: 2.5rem
    }
}

.program__listing-items ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.program__listing-items .link-arrow {
    color: #063d7a
}

.program__listing-items .link-arrow {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .program__listing-items .link-arrow {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .program__listing-items .link-arrow {
        font-size: 2.5rem
    }
}

.program__listing-items .link-arrow {
    text-transform: none;
    letter-spacing: normal
}

.program__listing-items .link-arrow:after {
    font-size: 1.25rem;
    font-weight: 400
}

@media print,
screen and (min-width:48.0625em) {
    .program__listing-items .link-arrow {
        text-transform: none;
        letter-spacing: normal
    }

    .program__listing-items .link-arrow:after {
        font-size: 1.5rem;
        font-weight: 400
    }
}

@media print,
screen and (min-width:64.0625em) {
    .program__listing-items .link-arrow:after {
        position: relative;
        top: -3px
    }
}

.program__listing-items .description p {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .program__listing-items .description p {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .program__listing-items .description p {
        font-size: 1.375rem
    }
}

.program-listing-item {
    padding-top: 1rem
}

.program-listing-item {
    padding-bottom: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item {
        padding-top: 1.5rem
    }

    .program-listing-item {
        padding-bottom: 1.5rem
    }
}

.program-listing-item+.program-listing-item {
    margin-top: .5rem
}

.program-listing-item .departments__wrapper {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item .departments__wrapper {
        margin-top: 1.5rem
    }
}

.program-listing-item .departments__wrapper li {
    display: block
}

.program-listing-item .departments__wrapper li {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item .departments__wrapper li {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .program-listing-item .departments__wrapper li {
        font-size: 1.375rem
    }
}

.program-listing-item .departments__wrapper li {
    color: #262626
}

.program-listing-item .departments__wrapper li+li {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item .departments__wrapper li+li {
        margin-top: 1rem
    }
}

.program-listing-item .departments__wrapper a {
    font-family: aleo, serif;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item .departments__wrapper a {
        font-size: 1.25rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .program-listing-item .departments__wrapper a {
        font-size: 1.375rem
    }
}

.program-listing-item .departments__wrapper a {
    color: #262626;
    border-bottom: 2px solid #262626;
    text-decoration: none
}

.program-listing-item .departments__wrapper a:hover,
.program-listing-item .departments__wrapper a:focus-visible {
    border-bottom: none
}

.program-listing-item .program-types__wrapper {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item .program-types__wrapper {
        margin-top: 1rem
    }
}

.program-listing-item__column p {
    margin-top: 10px
}

.program-listing-item__column p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .program-listing-item__column p {
        font-size: 1.125rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item__column p {
        margin-top: 0
    }
}

.program-listing-item__column a {
    display: block
}

.program-listing-item__column a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

@media print,
screen and (min-width:64.0625em) {
    .program-listing-item__column a {
        font-size: 1.125rem
    }
}

.program-listing-item__column a {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item__column a {
        font-size: 1rem
    }
}

.program-listing-item__column a::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.program-listing-item__column a:hover,
.program-listing-item__column a:focus {
    color: #008755;
    border-color: #008755
}

.program-listing-item__column a:hover::after,
.program-listing-item__column a:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.program-listing-item__column a.btn {
    padding-right: 1.875rem
}

@media print,
screen and (min-width:48.0625em) {
    .program-listing-item__secondary-heading {
        display: none
    }
}

.listing--program-wrap .alpha-letter:not(:first-child) {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .listing--program-wrap .alpha-letter:not(:first-child) {
        margin-top: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .listing--program-wrap .alpha-letter:not(:first-child) {
        margin-top: 2.5rem
    }
}

.program-group--listing>div+div {
    margin-top: 16px
}

@media print,
screen and (min-width:64.0625em) {
    .program-group--listing>div+div {
        margin-top: 0
    }
}

@media print,
screen and (min-width:64.0625em) {
    .program-group--listing {
        display: flex;
        gap: 24px
    }

    .program-group--listing>div {
        flex: 1
    }
}

.program-group--listing h3 {
    font-family: aleo, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .program-group--listing h3 {
        font-size: 1.375rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .program-group--listing h3 {
        font-size: 1.5rem
    }
}

.program-group--listing p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.program-group--listing p {
    font-style: italic
}

.program-pathway-item+.program-pathway-item {
    margin-top: 8px
}

.program-pathway-item a {
    font-weight: 500;
    text-underline-offset: 2px;
    text-decoration-color: #008755
}

.program-pathway-item a:hover,
.program-pathway-item a:focus-visible {
    color: #008755;
    text-decoration: none
}

@media print,
screen and (min-width:64.0625em) {
    .program-pathway-item {
        text-align: right
    }
}

.promo-section {
    background-color: #008755
}

.promo-section {
    padding-top: 1.5rem
}

.promo-section {
    padding-bottom: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .promo-section {
        padding-top: 2.5rem
    }

    .promo-section {
        padding-bottom: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .promo-section {
        padding-top: 3rem
    }

    .promo-section {
        padding-bottom: 3rem
    }
}

.promo-section .grid-x {
    align-items: flex-end
}

.promo-section__content {
    color: #fff
}

.promo-section__content h2 {
    margin: 0
}

.promo-section__content h2 {
    font-family: aleo, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .promo-section__content h2 {
        font-size: 2rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .promo-section__content h2 {
        font-size: 2.5rem
    }
}

.promo-section__content p {
    margin: 0
}

.promo-section__content p {
    margin-top: 0.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .promo-section__content p {
        margin-top: 1rem
    }
}

.promo-section__content p a {
    color: #fff
}

.promo-section__content p a:hover,
.promo-section__content p a:focus-visible {
    color: #f7d66f;
    text-decoration: none
}

.promo-link {
    display: inline-block;
    margin-top: 16px
}

@media print,
screen and (min-width:48.0625em) {
    .promo-link {
        margin: 0;
        display: table;
        margin-left: auto
    }
}

.promo-link {
    color: #fff;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .promo-link {
        font-size: 1rem
    }
}

.promo-link::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #c99700;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.promo-link:hover,
.promo-link:focus {
    color: #c99700;
    border-color: #c99700
}

.promo-link:hover::after,
.promo-link:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.promo-link.btn {
    padding-right: 1.875rem
}

.promo-link::after,
.promo-link:not(.btn)::after {
    color: #c99700
}

.promo-link:hover::after,
.promo-link:hover:not(.btn)::after,
.promo-link:focus-visible::after,
.promo-link:focus-visible:not(.btn)::after {
    color: #c99700
}

.related-resources h2.section-heading__title {
    font-family: aleo, serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2
}

@media print,
screen and (min-width:48.0625em) {
    .related-resources h2.section-heading__title {
        font-size: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .related-resources h2.section-heading__title {
        font-size: 2.75rem
    }
}

.related-resources+.related-resources .section-heading .grid-container:first-child {
    padding-top: 0
}

.related-resources+.related-resources .section-heading .grid-container:first-child:before,
.related-resources+.related-resources .section-heading .grid-container:first-child:after {
    display: none
}

.related-resources:last-child {
    padding-bottom: 2.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .related-resources:last-child {
        padding-bottom: 3.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .related-resources:last-child {
        padding-bottom: 5rem
    }
}

.related-resources ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 20px
}

.related-resources ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.related-resources ul {
    margin-top: 1rem
}

@media print,
screen and (min-width:48.0625em) {
    .related-resources ul {
        margin-top: 1.5rem
    }
}

.related-resources ul {
    -moz-column-gap: 2rem;
    column-gap: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .related-resources ul {
        -moz-column-gap: 3rem;
        column-gap: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .related-resources ul {
        -moz-column-gap: 4rem;
        column-gap: 4rem
    }
}

@media print,
screen and (min-width:48.0625em) {
    .related-resources ul {
        flex-direction: row
    }
}

.related-resources li {
    width: 100%;
    border-bottom: 1px solid #c99700;
    padding-bottom: 10px
}

@media print,
screen and (min-width:48.0625em) {
    .related-resources li {
        width: calc(50% - 24px)
    }
}

@media print,
screen and (min-width:64.0625em) {
    .related-resources li {
        width: calc(33.33% - 42.666px)
    }
}

.related-resources a {
    color: #063d7a;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    transition: color 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), border 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

@media print,
screen and (min-width:48.0625em) {
    .related-resources a {
        font-size: 1rem
    }
}

.related-resources a::after {
    font-family: "Font Awesome 6 Pro";
    content: "";
    display: inline;
    padding-right: .25rem;
    margin-left: .5rem;
    color: #008755;
    transition: padding-right 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98), margin-left 150ms cubic-bezier(0.42, 0.08, 0.06, 0.98)
}

.related-resources a:hover,
.related-resources a:focus {
    color: #008755;
    border-color: #008755
}

.related-resources a:hover::after,
.related-resources a:focus::after {
    padding-right: 0;
    margin-left: .75rem
}

.related-resources a.btn {
    padding-right: 1.875rem
}

.related-resources a.external {
    position: relative
}

.related-resources a.external:after {
    font-family: "Font Awesome 6 Pro";
    margin-left: .5rem;
    content: "";
    font-weight: 400;
    font-size: 1rem
}

.related-resources a.external:hover,
.related-resources a.external:active,
.related-resources a.external:focus,
.related-resources a.external:focus-visible {
    border-bottom: 1px solid #008755
}

.related-resources a[href^="/documents"]:after,
.related-resources a[data-entity-type=media]:after,
.related-resources a[href$=".doc"]:after,
.related-resources a[href$=".docx"]:after,
.related-resources a[href$=".pdf"]:after,
.related-resources a[href$=".ppt"]:after,
.related-resources a[href$=".pptx"]:after,
.related-resources a[href$=".xls"]:after,
.related-resources a[href$=".xlsx"]:after,
.related-resources a[href$=".zip"]:after {
    font-family: "Font Awesome 6 Pro";
    margin-left: .5rem;
    content: "";
    font-weight: 400
}

.related-resources a[href^="/documents"]:after:hover,
.related-resources a[href^="/documents"]:after:active,
.related-resources a[href^="/documents"]:after:focus,
.related-resources a[href^="/documents"]:after:focus-visible,
.related-resources a[data-entity-type=media]:after:hover,
.related-resources a[data-entity-type=media]:after:active,
.related-resources a[data-entity-type=media]:after:focus,
.related-resources a[data-entity-type=media]:after:focus-visible,
.related-resources a[href$=".doc"]:after:hover,
.related-resources a[href$=".doc"]:after:active,
.related-resources a[href$=".doc"]:after:focus,
.related-resources a[href$=".doc"]:after:focus-visible,
.related-resources a[href$=".docx"]:after:hover,
.related-resources a[href$=".docx"]:after:active,
.related-resources a[href$=".docx"]:after:focus,
.related-resources a[href$=".docx"]:after:focus-visible,
.related-resources a[href$=".pdf"]:after:hover,
.related-resources a[href$=".pdf"]:after:active,
.related-resources a[href$=".pdf"]:after:focus,
.related-resources a[href$=".pdf"]:after:focus-visible,
.related-resources a[href$=".ppt"]:after:hover,
.related-resources a[href$=".ppt"]:after:active,
.related-resources a[href$=".ppt"]:after:focus,
.related-resources a[href$=".ppt"]:after:focus-visible,
.related-resources a[href$=".pptx"]:after:hover,
.related-resources a[href$=".pptx"]:after:active,
.related-resources a[href$=".pptx"]:after:focus,
.related-resources a[href$=".pptx"]:after:focus-visible,
.related-resources a[href$=".xls"]:after:hover,
.related-resources a[href$=".xls"]:after:active,
.related-resources a[href$=".xls"]:after:focus,
.related-resources a[href$=".xls"]:after:focus-visible,
.related-resources a[href$=".xlsx"]:after:hover,
.related-resources a[href$=".xlsx"]:after:active,
.related-resources a[href$=".xlsx"]:after:focus,
.related-resources a[href$=".xlsx"]:after:focus-visible,
.related-resources a[href$=".zip"]:after:hover,
.related-resources a[href$=".zip"]:after:active,
.related-resources a[href$=".zip"]:after:focus,
.related-resources a[href$=".zip"]:after:focus-visible {
    border-bottom: 1px solid #008755
}

.bg-white+.related-resources.bg-white>.grid-container>.section-heading>.grid-container::after {
    margin-right: 0 !important;
    margin-left: 0 !important
}

div.form_question .form_label,
div.form_question label {
    font-size: 1rem;
    margin-bottom: .25rem
}

div.form_question {
    margin: 0 0 1.5em 0
}

div.form_page input[type=text],
div.form_page input[type=email],
div.form_page input[type=tel] {
    padding: .5rem .625rem;
    background: #fff
}

div.form_page input[type=text]:focus-visible,
div.form_page input[type=email]:focus-visible,
div.form_page input[type=tel]:focus-visible {
    border-color: #000;
    border-width: 3px
}

.form_container .form_button_submit {
    border-radius: 40px
}

.stats-section {
    text-align: center
}

.stats-section h2:not(.stat-title) {
    color: #002855;
    margin-top: 0
}

.stats-section.bg-blue {
    background: #002855;
    color: #fff
}

.stats-section.bg-blue h2:not(.stat-title) {
    color: #c99700
}

.stats-section.bg-light-blue {
    background: #d4e8f6
}

.stats-section.bg-light-blue h2:not(.stat-title) {
    color: #002855
}

.stats-section .stats-section-stat {
    padding: 2rem 0
}

.stats-section .stats-section-stat h3,
.stats-section .stats-section-stat h2.stat-title {
    font-family: "franklin-gothic-atf", sans-serif;
    font-size: 3.4375rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: .75rem
}

.stats-section .stats-section-stat .stat-description {
    font-size: 1.125rem
}

.stats-section .stats-section-stat .stat-description>p:first-child {
    margin-top: 0
}

.stats-section .stats-section-stat .stat-source {
    font-style: italic;
    font-size: .875rem
}

.stats-section .stats-section-stat:not(:last-child) {
    border-bottom: 1px solid #c99700
}

.stats-section .stats-section-stat:nth-child(2) {
    padding: 0 0 2rem 0
}

.stats-section .stats-section-stat:last-child {
    padding: 2rem 0 0 0
}

@media print,
screen and (min-width:48.0625em) {
    .stats-section .stats-section-stat {
        padding: 0 3rem
    }

    .stats-section .stats-section-stat:nth-child(2) {
        padding: 0 3rem
    }

    .stats-section .stats-section-stat:last-child {
        border-right: none;
        padding: 0 3rem
    }

    .stats-section .stats-section-stat:not(:last-child) {
        border-bottom: none
    }

    .stats-section .stats-section-stat.large-3:nth-child(2n):not(:last-child),
    .stats-section .stats-section-stat.medium-4:nth-child(3n+2):not(:last-child),
    .stats-section .stats-section-stat.medium-4:nth-child(3n+3):not(:last-child) {
        border-right: 1px solid #c99700
    }

    .stats-section .stats-section-stat.medium-4:nth-child(n+5) {
        padding: 1.875rem 3rem 0 3rem
    }

    .stats-section .stats-section-stat h3,
    .stats-section .stats-section-stat h2.stat-title {
        font-size: 4.5rem;
        margin-bottom: 1.5rem
    }
}

@media(min-width:48.0625rem)and (max-width:63.9375rem) {
    .stats-section .stats-section-stat.large-3:nth-child(n+4) {
        padding: 1.875rem 3rem 0 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {

    .stats-section .stats-section-stat.large-3:nth-child(4n+2):not(:last-child),
    .stats-section .stats-section-stat.large-3:nth-child(4n+3):not(:last-child),
    .stats-section .stats-section-stat.large-3:nth-child(4n+4):not(:last-child) {
        border-right: 1px solid #c99700
    }

    .stats-section .stats-section-stat.large-3:nth-child(n+6) {
        padding: 1.875rem 3rem 0 3rem
    }
}

.webform--full .wysiwyg+form {
    margin-top: 2rem
}

@media print,
screen and (min-width:48.0625em) {
    .webform--full .wysiwyg+form {
        margin-top: 3rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .webform--full .wysiwyg+form {
        margin-top: 4rem
    }
}

.webform--full .form-item {
    margin-top: 0
}

.webform--full .form-item+.form-item {
    margin-top: 1.5rem
}

@media print,
screen and (min-width:48.0625em) {
    .webform--full .form-item+.form-item {
        margin-top: 2.5rem
    }
}

@media print,
screen and (min-width:64.0625em) {
    .webform--full .form-item+.form-item {
        margin-top: 3rem
    }
}

.print-only {
    display: none !important
}

@media print {
    @page {
        margin: 1cm
    }

    * {
        color: #000 !important;
        background: rgba(0, 0, 0, 0) !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
        display: inline-block
    }

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

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
        padding: .5rem 8px
    }

    thead {
        display: table-header-group
    }

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

    img {
        display: block;
        max-width: 100% !important
    }

    video {
        display: none;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        line-height: 0pt !important;
        white-space: nowrap
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-top: 0
    }

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

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

    .hide-on-print {
        display: none !important
    }

    .print-only {
        display: block !important
    }

    .hide-for-print {
        display: none !important
    }

    .show-for-print {
        display: inherit !important
    }
}