﻿.carousel {
    position: relative;
    box-sizing: border-box;
}

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

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

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

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

.carousel__track {
    display: flex;
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.has-dots {
    margin-bottom: calc(.5rem + 22px);
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + .5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none;
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: currentColor;
    opacity: .25;
    transition: opacity .15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1;
}

.carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    box-shadow: var(--carousel-button-shadow, none);
    transition: opacity .15s ease;
}

.carousel__button.is-prev,
.carousel__button.is-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel__button.is-prev {
    left: 10px;
}

.carousel__button.is-next {
    right: 10px;
}

.carousel__button[disabled] {
    cursor: default;
    opacity: .3;
}

.carousel__button svg {
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    filter: var(--carousel-button-svg-filter, none);
    pointer-events: none;
}

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

body.compensate-for-scrollbar {
    overflow: hidden !important;
    touch-action: none;
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color, #fff);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow: hidden;
    z-index: 1050;
    outline: none;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, .4));
}

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

.fancybox__container :focus {
    outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, .94));
}

@media all and (min-width: 1024px) {
    .fancybox__container {
        --carousel-button-width: 48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px;
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, .92));
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10;
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(.5rem + 22px);
}

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default;
}

.fancybox__track {
    display: flex;
    height: 100%;
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
}

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

@media all and (min-width: 1024px) {
    .fancybox__slide {
        padding: 64px 100px;
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
    padding: 36px;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: thin dotted;
    box-shadow: none;
}

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

.is-loading .fancybox__caption {
    visibility: hidden;
}

.fancybox__container>.carousel__dots {
    top: 100%;
    color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
    z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
    right: 8px;
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
        right: 40px;
    }
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px;
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-prev {
        left: 40px;
    }
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40;
}

@media all and (min-width: 1024px) {
    .carousel__button.is-close {
        right: 40px;
    }
}

.fancybox__content>.carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button {
    pointer-events: none;
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053;
}

.fancybox__spinner svg {
    animation: fancybox-rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: fancybox-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: currentColor;
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,
.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
    animation: .15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .carousel__button.is-close {
    animation: .15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
    animation: .15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
    animation: .1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
    animation: .2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
    animation: .15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
    animation: .15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
    animation: .15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(.97) translate3d(0, 16px, 0);
        opacity: 0;
    }

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

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
}

@keyframes fancybox-throwOutUp {
    to {
        transform: translate3d(0, -30%, 0);
        opacity: 0;
    }
}

@keyframes fancybox-throwOutDown {
    to {
        transform: translate3d(0, 30%, 0);
        opacity: 0;
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255, 255, 255, .1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, .2);
}

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

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

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out;
}

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

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

.fancybox__image {
    transform-origin: 0 0;
    user-select: none;
    transition: none;
}

.has-image .fancybox__content {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    min-height: 1px;
}

.is-closing .has-image .fancybox__content {
    overflow: visible;
}

.has-image[data-image-fit=contain] {
    overflow: visible;
    touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
    flex-direction: row;
    flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
    min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
    max-width: 100%;
    height: auto;
}

.has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
    width: 100%;
    height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
}

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

.fancybox__carousel .fancybox__slide.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 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0 3px;
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0;
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
    opacity: 0;
    transition: opacity .15s ease;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    opacity: .92;
}

.fancybox__thumbs .carousel__slide>* {
    pointer-events: none;
    user-select: none;
}

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255, 255, 255, .1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, .006) 8.1%, hsla(0deg, 0%, 0%, .021) 15.5%, hsla(0deg, 0%, 0%, .046) 22.5%, hsla(0deg, 0%, 0%, .077) 29%, hsla(0deg, 0%, 0%, .114) 35.3%, hsla(0deg, 0%, 0%, .155) 41.2%, hsla(0deg, 0%, 0%, .198) 47.1%, hsla(0deg, 0%, 0%, .242) 52.9%, hsla(0deg, 0%, 0%, .285) 58.8%, hsla(0deg, 0%, 0%, .326) 64.7%, hsla(0deg, 0%, 0%, .363) 71%, hsla(0deg, 0%, 0%, .394) 77.5%, hsla(0deg, 0%, 0%, .419) 84.5%, hsla(0deg, 0%, 0%, .434) 91.9%, hsla(0deg, 0%, 0%, .44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .4));
}

@media all and (min-width: 1024px) {
    .fancybox__toolbar {
        padding: 8px;
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0;
}

.fancybox__toolbar__items {
    display: flex;
}

.fancybox__toolbar__items--left {
    margin-right: auto;
}

.fancybox__toolbar__items--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
    margin-left: auto;
}

@media(max-width: 640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display: none;
    }
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
    background: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    user-select: none;
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
    display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
    display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block;
}

@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') format('woff');
    font-weight: 400;
    font-style: normal;
}

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

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

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

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

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

.swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

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

.swiper-container-pointer-events {
    touch-action: pan-y;
}

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

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

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

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

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

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

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}

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

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}

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

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
    --swiper-navigation-color: #fff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
    --swiper-navigation-color: #000;
}

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

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

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

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2;
}

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

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

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

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

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

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

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

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

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

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute;
}

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

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

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

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

.swiper-pagination-white {
    --swiper-pagination-color: #fff;
}

.swiper-pagination-black {
    --swiper-pagination-color: #000;
}

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

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

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}

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

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

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

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

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

.swiper-slide-zoomed {
    cursor: move;
}

.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%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

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

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

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

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

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

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

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

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

.swiper-container-cube {
    overflow: visible;
}

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

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

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

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

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

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

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

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

.swiper-container-flip {
    overflow: visible;
}

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

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

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

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

.global-spacing--4xlarge {
    margin-top: 4.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--4xlarge {
        margin-top: 6rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--4xlarge {
        margin-top: 7.5rem;
    }
}

.global-spacing--4xlarge-alt {
    margin-top: 4.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--4xlarge-alt {
        margin-top: 5.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--4xlarge-alt {
        margin-top: 6.25rem;
    }
}

.global-spacing--3xlarge {
    margin-top: 3rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--3xlarge {
        margin-top: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--3xlarge {
        margin-top: 5.5rem;
    }
}

.global-spacing--2xlarge {
    margin-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--2xlarge {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--2xlarge {
        margin-top: 5rem;
    }
}

.global-spacing--xlarge-alt {
    margin-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--xlarge-alt {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--xlarge-alt {
        margin-top: 4.5rem;
    }
}

.global-spacing--xlarge {
    margin-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--xlarge {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--xlarge {
        margin-top: 4rem;
    }
}

.global-spacing--large {
    margin-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--large {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--large {
        margin-top: 3.5rem;
    }
}

.global-spacing--default {
    margin-top: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--default {
        margin-top: 3rem;
    }
}

.global-spacing--medium {
    margin-top: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .global-spacing--medium {
        margin-top: 2.5rem;
    }
}

.global-spacing--small {
    margin-top: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--small {
        margin-top: 2rem;
    }
}

.global-spacing--xsmall {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-spacing--xsmall {
        margin-top: 1.5rem;
    }
}

.global-spacing--2xsmall {
    margin-top: 1rem;
}

.global-spacing--3xsmall {
    margin-top: .5rem;
}

.global-spacing--4xsmall {
    margin-top: 0;
}

.global-padding--4xlarge {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--4xlarge {
        padding-top: 6rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--4xlarge {
        padding-top: 7.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--4xlarge {
        padding-bottom: 6rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--4xlarge {
        padding-bottom: 7.5rem;
    }
}

.global-padding--4xlarge-alt {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--4xlarge-alt {
        padding-top: 5.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--4xlarge-alt {
        padding-top: 6.25rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--4xlarge-alt {
        padding-bottom: 5.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--4xlarge-alt {
        padding-bottom: 6.25rem;
    }
}

.global-padding--3xlarge {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--3xlarge {
        padding-top: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--3xlarge {
        padding-top: 5.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--3xlarge {
        padding-bottom: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--3xlarge {
        padding-bottom: 5.5rem;
    }
}

.global-padding--2xlarge {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--2xlarge {
        padding-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--2xlarge {
        padding-top: 5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--2xlarge {
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--2xlarge {
        padding-bottom: 5rem;
    }
}

.global-padding--xlarge-alt {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--xlarge-alt {
        padding-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--xlarge-alt {
        padding-top: 4.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--xlarge-alt {
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--xlarge-alt {
        padding-bottom: 4.5rem;
    }
}

.global-padding--xlarge {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--xlarge {
        padding-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--xlarge {
        padding-top: 4rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--xlarge {
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--xlarge {
        padding-bottom: 4rem;
    }
}

.global-padding--large {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--large {
        padding-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--large {
        padding-top: 3.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--large {
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--large {
        padding-bottom: 3.5rem;
    }
}

.global-padding--default {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--default {
        padding-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--default {
        padding-bottom: 3rem;
    }
}

.global-padding--medium {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--medium {
        padding-top: 2.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .global-padding--medium {
        padding-bottom: 2.5rem;
    }
}

.global-padding--small {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--small {
        padding-top: 2rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--small {
        padding-bottom: 2rem;
    }
}

.global-padding--xsmall {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--xsmall {
        padding-top: 1.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .global-padding--xsmall {
        padding-bottom: 1.5rem;
    }
}

.global-padding--2xsmall {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.global-padding--3xsmall {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.global-padding--4xsmall {
    padding-top: 0;
    padding-bottom: 0;
}

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

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

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

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

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

.grid-x {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

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

.cell.auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0px;
}

.cell.shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    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 {
    -ms-flex-preferred-size: auto;
    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 {
        -ms-flex-preferred-size: auto;
        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 {
        -ms-flex-preferred-size: auto;
        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 {
        -ms-flex-preferred-size: auto;
        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 {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
}

.grid-x>.initial-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0px;
    width: auto;
}

.grid-x>.initial-shrink,
.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 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .grid-x>.tiny-shrink,
    .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 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .grid-x>.medium-shrink,
    .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 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .grid-x>.large-shrink,
    .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 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .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: -.625rem;
    margin-right: -.625rem;
}

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

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

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

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

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

.grid-margin-x>.initial-1 {
    width: calc(8.33333% - 1.25rem);
}

.grid-margin-x>.initial-2 {
    width: calc(16.66667% - 1.25rem);
}

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

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

.grid-margin-x>.initial-5 {
    width: calc(41.66667% - 1.25rem);
}

.grid-margin-x>.initial-7 {
    width: calc(58.33333% - 1.25rem);
}

.grid-margin-x>.initial-8 {
    width: calc(66.66667% - 1.25rem);
}

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

.grid-margin-x>.initial-10 {
    width: calc(83.33333% - 1.25rem);
}

.grid-margin-x>.initial-11 {
    width: calc(91.66667% - 1.25rem);
}

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

@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.33333% - 1.25rem);
    }

    .grid-margin-x>.tiny-2 {
        width: calc(16.66667% - 1.25rem);
    }

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

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

    .grid-margin-x>.tiny-5 {
        width: calc(41.66667% - 1.25rem);
    }

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

    .grid-margin-x>.tiny-7 {
        width: calc(58.33333% - 1.25rem);
    }

    .grid-margin-x>.tiny-8 {
        width: calc(66.66667% - 1.25rem);
    }

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

    .grid-margin-x>.tiny-10 {
        width: calc(83.33333% - 1.25rem);
    }

    .grid-margin-x>.tiny-11 {
        width: calc(91.66667% - 1.25rem);
    }

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

@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.33333% - 1.25rem);
    }

    .grid-margin-x>.small-2 {
        width: calc(16.66667% - 1.25rem);
    }

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

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

    .grid-margin-x>.small-5 {
        width: calc(41.66667% - 1.25rem);
    }

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

    .grid-margin-x>.small-7 {
        width: calc(58.33333% - 1.25rem);
    }

    .grid-margin-x>.small-8 {
        width: calc(66.66667% - 1.25rem);
    }

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

    .grid-margin-x>.small-10 {
        width: calc(83.33333% - 1.25rem);
    }

    .grid-margin-x>.small-11 {
        width: calc(91.66667% - 1.25rem);
    }

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

@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.33333% - 1.875rem);
    }

    .grid-margin-x>.initial-2 {
        width: calc(16.66667% - 1.875rem);
    }

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

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

    .grid-margin-x>.initial-5 {
        width: calc(41.66667% - 1.875rem);
    }

    .grid-margin-x>.initial-7 {
        width: calc(58.33333% - 1.875rem);
    }

    .grid-margin-x>.initial-8 {
        width: calc(66.66667% - 1.875rem);
    }

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

    .grid-margin-x>.initial-10 {
        width: calc(83.33333% - 1.875rem);
    }

    .grid-margin-x>.initial-11 {
        width: calc(91.66667% - 1.875rem);
    }

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

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

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

    .grid-margin-x>.tiny-1 {
        width: calc(8.33333% - 1.875rem);
    }

    .grid-margin-x>.tiny-2 {
        width: calc(16.66667% - 1.875rem);
    }

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

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

    .grid-margin-x>.tiny-5 {
        width: calc(41.66667% - 1.875rem);
    }

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

    .grid-margin-x>.tiny-7 {
        width: calc(58.33333% - 1.875rem);
    }

    .grid-margin-x>.tiny-8 {
        width: calc(66.66667% - 1.875rem);
    }

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

    .grid-margin-x>.tiny-10 {
        width: calc(83.33333% - 1.875rem);
    }

    .grid-margin-x>.tiny-11 {
        width: calc(91.66667% - 1.875rem);
    }

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

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

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

    .grid-margin-x>.small-1 {
        width: calc(8.33333% - 1.875rem);
    }

    .grid-margin-x>.small-2 {
        width: calc(16.66667% - 1.875rem);
    }

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

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

    .grid-margin-x>.small-5 {
        width: calc(41.66667% - 1.875rem);
    }

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

    .grid-margin-x>.small-7 {
        width: calc(58.33333% - 1.875rem);
    }

    .grid-margin-x>.small-8 {
        width: calc(66.66667% - 1.875rem);
    }

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

    .grid-margin-x>.small-10 {
        width: calc(83.33333% - 1.875rem);
    }

    .grid-margin-x>.small-11 {
        width: calc(91.66667% - 1.875rem);
    }

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

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

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

    .grid-margin-x>.medium-1 {
        width: calc(8.33333% - 1.875rem);
    }

    .grid-margin-x>.medium-2 {
        width: calc(16.66667% - 1.875rem);
    }

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

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

    .grid-margin-x>.medium-5 {
        width: calc(41.66667% - 1.875rem);
    }

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

    .grid-margin-x>.medium-7 {
        width: calc(58.33333% - 1.875rem);
    }

    .grid-margin-x>.medium-8 {
        width: calc(66.66667% - 1.875rem);
    }

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

    .grid-margin-x>.medium-10 {
        width: calc(83.33333% - 1.875rem);
    }

    .grid-margin-x>.medium-11 {
        width: calc(91.66667% - 1.875rem);
    }

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

@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.33333% - 1.875rem);
    }

    .grid-margin-x>.large-2 {
        width: calc(16.66667% - 1.875rem);
    }

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

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

    .grid-margin-x>.large-5 {
        width: calc(41.66667% - 1.875rem);
    }

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

    .grid-margin-x>.large-7 {
        width: calc(58.33333% - 1.875rem);
    }

    .grid-margin-x>.large-8 {
        width: calc(66.66667% - 1.875rem);
    }

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

    .grid-margin-x>.large-10 {
        width: calc(83.33333% - 1.875rem);
    }

    .grid-margin-x>.large-11 {
        width: calc(91.66667% - 1.875rem);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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.33333%;
    }

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

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

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

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

    .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.33333%;
    }

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

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

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

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

    .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.33333%;
    }

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

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

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

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

    .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.33333%;
    }

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

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

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

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

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

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

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

.grid-margin-x.initial-up-3>.cell {
    width: calc(33.33333% - 1.25rem);
}

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

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

.grid-margin-x.initial-up-6>.cell {
    width: calc(16.66667% - 1.25rem);
}

.grid-margin-x.initial-up-7>.cell {
    width: calc(14.28571% - 1.25rem);
}

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

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

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

    .grid-margin-x.tiny-up-3>.cell {
        width: calc(33.33333% - 1.25rem);
    }

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

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

    .grid-margin-x.tiny-up-6>.cell {
        width: calc(16.66667% - 1.25rem);
    }

    .grid-margin-x.tiny-up-7>.cell {
        width: calc(14.28571% - 1.25rem);
    }

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

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

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

    .grid-margin-x.small-up-3>.cell {
        width: calc(33.33333% - 1.25rem);
    }

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

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

    .grid-margin-x.small-up-6>.cell {
        width: calc(16.66667% - 1.25rem);
    }

    .grid-margin-x.small-up-7>.cell {
        width: calc(14.28571% - 1.25rem);
    }

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

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

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

    .grid-margin-x.initial-up-3>.cell {
        width: calc(33.33333% - 1.875rem);
    }

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

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

    .grid-margin-x.initial-up-6>.cell {
        width: calc(16.66667% - 1.875rem);
    }

    .grid-margin-x.initial-up-7>.cell {
        width: calc(14.28571% - 1.875rem);
    }

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

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

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

    .grid-margin-x.medium-up-3>.cell {
        width: calc(33.33333% - 1.875rem);
    }

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

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

    .grid-margin-x.medium-up-6>.cell {
        width: calc(16.66667% - 1.875rem);
    }

    .grid-margin-x.medium-up-7>.cell {
        width: calc(14.28571% - 1.875rem);
    }

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

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

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

    .grid-margin-x.large-up-3>.cell {
        width: calc(33.33333% - 1.875rem);
    }

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

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

    .grid-margin-x.large-up-6>.cell {
        width: calc(16.66667% - 1.875rem);
    }

    .grid-margin-x.large-up-7>.cell {
        width: calc(14.28571% - 1.875rem);
    }

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

.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.33333%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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.33333%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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.33333%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .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.33333%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .medium-margin-collapse>.medium-2 {
        width: 16.66667%;
    }

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

    .medium-margin-collapse>.medium-4 {
        width: 33.33333%;
    }

    .medium-margin-collapse>.medium-5 {
        width: 41.66667%;
    }

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

    .medium-margin-collapse>.medium-7 {
        width: 58.33333%;
    }

    .medium-margin-collapse>.medium-8 {
        width: 66.66667%;
    }

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

    .medium-margin-collapse>.medium-10 {
        width: 83.33333%;
    }

    .medium-margin-collapse>.medium-11 {
        width: 91.66667%;
    }

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

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

    .medium-margin-collapse>.large-2 {
        width: 16.66667%;
    }

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

    .medium-margin-collapse>.large-4 {
        width: 33.33333%;
    }

    .medium-margin-collapse>.large-5 {
        width: 41.66667%;
    }

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

    .medium-margin-collapse>.large-7 {
        width: 58.33333%;
    }

    .medium-margin-collapse>.large-8 {
        width: 66.66667%;
    }

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

    .medium-margin-collapse>.large-10 {
        width: 83.33333%;
    }

    .medium-margin-collapse>.large-11 {
        width: 91.66667%;
    }

    .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.33333%;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .large-margin-collapse>.medium-2 {
        width: 16.66667%;
    }

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

    .large-margin-collapse>.medium-4 {
        width: 33.33333%;
    }

    .large-margin-collapse>.medium-5 {
        width: 41.66667%;
    }

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

    .large-margin-collapse>.medium-7 {
        width: 58.33333%;
    }

    .large-margin-collapse>.medium-8 {
        width: 66.66667%;
    }

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

    .large-margin-collapse>.medium-10 {
        width: 83.33333%;
    }

    .large-margin-collapse>.medium-11 {
        width: 91.66667%;
    }

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

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

    .large-margin-collapse>.large-2 {
        width: 16.66667%;
    }

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

    .large-margin-collapse>.large-4 {
        width: 33.33333%;
    }

    .large-margin-collapse>.large-5 {
        width: 41.66667%;
    }

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

    .large-margin-collapse>.large-7 {
        width: 58.33333%;
    }

    .large-margin-collapse>.large-8 {
        width: 66.66667%;
    }

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

    .large-margin-collapse>.large-10 {
        width: 83.33333%;
    }

    .large-margin-collapse>.large-11 {
        width: 91.66667%;
    }

    .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% + .625rem);
}

.initial-offset-1 {
    margin-left: 8.33333%;
}

.grid-margin-x>.initial-offset-1 {
    margin-left: calc(8.33333% + .625rem);
}

.initial-offset-2 {
    margin-left: 16.66667%;
}

.grid-margin-x>.initial-offset-2 {
    margin-left: calc(16.66667% + .625rem);
}

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

.grid-margin-x>.initial-offset-3 {
    margin-left: calc(25% + .625rem);
}

.initial-offset-4 {
    margin-left: 33.33333%;
}

.grid-margin-x>.initial-offset-4 {
    margin-left: calc(33.33333% + .625rem);
}

.initial-offset-5 {
    margin-left: 41.66667%;
}

.grid-margin-x>.initial-offset-5 {
    margin-left: calc(41.66667% + .625rem);
}

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

.grid-margin-x>.initial-offset-6 {
    margin-left: calc(50% + .625rem);
}

.initial-offset-7 {
    margin-left: 58.33333%;
}

.grid-margin-x>.initial-offset-7 {
    margin-left: calc(58.33333% + .625rem);
}

.initial-offset-8 {
    margin-left: 66.66667%;
}

.grid-margin-x>.initial-offset-8 {
    margin-left: calc(66.66667% + .625rem);
}

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

.grid-margin-x>.initial-offset-9 {
    margin-left: calc(75% + .625rem);
}

.initial-offset-10 {
    margin-left: 83.33333%;
}

.grid-margin-x>.initial-offset-10 {
    margin-left: calc(83.33333% + .625rem);
}

.initial-offset-11 {
    margin-left: 91.66667%;
}

.grid-margin-x>.initial-offset-11 {
    margin-left: calc(91.66667% + .625rem);
}

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

    .grid-margin-x>.tiny-offset-0 {
        margin-left: calc(0% + .625rem);
    }

    .tiny-offset-1 {
        margin-left: 8.33333%;
    }

    .grid-margin-x>.tiny-offset-1 {
        margin-left: calc(8.33333% + .625rem);
    }

    .tiny-offset-2 {
        margin-left: 16.66667%;
    }

    .grid-margin-x>.tiny-offset-2 {
        margin-left: calc(16.66667% + .625rem);
    }

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

    .grid-margin-x>.tiny-offset-3 {
        margin-left: calc(25% + .625rem);
    }

    .tiny-offset-4 {
        margin-left: 33.33333%;
    }

    .grid-margin-x>.tiny-offset-4 {
        margin-left: calc(33.33333% + .625rem);
    }

    .tiny-offset-5 {
        margin-left: 41.66667%;
    }

    .grid-margin-x>.tiny-offset-5 {
        margin-left: calc(41.66667% + .625rem);
    }

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

    .grid-margin-x>.tiny-offset-6 {
        margin-left: calc(50% + .625rem);
    }

    .tiny-offset-7 {
        margin-left: 58.33333%;
    }

    .grid-margin-x>.tiny-offset-7 {
        margin-left: calc(58.33333% + .625rem);
    }

    .tiny-offset-8 {
        margin-left: 66.66667%;
    }

    .grid-margin-x>.tiny-offset-8 {
        margin-left: calc(66.66667% + .625rem);
    }

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

    .grid-margin-x>.tiny-offset-9 {
        margin-left: calc(75% + .625rem);
    }

    .tiny-offset-10 {
        margin-left: 83.33333%;
    }

    .grid-margin-x>.tiny-offset-10 {
        margin-left: calc(83.33333% + .625rem);
    }

    .tiny-offset-11 {
        margin-left: 91.66667%;
    }

    .grid-margin-x>.tiny-offset-11 {
        margin-left: calc(91.66667% + .625rem);
    }
}

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

    .grid-margin-x>.small-offset-0 {
        margin-left: calc(0% + .625rem);
    }

    .small-offset-1 {
        margin-left: 8.33333%;
    }

    .grid-margin-x>.small-offset-1 {
        margin-left: calc(8.33333% + .625rem);
    }

    .small-offset-2 {
        margin-left: 16.66667%;
    }

    .grid-margin-x>.small-offset-2 {
        margin-left: calc(16.66667% + .625rem);
    }

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

    .grid-margin-x>.small-offset-3 {
        margin-left: calc(25% + .625rem);
    }

    .small-offset-4 {
        margin-left: 33.33333%;
    }

    .grid-margin-x>.small-offset-4 {
        margin-left: calc(33.33333% + .625rem);
    }

    .small-offset-5 {
        margin-left: 41.66667%;
    }

    .grid-margin-x>.small-offset-5 {
        margin-left: calc(41.66667% + .625rem);
    }

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

    .grid-margin-x>.small-offset-6 {
        margin-left: calc(50% + .625rem);
    }

    .small-offset-7 {
        margin-left: 58.33333%;
    }

    .grid-margin-x>.small-offset-7 {
        margin-left: calc(58.33333% + .625rem);
    }

    .small-offset-8 {
        margin-left: 66.66667%;
    }

    .grid-margin-x>.small-offset-8 {
        margin-left: calc(66.66667% + .625rem);
    }

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

    .grid-margin-x>.small-offset-9 {
        margin-left: calc(75% + .625rem);
    }

    .small-offset-10 {
        margin-left: 83.33333%;
    }

    .grid-margin-x>.small-offset-10 {
        margin-left: calc(83.33333% + .625rem);
    }

    .small-offset-11 {
        margin-left: 91.66667%;
    }

    .grid-margin-x>.small-offset-11 {
        margin-left: calc(91.66667% + .625rem);
    }
}

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

    .grid-margin-x>.medium-offset-0 {
        margin-left: calc(0% + .9375rem);
    }

    .medium-offset-1 {
        margin-left: 8.33333%;
    }

    .grid-margin-x>.medium-offset-1 {
        margin-left: calc(8.33333% + .9375rem);
    }

    .medium-offset-2 {
        margin-left: 16.66667%;
    }

    .grid-margin-x>.medium-offset-2 {
        margin-left: calc(16.66667% + .9375rem);
    }

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

    .grid-margin-x>.medium-offset-3 {
        margin-left: calc(25% + .9375rem);
    }

    .medium-offset-4 {
        margin-left: 33.33333%;
    }

    .grid-margin-x>.medium-offset-4 {
        margin-left: calc(33.33333% + .9375rem);
    }

    .medium-offset-5 {
        margin-left: 41.66667%;
    }

    .grid-margin-x>.medium-offset-5 {
        margin-left: calc(41.66667% + .9375rem);
    }

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

    .grid-margin-x>.medium-offset-6 {
        margin-left: calc(50% + .9375rem);
    }

    .medium-offset-7 {
        margin-left: 58.33333%;
    }

    .grid-margin-x>.medium-offset-7 {
        margin-left: calc(58.33333% + .9375rem);
    }

    .medium-offset-8 {
        margin-left: 66.66667%;
    }

    .grid-margin-x>.medium-offset-8 {
        margin-left: calc(66.66667% + .9375rem);
    }

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

    .grid-margin-x>.medium-offset-9 {
        margin-left: calc(75% + .9375rem);
    }

    .medium-offset-10 {
        margin-left: 83.33333%;
    }

    .grid-margin-x>.medium-offset-10 {
        margin-left: calc(83.33333% + .9375rem);
    }

    .medium-offset-11 {
        margin-left: 91.66667%;
    }

    .grid-margin-x>.medium-offset-11 {
        margin-left: calc(91.66667% + .9375rem);
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .large-offset-0 {
        margin-left: 0%;
    }

    .grid-margin-x>.large-offset-0 {
        margin-left: calc(0% + .9375rem);
    }

    .large-offset-1 {
        margin-left: 8.33333%;
    }

    .grid-margin-x>.large-offset-1 {
        margin-left: calc(8.33333% + .9375rem);
    }

    .large-offset-2 {
        margin-left: 16.66667%;
    }

    .grid-margin-x>.large-offset-2 {
        margin-left: calc(16.66667% + .9375rem);
    }

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

    .grid-margin-x>.large-offset-3 {
        margin-left: calc(25% + .9375rem);
    }

    .large-offset-4 {
        margin-left: 33.33333%;
    }

    .grid-margin-x>.large-offset-4 {
        margin-left: calc(33.33333% + .9375rem);
    }

    .large-offset-5 {
        margin-left: 41.66667%;
    }

    .grid-margin-x>.large-offset-5 {
        margin-left: calc(41.66667% + .9375rem);
    }

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

    .grid-margin-x>.large-offset-6 {
        margin-left: calc(50% + .9375rem);
    }

    .large-offset-7 {
        margin-left: 58.33333%;
    }

    .grid-margin-x>.large-offset-7 {
        margin-left: calc(58.33333% + .9375rem);
    }

    .large-offset-8 {
        margin-left: 66.66667%;
    }

    .grid-margin-x>.large-offset-8 {
        margin-left: calc(66.66667% + .9375rem);
    }

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

    .grid-margin-x>.large-offset-9 {
        margin-left: calc(75% + .9375rem);
    }

    .large-offset-10 {
        margin-left: 83.33333%;
    }

    .grid-margin-x>.large-offset-10 {
        margin-left: calc(83.33333% + .9375rem);
    }

    .large-offset-11 {
        margin-left: 91.66667%;
    }

    .grid-margin-x>.large-offset-11 {
        margin-left: calc(91.66667% + .9375rem);
    }
}

.grid-y {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
}

.grid-y>.cell {
    width: auto;
    max-width: 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 {
    -ms-flex-preferred-size: auto;
    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 {
        -ms-flex-preferred-size: auto;
        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 {
        -ms-flex-preferred-size: auto;
        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 {
        -ms-flex-preferred-size: auto;
        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 {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
}

.grid-y>.initial-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0px;
    height: auto;
}

.grid-y>.initial-shrink,
.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 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.grid-y>.initial-shrink {
    height: auto;
}

.grid-y>.initial-1 {
    height: 8.33333%;
}

.grid-y>.initial-2 {
    height: 16.66667%;
}

.grid-y>.initial-3 {
    height: 25%;
}

.grid-y>.initial-4 {
    height: 33.33333%;
}

.grid-y>.initial-5 {
    height: 41.66667%;
}

.grid-y>.initial-6 {
    height: 50%;
}

.grid-y>.initial-7 {
    height: 58.33333%;
}

.grid-y>.initial-8 {
    height: 66.66667%;
}

.grid-y>.initial-9 {
    height: 75%;
}

.grid-y>.initial-10 {
    height: 83.33333%;
}

.grid-y>.initial-11 {
    height: 91.66667%;
}

.grid-y>.initial-12 {
    height: 100%;
}

@media print,
screen and (min-width: 20.0625em) {
    .grid-y>.tiny-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0;
        flex: 1 1 0px;
        height: auto;
    }

    .grid-y>.tiny-shrink,
    .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 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .grid-y>.tiny-shrink {
        height: auto;
    }

    .grid-y>.tiny-1 {
        height: 8.33333%;
    }

    .grid-y>.tiny-2 {
        height: 16.66667%;
    }

    .grid-y>.tiny-3 {
        height: 25%;
    }

    .grid-y>.tiny-4 {
        height: 33.33333%;
    }

    .grid-y>.tiny-5 {
        height: 41.66667%;
    }

    .grid-y>.tiny-6 {
        height: 50%;
    }

    .grid-y>.tiny-7 {
        height: 58.33333%;
    }

    .grid-y>.tiny-8 {
        height: 66.66667%;
    }

    .grid-y>.tiny-9 {
        height: 75%;
    }

    .grid-y>.tiny-10 {
        height: 83.33333%;
    }

    .grid-y>.tiny-11 {
        height: 91.66667%;
    }

    .grid-y>.tiny-12 {
        height: 100%;
    }
}

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

    .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 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .grid-y>.small-1 {
        height: 8.33333%;
    }

    .grid-y>.small-2 {
        height: 16.66667%;
    }

    .grid-y>.small-3 {
        height: 25%;
    }

    .grid-y>.small-4 {
        height: 33.33333%;
    }

    .grid-y>.small-5 {
        height: 41.66667%;
    }

    .grid-y>.small-6 {
        height: 50%;
    }

    .grid-y>.small-7 {
        height: 58.33333%;
    }

    .grid-y>.small-8 {
        height: 66.66667%;
    }

    .grid-y>.small-9 {
        height: 75%;
    }

    .grid-y>.small-10 {
        height: 83.33333%;
    }

    .grid-y>.small-11 {
        height: 91.66667%;
    }

    .grid-y>.small-12 {
        height: 100%;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .grid-y>.medium-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0;
        flex: 1 1 0px;
        height: auto;
    }

    .grid-y>.medium-shrink,
    .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 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .grid-y>.medium-shrink {
        height: auto;
    }

    .grid-y>.medium-1 {
        height: 8.33333%;
    }

    .grid-y>.medium-2 {
        height: 16.66667%;
    }

    .grid-y>.medium-3 {
        height: 25%;
    }

    .grid-y>.medium-4 {
        height: 33.33333%;
    }

    .grid-y>.medium-5 {
        height: 41.66667%;
    }

    .grid-y>.medium-6 {
        height: 50%;
    }

    .grid-y>.medium-7 {
        height: 58.33333%;
    }

    .grid-y>.medium-8 {
        height: 66.66667%;
    }

    .grid-y>.medium-9 {
        height: 75%;
    }

    .grid-y>.medium-10 {
        height: 83.33333%;
    }

    .grid-y>.medium-11 {
        height: 91.66667%;
    }

    .grid-y>.medium-12 {
        height: 100%;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .grid-y>.large-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 0;
        flex: 1 1 0px;
        height: auto;
    }

    .grid-y>.large-shrink,
    .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 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .grid-y>.large-shrink {
        height: auto;
    }

    .grid-y>.large-1 {
        height: 8.33333%;
    }

    .grid-y>.large-2 {
        height: 16.66667%;
    }

    .grid-y>.large-3 {
        height: 25%;
    }

    .grid-y>.large-4 {
        height: 33.33333%;
    }

    .grid-y>.large-5 {
        height: 41.66667%;
    }

    .grid-y>.large-6 {
        height: 50%;
    }

    .grid-y>.large-7 {
        height: 58.33333%;
    }

    .grid-y>.large-8 {
        height: 66.66667%;
    }

    .grid-y>.large-9 {
        height: 75%;
    }

    .grid-y>.large-10 {
        height: 83.33333%;
    }

    .grid-y>.large-11 {
        height: 91.66667%;
    }

    .grid-y>.large-12 {
        height: 100%;
    }
}

.grid-padding-y .grid-padding-y {
    margin-top: -.625rem;
    margin-bottom: -.625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .grid-padding-y .grid-padding-y {
        margin-top: -.9375rem;
        margin-bottom: -.9375rem;
    }
}

.grid-padding-y>.cell {
    padding-top: .625rem;
    padding-bottom: .625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .grid-padding-y>.cell {
        padding-top: .9375rem;
        padding-bottom: .9375rem;
    }
}

.grid-margin-y {
    margin-top: -.625rem;
    margin-bottom: -.625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .grid-margin-y {
        margin-top: -.9375rem;
        margin-bottom: -.9375rem;
    }
}

.grid-margin-y>.cell {
    height: calc(100% - 1.25rem);
    margin-top: .625rem;
    margin-bottom: .625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .grid-margin-y>.cell {
        height: calc(100% - 1.875rem);
        margin-top: .9375rem;
        margin-bottom: .9375rem;
    }
}

.grid-margin-y>.auto {
    height: auto;
}

.grid-margin-y>.shrink {
    height: auto;
}

.grid-margin-y>.initial-1 {
    height: calc(8.33333% - 1.25rem);
}

.grid-margin-y>.initial-2 {
    height: calc(16.66667% - 1.25rem);
}

.grid-margin-y>.initial-3 {
    height: calc(25% - 1.25rem);
}

.grid-margin-y>.initial-4 {
    height: calc(33.33333% - 1.25rem);
}

.grid-margin-y>.initial-5 {
    height: calc(41.66667% - 1.25rem);
}

.grid-margin-y>.initial-6 {
    height: calc(50% - 1.25rem);
}

.grid-margin-y>.initial-7 {
    height: calc(58.33333% - 1.25rem);
}

.grid-margin-y>.initial-8 {
    height: calc(66.66667% - 1.25rem);
}

.grid-margin-y>.initial-9 {
    height: calc(75% - 1.25rem);
}

.grid-margin-y>.initial-10 {
    height: calc(83.33333% - 1.25rem);
}

.grid-margin-y>.initial-11 {
    height: calc(91.66667% - 1.25rem);
}

.grid-margin-y>.initial-12 {
    height: calc(100% - 1.25rem);
}

@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.33333% - 1.25rem);
    }

    .grid-margin-y>.tiny-2 {
        height: calc(16.66667% - 1.25rem);
    }

    .grid-margin-y>.tiny-3 {
        height: calc(25% - 1.25rem);
    }

    .grid-margin-y>.tiny-4 {
        height: calc(33.33333% - 1.25rem);
    }

    .grid-margin-y>.tiny-5 {
        height: calc(41.66667% - 1.25rem);
    }

    .grid-margin-y>.tiny-6 {
        height: calc(50% - 1.25rem);
    }

    .grid-margin-y>.tiny-7 {
        height: calc(58.33333% - 1.25rem);
    }

    .grid-margin-y>.tiny-8 {
        height: calc(66.66667% - 1.25rem);
    }

    .grid-margin-y>.tiny-9 {
        height: calc(75% - 1.25rem);
    }

    .grid-margin-y>.tiny-10 {
        height: calc(83.33333% - 1.25rem);
    }

    .grid-margin-y>.tiny-11 {
        height: calc(91.66667% - 1.25rem);
    }

    .grid-margin-y>.tiny-12 {
        height: calc(100% - 1.25rem);
    }
}

@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.33333% - 1.25rem);
    }

    .grid-margin-y>.small-2 {
        height: calc(16.66667% - 1.25rem);
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 1.25rem);
    }

    .grid-margin-y>.small-4 {
        height: calc(33.33333% - 1.25rem);
    }

    .grid-margin-y>.small-5 {
        height: calc(41.66667% - 1.25rem);
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 1.25rem);
    }

    .grid-margin-y>.small-7 {
        height: calc(58.33333% - 1.25rem);
    }

    .grid-margin-y>.small-8 {
        height: calc(66.66667% - 1.25rem);
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 1.25rem);
    }

    .grid-margin-y>.small-10 {
        height: calc(83.33333% - 1.25rem);
    }

    .grid-margin-y>.small-11 {
        height: calc(91.66667% - 1.25rem);
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 1.25rem);
    }
}

@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.33333% - 1.875rem);
    }

    .grid-margin-y>.initial-2 {
        height: calc(16.66667% - 1.875rem);
    }

    .grid-margin-y>.initial-3 {
        height: calc(25% - 1.875rem);
    }

    .grid-margin-y>.initial-4 {
        height: calc(33.33333% - 1.875rem);
    }

    .grid-margin-y>.initial-5 {
        height: calc(41.66667% - 1.875rem);
    }

    .grid-margin-y>.initial-6 {
        height: calc(50% - 1.875rem);
    }

    .grid-margin-y>.initial-7 {
        height: calc(58.33333% - 1.875rem);
    }

    .grid-margin-y>.initial-8 {
        height: calc(66.66667% - 1.875rem);
    }

    .grid-margin-y>.initial-9 {
        height: calc(75% - 1.875rem);
    }

    .grid-margin-y>.initial-10 {
        height: calc(83.33333% - 1.875rem);
    }

    .grid-margin-y>.initial-11 {
        height: calc(91.66667% - 1.875rem);
    }

    .grid-margin-y>.initial-12 {
        height: calc(100% - 1.875rem);
    }

    .grid-margin-y>.tiny-auto {
        height: auto;
    }

    .grid-margin-y>.tiny-shrink {
        height: auto;
    }

    .grid-margin-y>.tiny-1 {
        height: calc(8.33333% - 1.875rem);
    }

    .grid-margin-y>.tiny-2 {
        height: calc(16.66667% - 1.875rem);
    }

    .grid-margin-y>.tiny-3 {
        height: calc(25% - 1.875rem);
    }

    .grid-margin-y>.tiny-4 {
        height: calc(33.33333% - 1.875rem);
    }

    .grid-margin-y>.tiny-5 {
        height: calc(41.66667% - 1.875rem);
    }

    .grid-margin-y>.tiny-6 {
        height: calc(50% - 1.875rem);
    }

    .grid-margin-y>.tiny-7 {
        height: calc(58.33333% - 1.875rem);
    }

    .grid-margin-y>.tiny-8 {
        height: calc(66.66667% - 1.875rem);
    }

    .grid-margin-y>.tiny-9 {
        height: calc(75% - 1.875rem);
    }

    .grid-margin-y>.tiny-10 {
        height: calc(83.33333% - 1.875rem);
    }

    .grid-margin-y>.tiny-11 {
        height: calc(91.66667% - 1.875rem);
    }

    .grid-margin-y>.tiny-12 {
        height: calc(100% - 1.875rem);
    }

    .grid-margin-y>.small-auto {
        height: auto;
    }

    .grid-margin-y>.small-shrink {
        height: auto;
    }

    .grid-margin-y>.small-1 {
        height: calc(8.33333% - 1.875rem);
    }

    .grid-margin-y>.small-2 {
        height: calc(16.66667% - 1.875rem);
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 1.875rem);
    }

    .grid-margin-y>.small-4 {
        height: calc(33.33333% - 1.875rem);
    }

    .grid-margin-y>.small-5 {
        height: calc(41.66667% - 1.875rem);
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 1.875rem);
    }

    .grid-margin-y>.small-7 {
        height: calc(58.33333% - 1.875rem);
    }

    .grid-margin-y>.small-8 {
        height: calc(66.66667% - 1.875rem);
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 1.875rem);
    }

    .grid-margin-y>.small-10 {
        height: calc(83.33333% - 1.875rem);
    }

    .grid-margin-y>.small-11 {
        height: calc(91.66667% - 1.875rem);
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 1.875rem);
    }

    .grid-margin-y>.medium-auto {
        height: auto;
    }

    .grid-margin-y>.medium-shrink {
        height: auto;
    }

    .grid-margin-y>.medium-1 {
        height: calc(8.33333% - 1.875rem);
    }

    .grid-margin-y>.medium-2 {
        height: calc(16.66667% - 1.875rem);
    }

    .grid-margin-y>.medium-3 {
        height: calc(25% - 1.875rem);
    }

    .grid-margin-y>.medium-4 {
        height: calc(33.33333% - 1.875rem);
    }

    .grid-margin-y>.medium-5 {
        height: calc(41.66667% - 1.875rem);
    }

    .grid-margin-y>.medium-6 {
        height: calc(50% - 1.875rem);
    }

    .grid-margin-y>.medium-7 {
        height: calc(58.33333% - 1.875rem);
    }

    .grid-margin-y>.medium-8 {
        height: calc(66.66667% - 1.875rem);
    }

    .grid-margin-y>.medium-9 {
        height: calc(75% - 1.875rem);
    }

    .grid-margin-y>.medium-10 {
        height: calc(83.33333% - 1.875rem);
    }

    .grid-margin-y>.medium-11 {
        height: calc(91.66667% - 1.875rem);
    }

    .grid-margin-y>.medium-12 {
        height: calc(100% - 1.875rem);
    }
}

@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.33333% - 1.875rem);
    }

    .grid-margin-y>.large-2 {
        height: calc(16.66667% - 1.875rem);
    }

    .grid-margin-y>.large-3 {
        height: calc(25% - 1.875rem);
    }

    .grid-margin-y>.large-4 {
        height: calc(33.33333% - 1.875rem);
    }

    .grid-margin-y>.large-5 {
        height: calc(41.66667% - 1.875rem);
    }

    .grid-margin-y>.large-6 {
        height: calc(50% - 1.875rem);
    }

    .grid-margin-y>.large-7 {
        height: calc(58.33333% - 1.875rem);
    }

    .grid-margin-y>.large-8 {
        height: calc(66.66667% - 1.875rem);
    }

    .grid-margin-y>.large-9 {
        height: calc(75% - 1.875rem);
    }

    .grid-margin-y>.large-10 {
        height: calc(83.33333% - 1.875rem);
    }

    .grid-margin-y>.large-11 {
        height: calc(91.66667% - 1.875rem);
    }

    .grid-margin-y>.large-12 {
        height: calc(100% - 1.875rem);
    }
}

.align-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.align-right {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.align-justify {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-spaced {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-left.vertical.menu>li>a {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.align-right.vertical.menu>li>a {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-center.vertical.menu>li>a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

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

.align-self-top {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-self-bottom {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

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

.align-self-middle {
    -ms-flex-item-align: center;
    align-self: center;
}

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

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.align-center-middle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
}

.initial-order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.initial-order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.initial-order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.initial-order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}

.initial-order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}

.initial-order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}

@media print,
screen and (min-width: 20.0625em) {
    .tiny-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .tiny-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .tiny-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .tiny-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .tiny-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .tiny-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}

@media print,
screen and (min-width: 40.0625em) {
    .small-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .small-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .small-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .small-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .small-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .small-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .medium-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .medium-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .medium-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .medium-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .medium-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .medium-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .large-order-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .large-order-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .large-order-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .large-order-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .large-order-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }

    .large-order-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
}

.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-child-auto {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.flex-child-grow {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.flex-child-shrink {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

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

.flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

@media print,
screen and (min-width: 20.0625em) {
    .tiny-flex-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .tiny-flex-child-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .tiny-flex-child-grow {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    .tiny-flex-child-shrink {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }

    .tiny-flex-dir-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .tiny-flex-dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .tiny-flex-dir-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .tiny-flex-dir-column-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media print,
screen and (min-width: 40.0625em) {
    .small-flex-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .small-flex-child-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .small-flex-child-grow {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    .small-flex-child-shrink {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }

    .small-flex-dir-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .small-flex-dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .small-flex-dir-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .small-flex-dir-column-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .medium-flex-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .medium-flex-child-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .medium-flex-child-grow {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    .medium-flex-child-shrink {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }

    .medium-flex-dir-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .medium-flex-dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .medium-flex-dir-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .medium-flex-dir-column-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .large-flex-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .large-flex-child-auto {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

    .large-flex-child-grow {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    }

    .large-flex-child-shrink {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    }

    .large-flex-dir-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .large-flex-dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .large-flex-dir-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .large-flex-dir-column-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

: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;
}

@supports(--css: variables) {
    .aspect-ratio-frame:before {
        padding-bottom: calc(var(--aspect-ratio) * 100%);
        content: '';
    }
}

.aspect-ratio-frame .is-b-loading:not(.is-b-loaded) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@font-face {
    font-family: galaxie-copernicus-book;
    src: url(/themes/custom/centre_college/assets/fonts/copernicus/Copernicus-Book.otf) format("opentype");
    src: url(/themes/custom/centre_college/assets/fonts/copernicus/Copernicus-Book.ttf) format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: galaxie-copernicus-book-italic;
    src: url(/themes/custom/centre_college/assets/fonts/copernicus/Copernicus-BookItalic.otf) format("opentype");
    src: url(/themes/custom/centre_college/assets/fonts/copernicus/Copernicus-BookItalic.ttf) format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: galaxie-copernicus-bold;
    src: url(/themes/custom/centre_college/assets/fonts/copernicus/Copernicus-Bold.otf) format("opentype");
    src: url(/themes/custom/centre_college/assets/fonts/copernicus/Copernicus-Bold.ttf) format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: galaxie-copernicus-bold-italic;
    src: url(/themes/custom/centre_college/assets/fonts/copernicus/Copernicus-BoldItalic.otf) format("opentype");
    src: url(/themes/custom/centre_college/assets/fonts/copernicus/Copernicus-BoldItalic.ttf) format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: kapra-neue-semibold;
    src: url(/themes/custom/centre_college/assets/fonts/kapra-neue/Typoforge-Studio--Kapra-Neue-SemiBold.otf) format("opentype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: kapra-neue-semibold-expanded;
    src: url(/themes/custom/centre_college/assets/fonts/kapra-neue/Typoforge-Studio--Kapra-Neue-SemiBold-Expanded.otf) format("opentype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: kapra-neue-semibold-expanded-italic;
    src: url(/themes/custom/centre_college/assets/fonts/kapra-neue/Typoforge-Studio--Kapra-Neue-SemiBold-Expanded-Italic.otf) format("opentype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: kapra-neue-regular-expanded;
    src: url(/themes/custom/centre_college/assets/fonts/kapra-neue/Typoforge-Studio--Kapra-Neue-Regular-Expanded.otf) format("opentype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: kapra-neue-regular-expanded-italic;
    src: url(/themes/custom/centre_college/assets/fonts/kapra-neue/Typoforge-Studio--Kapra-Neue-Regular-Expanded-Italic.otf) format("opentype");
    font-style: normal;
    font-weight: normal;
}

:root {
    font-size: 16px;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: #000;
    font-family: galaxie-copernicus-book, serif;
    font-size: 16px;
}

main {
    display: block;
}

.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: kapra-neue-regular-expanded, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

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

iframe {
    max-width: 100%;
}

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

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

.clearfix::before,
.clearfix::after {
    display: table;
    content: ' ';
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.clearfix::after {
    clear: both;
}

.show-for-sr,
.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
}

[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 {
    -webkit-transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    font-weight: normal;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    border-width: 2px;
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    padding: .5625rem 1.3125rem .5rem;
    border-radius: 3px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    border-width: .0625em;
    border-style: solid;
    border-color: inherit;
    border-radius: 0;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1rem;
}

[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;
}

[type='text']::before,
[type='password']::before,
[type='date']::before,
[type='datetime']::before,
[type='datetime-local']::before,
[type='month']::before,
[type='week']::before,
[type='email']::before,
[type='number']::before,
[type='search']::before,
[type='tel']::before,
[type='time']::before,
[type='url']::before,
[type='color']::before,
[type='file']::before,
[type='image']::before,
[type='submit']::before,
button::before,
textarea::before,
select::before,
fieldset::before {
    border-radius: 3px;
}

select {
    border-color: #c6c6c6;
    color: #000;
    text-transform: none;
    background: #fff;
    padding: .75rem;
    border-radius: 4px;
    text-align: left;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    background-image: url(../image/evenod.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - .625em) 50%;
    background-size: 1em;
}

select:hover,
select:focus {
    border-color: #69d3f9;
}

fieldset {
    border-color: #c6c6c6;
    color: #000;
    text-transform: none;
    background: #fff;
    padding: .75rem;
    border-radius: 4px;
    text-align: left;
    margin: 0;
    border-width: .0625em;
    border-style: solid;
    border-color: inherit;
}

fieldset:hover,
fieldset:focus {
    border-color: #69d3f9;
}

button,
[type='submit'] {
    -webkit-transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    font-weight: normal;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    border-width: 2px;
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    color: #000;
    background-color: #ffcd00;
    border: 2px solid transparent;
    margin: 0;
    background-color: #115e6b;
    text-transform: uppercase;
    cursor: pointer;
    padding: .5625rem 1rem;
    color: #fff;
    border: 0;
    border-radius: 2px;
    font-size: .875rem;
}

button:hover,
button:focus,
[type='submit']:hover,
[type='submit']:focus {
    text-decoration: none;
    outline: none;
}

button:disabled,
[type='submit']:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6;
}

button::before,
[type='submit']::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    pointer-events: none;
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
    transition: -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
    transition: transform .5s cubic-bezier(.82, .06, .14, .97);
    transition: transform .5s cubic-bezier(.82, .06, .14, .97), -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
}

button:hover,
[type='submit']:hover {
    color: #000;
    background-color: #ffcd00;
    border: 2px solid transparent;
}

button:hover::before,
[type='submit']:hover::before {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
    border: 2px solid #ffcd00;
}

button:focus,
[type='submit']:focus {
    color: #000;
    background-color: #ffcd00;
    border: 2px solid #000;
}

button:hover,
button:focus,
[type='submit']:hover,
[type='submit']:focus {
    background-color: #000;
    color: #fff;
    border: none;
}

.webform-button--submit::before {
    display: none;
}

label {
    display: block;
    color: #000;
    font-family: kapra-neue-semibold, sans-serif;
    font-size: 1.125rem;
    padding-bottom: .3125rem;
}

@media screen and (max-width: 48.06125em) {
    label {
        font-size: 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 {
    border-color: #c6c6c6;
    color: #000;
    text-transform: none;
    background: #fff;
    padding: .75rem;
    border-radius: 4px;
    text-align: left;
    margin: 0;
    height: 38px;
    padding: .5rem .875rem;
}

[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,
textarea:hover,
textarea:focus {
    border-color: #69d3f9;
}

@media 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'],
    textarea {
        font-size: 1.125rem;
    }
}

[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: #000;
    font-family: kapra-neue-regular-expanded, 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: #000;
    font-family: kapra-neue-regular-expanded, 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: #000;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

[type='checkbox'],
[type='radio'] {
    margin: 0;
    cursor: pointer;
}

[type='checkbox']+label,
[type='radio']+label {
    display: inline-block;
    margin: 1em 0 1em .25em;
    cursor: pointer;
    vertical-align: middle;
    color: #000;
}

[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'],
select,
textarea {
    height: 38px;
    padding: .5rem .875rem;
}

[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: #f2f5f7;
}

@media 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'],
    select,
    textarea {
        font-size: 1.125rem;
    }
}

[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: #d0021b;
    -webkit-box-shadow: 0 0 0 .0625em #d0021b;
    box-shadow: 0 0 0 .0625em #d0021b;
}

.listing__form fieldset {
    background-color: #f2f5f7;
    line-height: 26px;
    padding-left: 0;
    width: 100%;
    border: none;
}

@media screen and (min-width: 64.0625em) {
    .listing__form fieldset {
        padding-right: 3.125rem;
        padding-bottom: 0;
    }
}

.listing__form fieldset .fieldset-wrapper .form-item,
.listing__form fieldset .fieldset-wrapper .form-actions {
    margin-left: 0;
}

.listing__form fieldset .fieldset-wrapper .form-item,
.listing__form fieldset .fieldset-wrapper .form-item-letter {
    width: auto;
}

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

    .listing__form fieldset .fieldset-wrapper .form-item,
    .listing__form fieldset .fieldset-wrapper .form-item-letter {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
}

.listing__form fieldset .fieldset-wrapper .form-item label,
.listing__form fieldset .fieldset-wrapper .form-item-letter label {
    margin-left: 0;
    color: #014a85;
    border: 1px solid transparent;
}

.listing__form fieldset .fieldset-wrapper .form-item label:focus,
.listing__form fieldset .fieldset-wrapper .form-item label:hover,
.listing__form fieldset .fieldset-wrapper .form-item-letter label:focus,
.listing__form fieldset .fieldset-wrapper .form-item-letter label:hover {
    background-color: transparent;
    border: 1px solid #6f7c87;
    border-radius: 50%;
}

.listing__rows--grouped .h2 {
    margin-right: 2rem;
    text-transform: uppercase;
    background-color: #fcf7ae;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 4rem;
    line-height: 4.2rem;
    width: 4rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: kapra-neue-regular-expanded, sans-serif;
    border-radius: 50%;
}

@media print,
screen and (min-width: 64.0625em) {
    .listing__rows--grouped .h2 {
        margin-right: 3rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .listing__rows--grouped .h2 {
        height: 2.5rem;
        line-height: 2.8rem;
        width: 2.5rem;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .listing__rows--grouped .h2 {
        margin-top: 2rem;
    }
}

.listing__rows--grouped p {
    font-size: 1.25rem;
}

.listing__rows--grouped li {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

@media screen and (max-width: 48.06125em) {
    .listing__rows--grouped li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .listing__rows--grouped li .program-listing-item__grid {
        margin-left: .5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.listing__rows--grouped .program-listing-item__column--degree {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.listing__rows--grouped .program-listing-item__column--degree p:last-child {
    padding-left: 3rem;
}

@media screen and (max-width: 48.06125em) {
    .listing__rows--grouped .program-listing-item__column--degree {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .listing__rows--grouped .program-listing-item__column--degree .eyebrow-large {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    .listing__rows--grouped .program-listing-item__column--degree p:last-child {
        padding-left: 0;
    }

    .listing__rows--grouped .program-listing-item__column--degree p {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 48.06125em) {
    .listing__rows--grouped {
        padding: 0;
        margin-top: .5rem;
    }

    .listing__rows--grouped .program-listing-item {
        padding-bottom: .5rem;
    }
}

@media screen and (min-width: 48.0625em) {
    .detail__sidebar {
        margin-left: 2rem;
    }
}

@media screen and (min-width: 48.0625em) and (min-width: 64.0625em) {
    .detail__sidebar {
        margin-left: 2.5rem;
    }
}

.detail__sidebar .lower-list-links>h3 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
}

@media print,
screen and (min-width: 64.0625em) {
    .detail__sidebar .lower-list-links>h3 {
        font-size: .875rem;
    }
}

.detail__sidebar .eyebrow {
    overflow: hidden;
}

.detail__sidebar .eyebrow::after {
    padding-left: .2rem;
}

.detail__sidebar .sidebar__subtitle {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: kapra-neue-semibold, sans-serif;
    margin: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .detail__sidebar .sidebar__subtitle {
        font-size: 1.125rem;
    }
}

.detail__sidebar .h5 {
    margin-top: 1rem;
}

.detail__sidebar p {
    margin-top: 1rem;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .detail__sidebar p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .detail__sidebar {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 64.0625em) {
    .detail__sidebar {
        margin-top: 2.5rem;
    }
}

.detail__sidebar--info {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    padding: 2rem;
}

.detail__sidebar--info .social-media-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
}

.detail__sidebar--info .icon-list .fas {
    display: block;
    margin-left: 32px;
    position: relative;
}

.detail__sidebar--info .icon-list .fas::before {
    position: absolute;
    top: 0;
    left: -32px;
}

.detail__sidebar--info .icon-list .fas p+p {
    margin-top: .5em;
}

.detail__sidebar--info__second {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    background-color: #f2f5f7;
    padding: 2rem;
}

.detail__sidebar--info__second p {
    margin: 0;
}

.icon-list {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .icon-list {
        font-size: 1.125rem;
    }
}

.icon-list li:after {
    display: none;
}

.icon-list li:last-child .indent {
    margin-left: 1.375rem;
}

.icon-list li:last-child p {
    color: #000;
}

.icon-list li:last-child p:before {
    margin-right: .5rem;
    font-family: "Font Awesome 5 Pro";
}

.social-media-links h2 {
    text-transform: uppercase;
    font-size: .875rem;
}

.social-media-links .social-media {
    margin-top: 1rem;
}

.social-media-links .fab {
    color: #000;
    font-size: 1.4375rem;
}

.fas:before {
    color: #115e6b;
}

.fas:hover {
    text-decoration: none;
}

table {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 0;
    margin-bottom: 2.5rem;
    border-collapse: collapse;
    border-top: 1px solid #a7bacb;
}

@media print,
screen and (min-width: 64.0625em) {
    table {
        font-size: 1.125rem;
    }
}

table[align='left'] {
    float: none;
}

@media print,
screen and (min-width: 48.0625em) {
    table[align='left'] {
        float: left;
        margin-right: 2em;
    }
}

table[align='right'] {
    float: none;
}

@media print,
screen and (min-width: 48.0625em) {
    table[align='right'] {
        float: right;
        margin-left: 2em;
    }
}

thead,
tbody {
    vertical-align: top;
}

thead {
    color: #000;
    border-right: 1px solid #a7bacb;
    border-left: 1px solid #a7bacb;
    font-size: 1.125rem;
    font-family: kapra-neue-semibold, sans-serif;
}

thead th {
    background-color: #f2f5f7;
}

tbody {
    border-top: 0;
    border-left: 1px solid #a7bacb;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

tr {
    border-bottom: 1px solid #a7bacb;
}

th {
    padding: 1.0625rem .875rem;
    text-align: left;
    border-right: 1px solid #a7bacb;
    border-bottom: 0;
    background: #f2f5f7;
    font-weight: 600;
}

td {
    padding: 1.0625rem .875rem;
    border-right: 1px solid #a7bacb;
}

@media screen and (min-width: 48.0625em) {
    td {
        min-width: 11.875rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .mobile-table {
        margin-bottom: 2.5rem;
    }

    .mobile-table--scroll {
        overflow-y: scroll;
    }
}

.mobile-table table {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.mobile-table--scroll {
    overflow-y: scroll;
    -webkit-transition: -webkit-box-shadow .8s cubic-bezier(.82, .06, .14, .97);
    transition: -webkit-box-shadow .8s cubic-bezier(.82, .06, .14, .97);
    transition: box-shadow .8s cubic-bezier(.82, .06, .14, .97);
    transition: box-shadow .8s cubic-bezier(.82, .06, .14, .97), -webkit-box-shadow .8s cubic-bezier(.82, .06, .14, .97);
    -webkit-box-shadow: inset -1px 0 .06667px rgba(255, 255, 255, .05), inset -2px 0 .13333px rgba(255, 255, 255, .05), inset -3px 0 .2px rgba(255, 255, 255, .05), inset -4px 0 .26667px rgba(255, 255, 255, .05), inset -5px 0 .33333px rgba(255, 255, 255, .05), inset -6px 0 .4px rgba(255, 255, 255, .05), inset -7px 0 .46667px rgba(255, 255, 255, .05), inset -8px 0 .53333px rgba(255, 255, 255, .05), inset -9px 0 .6px rgba(255, 255, 255, .05), inset -10px 0 .66667px rgba(255, 255, 255, .05), inset -11px 0 .73333px rgba(255, 255, 255, .05), inset -12px 0 .8px rgba(255, 255, 255, .05), inset -13px 0 .86667px rgba(255, 255, 255, .05), inset -14px 0 .93333px rgba(255, 255, 255, .05), inset -15px 0 1px rgba(255, 255, 255, .05), inset -16px 0 1.06667px rgba(255, 255, 255, .05), inset -17px 0 1.13333px rgba(255, 255, 255, .05), inset -18px 0 1.2px rgba(255, 255, 255, .05), inset -19px 0 1.26667px rgba(255, 255, 255, .05), inset -20px 0 1.33333px rgba(255, 255, 255, .05), inset -21px 0 1.4px rgba(255, 255, 255, .05), inset -22px 0 1.46667px rgba(255, 255, 255, .05), inset -23px 0 1.53333px rgba(255, 255, 255, .05), inset -24px 0 1.6px rgba(255, 255, 255, .05), inset -25px 0 1.66667px rgba(255, 255, 255, .05), inset -26px 0 1.73333px rgba(255, 255, 255, .05), inset -27px 0 1.8px rgba(255, 255, 255, .05), inset -28px 0 1.86667px rgba(255, 255, 255, .05), inset -29px 0 1.93333px rgba(255, 255, 255, .05), inset -30px 0 2px rgba(255, 255, 255, .05), inset -31px 0 2.06667px rgba(255, 255, 255, .05), inset -32px 0 2.13333px rgba(255, 255, 255, .05), inset -33px 0 2.2px rgba(255, 255, 255, .05), inset -34px 0 2.26667px rgba(255, 255, 255, .05), inset -35px 0 2.33333px rgba(255, 255, 255, .05), inset -36px 0 2.4px rgba(255, 255, 255, .05), inset -37px 0 2.46667px rgba(255, 255, 255, .05), inset -38px 0 2.53333px rgba(255, 255, 255, .05), inset -39px 0 2.6px rgba(255, 255, 255, .05), inset -40px 0 2.66667px rgba(255, 255, 255, .05), inset -41px 0 2.73333px rgba(255, 255, 255, .05), inset -42px 0 2.8px rgba(255, 255, 255, .05), inset -43px 0 2.86667px rgba(255, 255, 255, .05), inset -44px 0 2.93333px rgba(255, 255, 255, .05), inset -45px 0 3px rgba(255, 255, 255, .05), inset -46px 0 3.06667px rgba(255, 255, 255, .05), inset -47px 0 3.13333px rgba(255, 255, 255, .05), inset -48px 0 3.2px rgba(255, 255, 255, .05), inset -49px 0 3.26667px rgba(255, 255, 255, .05), inset -50px 0 3.33333px rgba(255, 255, 255, .05), inset -51px 0 3.4px rgba(255, 255, 255, .05), inset -52px 0 3.46667px rgba(255, 255, 255, .05), inset -53px 0 3.53333px rgba(255, 255, 255, .05), inset -54px 0 3.6px rgba(255, 255, 255, .05), inset -55px 0 3.66667px rgba(255, 255, 255, .05), inset -56px 0 3.73333px rgba(255, 255, 255, .05), inset -57px 0 3.8px rgba(255, 255, 255, .05), inset -58px 0 3.86667px rgba(255, 255, 255, .05), inset -59px 0 3.93333px rgba(255, 255, 255, .05), inset -60px 0 4px rgba(255, 255, 255, .05), inset -61px 0 4.06667px rgba(255, 255, 255, .05), inset -62px 0 4.13333px rgba(255, 255, 255, .05), inset -63px 0 4.2px rgba(255, 255, 255, .05), inset -64px 0 4.26667px rgba(255, 255, 255, .05), inset -65px 0 4.33333px rgba(255, 255, 255, .05), inset -66px 0 4.4px rgba(255, 255, 255, .05), inset -67px 0 4.46667px rgba(255, 255, 255, .05), inset -68px 0 4.53333px rgba(255, 255, 255, .05), inset -69px 0 4.6px rgba(255, 255, 255, .05), inset -70px 0 4.66667px rgba(255, 255, 255, .05), inset -71px 0 4.73333px rgba(255, 255, 255, .05), inset -72px 0 4.8px rgba(255, 255, 255, .05), inset -73px 0 4.86667px rgba(255, 255, 255, .05), inset -74px 0 4.93333px rgba(255, 255, 255, .05), inset -75px 0 5px rgba(255, 255, 255, .05);
    box-shadow: inset -1px 0 .06667px rgba(255, 255, 255, .05), inset -2px 0 .13333px rgba(255, 255, 255, .05), inset -3px 0 .2px rgba(255, 255, 255, .05), inset -4px 0 .26667px rgba(255, 255, 255, .05), inset -5px 0 .33333px rgba(255, 255, 255, .05), inset -6px 0 .4px rgba(255, 255, 255, .05), inset -7px 0 .46667px rgba(255, 255, 255, .05), inset -8px 0 .53333px rgba(255, 255, 255, .05), inset -9px 0 .6px rgba(255, 255, 255, .05), inset -10px 0 .66667px rgba(255, 255, 255, .05), inset -11px 0 .73333px rgba(255, 255, 255, .05), inset -12px 0 .8px rgba(255, 255, 255, .05), inset -13px 0 .86667px rgba(255, 255, 255, .05), inset -14px 0 .93333px rgba(255, 255, 255, .05), inset -15px 0 1px rgba(255, 255, 255, .05), inset -16px 0 1.06667px rgba(255, 255, 255, .05), inset -17px 0 1.13333px rgba(255, 255, 255, .05), inset -18px 0 1.2px rgba(255, 255, 255, .05), inset -19px 0 1.26667px rgba(255, 255, 255, .05), inset -20px 0 1.33333px rgba(255, 255, 255, .05), inset -21px 0 1.4px rgba(255, 255, 255, .05), inset -22px 0 1.46667px rgba(255, 255, 255, .05), inset -23px 0 1.53333px rgba(255, 255, 255, .05), inset -24px 0 1.6px rgba(255, 255, 255, .05), inset -25px 0 1.66667px rgba(255, 255, 255, .05), inset -26px 0 1.73333px rgba(255, 255, 255, .05), inset -27px 0 1.8px rgba(255, 255, 255, .05), inset -28px 0 1.86667px rgba(255, 255, 255, .05), inset -29px 0 1.93333px rgba(255, 255, 255, .05), inset -30px 0 2px rgba(255, 255, 255, .05), inset -31px 0 2.06667px rgba(255, 255, 255, .05), inset -32px 0 2.13333px rgba(255, 255, 255, .05), inset -33px 0 2.2px rgba(255, 255, 255, .05), inset -34px 0 2.26667px rgba(255, 255, 255, .05), inset -35px 0 2.33333px rgba(255, 255, 255, .05), inset -36px 0 2.4px rgba(255, 255, 255, .05), inset -37px 0 2.46667px rgba(255, 255, 255, .05), inset -38px 0 2.53333px rgba(255, 255, 255, .05), inset -39px 0 2.6px rgba(255, 255, 255, .05), inset -40px 0 2.66667px rgba(255, 255, 255, .05), inset -41px 0 2.73333px rgba(255, 255, 255, .05), inset -42px 0 2.8px rgba(255, 255, 255, .05), inset -43px 0 2.86667px rgba(255, 255, 255, .05), inset -44px 0 2.93333px rgba(255, 255, 255, .05), inset -45px 0 3px rgba(255, 255, 255, .05), inset -46px 0 3.06667px rgba(255, 255, 255, .05), inset -47px 0 3.13333px rgba(255, 255, 255, .05), inset -48px 0 3.2px rgba(255, 255, 255, .05), inset -49px 0 3.26667px rgba(255, 255, 255, .05), inset -50px 0 3.33333px rgba(255, 255, 255, .05), inset -51px 0 3.4px rgba(255, 255, 255, .05), inset -52px 0 3.46667px rgba(255, 255, 255, .05), inset -53px 0 3.53333px rgba(255, 255, 255, .05), inset -54px 0 3.6px rgba(255, 255, 255, .05), inset -55px 0 3.66667px rgba(255, 255, 255, .05), inset -56px 0 3.73333px rgba(255, 255, 255, .05), inset -57px 0 3.8px rgba(255, 255, 255, .05), inset -58px 0 3.86667px rgba(255, 255, 255, .05), inset -59px 0 3.93333px rgba(255, 255, 255, .05), inset -60px 0 4px rgba(255, 255, 255, .05), inset -61px 0 4.06667px rgba(255, 255, 255, .05), inset -62px 0 4.13333px rgba(255, 255, 255, .05), inset -63px 0 4.2px rgba(255, 255, 255, .05), inset -64px 0 4.26667px rgba(255, 255, 255, .05), inset -65px 0 4.33333px rgba(255, 255, 255, .05), inset -66px 0 4.4px rgba(255, 255, 255, .05), inset -67px 0 4.46667px rgba(255, 255, 255, .05), inset -68px 0 4.53333px rgba(255, 255, 255, .05), inset -69px 0 4.6px rgba(255, 255, 255, .05), inset -70px 0 4.66667px rgba(255, 255, 255, .05), inset -71px 0 4.73333px rgba(255, 255, 255, .05), inset -72px 0 4.8px rgba(255, 255, 255, .05), inset -73px 0 4.86667px rgba(255, 255, 255, .05), inset -74px 0 4.93333px rgba(255, 255, 255, .05), inset -75px 0 5px rgba(255, 255, 255, .05);
    margin-right: -.625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .mobile-table--scroll {
        margin-right: -.9375rem;
    }
}

.mobile-table--scroll.scrolled {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.mobile-table--scroll.scrolled table {
    z-index: 1;
}

.mobile-table--scroll table {
    position: relative;
    z-index: -1;
}

h1,
.h1 {
    font-family: kapra-neue-semibold, sans-serif;
    font-size: 2.25rem;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
}

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

    h1,
    .h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }
}

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

    h1,
    .h1 {
        font-size: 3.75rem;
        letter-spacing: 3px;
    }
}

h2,
.h2 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.875rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 0;
}

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

    h2,
    .h2 {
        font-size: 2.25rem;
    }
}

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

    h2,
    .h2 {
        font-size: 3rem;
    }
}

h3,
.h3 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.6875rem;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 0;
}

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

    h3,
    .h3 {
        font-size: 1.875rem;
    }
}

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

    h3,
    .h3 {
        font-size: 2.25rem;
    }
}

h4,
.h4 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 0;
}

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

    h4,
    .h4 {
        font-size: 1.875rem;
    }
}

h5,
.h5 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.3125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
}

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

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

h6,
.h6 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
}

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

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

p,
.p {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 0;
}

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

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

.eyebrow {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
}

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

.body-sans {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .body-sans {
        font-size: 1.25rem;
    }
}

a {
    text-decoration: none;
    color: #014a85;
}

a:hover {
    text-decoration: underline;
}

em {
    font-style: italic;
}

blockquote {
    overflow: hidden;
    margin: 0;
    text-align: center;
}

blockquote p {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.4;
}

@media print,
screen and (min-width: 64.0625em) {
    blockquote p {
        font-size: 2.25rem;
    }
}

blockquote .quote-curved-up {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

blockquote .quotee {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 0;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media print,
screen and (min-width: 64.0625em) {
    blockquote .quotee {
        font-size: 1.125rem;
    }
}

ol,
ul,
li {
    margin: 0;
    padding: 0;
}

.wysiwyg li {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .wysiwyg li {
        font-size: 1.125rem;
    }
}

.wysiwyg b,
.wysiwyg strong {
    font-family: galaxie-copernicus-bold, serif;
    font-weight: normal;
}

.dotted {
    color: #000;
}

.dotted::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

ol {
    margin-top: 2rem;
    padding-left: 0;
    list-style: none;
    counter-reset: li;
}

@media print,
screen and (min-width: 64.0625em) {
    ol {
        margin-top: 2.5rem;
    }
}

ol>li {
    position: relative;
    padding-left: 2.5rem;
    counter-increment: li;
}

ol>li li,
ol>li li:first-child {
    margin-top: 1rem;
}

ol>li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    color: #000;
    font-size: 1.125rem;
    font-weight: 600;
}

.ck-content ul>li,
.wysiwyg ul>li,
.section--wysiwyg ul>li {
    position: relative;
    margin-left: 1.125rem;
    padding-left: 1.25rem;
}

.ck-content ul>li::marker,
.wysiwyg ul>li::marker,
.section--wysiwyg ul>li::marker {
    color: #115e6b;
    font-size: 1.25rem;
}

.stat {
    font-family: kapra-neue-semibold, sans-serif;
    font-weight: normal;
    font-size: 3.75rem;
    line-height: 1;
}

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

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

.list--comma-separate ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.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 p,
.text-margin-reset h2,
.text-margin-reset h3,
.text-margin-reset h4,
.text-margin-reset span {
    margin: 0;
}

.ck-content strong {
    font-weight: bold;
}

.video-play-button {
    position: absolute;
    z-index: 4;
    bottom: 6rem;
    left: 2.5rem;
    background: none;
}

@media screen and (min-width: 62.5625em) {
    .video-play-button {
        bottom: 10rem;
    }
}

.video-play-button:after {
    content: "";
    color: #f2f5f7;
    font-family: "Font Awesome 5 Pro";
    font-size: 2.5rem;
    font-weight: 600;
}

.video-play-button:hover,
.video-play-button:focus {
    background-color: transparent;
}

.video-play-button:hover:after,
.video-play-button:focus:after {
    color: #ffcd00;
}

.video-playing .video-play-button:after {
    content: "";
}

@media screen and (max-width: 48.06125em) {
    .video-play-button {
        display: none;
    }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.8125rem;
    height: 2.8125rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.play-button:hover,
.play-buttonfocus {
    -webkit-transition: 1.4s;
    transition: 1.4s;
    height: 55px;
    width: 55px;
}

.play-button:hover path,
.play-buttonfocus path {
    fill: #ffcd00;
}

.play-button path {
    fill: #fff;
}

@media print,
screen and (min-width: 48.0625em) {
    .play-button {
        width: 7.8125rem;
        height: 7.8125rem;
    }

    .play-button:hover,
    .play-buttonfocus {
        -webkit-transition: 1.4s;
        transition: 1.4s;
        height: 135px;
        width: 135px;
    }

    .play-button:hover path,
    .play-buttonfocus path {
        fill: #ffcd00;
    }
}

.wysiwyg .responsive-video-iframe {
    position: relative;
}

.wysiwyg .responsive-video-iframe::before {
    display: block;
    padding-bottom: calc(.5625 * 100%);
    content: '';
}

.wysiwyg .responsive-video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.wysiwyg .responsive-video-iframe iframe {
    object-fit: contain;
    -o-object-fit: contain;
}

.wysiwyg .align-center .responsive-video-iframe {
    min-width: 100%;
}

.wysiwyg .align-left .responsive-video-iframe,
.wysiwyg .align-right .responsive-video-iframe {
    min-width: 300px;
}

body {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.intro-text {
    font-size: 1.375rem;
    font-weight: normal;
    line-height: 1.7;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media print,
screen and (min-width: 64.0625em) {
    .intro-text {
        font-size: 1.625rem;
    }
}

.align-right,
.obj-right {
    float: none;
    margin: 1.5rem 0;
}

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

    .align-right,
    .obj-right {
        float: right;
        margin: 2.5rem 0 1.5rem 1.5rem;
    }
}

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

    .align-right,
    .obj-right {
        margin: 3rem 0 2rem 2rem;
    }
}

.align-right img,
.obj-right img {
    display: block;
}

.align-left,
.obj-left {
    float: none;
    margin: 2rem 0;
}

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

    .align-left,
    .obj-left {
        float: left;
        margin: 2.5rem 1.5rem 1.5rem 0;
    }
}

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

    .align-left,
    .obj-left {
        margin: 3rem 2rem 2rem 0;
    }
}

.align-left img,
.obj-left img {
    display: block;
}

.align-center,
.obj-center {
    display: table;
    margin: 1.5rem auto;
}

.align-center img,
.obj-center img {
    display: block;
}

[data-embed-button='ohou_media_embed'] .video-embed-field-responsive-video,
[data-embed-button='ohou_media_embed'] .responsive-video-iframe {
    width: 100%;
}

figure.align-center,
figure.obj-center,
.align-center,
.obj-center {
    display: table;
}

figure.align-center img,
figure.obj-center img,
.align-center img,
.obj-center img {
    margin-right: auto;
    margin-left: auto;
}

figure.align-center figcaption,
figure.obj-center figcaption,
.align-center figcaption,
.obj-center figcaption {
    display: table-caption;
}

.btn--centered {
    display: table !important;
    margin-right: auto;
    margin-left: auto;
}

figure.align-left.responsive-video-iframe,
figure.obj-left.responsive-video-iframe,
figure.align-right.responsive-video-iframe,
figure.obj-right.responsive-video-iframe,
.align-left.responsive-video-iframe,
.obj-left.responsive-video-iframe,
.align-right.responsive-video-iframe,
.obj-right.responsive-video-iframe {
    min-width: 40%;
}

figure.align-right,
figure.alignright,
figure.obj-right,
figure.align-left,
figure.alignleft,
.align-left,
.obj-left,
.align-right,
.obj-right {
    display: table;
}

figure.align-right figcaption,
figure.alignright figcaption,
figure.obj-right figcaption,
figure.align-left figcaption,
figure.alignleft figcaption,
.align-left figcaption,
.obj-left figcaption,
.align-right figcaption,
.obj-right figcaption {
    display: table-caption;
}

figure.obj-left {
    display: grid;
}

figcaption {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    font-family: kapra-neue-regular-expanded, sans-serif;
    margin-top: 1rem;
    caption-side: bottom;
    color: #262626;
}

@media print,
screen and (min-width: 64.0625em) {
    figcaption {
        font-size: 1.125rem;
    }
}

figcaption::after {
    margin-top: 1rem;
    display: block;
}

@media screen and (max-width: 48.06125em) {
    figcaption::after {
        margin-top: .875rem;
    }
}

.ck-content p,
.ck-content ul,
.ck-content ol,
.ck-content .section--wysiwyg li,
.ck-content li,
.ck-content .intro-text,
.ck-content blockquote,
.ck-content h1,
.ck-content h2,
.ck-content h3,
.ck-content h4,
.ck-content h5,
.ck-content h6,
.ck-content .link-arrow,
.wysiwyg p,
.wysiwyg ul,
.wysiwyg ol,
.wysiwyg .section--wysiwyg li,
.wysiwyg li,
.wysiwyg .intro-text,
.wysiwyg blockquote,
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.wysiwyg .link-arrow {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

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

    .ck-content p,
    .ck-content ul,
    .ck-content ol,
    .ck-content .section--wysiwyg li,
    .ck-content li,
    .ck-content .intro-text,
    .ck-content blockquote,
    .ck-content h1,
    .ck-content h2,
    .ck-content h3,
    .ck-content h4,
    .ck-content h5,
    .ck-content h6,
    .ck-content .link-arrow,
    .wysiwyg p,
    .wysiwyg ul,
    .wysiwyg ol,
    .wysiwyg .section--wysiwyg li,
    .wysiwyg li,
    .wysiwyg .intro-text,
    .wysiwyg blockquote,
    .wysiwyg h1,
    .wysiwyg h2,
    .wysiwyg h3,
    .wysiwyg h4,
    .wysiwyg h5,
    .wysiwyg h6,
    .wysiwyg .link-arrow {
        margin-top: 2rem;
    }
}

.ck-content .link-arrow,
.wysiwyg .link-arrow {
    color: #014a85;
    font-size: 1.25rem;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
    font-weight: 700;
}

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

    .ck-content .link-arrow,
    .wysiwyg .link-arrow {
        font-size: 1.25rem;
    }
}

.ck-content .link-arrow:hover,
.wysiwyg .link-arrow:hover {
    color: #014a85;
    text-decoration: underline;
}

@media screen and (max-width: 48.06125em) {

    .ck-content .link-arrow,
    .wysiwyg .link-arrow {
        font-size: 1.125rem;
    }
}

.ck-content .intro-text,
.wysiwyg .intro-text {
    margin-top: 1rem;
}

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

    .ck-content .intro-text,
    .wysiwyg .intro-text {
        margin-top: 1.5rem;
    }
}

.ck-content h3,
.ck-content h4,
.ck-content h5,
.ck-content h6,
.ck-content blockquote,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.wysiwyg blockquote {
    margin-top: 2rem;
}

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

    .ck-content h3,
    .ck-content h4,
    .ck-content h5,
    .ck-content h6,
    .ck-content blockquote,
    .wysiwyg h3,
    .wysiwyg h4,
    .wysiwyg h5,
    .wysiwyg h6,
    .wysiwyg blockquote {
        margin-top: 3rem;
    }
}

.ck-content p,
.ck-content .responsive-video-iframe,
.wysiwyg p,
.wysiwyg .responsive-video-iframe {
    margin-top: 1rem;
}

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

    .ck-content p,
    .ck-content .responsive-video-iframe,
    .wysiwyg p,
    .wysiwyg .responsive-video-iframe {
        margin-top: 1.5rem;
    }
}

.ck-content .btn,
.wysiwyg .btn {
    margin-top: 0;
}

.ck-content .btn:nth-last-of-type(n+2),
.wysiwyg .btn:nth-last-of-type(n+2) {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

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

    .ck-content .btn:nth-last-of-type(n+2),
    .wysiwyg .btn:nth-last-of-type(n+2) {
        margin-top: .75rem;
        -webkit-margin-end: 1.25rem;
        margin-inline-end: 1.25rem;
        margin-bottom: .75rem;
    }
}

.ck-content figcaption,
.wysiwyg figcaption {
    position: relative;
    padding-bottom: 20px;
}

.ck-content figcaption::after,
.wysiwyg figcaption::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: url(../image/border-dot.png) repeat-x bottom left;
}

.ck-content ol,
.wysiwyg ol {
    counter-reset: item;
}

.ck-content ol li,
.wysiwyg ol li {
    list-style-type: decimal;
    margin-left: 1rem;
    padding-left: 1.25rem;
}

.ck-content ol li::marker,
.wysiwyg ol li::marker {
    font-family: kapra-neue-semibold, sans-serif;
    color: #115e6b;
}

.ck-content .align-left,
.wysiwyg .align-left {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: -3.75rem;
    max-width: 50%;
}

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

    .ck-content .align-left,
    .wysiwyg .align-left {
        margin-top: 1.5rem;
    }
}

.ck-content .align-left figcaption,
.wysiwyg .align-left figcaption {
    margin-right: 1.25rem;
}

@media screen and (max-width: 48.06125em) {

    .ck-content .align-left,
    .wysiwyg .align-left {
        margin-left: auto;
        margin-right: auto;
    }

    .ck-content .align-left img,
    .wysiwyg .align-left img {
        margin-left: auto;
        margin-right: auto;
    }

    .ck-content .align-left figcaption,
    .wysiwyg .align-left figcaption {
        text-align: center;
        margin-right: auto;
    }
}

.ck-content .align-right,
.wysiwyg .align-right {
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 50%;
}

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

    .ck-content .align-right,
    .wysiwyg .align-right {
        margin-top: 1.5rem;
    }
}

.ck-content .align-right figcaption,
.wysiwyg .align-right figcaption {
    margin-right: 1.25rem;
}

@media screen and (max-width: 48.06125em) {

    .ck-content .align-right,
    .wysiwyg .align-right {
        margin-left: auto;
        margin-right: auto;
    }

    .ck-content .align-right img,
    .wysiwyg .align-right img {
        margin-left: auto;
        margin-right: auto;
    }

    .ck-content .align-right figcaption,
    .wysiwyg .align-right figcaption {
        text-align: center;
        margin-right: auto;
    }
}

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

    .ck-content .list-btn .btn,
    .wysiwyg .list-btn .btn {
        margin-top: 0;
    }
}

.ck-content .list-btn .btn:not(:first-child),
.wysiwyg .list-btn .btn:not(:first-child) {
    margin-left: 1.25rem;
}

@media screen and (max-width: 40.06125em) {

    .ck-content .list-btn .btn:not(:first-child),
    .wysiwyg .list-btn .btn:not(:first-child) {
        margin-left: auto;
    }
}

.ck-content blockquote::before,
.ck-content blockquote::after,
.wysiwyg blockquote::before,
.wysiwyg blockquote::after {
    content: '';
    background-image: url(../image/dotted-line.svg);
    display: inline-block;
    background-repeat: no-repeat;
    width: 100%;
    height: 35px;
    max-width: 956px;
    max-height: 35px;
}

.ck-content blockquote p,
.wysiwyg blockquote p {
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}

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

    .ck-content blockquote p,
    .wysiwyg blockquote p {
        margin-bottom: 2rem;
        padding-top: 2rem;
    }
}

.text-full article.align-left,
.ck-content article.align-left,
.accordion__content .wysiwyg article.align-left {
    margin-left: 0;
}

.text-full article.align-right,
.ck-content article.align-right,
.accordion__content .wysiwyg article.align-right {
    margin-right: 0;
}

.mobile-table {
    margin-top: 2rem;
    padding: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .mobile-table {
        margin-top: 3rem;
    }
}

.mobile-table table {
    margin: 0;
}

.wysiwyg p a:not(.btn):not(.link-arrow):hover,
.wysiwyg p a:not(.btn):not(.link-arrow):focus {
    background-color: #fcf7ae;
    -webkit-box-shadow: 2px 0 0 0 #fcf7ae, -2px 0 0 0 #fcf7ae;
    box-shadow: 2px 0 0 0 #fcf7ae, -2px 0 0 0 #fcf7ae;
    color: #000;
}

.card p:first-child,
.card ul:first-child,
.card ol:first-child,
.card .section--wysiwyg li:first-child,
.card li:first-child,
.card .intro-text:first-child,
.card blockquote:first-child,
.card h1:first-child,
.card h2:first-child,
.card h3:first-child,
.card h4:first-child,
.card h5:first-child,
.card h6:first-child,
.card .link-arrow:first-child,
section p:first-child,
section ul:first-child,
section ol:first-child,
section .section--wysiwyg li:first-child,
section li:first-child,
section .intro-text:first-child,
section blockquote:first-child,
section h1:first-child,
section h2:first-child,
section h3:first-child,
section h4:first-child,
section h5:first-child,
section h6:first-child,
section .link-arrow:first-child,
header p:first-child,
header ul:first-child,
header ol:first-child,
header .section--wysiwyg li:first-child,
header li:first-child,
header .intro-text:first-child,
header blockquote:first-child,
header h1:first-child,
header h2:first-child,
header h3:first-child,
header h4:first-child,
header h5:first-child,
header h6:first-child,
header .link-arrow:first-child,
.listing-item p:first-child,
.listing-item ul:first-child,
.listing-item ol:first-child,
.listing-item .section--wysiwyg li:first-child,
.listing-item li:first-child,
.listing-item .intro-text:first-child,
.listing-item blockquote:first-child,
.listing-item h1:first-child,
.listing-item h2:first-child,
.listing-item h3:first-child,
.listing-item h4:first-child,
.listing-item h5:first-child,
.listing-item h6:first-child,
.listing-item .link-arrow:first-child,
.section--wysiwyg p:first-child,
.section--wysiwyg ul:first-child,
.section--wysiwyg ol:first-child,
.section--wysiwyg .section--wysiwyg li:first-child,
.section--wysiwyg li:first-child,
.section--wysiwyg .intro-text:first-child,
.section--wysiwyg blockquote:first-child,
.section--wysiwyg h1:first-child,
.section--wysiwyg h2:first-child,
.section--wysiwyg h3:first-child,
.section--wysiwyg h4:first-child,
.section--wysiwyg h5:first-child,
.section--wysiwyg h6:first-child,
.section--wysiwyg .link-arrow:first-child,
.wysiwyg p:first-child,
.wysiwyg ul:first-child,
.wysiwyg ol:first-child,
.wysiwyg .section--wysiwyg li:first-child,
.wysiwyg li:first-child,
.wysiwyg .intro-text:first-child,
.wysiwyg blockquote:first-child,
.wysiwyg h1:first-child,
.wysiwyg h2:first-child,
.wysiwyg h3:first-child,
.wysiwyg h4:first-child,
.wysiwyg h5:first-child,
.wysiwyg h6:first-child,
.wysiwyg .link-arrow:first-child {
    margin-top: 0;
}

.ck-content ol,
.ck-content ul,
.section--wysiwyg ol,
.section--wysiwyg ul,
.wysiwyg ol,
.wysiwyg ul {
    counter-reset: item;
}

.ck-content ol ol,
.ck-content ol ul,
.ck-content ul ol,
.ck-content ul ul,
.section--wysiwyg ol ol,
.section--wysiwyg ol ul,
.section--wysiwyg ul ol,
.section--wysiwyg ul ul,
.wysiwyg ol ol,
.wysiwyg ol ul,
.wysiwyg ul ol,
.wysiwyg ul ul {
    counter-reset: item;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ck-content li,
.section--wysiwyg li,
.wysiwyg li {
    margin-top: 1rem;
}

.vaf {
    padding-right: 0;
    padding-left: 0;
}

.active-filters {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.active-filters h2 {
    margin: auto 1.5rem auto 0;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .active-filters h2 {
        font-size: 1.25rem;
    }
}

.active-filters .vaf {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.active-filters .vaf__group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.active-filters ul {
    margin-top: 0;
    margin-right: .375rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.active-filters li:not(:last-child) {
    margin-right: .625rem;
}

.active-filters ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #a7bacb;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    height: 2.375rem;
    border-radius: 3;
    padding-left: .75rem;
    padding-right: .75rem;
}

.active-filters ul li:hover::after {
    content: '';
    color: #696e73;
    font-family: "Font Awesome 5 Pro";
}

.active-filters li::after {
    margin-left: 1rem;
    content: '';
    color: #000;
    font-family: "Font Awesome 5 Pro";
    font-weight: 100;
}

.active-filters li::before {
    display: none;
}

.active-filters .cell:last-child {
    text-align: right;
}

.active-filters .vaf__clear {
    -webkit-transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    font-weight: normal;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    border-width: 2px;
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    padding: .5rem .625rem .625rem;
    display: block;
    border-radius: 2px;
    color: #fff;
    text-transform: uppercase;
    background-color: #115e6b;
    border-color: #115e6b;
    height: 2.375rem;
    font-size: .875rem;
    padding: 9px 21px 8px;
}

.active-filters .vaf__clear:hover,
.active-filters .vaf__clear:focus {
    text-decoration: none;
    outline: none;
}

.active-filters .vaf__clear:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6;
}

.active-filters .vaf__clear::before {
    border-radius: 2px;
}

.active-filters .vaf__clear::before {
    display: none;
}

.active-filters .vaf__clear::after {
    color: #fff;
}

.active-filters .vaf__clear:hover,
.active-filters .vaf__clear:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.active-filters .vaf__clear:hover:after,
.active-filters .vaf__clear:focus:after {
    color: #fff;
}

@media screen and (min-width: 48.0625em) {
    .active-filters li {
        margin-top: 0;
    }
}

@media screen and (max-width: 48.06125em) {
    .active-filters ul {
        padding: 0;
    }
}

@media screen and (max-width: 64.06125em) {
    .active-filters .vaf__clear {
        margin-top: .5rem;
    }

    .active-filters ul li {
        text-align: left;
        margin-top: .5rem;
    }

    .active-filters .cell:last-child {
        text-align: left;
    }
}

.user-login-form,
.page--utility .main-content {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.user-login-form input {
    width: 100%;
    max-width: 25rem;
    margin-bottom: 0;
}

.user-login-form .description {
    width: 100%;
    margin-bottom: 1.5em;
    font-style: italic;
}

.admin-tabs {
    right: .625rem;
    bottom: .625rem;
    left: .625rem;
    position: fixed;
    z-index: 10;
    margin: 0;
    padding: 2rem;
    background: #262626;
}

@media print,
screen and (min-width: 48.0625em) {
    .admin-tabs {
        right: .9375rem;
        bottom: .9375rem;
        left: .9375rem;
    }
}

.admin-tabs ul {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
}

.admin-tabs li {
    display: inline-block;
}

.admin-tabs li+li {
    margin-left: .5em;
}

.admin-tabs a {
    display: block;
    margin: 0;
    padding: .5em 1em;
    -webkit-transition: background-color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: background-color 150ms cubic-bezier(.42, .08, .06, .98);
    text-decoration: none;
    color: #000;
    border-radius: .25em;
    background-color: #ffcd00;
    font-size: 1.125rem;
    font-weight: 700;
}

.admin-tabs a:hover {
    background-color: #997b00;
}

.admin-tabs a.is-active {
    background-color: #ffd733;
}

@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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: .0625rem .3125rem .125rem;
    background: rgba(255, 255, 255, .75) !important;
}

.ajax-progress:before,
.ajax-progress:after,
.ajax-progress-fullscreen.ajax-progress:before,
.ajax-progress-fullscreen.ajax-progress:after {
    position: absolute;
    display: block;
    -webkit-animation: fa-spin 2000ms infinite cubic-bezier(.82, .06, .14, .97);
    animation: fa-spin 2000ms infinite cubic-bezier(.82, .06, .14, .97);
    color: #fe5000;
    font-family: "Font Awesome 5 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 {
    -webkit-animation: fa-spin 1500ms infinite cubic-bezier(.82, .06, .14, .97);
    animation: fa-spin 1500ms infinite cubic-bezier(.82, .06, .14, .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: #262626;
}

.cookie-compliance-popup .grid-x,
.cookie-compliance-popup .grid-container {
    width: 100%;
}

.cookie-compliance-popup .find-more-button {
    padding: 0;
    text-decoration: underline;
    text-transform: none;
    color: #fff;
    background: none;
}

.cookie-compliance-popup .find-more-button:hover,
.cookie-compliance-popup .find-more-button:focus {
    text-decoration: none;
}

.eu-cookie-compliance-message h2 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
    all: unset;
}

@media print,
screen and (min-width: 64.0625em) {
    .eu-cookie-compliance-message h2 {
        font-size: 1.25rem;
    }
}

.eu-cookie-compliance-message p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.eu-cookie-compliance-message .btn {
    cursor: pointer;
}

.eu-cookie-compliance-buttons,
.eu-cookie-compliance-message {
    all: unset;
}

.form-item {
    margin-top: 1.5rem;
    position: relative;
}

@media print,
screen and (min-width: 48.0625em) {
    .form-item {
        margin-top: 2rem;
    }
}

.form-item [type='checkbox'],
.form-item [type='radio'] {
    position: absolute;
    top: 65%;
    width: 2em;
    height: 2em;
    -webkit-transition: border-color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: border-color 150ms cubic-bezier(.42, .08, .06, .98);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    font-size: inherit;
}

.form-item [type='checkbox']+label,
.form-item [type='radio']+label {
    position: relative;
    margin-left: 1.5em;
    -webkit-transition: color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: color 150ms cubic-bezier(.42, .08, .06, .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: '';
    -webkit-transition: background 150ms cubic-bezier(.42, .08, .06, .98), border-color 150ms cubic-bezier(.42, .08, .06, .98), -webkit-box-shadow 150ms cubic-bezier(.42, .08, .06, .98);
    transition: background 150ms cubic-bezier(.42, .08, .06, .98), border-color 150ms cubic-bezier(.42, .08, .06, .98), -webkit-box-shadow 150ms cubic-bezier(.42, .08, .06, .98);
    transition: background 150ms cubic-bezier(.42, .08, .06, .98), border-color 150ms cubic-bezier(.42, .08, .06, .98), box-shadow 150ms cubic-bezier(.42, .08, .06, .98);
    transition: background 150ms cubic-bezier(.42, .08, .06, .98), border-color 150ms cubic-bezier(.42, .08, .06, .98), box-shadow 150ms cubic-bezier(.42, .08, .06, .98), -webkit-box-shadow 150ms cubic-bezier(.42, .08, .06, .98);
    border: .0625em solid #262626;
}

.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: #115e6b;
    border-width: 2px;
}

.form-item [type='checkbox']:invalid+label,
.form-item [type='radio']:invalid+label {
    color: #d0021b;
}

.form-item [type='checkbox']:invalid+label:before,
.form-item [type='radio']:invalid+label:before {
    border-color: #d0021b;
    -webkit-box-shadow: 0 0 0 .0625em #d0021b;
    box-shadow: 0 0 0 .0625em #d0021b;
}

.form-item [type='checkbox']:checked+label:before {
    background-color: #115e6b;
}

.form-item [type='checkbox']:checked+label:after {
    position: absolute;
    top: 50%;
    left: -1.125em;
    display: block;
    width: .3125em;
    height: .6875em;
    content: '';
    -webkit-transform: rotate(45deg) translate(-100%, -50%);
    transform: rotate(45deg) translate(-100%, -50%);
    border-width: 0 .125em .125em 0;
    border-style: solid;
    border-color: #fff;
}

.form-item [type='checkbox']:checked:disabled+label:after {
    border-color: #262626;
}

.form-item [type='checkbox']:focus+label::before {
    border-color: #115e6b;
    border-width: 2px;
}

.form-item [type='checkbox']:disabled+label:before {
    background-color: #f2f5f7;
}

.form-item [type='radio']+label:before {
    border-radius: 50%;
    background-image: radial-gradient(#115e6b .25em, #fff .25em, #fff .5em, #115e6b .5em);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 0 0;
}

.form-item [type='radio']:checked+label:before {
    border-color: #115e6b;
    background-size: 1em 1em;
}

.form-item [type='radio']:checked:disabled+label:before {
    border-color: #262626;
    background-image: radial-gradient(#262626 .25em, #f2f5f7 .25em, #f2f5f7 .5em, #262626 .5em);
}

.form-item [type='radio']:checked:invalid+label:before {
    background-image: radial-gradient(#d0021b .25em, #fff .25em, #fff .5em, #d0021b .5em);
}

.form-item [type='radio']:disabled+label:before {
    background-color: #f2f5f7;
}

.form__wrapper__input {
    margin-top: .4rem;
}

.form-required:after {
    content: '*';
    color: #d0021b;
}

.webform-element-description {
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
    margin-top: .25rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .webform-element-description {
        font-size: 1rem;
    }
}

.required>label:after {
    content: '*';
    color: #d0021b;
}

[type='checkbox'][name*='[']+label,
.form-radio+label {
    margin-top: .25em;
    margin-bottom: .25em;
}

.webform-managed-file-placeholder {
    color: #262626;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-weight: 400;
    font-style: italic;
}

.form-managed-file [type='submit'] {
    margin-left: 1em;
    padding: .75em;
}

form[class*='webform'] .form-item {
    width: 100%;
}

form[class*='webform'] .form-actions {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    form[class*='webform'] .form-actions {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

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%;
    max-width: 25rem;
}

form[class*='webform'] [type='file'],
form[class*='webform'] .js-form-type-textarea textarea {
    height: unset;
}

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

.embedded-entity:not([class*='align-']) {
    margin-top: 2rem;
    width: 100%;
}

@media print,
screen and (min-width: 64.0625em) {
    .embedded-entity:not([class*='align-']) {
        margin-top: 2.5rem;
    }
}

.js .js-hide {
    display: none;
}

.js-show {
    display: none;
}

.js .js-show {
    display: block;
}

.maintenance-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100vh;
}

.maintenance-page>.main-content {
    margin-bottom: 6.25rem;
    padding-top: 2.5rem;
}

.maintenance-page>footer {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-item-align: end;
    align-self: flex-end;
    width: 100%;
    padding-top: 1.25rem;
}

.oho-alert {
    padding-left: .5rem;
    padding-right: .5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #fcf7ae;
    position: relative;
    z-index: 2;
}

@media print,
screen and (min-width: 48.0625em) {
    .oho-alert {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.oho-alert p {
    margin: 0;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .oho-alert p {
        font-size: 1.25rem;
    }
}

.oho-alert strong {
    font-family: kapra-neue-semibold-expanded, sans-serif;
}

.oho-alert em {
    font-family: kapra-neue-regular-expanded-italic, sans-serif;
}

.oho-alert h2:first-child {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.3125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
    margin-top: 0;
    color: #000;
}

@media print,
screen and (min-width: 64.0625em) {
    .oho-alert h2:first-child {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .oho-alert h2:first-child {
        margin-top: 1rem;
    }
}

.oho-alert .far {
    line-height: 1.5;
    color: #e02020;
    font-size: 2.25rem;
}

.oho-alert .btn {
    margin-top: 1rem;
}

.message-type--notice {
    padding: 1rem;
    background-color: #fcf7ae;
}

@media print,
screen and (min-width: 48.0625em) {
    .message-type--notice {
        padding: 1.5rem;
    }
}

.message-type--notice p {
    margin: 0;
    color: #000;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .message-type--notice p {
        font-size: 1.25rem;
    }
}

.message-type--notice .far {
    line-height: 1.5;
    color: #000;
    font-size: 2.25rem;
}

.oho-banner {
    position: relative;
    z-index: 2;
    padding: 1rem;
    background-color: #f2f5f7;
    border-color: #000;
}

.oho-banner p {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .oho-banner p {
        font-size: 1.25rem;
    }
}

.oho-banner strong {
    font-family: kapra-neue-semibold-expanded, sans-serif;
}

.oho-banner em {
    font-family: kapra-neue-regular-expanded-italic, sans-serif;
}

.oho-banner .far {
    font-size: 2.25rem;
    line-height: 1.5;
}

@media screen and (max-width: 48.06125em) {
    .oho-banner .far {
        padding-bottom: 1rem;
    }
}

.pager {
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-content: flex-end;
}

@media print,
screen and (min-width: 64.0625em) {
    .pager {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .pager {
        margin-bottom: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .pager {
        margin-bottom: 5.5rem;
    }
}

.pager__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media screen and (max-width: 40.06125em) {
    .pager__items {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.pager__item {
    margin-left: .25em;
}

.pager a {
    -webkit-transition: color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: color 150ms cubic-bezier(.42, .08, .06, .98);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.pager a:hover {
    text-decoration: none;
    color: #997b00;
}

.pager .is-active a {
    color: #000;
    border: 1px solid #ffcd00;
    border-radius: 50px;
}

.pager [aria-hidden='true'] {
    display: none;
}

.pager [class*='pager__item--'] a:before,
.pager [class*='pager__item--'] a:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}

.pager .arrow-spec,
.pager .pager__item--first,
.pager .pager__item--previous,
.pager .pager__item--next,
.pager .pager__item--last {
    width: 40px;
    height: 40px;
    background-color: #ffcd00;
    border-radius: 50px;
}

.pager .arrow-spec:hover,
.pager .pager__item--first:hover,
.pager .pager__item--previous:hover,
.pager .pager__item--next:hover,
.pager .pager__item--last:hover {
    background-color: #000;
}

.pager .arrow-spec a,
.pager .pager__item--first a,
.pager .pager__item--previous a,
.pager .pager__item--next a,
.pager .pager__item--last a {
    color: #000;
}

.pager .arrow-spec a:hover,
.pager .pager__item--first a:hover,
.pager .pager__item--previous a:hover,
.pager .pager__item--next a:hover,
.pager .pager__item--last a:hover {
    color: #fff;
}

.pager__item--first a:before {
    content: "";
}

.pager__item--previous a:before {
    content: "";
    margin-left: -5px;
}

.pager__item--next a:after {
    content: "";
    margin-right: -2px;
}

.pager__item--last a:after {
    content: "";
}

.pager__item a {
    border: 1px solid transparent;
}

.pager__item a:hover {
    border: #997b00 solid 1px;
    border-radius: 50px;
}

.pager__item--ellipsis {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid transparent;
}

@media screen and (max-width: 40.06125em) {

    .pager__item:not([class*='pager__item--']),
    .pager__item--ellipsis {
        display: none;
    }

    .pager__item.is-active {
        display: block;
    }
}

.page--search .main-content h2 {
    margin-bottom: .5em;
}

.page--search .main-content .search-form .form-item {
    display: inline-block;
}

.page--search .main-content .search-form label {
    display: block;
}

.page--search .main-content .search-form [type='search'] {
    width: 100%;
    font-size: 1rem;
}

.page--search .main-content .search-form a {
    color: #014a85;
    font-family: kapra-neue-semibold, sans-serif;
    display: inline-block;
    margin: 1.25em 0;
}

.page--search .main-content .search-form a.btn {
    padding-right: 3rem;
}

.page--search .main-content .search-form a::after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    padding-left: .5rem;
    content: "";
    font-weight: 300;
    color: #014a85;
    -webkit-transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
}

.page--search .main-content .search-form a:hover,
.page--search .main-content .search-form a:focus {
    color: #000;
    text-decoration: none;
}

.page--search .main-content .search-form a:hover::after,
.page--search .main-content .search-form a:focus::after {
    color: #000;
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

.page--search .main-content .form-actions {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .page--search .main-content .form-actions {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.page--search .main-content .item-list,
.page--search .main-content .search-results {
    padding: 0;
    list-style: none;
}

.page--search .main-content .item-list li,
.page--search .main-content .search-result {
    padding-left: 0;
}

.page--search .main-content .item-list li:before,
.page--search .main-content .search-result:before {
    display: none;
}

.page--search .main-content .item-list li+li,
.page--search .main-content .item-list li+.search-result,
.page--search .main-content .search-result+li,
.page--search .main-content .search-result+.search-result {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #a7bacb;
}

.page--search .main-content .item-list li .views-field-title,
.page--search .main-content .item-list li__title,
.page--search .main-content .search-result .views-field-title,
.page--search .main-content .search-result__title {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.3125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
    margin: 0;
}

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

    .page--search .main-content .item-list li .views-field-title,
    .page--search .main-content .item-list li__title,
    .page--search .main-content .search-result .views-field-title,
    .page--search .main-content .search-result__title {
        font-size: 1.5rem;
    }
}

.page--search .main-content .item-list li__snippet,
.page--search .main-content .search-result__snippet {
    margin-bottom: 0;
}

.system-messages {
    right: .625rem;
    left: .625rem;
    position: fixed;
    z-index: 10;
    bottom: 9rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .system-messages {
        right: .9375rem;
        left: .9375rem;
    }
}

@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: .9375rem;
    }
}

.messages-contain-error .system-messages {
    position: static;
}

.messages {
    margin-top: 2rem;
    padding: 2rem;
    border: .0625rem solid;
    border-radius: .25rem;
}

.messages ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.messages li+li {
    margin-top: 2rem;
}

.messages a {
    text-decoration: underline;
    color: inherit;
    font-weight: 700;
}

.messages--status {
    color: #3c763d;
    border-color: #67b168;
    background: #aad4ab;
}

.messages--warning {
    color: #e09600;
    border-color: #ffc247;
    background: #fff5e0;
}

.messages--error {
    color: #a94442;
    border-color: #ce8483;
    background: #ebcdcc;
}

.has-alert .messages {
    position: absolute;
}

.messages__close {
    float: right;
    margin: 0 0 1rem 1rem;
    cursor: pointer;
}

.messages__close:hover {
    text-decoration: underline;
}

.media--blazy {
    position: static;
}

.glide {
    position: relative;
}

.glide__arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 3em;
    height: 3em;
    padding: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 0;
    font-size: 1.25rem;
}

.glide__arrow:after {
    display: block;
    padding: .5em;
    font-family: "Font Awesome 5 Pro";
    line-height: 1.1;
}

.glide__arrow--prev {
    left: 0;
}

.glide__arrow--prev:after {
    content: "";
}

.glide__arrow--next {
    right: 0;
}

.glide__arrow--next:after {
    content: "";
}

.alpha-filters fieldset {
    padding-top: 0;
    padding-top: 0;
    background: transparent;
}

.alpha-filters>div,
.alpha-filters .fieldset-wrapper>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.alpha-filters legend {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
}

.alpha-filters .letters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.alpha-filters .form-item [type='radio'] {
    height: 30px;
    width: 30px;
    top: 50%;
    left: 25%;
}

.alpha-filters .form-item [type='radio']+label {
    margin: 0;
    padding: 0;
    color: #014a85;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.3125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
    line-height: 36px;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media print,
screen and (min-width: 64.0625em) {
    .alpha-filters .form-item [type='radio']+label {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .alpha-filters .form-item [type='radio']+label {
        line-height: 36px;
    }
}

.alpha-filters .form-item [type='radio']+label:before {
    display: none;
}

.alpha-filters .form-item [type='radio']+label:hover,
.alpha-filters .form-item [type='radio']+label:focus {
    color: #ffcd00;
}

.alpha-filters .form-item [type='radio']:disabled+label {
    color: #6f7c87;
    border: 1px solid transparent;
    pointer-events: none;
}

.alpha-filters .form-item [type='radio']:checked+label:after {
    content: '';
    position: absolute;
    width: 100%;
    height: .125rem;
    left: 0;
    bottom: 0;
    background-color: transparent;
}

.alpha-filters .form-item [type='radio']:checked+label {
    border: 1px solid #6f7c87;
    border-radius: 50%;
    text-decoration: none;
}

.listing .alpha-filters .form-item {
    width: unset;
}

.listing .alpha-filters .form-item+.form-item {
    margin-left: 0;
}

.link-arrow {
    color: #014a85;
}

.link-arrow.btn {
    padding-right: 3rem;
}

.link-arrow::after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    padding-left: .5rem;
    content: "";
    font-weight: 300;
    color: #014a85;
    -webkit-transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
}

.link-arrow:hover,
.link-arrow:focus {
    color: #000;
    text-decoration: none;
}

.link-arrow:hover::after,
.link-arrow:focus::after {
    color: #000;
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

.btn {
    -webkit-transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    font-weight: normal;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    border-width: 2px;
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    padding: .5625rem 1.3125rem .5rem;
    border-radius: 3px;
    color: #000;
    background-color: #ffcd00;
    border: 2px solid transparent;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
    outline: none;
}

.btn:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6;
}

.btn::before {
    border-radius: 3px;
}

.btn::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    pointer-events: none;
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
    transition: -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
    transition: transform .5s cubic-bezier(.82, .06, .14, .97);
    transition: transform .5s cubic-bezier(.82, .06, .14, .97), -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
}

.btn:hover {
    color: #000;
    background-color: #ffcd00;
    border: 2px solid transparent;
}

.btn:hover::before {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
    border: 2px solid #ffcd00;
}

.btn:focus {
    color: #000;
    background-color: #ffcd00;
    border: 2px solid #000;
}

@media print,
screen and (min-width: 48.0625em) {
    .btn {
        font-size: 1rem;
        padding: 1.25rem 1.875rem 1.125rem;
        border-radius: 3px;
    }

    .btn::before {
        border-radius: 3px;
    }
}

.btn--alternate {
    font-size: 1rem;
    padding: .5625rem 1.3125rem .5rem;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    background-color: #115e6b;
    border-color: #115e6b;
}

.btn--alternate::before {
    border-radius: 3px;
}

.btn--alternate::before {
    display: none;
}

.btn--alternate::after {
    color: #fff;
}

.btn--alternate:hover,
.btn--alternate:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn--alternate:hover:after,
.btn--alternate:focus:after {
    color: #fff;
}

.btn--small {
    font-size: 1rem;
    padding: .5625rem 1.3125rem .5rem;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    background-color: #115e6b;
    border-color: #115e6b;
    font-size: .875rem;
}

.btn--small::before {
    border-radius: 3px;
}

.btn--small::before {
    display: none;
}

.btn--small::after {
    color: #fff;
}

.btn--small:hover,
.btn--small:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.btn--small:hover:after,
.btn--small:focus:after {
    color: #fff;
}

.btn--ghost {
    -webkit-transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    font-weight: normal;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    border-width: 2px;
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    padding: .5625rem 1.3125rem .5rem;
    border-radius: 3px;
    color: #fff;
    background-color: transparent;
    border-color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0;
    padding: 1.25rem 1.25rem 1.25rem;
}

.btn--ghost:hover,
.btn--ghost:focus {
    text-decoration: none;
    outline: none;
}

.btn--ghost:disabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .6;
}

.btn--ghost::before {
    border-radius: 3px;
}

.btn--ghost span {
    display: block;
    padding: 1.25rem 1.875rem 1.125rem;
}

.btn--ghost:before,
.btn--ghost:after {
    color: #fe5000;
}

.btn--ghost:hover {
    color: #000;
    border-color: #fff;
    background: #fff;
}

.btn--ghost:hover span {
    position: relative;
    z-index: 1;
    display: block;
    border-color: #fff;
    background: #fff;
}

.btn--ghost:hover:before,
.btn--ghost:hover:after {
    color: #ffe21a;
}

.btn--ghost:focus {
    color: #000;
    border-color: #000;
    background: #fff;
}

.btn--ghost:focus span {
    position: relative;
    z-index: 1;
    display: block;
    border-color: #000;
    background: #fff;
}

.btn--ghost:focus:before {
    display: none;
}

.btn--ghost:focus:after {
    color: #000;
}

@media print,
screen and (min-width: 48.0625em) {
    .btn--ghost {
        font-size: 1rem;
        padding: 1.25rem 1.875rem 1.125rem;
        border-radius: 3px;
        color: #fff;
        background-color: transparent;
        border-color: #fff;
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0;
        padding: 1.25rem 1.25rem 1.25rem;
    }

    .btn--ghost::before {
        border-radius: 3px;
    }

    .btn--ghost span {
        display: block;
        padding: 1.25rem 1.875rem 1.125rem;
    }

    .btn--ghost:before,
    .btn--ghost:after {
        color: #fe5000;
    }

    .btn--ghost:hover {
        color: #000;
        border-color: #fff;
        background: #fff;
    }

    .btn--ghost:hover span {
        position: relative;
        z-index: 1;
        display: block;
        border-color: #fff;
        background: #fff;
    }

    .btn--ghost:hover:before,
    .btn--ghost:hover:after {
        color: #ffe21a;
    }

    .btn--ghost:focus {
        color: #000;
        border-color: #000;
        background: #fff;
    }

    .btn--ghost:focus span {
        position: relative;
        z-index: 1;
        display: block;
        border-color: #000;
        background: #fff;
    }

    .btn--ghost:focus:before {
        display: none;
    }

    .btn--ghost:focus:after {
        color: #000;
    }
}

.btn--cta {
    font-size: 1rem;
    padding: 1.25rem 1.875rem 1.125rem;
    border-radius: 3px;
    color: #fff;
    background-color: transparent;
    border-color: #fff;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0;
    border: 2px solid #ffcd00;
    padding: 1.25rem 0 1.25rem;
    font-size: 1.25rem;
    color: #fff;
    text-transform: uppercase;
    display: block;
    letter-spacing: 2px;
}

.btn--cta::before {
    border-radius: 3px;
}

.btn--cta span {
    display: block;
    padding: 1.25rem 1.875rem 1.125rem;
}

.btn--cta:before,
.btn--cta:after {
    color: #fe5000;
}

.btn--cta:hover {
    color: #000;
    border-color: #fff;
    background: #fff;
}

.btn--cta:hover span {
    position: relative;
    z-index: 1;
    display: block;
    border-color: #fff;
    background: #fff;
}

.btn--cta:hover:before,
.btn--cta:hover:after {
    color: #ffe21a;
}

.btn--cta:focus {
    color: #000;
    border-color: #000;
    background: #fff;
}

.btn--cta:focus span {
    position: relative;
    z-index: 1;
    display: block;
    border-color: #000;
    background: #fff;
}

.btn--cta:focus:before {
    display: none;
}

.btn--cta:focus:after {
    color: #000;
}

.btn--cta:hover {
    color: #000;
    background-color: #ffcd00;
    border: 2px solid transparent;
}

.btn--cta:hover::before {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px);
    border: transparent;
}

.btn--cta:focus {
    border: 4px solid #ffcd00;
}

.btn--cta:focus::before {
    border: transparent;
}

.slider-navigation__prev {
    font-size: 1rem;
    padding: .5625rem 1.3125rem .5rem;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    background-color: #115e6b;
    border-color: #115e6b;
    padding: .8125rem;
    border-radius: 2px;
    width: 40px;
    height: 40px;
}

.slider-navigation__prev::before {
    border-radius: 3px;
}

.slider-navigation__prev::before {
    display: none;
}

.slider-navigation__prev::after {
    color: #fff;
}

.slider-navigation__prev:hover,
.slider-navigation__prev:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.slider-navigation__prev:hover:after,
.slider-navigation__prev:focus:after {
    color: #fff;
}

.slider-navigation__prev i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider-navigation__prev i:before {
    position: absolute;
}

.slider-navigation__prev:hover {
    border: none;
}

.slider-navigation__next {
    font-size: 1rem;
    padding: .5625rem 1.3125rem .5rem;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    background-color: #115e6b;
    border-color: #115e6b;
    padding: .8125rem;
    border-radius: 2px;
    width: 40px;
    height: 40px;
}

.slider-navigation__next::before {
    border-radius: 3px;
}

.slider-navigation__next::before {
    display: none;
}

.slider-navigation__next::after {
    color: #fff;
}

.slider-navigation__next:hover,
.slider-navigation__next:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.slider-navigation__next:hover:after,
.slider-navigation__next:focus:after {
    color: #fff;
}

.slider-navigation__next i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider-navigation__next i:before {
    position: absolute;
}

.slider-navigation__next:hover {
    border: none;
}

.btn--align-right {
    display: table;
    margin-left: auto;
}

.btn--align-center {
    display: table;
    margin-right: auto;
    margin-left: auto;
}

.elf-external,
.link-external,
.external {
    position: relative;
}

.elf-external:after,
.link-external:after,
.external:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    display: inline-block;
    padding-left: .25em;
    content: "";
}

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 {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    display: inline-block;
    font-weight: 900;
    padding-left: .6875rem;
    content: '';
}

a[data-entity-type='media']:after,
[href^='/documents/']:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    display: inline-block;
    font-weight: 900;
    padding-left: .6875rem;
    content: '';
}

.curve-convex--svg {
    position: absolute;
    width: 0;
    height: 0;
}

.curve-convex {
    width: 100%;
    height: 20vw;
    max-height: 280px;
    background-color: #fff;
}

.curve-convex--yellow {
    background-color: #ffcd00;
    background-image: url(../image/spiral-dots--white.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.curve-convex--white {
    background-color: #fff;
}

.hero~.curve-convex {
    position: relative;
    margin-top: -4vw;
}

.hero~.curve-convex {
    z-index: 2;
}

.hero~.curve-convex+.curve-convex {
    z-index: 3;
    margin-top: -4vw;
}

@media screen and (max-width: 50em) {
    .news--detail .hero~.curve-convex {
        margin-top: -13vw;
    }
}

.date-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.eyebrow+.date-block {
    margin-top: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .eyebrow+.date-block {
        margin-top: 2rem;
    }
}

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.date-block time+time::before {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    width: 1.5rem;
    height: .125rem;
    content: '';
    -webkit-transform: translateY(-14px);
    transform: translateY(-14px);
    background-color: currentColor;
}

@media print,
screen and (min-width: 48.0625em) {
    .date-block time+time::before {
        margin-right: 2rem;
        margin-left: 2rem;
    }
}

.date-block span {
    display: block;
}

.focus-link {
    background-color: #fcf7ae;
}

.icon-list {
    display: block;
}

.icon-list li:not(:first-child) {
    margin-top: 1rem;
}

.icon-list span,
.icon-list span.fas {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-weight: 400;
}

.icon-list li,
.icon-list a,
.icon-list span {
    display: block;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-weight: 400;
}

.icon-list li:before,
.icon-list a:before,
.icon-list span:before {
    margin-right: .5rem;
    font-family: "Font Awesome 5 Pro";
}

.icon-list li.fab:before,
.icon-list a.fab:before,
.icon-list span.fab:before {
    font-family: "Font Awesome 5 Brands";
}

.icon-list .fas::before {
    font-weight: 900;
}

.icon-list li p,
.icon-list span p {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem !important;
    margin-top: -.33em;
}

.icon-list li:before,
.icon-list span:before {
    margin-right: .5rem;
    font-family: "Font Awesome 5 Pro";
}

.icon-list--inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.icon-list--inline li:not(:first-child) {
    margin-top: 0;
}

.icon-list--inline li:not(:last-child) {
    margin-right: 2rem;
}

.icon-list--social-media a {
    font-size: 0;
}

.icon-list--social-media a:before {
    margin: 0;
    font-size: 1.25rem;
}

.icon-list .contact-info-email {
    word-break: break-all;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.icon-list .contact-info-email a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: -.625rem;
}

.icon-list .contact-info-email:before {
    content: '';
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #115e6b;
    margin-right: 1rem;
}

.fa-arrow-alt-to-bottom:after {
    content: '';
    font-family: "Font Awesome 5 Pro";
}

.fa-map-marker-alt:before {
    font-weight: 900;
}

.intro-text {
    font-size: 1.375rem;
    font-weight: normal;
    line-height: 1.7;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media print,
screen and (min-width: 64.0625em) {
    .intro-text {
        font-size: 1.625rem;
    }
}

.modal {
    display: none;
}

.offering-card a {
    color: #000;
    text-decoration: underline;
}

.offering-card a:hover,
.offering-card afocus {
    text-decoration: none;
}

.offering-card h2 {
    margin: 0;
}

.offering-card p:last-child {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 1.5rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .offering-card p:last-child {
        font-size: 1.25rem;
    }
}

.offering-card .card__content__inner--item {
    background-color: #ffcd00;
    border-radius: 4px;
    padding: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .offering-card .card__content__inner--item {
        padding: 2rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .offering-card .card__content__inner--item:not(:first-child) {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 64.0625em) {
    .offering-card .card__content__inner--item:not(:first-child) {
        margin-top: 2.5rem;
    }
}

.section-heading {
    --accent-color: #ffcd00;
    --text-color: #000;
    color: var(--text-color);
}

.section-heading--line-accent .section-heading__heading {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-heading--line-accent .section-heading__heading:after {
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 100vw;
    height: 1px;
    margin-bottom: 1.25rem;
    margin-left: .5rem;
    content: '';
    -webkit-transition: width 550ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.82, .06, .14, .97);
    transition: width 550ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.82, .06, .14, .97);
    background-color: var(--accent-color);
}

@supports not (--css: variables) {
    .section-heading--line-accent .section-heading__heading:after {
        background-color: #ffcd00;
    }
}

.section-heading--line-accent .section-heading__heading.oho-animate--ready:after {
    width: 0;
    -webkit-transition: none;
    transition: none;
    opacity: 0;
}

.section-heading .grid-x {
    position: relative;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.section-heading .medium-auto {
    margin-top: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .section-heading .medium-auto {
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .section-heading .medium-auto {
        white-space: nowrap;
    }
}

.section-heading .btn {
    margin-right: 0;
}

@supports not (--css: variables) {
    .section-heading {
        color: #000;
    }
}

.section-heading .section-heading__heading {
    white-space: nowrap;
    overflow: hidden;
    color: #000;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
}

.section-heading .section-heading__heading::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .section-heading .section-heading__heading {
        font-size: 1.125rem;
    }
}

.section-heading .section-heading__heading::after {
    padding-left: .2rem;
    font-size: 1rem;
}

@media screen and (max-width: 48.06125em) {
    .section-heading .section-heading__heading {
        font-size: 1rem;
    }
}

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

.section-heading__upper .section-heading__heading {
    color: #000;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    white-space: nowrap;
}

.section-heading__upper .section-heading__heading::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.section-heading__upper .section-heading__heading::before {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.section-heading__upper .section-heading__heading::before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    margin-right: .5rem;
    font-size: 1rem;
    font-weight: 400;
}

.section-heading__upper .section-heading__heading::after {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    margin-left: .5rem;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 400;
}

@media screen and (max-width: 48.06125em) {
    .section-heading__upper .section-heading__heading {
        font-size: 16px;
        text-align: left;
    }

    .section-heading__upper .section-heading__heading::before {
        display: none;
    }

    .section-heading__upper .section-heading__heading::after {
        width: 100%;
    }
}

.section-heading__upper .section-heading__subheading p {
    font-size: 1.125rem;
}

@media screen and (max-width: 48.06125em) {
    .section-heading__upper .section-heading__subheading p {
        text-align: left;
    }
}

.shadow--small {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.shadow--medium {
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
}

.shadow--large {
    -webkit-box-shadow: 0 36px 77px rgba(0, 0, 0, .15), 0 15px 24px rgba(0, 0, 0, .15);
    box-shadow: 0 36px 77px rgba(0, 0, 0, .15), 0 15px 24px rgba(0, 0, 0, .15);
}

.tags li a {
    padding: 5px 18px;
    display: inline-block;
    border: 1px solid #ffcd00;
    border-radius: 15px;
    -webkit-transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
}

.tags li a:hover {
    background-color: #ffcd00;
    color: #000;
}

.tags li::after {
    content: none;
}

@-webkit-keyframes slide-in {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes slide-in {
    from {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    to {
        -webkit-transform: none;
        transform: none;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 10;
    -webkit-transition: -webkit-transform 1s cubic-bezier(.42, .08, .06, .98);
    transition: -webkit-transform 1s cubic-bezier(.42, .08, .06, .98);
    transition: transform 1s cubic-bezier(.42, .08, .06, .98);
    transition: transform 1s cubic-bezier(.42, .08, .06, .98), -webkit-transform 1s cubic-bezier(.42, .08, .06, .98);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    max-width: 90rem;
}

.cookie-banner p {
    font-size: 1.25rem;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.cookie-banner__inner {
    background-color: #f2f5f7;
    padding: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .cookie-banner__inner {
        padding: 2.5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .cookie-banner__inner {
        padding: 1rem;
    }
}

.cookie-banner .grid-x {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 1rem;
}

@media screen and (max-width: 48.06125em) {
    .cookie-banner .grid-x {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.cookie-banner .wysiwyg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: -1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .cookie-banner .wysiwyg {
        padding-right: 1.5rem;
    }
}

.cookie-banner .flex-child-shrink,
.cookie-banner .flex-child-grow {
    margin-top: 1.5rem;
}

@media screen and (max-width: 48.06125em) {

    .cookie-banner .flex-child-shrink,
    .cookie-banner .flex-child-grow {
        margin-top: 0;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .cookie-banner .flex-child-grow {
        padding-right: 1.5rem;
    }
}

.cookie-banner .btn {
    margin: 0;
    text-transform: uppercase;
}

.cookie-banner a:not(.btn) {
    margin-right: 1.5rem;
}

body:not(.cookie-panel-dismissed) .cookie-banner {
    -webkit-animation: slide-in;
    animation: slide-in;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}

.site-footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #f2f5f7;
    position: relative;
    z-index: 1;
}

@media print,
screen and (min-width: 48.0625em) {
    .site-footer {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.site-footer .fab {
    font-size: 1.875rem;
}

@media screen and (max-width: 64.06125em) {
    .site-footer {
        place-content: center;
    }
}

@media screen and (max-width: 40.06125em) {
    .site-footer {
        padding-left: .5rem;
        padding-right: .5rem;
    }
}

.site-footer p {
    margin-bottom: 0;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .site-footer p {
        font-size: 1.25rem;
    }
}

.site-footer nav li {
    list-style: none;
    padding-top: 1rem;
}

.site-footer nav li a {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .site-footer nav li a {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-footer__address {
        text-align: center;
    }
}

.site-footer__address p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.site-footer__description p {
    margin-top: 1rem;
}

.site-footer__social-media {
    margin: auto;
}

.site-footer__social-media .social-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.site-footer__social-media .social-media li:not(:first-child) {
    margin-left: 1.5rem;
}

@media screen and (min-width: 48.0625em) {
    .site-footer__social-media .social-media {
        place-content: flex-end;
    }
}

.site-footer__social-media a {
    color: #000;
}

@media screen and (max-width: 48.06125em) {
    .site-footer__social-media {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        place-content: center;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .site-footer__social-media {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .site-footer__social-media .social-media {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

.site-footer__copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
}

.site-footer__copyright p {
    padding-left: 1.5rem;
}

@media screen and (max-width: 48.06125em) {
    .site-footer__address {
        color: #000;
        overflow: hidden;
    }

    .site-footer__address::after {
        content: '.......................................................................................................................................................................................................................................................';
        letter-spacing: .2rem;
    }

    .site-footer__address .global-spacing--2xsmall {
        margin-bottom: 36px;
    }
}

.site-footer__dots {
    height: 14px;
    font-size: 14px;
    color: #000;
    overflow: hidden;
}

.site-footer__dots::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.site-header {
    position: relative;
    z-index: 10;
    height: 3.3rem;
}

.site-header__sticky-container {
    will-change: transform;
    background: #ffcd00;
}

.site-header__sticky-container>.grid-container {
    position: relative;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
}

.site-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header li {
    position: relative;
}

.site-header__logo {
    display: block;
    padding: .625rem 0;
}

@media screen and (min-width: 64.0625em) {
    .site-header__logo {
        padding: 1.375rem 0;
    }
}

.site-header--beyond-threshold .site-header__sticky-container {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.site-header--beyond-threshold-animate .site-header__sticky-container {
    -webkit-transition: -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
}

.site-header--scroll-up .site-header__sticky-container,
.site-header--at-bottom .site-header__sticky-container {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media screen and (max-width: 64.06125em) {
    .site-header__logo {
        padding-left: .5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .site-header {
        height: 11rem;
        border-top: 4.065rem solid #fff;
    }

    .site-header__logo img {
        max-width: 17.75rem;
        max-height: 4.25rem;
    }
}

.mobile-menu-button {
    display: none;
}

@media screen and (max-width: 64.06125em) {
    .mobile-menu-button {
        position: absolute;
        top: 0;
        right: .5rem;
        bottom: 0;
        display: block;
        width: 3.3rem;
        margin: 0;
        padding: 0;
        background-color: #ffcd00;
        -webkit-transform: unset;
        transform: unset;
    }

    .mobile-menu-button::after {
        display: block;
        content: "三";
        -webkit-transition: color 150ms cubic-bezier(.42, .08, .06, .98);
        transition: color 150ms cubic-bezier(.42, .08, .06, .98);
        color: #000;
        font-family: "Font Awesome 5 Pro";
        font-size: 24px !important;
        font-weight: 400;
        padding-top: 0;
        border: none;
    }

    .mobile-menu-open .mobile-menu-button::after {
        content: "";
    }

    .mobile-menu-button:hover,
    .mobile-menu-button:focus {
        background-color: #ffcd00;
        border: none;
        -webkit-transform: none;
        transform: none;
    }

    .mobile-menu-button:hover::after,
    .mobile-menu-button:focus::after {
        -webkit-transform: unset;
        transform: unset;
        border: none;
    }

    .mobile-menu-button:hover::before,
    .mobile-menu-button:focus::before {
        border-color: transparent;
    }
}

.site-header__main {
    width: 100%;
}

@media screen and (max-width: 64.06125em) {
    .site-header__main {
        -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
        overflow: auto;
        max-height: calc(100vh - 57px);
        position: absolute;
        z-index: 1;
        top: 3.3rem;
        right: 0;
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 24rem;
    }

    .mobile-menu-open .site-header__main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 2;
        top: 3.6rem;
    }
}

@media screen and (max-width: 40.06125em) {
    .site-header__main {
        width: 100vw;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-header__top--cta {
        margin-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media screen and (min-width: 64.0625em) {
    .site-header__top--cta {
        margin-top: .5rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: .375rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-header__top--cta .btn--small {
        width: 100%;
        margin-top: 1rem;
    }
}

.site-header__top--right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-content: flex-end;
    font-size: 1.125rem;
}

@media screen and (max-width: 64.06125em) {
    .site-header__top--right {
        margin-top: 1rem;
    }
}

.site-header__top--right .audience-menu {
    border: 1px solid #a7bacb;
}

.site-header__top--right .audience-menu .menu-item__button {
    opacity: 1;
    height: 40px;
    width: 190px;
}

.site-header__top--right .audience-menu .menu-item__button::before {
    color: #115e6b;
    border: none;
    -webkit-transform: unset;
    transform: unset;
}

@media screen and (max-width: 64.06125em) {
    .site-header__top--right .audience-menu .menu-item__button::before {
        top: 4px;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-header__top--right .audience-menu .menu-item__button {
        top: .625rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-header__top--right .utility-menu {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-header__top--right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-header__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        background-color: #fff;
        padding-right: 1.25rem;
        padding-left: 1.25rem;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .site-header__top {
        padding-right: 1rem;
        padding-left: 1rem;
        background-color: #fff;
        display: flex;
        width: 100%;
        position: absolute;
        top: -3.8rem;
        left: 0;
        justify-content: center;
    }
}

.site-header__bottom {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 64.06125em) {
    .site-header__bottom .menu-item--expanded .menu-item__button {
        right: 20px;
    }

    .site-header__bottom .menu-item--expanded .menu-item__button::before {
        padding: .4375rem .625rem;
        background-color: #ffcd00;
        content: "";
        height: auto;
        border-radius: 50%;
        width: auto;
        top: .625rem;
        font-size: 1.125rem;
        left: 4px;
    }

    .site-header__bottom .menu-item--expanded .menu-item__button:before {
        -webkit-transform: unset;
        transform: unset;
        border: none;
    }
}

@media screen and (min-width: 64.0625em) {
    .site-header__bottom {
        place-content: center flex-end;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-header__bottom .main-menu {
        background-color: #fff;
        width: 100%;
    }

    .site-header__bottom .main-menu .menu-item--expanded {
        margin-right: 0;
    }
}

@media screen and (max-width: 64.06125em) {
    .site-header__bottom {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.site-search {
    position: relative;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.site-search .search-block-form {
    position: relative;
    width: 100%;
    padding: 1.25rem;
}

.site-search .search-block-form input {
    font-size: 1.125rem;
    text-align: left;
}

@media screen and (max-width: 64.06125em) {
    .site-search .search-block-form {
        background-color: #fff;
    }
}

.site-search .search-block-form label {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
}

@media screen and (max-width: 64.06125em) {
    .site-search .search-block-form .form-item {
        margin-top: 0;
    }

    .site-search .search-block-form .form-item input {
        background-color: #fcf7ae;
        height: 4.0625rem;
        padding-left: 1rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .site-search .search-block-form .form-item input {
        background-color: #fcf7ae;
    }
}

.site-search .search-block-form .form-actions input {
    width: 50px;
    padding: .6875rem 1rem;
    background-color: #115e6b;
    color: #fff;
    text-transform: uppercase;
    position: absolute;
    top: 35px;
    font-size: .875rem;
    right: 40px;
}

@media screen and (min-width: 64.0625em) {
    .site-search .search-block-form .form-actions input {
        top: 1.25rem;
        right: 1.0625rem;
    }
}

.site-search .search-block-form input {
    width: 100%;
    margin: 0;
    padding: .5em 5em .5em .5em;
    border: 0;
}

.site-search .search-block-form input::-webkit-input-placeholder {
    color: #262626;
}

.site-search .search-block-form input::-moz-placeholder {
    opacity: 1;
    color: #262626;
}

.site-search .search-block-form input:-ms-input-placeholder {
    color: #262626;
}

.site-search .search-block-form button {
    position: absolute;
    top: .5em;
    right: .5em;
    bottom: .5em;
    margin: 0;
    padding: .5em;
}

.site-search__toggle {
    display: none;
}

.site-search__toggle:focus {
    background: #ffcd00;
}

@media print,
screen and (min-width: 64.0625em) {
    .site-search {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }

    .site-search__toggle {
        display: block;
        height: 100%;
        background-color: transparent;
    }

    .site-search__toggle:before {
        content: "";
        top: 1.0625rem;
        color: #000;
        font-family: "Font Awesome 5 Pro";
        font-size: 1.1em;
        -webkit-transform: unset;
        transform: unset;
    }

    .site-search__toggle:hover,
    .site-search__toggle:focus {
        background-color: transparent;
        border: none;
        -webkit-transform: unset;
        transform: unset;
    }

    .site-search__toggle:hover:before,
    .site-search__toggle:hover:focus,
    .site-search__toggle:focus:before,
    .site-search__toggle:focus:focus {
        -webkit-transform: unset;
        transform: unset;
        border: none;
    }

    .search-panel-open .site-search__toggle:before {
        content: "";
        color: #000;
        font-size: 1.5rem;
        top: .75rem;
    }

    .search-panel-open .site-search__toggle:before:hover {
        display: none;
    }

    .site-search .search-block-form {
        position: absolute;
        z-index: 5;
        width: 39.0625rem;
        top: -.625rem;
        right: 2.1rem;
        display: none;
        background-color: #fcf7ae;
    }

    .site-search .search-block-form .form-item {
        margin-top: 0;
    }

    .search-panel-open .site-search .search-block-form {
        display: block;
    }

    .site-search .search-block-form button {
        top: 1em;
        right: 1em;
        bottom: 1em;
    }
}

.sock {
    margin-top: 4rem;
    background-color: #262626;
}

.sock__links {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.sock__links li {
    display: inline-block;
}

.sock__links a {
    display: block;
    margin: 0 .5em;
    padding: 1em;
    text-decoration: none;
    color: #fff;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

.sock__links a:hover,
.sock__links a:focus {
    color: #014a85;
    background-color: #a7bacb;
}

.accessible-menu li {
    position: relative;
}

.accessible-menu .menu-item__button {
    position: absolute;
    border: none;
    background-color: transparent;
}

@media 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: transparent;
        font-size: 1.5rem;
    }

    .accessible-menu .menu-item__button:before {
        display: inline-block;
        width: 100%;
        content: "";
        color: #000;
        font-family: "Font Awesome 5 Pro";
    }
}

@media screen and (max-width: 64.06125em) and (max-width: 64.06125em) {
    .accessible-menu .menu-item__button:before {
        text-align: right;
        left: -20px;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .accessible-menu .menu-item__button {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 1.5rem;
        height: 1rem;
        -webkit-transition: opacity 150ms cubic-bezier(.42, .08, .06, .98);
        transition: opacity 150ms cubic-bezier(.42, .08, .06, .98);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        opacity: 0;
        font-size: 0;
    }

    .accessible-menu .menu-item__button:before {
        width: 100%;
        left: 68px;
        top: 20px;
        content: "";
        color: #fff;
        font-family: "Font Awesome 5 Pro";
        font-size: 1.0625rem;
    }

    .accessible-menu .menu-item__button:focus,
    .accessible-menu .menu-item__button:hover {
        opacity: 1;
    }
}

.accessible-menu .menu-item--open>ul {
    display: block;
}

@media 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: "";
    }
}

.audience-menu a,
.audience-menu li,
.audience-menu span {
    display: block;
}

.audience-menu a,
.audience-menu span {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.audience-menu span {
    cursor: default;
}

@media screen and (max-width: 64.06125em) {
    .audience-menu {
        border-top: 1px solid #a7bacb;
    }

    .audience-menu a,
    .audience-menu span {
        padding: .8em 3em .8em .5em;
        color: #fff;
        font-size: 1.125rem;
        font-weight: 600;
    }
}

@media screen and (max-width: 64.06125em) and (max-width: 64.06125em) {

    .audience-menu a,
    .audience-menu span {
        color: #051c2c;
        font-weight: 400;
    }
}

@media screen and (max-width: 64.06125em) {

    .audience-menu a:hover,
    .audience-menu span:hover {
        text-decoration: none;
    }

    .audience-menu ul ul {
        display: none;
    }

    .audience-menu ul ul li+li {
        border-top: 1px solid #fff;
    }

    .audience-menu ul ul a {
        color: #000;
        background-color: #fff;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .audience-menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .audience-menu a,
    .audience-menu span {
        padding-left: 1.0625rem;
        padding-top: .8125rem;
        width: 11.875rem;
        color: #014a85;
        line-height: 1;
    }

    .audience-menu a:hover,
    .audience-menu span:hover {
        text-decoration: none;
    }

    .audience-menu ul ul {
        position: absolute;
        z-index: 3;
        display: none;
        min-width: 10rem;
    }

    .audience-menu ul ul li {
        display: block;
        margin: 0;
    }

    .audience-menu ul ul a {
        padding-top: .8125rem;
        padding-bottom: .8125rem;
        padding-right: .3125rem;
        background-color: #fff;
    }

    .audience-menu ul ul a:hover {
        color: #000;
    }
}

#toggle-the-info-for-menu--ul {
    padding-top: 12px;
    border: 1px solid #a7bacb;
    border-top: none;
    left: -1px;
}

.child-page-menu ul,
.child-page-menu li {
    list-style: none;
}

.child-page-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -.625rem;
    margin-left: -.625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .child-page-menu ul {
        margin-right: -.9375rem;
        margin-left: -.9375rem;
    }
}

.child-page-menu li {
    width: calc(100% - 1.25rem);
    margin-right: .625rem;
    margin-left: .625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .child-page-menu li {
        width: calc(33.33333% - 1.875rem);
        margin-right: .9375rem;
        margin-left: .9375rem;
    }
}

.child-page-menu a {
    color: #014a85;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: block;
    width: 100%;
    border-top: .125rem solid #f2f5f7;
}

.child-page-menu a.btn {
    padding-right: 3rem;
}

.child-page-menu a::after {
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    padding-left: .5rem;
    content: "";
    font-weight: 300;
    color: #014a85;
    -webkit-transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
}

.child-page-menu a:hover,
.child-page-menu a:focus {
    color: #000;
    text-decoration: none;
}

.child-page-menu a:hover::after,
.child-page-menu a:focus::after {
    color: #000;
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
}

@media print,
screen and (min-width: 64.0625em) {
    .child-page-menu a {
        font-size: 1.875rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .child-page-menu a {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.child-page-menu li:first-child a {
    border-top: 0;
}

@media print,
screen and (min-width: 48.0625em) {
    .child-page-menu li:nth-child(-n+3) a {
        border-top: 0;
    }
}

.main-menu li,
.main-menu a {
    display: block;
}

.main-menu a {
    color: #051c2c;
    font-size: 1.3125rem;
    text-transform: uppercase;
}

.main-menu a:hover {
    text-decoration: none;
}

.main-menu .menu-item--active-trail>a {
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media screen and (max-width: 75.06125em) {
    .main-menu .menu-item--active-trail>a {
        text-decoration: none;
    }
}

@media screen and (max-width: 64.06125em) {
    .main-menu ul {
        width: 100%;
        font-family: kapra-neue-semibold, sans-serif;
    }

    .main-menu a {
        padding: .5em 3em .5em .5em;
    }
}

@media screen and (max-width: 64.06125em) and (max-width: 75.06125em) {
    .main-menu a {
        padding: .9375rem 1.25rem .9375rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .main-menu ul ul {
        display: none;
    }

    .main-menu ul ul li:not(:last-child) {
        background-color: #fff;
        overflow: hidden;
        color: #000;
    }

    .main-menu ul ul li:not(:last-child)::after {
        content: '.......................................................................................................................................................................................................................................................';
        letter-spacing: .2rem;
    }

    .main-menu ul ul li:not(:last-child)::after {
        max-width: 100%;
        overflow: hidden;
        top: auto;
        bottom: 0;
        left: 20px;
        right: 20px;
        position: absolute;
    }

    .main-menu ul ul a {
        font-family: kapra-neue-regular-expanded, sans-serif;
        font-size: 1.25rem;
        text-transform: unset;
        color: #014a85;
        background-color: #fff;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .main-menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

    .main-menu .menu-item__button::before {
        display: none;
    }

    .main-menu li {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        font-family: kapra-neue-semibold-expanded, sans-serif;
        font-weight: normal;
    }

    .main-menu li:hover>a {
        color: #000;
        background-color: #fcf7ae;
    }

    .main-menu li:hover>ul {
        display: block;
    }

    .main-menu a {
        text-align: center;
        padding: .9375rem 2.0625rem 1rem;
    }

    .main-menu a:hover {
        background-color: #fcf7ae;
    }

    .main-menu a:focus {
        color: #000;
        background-color: #a7bacb;
    }

    .main-menu ul>li:nth-last-child(-n+1)>ul {
        right: 0;
    }

    .main-menu ul ul {
        position: absolute;
        display: none;
        width: auto;
        white-space: nowrap;
    }

    .main-menu ul ul li {
        -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    }

    .main-menu ul ul li:not(:last-child) {
        background-color: #fff;
        overflow: hidden;
        color: #000;
    }

    .main-menu ul ul li:not(:last-child)::after {
        content: '.......................................................................................................................................................................................................................................................';
        letter-spacing: .2rem;
    }

    .main-menu ul ul li:not(:last-child)::after {
        max-width: 100%;
        overflow: hidden;
        top: auto;
        bottom: 0;
        left: 20px;
        right: 20px;
        position: absolute;
    }

    .main-menu ul ul li:hover>a {
        background-color: #f2f5f7;
    }

    .main-menu ul ul a {
        padding: .9em 1em;
        text-align: left;
        font-size: 1.25rem;
        font-weight: normal;
        color: #014a85;
        text-transform: unset;
        background-color: #fff;
        font-family: kapra-neue-regular-expanded, sans-serif;
    }

    .main-menu ul ul a:focus {
        background-color: #f2f5f7;
    }
}

.menu-item--disabled>a {
    cursor: default;
}

.menu-item--disabled>a button {
    left: 0;
    width: auto;
    padding-right: .625em;
    text-align: right;
    background-color: transparent;
}

.menu-item--overview {
    display: none !important;
}

.menu-item--disabled .menu-item--overview {
    display: block !important;
}

.sidebar-menu {
    border: 1px solid #ffcd00;
    font-family: kapra-neue-regular-expanded, 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: 1em;
}

.sidebar-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-menu a {
    position: relative;
    display: block;
    padding: 1em 3rem 1em 1em;
    -webkit-transition: background-color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: background-color 150ms cubic-bezier(.42, .08, .06, .98);
}

.sidebar-menu a:hover {
    background-color: #f2f5f7;
}

.sidebar-menu__toggle {
    display: none;
}

.sidebar-menu .menu-item__button {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 3.375rem;
    height: 3.375rem;
    margin: 0;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    background-color: #262626;
    line-height: 1.6;
}

.sidebar-menu .menu-item__button:before {
    content: "";
    font-size: 1.5rem;
}

.sidebar-menu .menu-item--active-trail>a {
    background-color: #a7bacb;
}

@media screen and (max-width: 48.06125em) {
    .sidebar-menu__toggle {
        position: relative;
        display: block;
        width: 100%;
        margin: 0;
        padding: 1em;
        -webkit-transition: color 150ms cubic-bezier(.42, .08, .06, .98);
        transition: color 150ms cubic-bezier(.42, .08, .06, .98);
        color: #ffcd00;
        border: 0;
        background: none;
    }

    .sidebar-menu__toggle:after {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        line-height: 1;
        position: absolute;
        top: 50%;
        right: .75em;
        content: "";
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        font-family: "Font Awesome 5 Pro";
        font-size: 1.5em;
    }

    .sidebar-menu-open .sidebar-menu__toggle:after {
        content: "";
    }

    .sidebar-menu__toggle:hover {
        color: #997b00;
        background: none;
    }

    .sidebar-menu__container {
        display: none;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .sidebar-menu__container {
        display: block !important;
    }
}

.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-menu--border-levels li a {
    border-left-width: 0;
}

.sidebar-menu--border-levels li li a {
    border-left-width: .25em;
}

.sidebar-menu--border-levels li li li a {
    border-left-width: .5em;
}

.sidebar-menu--border-levels li li li li a {
    border-left-width: .75em;
}

.sidebar-menu--border-levels li a {
    border: 0 solid #ffcd00;
}

.sidebar-menu--padding-levels li a {
    padding-left: 1em;
}

.sidebar-menu--padding-levels li li a {
    padding-left: 2em;
}

.sidebar-menu--padding-levels li li li a {
    padding-left: 3em;
}

.sidebar-menu--padding-levels li li li li a {
    padding-left: 4em;
}

.sidebar-menu--ul-levels {
    border: 0;
}

.sidebar-menu--ul-levels ul {
    padding-left: 1em;
    border-left: 1px solid #ffcd00;
}

.sidebar-menu--ul-levels a {
    padding-left: 0;
}

.utility-menu a,
.utility-menu li {
    display: block;
}

@media screen and (max-width: 64.06125em) {

    .utility-menu a a,
    .utility-menu li a {
        color: #051c2c;
    }
}

.utility-menu a {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media screen and (max-width: 64.06125em) {
    .utility-menu ul {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }

    .utility-menu a {
        padding: .5em;
        text-align: center;
        color: #fff;
        font-weight: 600;
    }

    .utility-menu a:hover {
        text-decoration: none;
    }
}

@media screen and (max-width: 64.06125em) and (max-width: 75.06125em) {
    .utility-menu a {
        text-align: left;
        font-weight: 400;
        padding-left: 0;
        background-color: #fff;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .utility-menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .utility-menu a {
        padding: .75em 1em;
        line-height: 1;
    }
}

.accordion {
    clear: both;
}

.accordion+.accordion {
    margin-top: 1.75em;
}

.accordion p {
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
}

@media print,
screen and (min-width: 64.0625em) {
    .accordion p {
        font-size: 1rem;
    }
}

.accordion .link-arrow {
    color: #014a85;
    font-size: 1.25rem;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
    font-weight: 700;
}

@media print,
screen and (min-width: 64.0625em) {
    .accordion .link-arrow {
        font-size: 1.25rem;
    }
}

.accordion .link-arrow:hover {
    color: #014a85;
    text-decoration: underline;
}

@media screen and (max-width: 48.06125em) {
    .accordion .link-arrow {
        font-size: 1.125rem;
    }
}

.accordion__button {
    position: relative;
    width: 100%;
    margin: 0;
    font-size: 1.25rem;
    padding: 20px 3.75em 1.25em 1.25em;
    background-color: #ffcd00;
    text-transform: unset;
    -webkit-transition: background-color 150ms cubic-bezier(.42, .08, .06, .98), color 150ms cubic-bezier(.42, .08, .06, .98), border 0 cubic-bezier(.42, .08, .06, .98) 400ms;
    transition: background-color 150ms cubic-bezier(.42, .08, .06, .98), color 150ms cubic-bezier(.42, .08, .06, .98), border 0 cubic-bezier(.42, .08, .06, .98) 400ms;
    text-align: left;
    border: 1.5px solid #ffcd00;
    color: #000;
}

.accordion__button:hover {
    background-color: #000;
}

.accordion__button:hover,
.accordion__button:focus {
    color: #fff;
    border: 1.5px solid #000;
}

.accordion__button:hover path,
.accordion__button:focus path {
    fill: #000;
}

.accordion__button:hover .accordion__icon,
.accordion__button:focus .accordion__icon {
    background-color: #fff;
}

.accordion__button:focus {
    border-color: #ffcd00;
    color: #fff;
}

.accordion__button:before {
    display: none;
}

.accordion__icon {
    position: absolute;
    top: 0;
    right: 1.75em;
    bottom: 0;
    width: 2.0625rem;
    height: 2.0625rem;
    padding: .375rem;
    border-radius: 50%;
    margin: auto;
}

.accordion__icon-path {
    fill: #000;
    -webkit-transition: fill 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: fill 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: fill 150ms cubic-bezier(.42, .08, .06, .98), transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: fill 150ms cubic-bezier(.42, .08, .06, .98), transform 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
}

.accordion__icon-path--vertical {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    transform-origin-y: 50%;
}

.accordion__content {
    display: none;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    border: 1.5px solid #ffcd00;
    border-top: 0;
}

.accordion__content::before,
.accordion__content::after {
    display: table;
    content: ' ';
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.accordion__content::after {
    clear: both;
}

@media print,
screen and (min-width: 48.0625em) {
    .accordion__content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

:root:not(.oho-js) .accordion__content {
    display: block;
}

.accordion--open>.accordion__button,
:root:not(.oho-js) .accordion__button {
    -webkit-transition: background-color 150ms cubic-bezier(.42, .08, .06, .98), color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: background-color 150ms cubic-bezier(.42, .08, .06, .98), color 150ms cubic-bezier(.42, .08, .06, .98);
    color: #000;
    border-bottom: 0;
    background-color: #fff;
    border: 1.5px solid #ffcd00;
    border-bottom: unset;
}

.accordion--open>.accordion__button:hover,
:root:not(.oho-js) .accordion__button:hover {
    border: 1.5px solid #000;
    border-bottom: unset;
}

.accordion--open>.accordion__button:hover+.accordion__content,
:root:not(.oho-js) .accordion__button:hover+.accordion__content {
    border: 1.5px solid #000;
    border-top: unset;
}

.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 {
    -webkit-transform: scaleY(0);
    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: transparent;
}

.accordions .section-heading__heading {
    color: #000;
    color: #000;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.accordions .section-heading__heading::before {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.accordions .section-heading__heading::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .accordions .section-heading__heading {
        font-size: 1.125rem;
    }
}

.accordions .section-heading__subheading {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
}

@media print,
screen and (min-width: 64.0625em) {
    .accordions .section-heading__subheading {
        font-size: 1.125rem;
    }
}

.accordions .grid-container {
    max-width: 62.5rem;
}

.wysiwyg .accordions {
    margin-top: 2rem;
}

@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:before {
    display: none;
}

.wysiwyg .accordions .section-heading__subheading {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .wysiwyg .accordions .section-heading__subheading {
        font-size: 1.125rem;
    }
}

.wysiwyg .accordions .grid-container {
    padding: 0;
}

.affordability-feature {
    overflow: hidden;
    background: #fff url(../image/differentiator-bg.png) repeat center center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-right: 0;
    padding-left: 0;
    max-width: 1344px;
    margin-left: auto;
    margin-right: auto;
}

@media print,
screen and (min-width: 48.0625em) {
    .affordability-feature {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .affordability-feature {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.affordability-feature h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 2.25rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .affordability-feature h2 {
        font-size: 4rem;
    }
}

.affordability-feature__btn .btn {
    display: table;
    margin-right: auto;
    margin-left: auto;
}

.affordability-feature figure {
    margin: 0;
    position: relative;
}

.affordability-feature .aspect-ratio-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom-right-radius: 35% 50%;
    border-top-right-radius: 35% 50%;
}

@media print,
screen and (min-width: 40.0625em) {
    .affordability-feature .aspect-ratio-frame {
        margin-left: -20px;
    }
}

@media screen and (min-width: 75.0625em) {
    .affordability-feature .aspect-ratio-frame {
        margin-left: -120px;
    }
}

.affordability-feature figcaption {
    position: relative;
    z-index: 2;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-top: 3rem;
    max-width: 41.25rem;
    margin-top: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .affordability-feature figcaption {
        padding-right: 3rem;
        padding-bottom: 3rem;
        padding-left: 3rem;
    }
}

@media screen and (min-width: 58.75em) {
    .affordability-feature figcaption {
        margin-top: -120px;
    }
}

.affordability-feature blockquote {
    position: relative;
    overflow: visible;
    font-family: galaxie-copernicus-book, serif;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6875rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .affordability-feature blockquote {
        font-size: 1.125rem;
        line-height: 1.875rem;
    }
}

.affordability-feature blockquote::before {
    content: '';
    position: absolute;
    background-image: url(../image/quote.svg);
    display: inline-block;
    height: 35px;
    width: 42px;
    background-repeat: no-repeat;
    left: 0;
    top: -64px;
}

.affordability__testimonial--subtitle {
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
}

@media print,
screen and (min-width: 64.0625em) {
    .affordability__testimonial--subtitle {
        font-size: 1rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .affordability__statistics {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 40.06125em) {
    .affordability__statistics {
        max-width: 260px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .affordability__statistics {
        max-width: 260px;
    }
}

.affordability__statistics ul {
    list-style: none;
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .affordability__statistics ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .affordability__statistics ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.affordability__statistics li {
    width: 100%;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    position: relative;
    background-color: #ffcd00;
}

.affordability__statistics li:nth-child(2) {
    background-color: #6abcb6;
}

.affordability__statistics li:nth-child(3) {
    background-color: #69b4f6;
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .affordability__statistics li {
        width: 33.33%;
    }
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .affordability__statistics li {
        width: 33.33%;
    }
}

.affordability__statistics li::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.affordability__statistics li+li {
    margin-top: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .affordability__statistics li+li {
        margin-top: 2rem;
    }
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .affordability__statistics li+li {
        margin-top: 0;
        margin-left: 2.5rem;
    }
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .affordability__statistics li+li {
        margin-top: 0;
        margin-left: 2.5rem;
    }
}

.affordability__statistics article {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 2.5rem;
}

.affordability__statistic--value {
    font-family: kapra-neue-semibold, sans-serif;
    font-size: 5.75rem;
    line-height: 5.625rem;
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .affordability__statistic--value {
        font-size: 4rem;
        line-height: 3.75rem;
    }
}

.affordability__statistic--subtitle {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    line-height: 1.375rem;
    text-transform: uppercase;
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .affordability__statistic--subtitle {
        font-size: 1rem;
        line-height: 1.125rem;
    }
}

.alpha-jump-links {
    padding: 2.5rem;
    background-color: #eeebf2;
}

.alpha-jump-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.alpha-jump-links li {
    display: inline-block;
    margin: 0 .5em .5em 0;
    color: #808080;
    font-size: 1.5rem;
    font-weight: 600;
}

.oho-animate {
    -webkit-transition: opacity 550ms cubic-bezier(.42, .08, .06, .98) 250ms, -webkit-transform 550ms cubic-bezier(.42, .08, .06, .98) 250ms;
    transition: opacity 550ms cubic-bezier(.42, .08, .06, .98) 250ms, -webkit-transform 550ms cubic-bezier(.42, .08, .06, .98) 250ms;
    transition: opacity 550ms cubic-bezier(.42, .08, .06, .98) 250ms, transform 550ms cubic-bezier(.42, .08, .06, .98) 250ms;
    transition: opacity 550ms cubic-bezier(.42, .08, .06, .98) 250ms, transform 550ms cubic-bezier(.42, .08, .06, .98) 250ms, -webkit-transform 550ms cubic-bezier(.42, .08, .06, .98) 250ms;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
}

.oho-animate--ready {
    -webkit-transition: none;
    transition: none;
}

.oho-animate--ready.fade-in-up,
.oho-animate--out.fade-in-up {
    -webkit-transform: translateY(5rem);
    transform: translateY(5rem);
    opacity: 0;
}

.oho-animate--ready.fade-in-right,
.oho-animate--out.fade-in-right {
    -webkit-transform: translateX(5rem);
    transform: translateX(5rem);
    opacity: 0;
}

.oho-animate--ready.fade-in-down,
.oho-animate--out.fade-in-down {
    -webkit-transform: translateY(-5rem);
    transform: translateY(-5rem);
    opacity: 0;
}

.oho-animate--ready.fade-in-left,
.oho-animate--out.fade-in-left {
    -webkit-transform: translateX(-5rem);
    transform: translateX(-5rem);
    opacity: 0;
}

.announcements--card {
    position: relative;
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    padding: 1.75rem 1rem 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .announcements--card {
        padding: 3rem;
    }
}

.announcements--card__title {
    overflow: hidden;
}

.announcements--card__title h2 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
}

@media print,
screen and (min-width: 64.0625em) {
    .announcements--card__title h2 {
        font-size: .875rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .announcements--card__title {
        position: abolute;
        height: 0;
        width: 0;
    }
}

@media screen and (max-width: 64.06125em) {
    .announcements--card__subtitle {
        display: none;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .announcements--card__subtitle {
        position: absolute;
        top: 48px;
        left: 48px;
        bottom: 48px;
        width: 60px;
        background-image: url(../image/vertical-dotted-line.png);
        background-repeat: repeat-y;
        background-position: top right;
    }

    .announcements--card__subtitle::before {
        content: "";
        display: block;
        width: 15px;
        height: 219px;
        background-image: url(../image/Latest-Announcements.png);
        background-repeat: no-repeat;
        background-position: left center;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .announcements--slider {
        margin-left: 96px;
        min-height: 243px;
    }
}

@media screen and (max-width: 64.06125em) {
    .announcements--slider {
        margin-top: 1rem;
    }
}

.announcements--slider .link-arrow {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.125rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .announcements--slider .link-arrow {
        font-size: 1.25rem;
    }
}

.announcements .slider-navigation {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.announcements .slider-navigation .btn--small {
    width: 40px;
    height: 40px;
    margin: 0 .125rem;
}

.home-page>.announcements {
    margin-top: 0;
}

@media print,
screen and (min-width: 48.0625em) {
    .home-page>.announcements .announcements--card {
        margin-top: -22vw;
    }
}

@media screen and (min-width: 87.5em) {
    .home-page>.announcements .announcements--card {
        margin-top: -20vw;
    }
}

@media screen and (min-width: 100em) {
    .home-page>.announcements .announcements--card {
        margin-top: -320px;
    }
}

.breadcrumbs {
    overflow: hidden;
    margin: 1em 0 0;
    padding: 0;
    list-style: none;
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
}

.breadcrumbs li {
    display: inline-block;
    padding-left: 1.2rem;
}

.breadcrumbs li:first-child {
    padding-left: 0;
}

.breadcrumbs li:last-child {
    font-family: galaxie-copernicus-bold, serif;
    font-weight: 700;
}

.breadcrumbs li:nth-child(n+2):before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
    content: "";
    line-height: 1.5;
    font-size: .6875rem;
}

@media screen and (max-width: 40.06125em) {
    .breadcrumbs li:not(:nth-last-child(2)) {
        display: none;
    }

    .breadcrumbs a {
        margin-left: 1.5rem;
    }

    .breadcrumbs li:nth-last-child(2):before {
        font-family: "Font Awesome 5 Pro";
        font-weight: 400;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-smoothing: antialiased;
        content: "";
        color: #014a85;
        font-size: .875rem;
        line-height: 1.5;
        -webkit-transform: unset;
        transform: unset;
    }
}

.card {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card .card__content__inner {
    padding: 1.5rem;
}

.card .card__media {
    width: 100%;
    margin-bottom: 0;
}

.card .card__content {
    width: 100%;
}

.card img {
    display: block;
}

.card__media {
    position: relative;
}

.card figure {
    margin: 0;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--medium {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--medium .card__content__inner {
        padding: 2rem;
    }

    .card--medium .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--medium .card__content {
        width: 100%;
    }

    .card--medium img {
        display: block;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .card--medium {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--medium .card__content__inner {
        padding: 2rem;
    }

    .card--medium .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--medium .card__content {
        width: 100%;
    }

    .card--medium img {
        display: block;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .card--medium {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--medium .card__content__inner {
        padding: 4rem;
    }

    .card--medium .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--medium .card__content {
        width: 100%;
    }

    .card--medium img {
        display: block;
    }
}

.card--inline {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.card--inline .card__media {
    width: 50%;
    margin-bottom: 0;
}

.card--inline .card__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.card--inline img {
    display: block;
}

@media screen and (max-width: 48.06125em) {
    .card--stacked--small {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--stacked--small .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--stacked--small .card__content {
        width: 100%;
    }

    .card--stacked--small img {
        display: block;
    }
}

.card--stacked {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card--stacked .card__media {
    width: 100%;
    margin-bottom: 0;
}

.card--stacked .card__content {
    width: 100%;
}

.card--stacked img {
    display: block;
}

.card--collapse {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.card--collapse .card__media {
    width: 100%;
    margin-bottom: 0;
}

.card--collapse .card__content {
    width: 100%;
}

.card--collapse .card__content__inner {
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

.card--collapse img {
    display: block;
}

.card--tiny {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.card--tiny .card__content__inner {
    padding: 1.5rem;
}

.card--tiny .card__media {
    width: 25%;
    margin-bottom: 0;
}

.card--tiny .card__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.card--tiny img {
    display: block;
}

.card--tiny h2,
.card--tiny h3 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
}

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

    .card--tiny h2,
    .card--tiny h3 {
        font-size: 1.25rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .card--offset {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        margin-top: -4.5rem;
    }

    .card--offset .card__content__inner {
        padding: 4rem;
    }

    .card--offset .card__media {
        width: 50%;
        margin-bottom: 0;
    }

    .card--offset .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--offset img {
        display: block;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .card--reversed {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .card--reversed .card__content__inner {
        padding: 0 3.5rem 0 0;
    }

    .card--reversed .card__media {
        width: 33.33333%;
        margin-bottom: 0;
    }

    .card--reversed .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--reversed img {
        display: block;
    }
}

.card--full-width {
    position: relative;
}

.card--full-width .card__content {
    padding-bottom: 2.5rem;
    padding-right: 2.5rem;
    position: absolute;
    max-width: 40.625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--full-width .card__content {
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .card--full-width .card__content {
        padding-bottom: 4rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .card--full-width .card__content {
        padding-right: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .card--full-width .card__content {
        padding-right: 4rem;
    }
}

.card--full-width .card__content__inner {
    background: #d9d9d9;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--full-width {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--full-width .card__content__inner {
        padding: 4rem;
    }

    .card--full-width .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--full-width .card__content {
        width: 100%;
    }

    .card--full-width img {
        display: block;
    }
}

.card--checkerboard-program {
    padding-right: 0;
    padding-left: 0;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    -webkit-transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    opacity: 1;
}

.card--checkerboard-program h3 {
    margin-top: 1rem;
}

.card--checkerboard-program p {
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
}

@media print,
screen and (min-width: 64.0625em) {
    .card--checkerboard-program p {
        font-size: 1rem;
    }
}

.card--checkerboard-program .btn {
    font-size: 1rem;
}

.card--checkerboard-program .card__content {
    background-color: #f2f5f7;
    max-width: 825px;
    margin-right: -.625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--checkerboard-program .card__content {
        margin-right: -.9375rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .card--checkerboard-program .card__content {
        margin-right: 0;
    }
}

.card--checkerboard-program .card__content .card__content__inner {
    padding-left: 4rem;
}

@media screen and (max-width: 48.06125em) {
    .card--checkerboard-program .card__content .card__content__inner {
        padding-left: 1.5rem;
    }
}

.card--checkerboard-program .card__content .card__content__inner .full {
    padding-top: 1vw;
}

.card--checkerboard-program .card__media {
    position: relative;
}

.card--checkerboard-program .card__media img {
    border-bottom-left-radius: 35% 50%;
    border-top-left-radius: 35% 50%;
}

@media screen and (max-width: 48.06125em) {
    .card--checkerboard-program .card__media img {
        border-bottom-left-radius: initial;
        border-top-left-radius: initial;
    }
}

.card--checkerboard-program figure {
    margin: 0;
}

@media screen and (max-width: 40.06125em) {
    .card--checkerboard-program {
        padding-right: .5rem;
        padding-left: .5rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--checkerboard-program .card__content__inner {
        padding: 2rem 1.5rem;
    }

    .card--checkerboard-program .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--checkerboard-program .card__content {
        width: 100%;
    }

    .card--checkerboard-program img {
        display: block;
    }
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .card--checkerboard-program {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .card--checkerboard-program .card__content__inner {
        padding: 2rem;
    }

    .card--checkerboard-program .card__media {
        width: 33.33333%;
        margin-bottom: 0;
    }

    .card--checkerboard-program .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--checkerboard-program img {
        display: block;
    }
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .card--checkerboard-program {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .card--checkerboard-program .card__content__inner {
        padding: 2.5rem;
    }

    .card--checkerboard-program .card__media {
        width: 41.66667%;
        margin-bottom: 0;
    }

    .card--checkerboard-program .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--checkerboard-program img {
        display: block;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .card--checkerboard-program {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .card--checkerboard-program .card__content__inner {
        padding: 3.5rem;
    }

    .card--checkerboard-program .card__media {
        width: 58.33333%;
        margin-bottom: 0;
    }

    .card--checkerboard-program .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--checkerboard-program img {
        display: block;
    }
}

@media screen and (min-width: 75.0625em) {
    .card--checkerboard-program {
        padding-left: 9.063rem;
    }

    .card--checkerboard-program p {
        max-width: 455px;
    }
}

.card--checkerboard {
    position: relative;
    -webkit-transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98);
    transition: transform 150ms cubic-bezier(.42, .08, .06, .98), opacity 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
    opacity: 1;
}

.card--checkerboard::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #f2f5f7;
    z-index: -1;
}

.card--checkerboard:nth-child(odd)::after {
    margin-right: -65vw;
}

@media screen and (max-width: 64.06125em) {
    .card--checkerboard:nth-child(odd)::after {
        margin-right: -100vw;
    }
}

.card--checkerboard:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.card--checkerboard:nth-child(even) .card__media img {
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: 35% 50%;
    border-top-right-radius: 35% 50%;
}

@media screen and (max-width: 59.375em) {
    .card--checkerboard:nth-child(even) .card__media img {
        border-top-right-radius: unset;
        border-bottom-right-radius: unset;
    }
}

.card--checkerboard:nth-child(even) .card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media screen and (max-width: 40.06125em) {
    .card--checkerboard:nth-child(even) .card__content {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.card--checkerboard:nth-child(even) .card__content__inner {
    margin-right: .625rem;
    margin-left: 0;
}

.card--checkerboard:nth-child(even)::after {
    margin-left: -65vw;
}

@media screen and (max-width: 64.06125em) {
    .card--checkerboard:nth-child(even)::after {
        margin-left: -100vw;
    }
}

.card--checkerboard .card__media {
    position: relative;
    max-width: 40.625rem;
}

.card--checkerboard .card__media img {
    border-bottom-left-radius: 35% 50%;
    border-top-left-radius: 35% 50%;
    border-bottom-right-radius: unset;
    border-top-right-radius: unset;
}

@media screen and (max-width: 59.375em) {
    .card--checkerboard .card__media img {
        border-top-left-radius: unset;
        border-bottom-left-radius: unset;
    }
}

.card--checkerboard .card__content {
    background-color: #f2f5f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.card--checkerboard .card__content h2 {
    margin-top: .625rem;
}

.card--checkerboard .card__content .eyebrow {
    font-size: .875rem;
}

.card--checkerboard .card__content .global-spacing--2xsmall>p {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    line-height: 1.8125rem;
}

.card--checkerboard .card__content a {
    margin-top: 0;
}

.card--checkerboard .card__content .wysiwyg {
    max-width: 26.25rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .card--checkerboard .card__content__inner {
        margin-left: 1.25rem;
    }
}

.card--checkerboard figure {
    margin: 0;
}

@media screen and (max-width: 40.06125em) {
    .card--checkerboard {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--checkerboard .card__content__inner {
        padding: 2rem 1.5rem;
    }

    .card--checkerboard .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--checkerboard .card__content {
        width: 100%;
    }

    .card--checkerboard img {
        display: block;
    }
}

@media screen and (max-width: 59.375em) {
    .card--checkerboard {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card--checkerboard .card__media {
        width: 100% !important;
        margin: auto;
    }

    .card--checkerboard .card__content {
        max-width: 40.625rem;
        margin: auto;
    }

    .card--checkerboard .card__content .wysiwyg.full {
        max-width: 100%;
    }

    .card--checkerboard .card__content:nth-child(even) {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-left: unset;
    }

    .card--checkerboard:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card--checkerboard::after {
        display: none;
    }
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .card--checkerboard {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .card--checkerboard .card__content__inner {
        padding: 2rem;
    }

    .card--checkerboard .card__media {
        width: 50%;
        margin-bottom: 0;
    }

    .card--checkerboard .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--checkerboard img {
        display: block;
    }
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .card--checkerboard {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .card--checkerboard .card__content__inner {
        padding: 2.5rem;
    }

    .card--checkerboard .card__media {
        width: 50%;
        margin-bottom: 0;
    }

    .card--checkerboard .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--checkerboard img {
        display: block;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .card--checkerboard {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .card--checkerboard .card__content__inner {
        padding: 0;
    }

    .card--checkerboard .card__media {
        width: 66.66667%;
        margin-bottom: 0;
    }

    .card--checkerboard .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--checkerboard img {
        display: block;
    }
}

.card--checkerboard:nth-child(even) {
    margin-left: 0;
}

@media screen and (max-width: 75.06125em) {
    .card--checkerboard:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
    }
}

.checkerboard {
    overflow: hidden;
}

@media screen and (min-width: 84.375em) {
    .card--checkerboard:nth-child(odd) .card__content__inner {
        margin-left: 96px;
    }

    .card--checkerboard:nth-child(even) .card__content__inner {
        margin-right: 96px;
    }
}

.photo-box__teaser {
    float: left;
    width: calc(100vw - 6rem);
}

.photo-box__teaser+.photo-box__teaser {
    margin-left: 2rem;
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .photo-box__teaser {
        width: calc(50vw - 4rem);
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .photo-box__teaser {
        width: 360px;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .section--photo-boxes .listing-slick {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.section--photo-boxes {
    overflow-x: hidden;
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .section--photo-boxes .listing-slick {
        right: 1rem;
    }
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .section--photo-boxes .listing-slick {
        right: -1rem;
    }
}

.section--photo-boxes .slick-list {
    overflow: visible !important;
}

.section--photo-boxes .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.section--photo-boxes .btn {
    display: inline-block;
    margin: rem(60) auto 0;
}

.photo-box__teaser a {
    text-align: center;
    text-decoration: none;
}

.photo-box__teaser div {
    background-color: rgba(0, 0, 0, .5);
    background-size: cover;
    -webkit-background-blend-mode: multiply;
    background-blend-mode: multiply;
}

.photo-box__teaser h3,
.photo-box__teaser p {
    color: #fff;
}

.photo-box__teaser h3 {
    position: relative;
    font-size: 1.4rem;
    line-height: 1.285;
}

.photo-box__teaser span {
    display: block;
    margin-bottom: .25rem;
    text-transform: uppercase;
    color: #fff;
    font-size: .8rem;
    font-weight: 600;
}

.photo-box__teaser a p {
    margin-bottom: 0;
    font-family: galaxie-copernicus-book, serif;
}

.photo-box--small div {
    padding: 2rem;
}

.photo-box--small h3 {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.4;
}

.photo-box--large {
    max-width: 100%;
}

.photo-box--large div {
    padding: 3rem;
}

.photo-box--large h3 {
    margin-bottom: 3rem;
    font-size: 1.4rem;
    line-height: 1.285;
}

.no-touch .photo-box__teaser a:hover div {
    background-color: rgba(149, 31, 36, .9);
}

.no-touch .photo-box__teaser a:hover h3:after {
    position: absolute;
    bottom: -1rem;
    left: calc((100% - 11rem) / 2);
    display: block;
    width: 11rem;
    height: 1px;
    content: '';
    background: #fff;
}

.photo-box--large a:hover h3:after {
    bottom: -1.5rem;
    left: calc((100% - 18rem) / 2);
    width: 18rem;
}

.photo-box__teasers--small,
.photo-box__teasers--large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (min-width: 42em) {

    .photo-box__teasers--small,
    .photo-box__teasers--large {
        margin-right: -1rem;
        margin-left: -1rem;
    }
}

.photo-box__teasers--large {
    position: relative;
}

@media screen and (max-width: 39.99em) {
    .photo-box__teasers--large {
        margin-bottom: 4rem;
    }

    .photo-box__teasers--large:after {
        position: absolute;
        bottom: -2rem;
        left: 3rem;
        clear: both;
        width: calc(100% - 6rem);
        height: 1px;
        content: '';
        background-color: #999;
    }
}

.photo-box--large {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    width: 100%;
    height: auto;
    margin: 1rem;
}

@media screen and (min-width: 42em) and (max-width: 68.49em) {
    .photo-box--large {
        width: 60%;
    }
}

@media screen and (min-width: 68.5em) {
    .photo-box--large {
        width: 46.33%;
    }
}

.photo-box__teaser.photo-box--large {
    margin-left: 1rem;
}

.photo-box__teasers--small .photo-box--small {
    -webkit-box-flex: 0;
    -ms-flex: 0 auto;
    flex: 0 auto;
    width: 100%;
    height: auto;
    margin: 1rem;
}

@media screen and (min-width: 40em) and (max-width: 1079px) {
    .photo-box__teasers--small .photo-box--small {
        width: 44%;
    }
}

@media screen and (min-width: 1080px) and (max-width: 1159px) {
    .photo-box__teasers--small .photo-box--small {
        width: 28%;
    }
}

@media screen and (min-width: 1160px) {
    .photo-box__teasers--small .photo-box--small {
        width: 29.75%;
    }
}

.section--cta-feature-box {
    overflow: hidden;
    margin-bottom: 0;
}

.cta-feature-box ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.columns .cta-feature-box {
    margin-bottom: 2.5rem;
}

.cta-feature-box__heading {
    margin: .625rem 0;
}

.cta-feature-box--featured {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cta-feature-box--featured .cta-feature-box__content {
    position: relative;
    z-index: 2;
    max-width: 25rem;
    padding: 1.875rem;
    -webkit-transform: translateX(-3.75rem);
    transform: translateX(-3.75rem);
    color: #fff;
    background: #262626;
}

.cta-next-step {
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding-top: 3rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .cta-next-step {
        padding-top: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .cta-next-step {
        padding-top: 5.5rem;
    }
}

.cta-next-step::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-color: #f2f5f7;
}

.cta-next-step--box {
    background-color: #115e6b;
    padding-right: 0;
    padding-left: 0;
    max-width: 1344px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

@media print,
screen and (min-width: 48.0625em) {
    .cta-next-step--box {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .cta-next-step--box {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (max-width: 75.06125em) {
    .cta-next-step--box {
        margin-right: .625rem;
        margin-left: .625rem;
        text-align: center;
    }
}

.cta-next-step {
    z-index: 3;
}

.cta-next-step__links {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 64.06125em) {
    .cta-next-step__links div {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 64.06125em) and (min-width: 48.0625em) {
    .cta-next-step__links div {
        margin-top: 2rem;
    }
}

.cta-next-step__content {
    text-align: center;
}

.cta-next-step__content .h4 {
    margin: auto;
}

.cta-next-step__heading {
    color: #fff;
}

@media screen and (max-width: 64.06125em) {
    .cta-next-step__heading {
        margin-bottom: 1.375rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .cta-next-step__heading {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.differentiators-headline .grid-container-lg {
    background-image: url(../image/differentiator-bg.png);
    padding-right: 0;
    padding-left: 0;
    max-width: 1344px;
    margin-left: auto;
    margin-right: auto;
}

.differentiators-headline .grid-container-lg .differentiators__upper {
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

.differentiators-headline .grid-container-lg .differentiators__upper .section-heading__subheading p {
    font-size: 1.125rem;
}

@media screen and (max-width: 48.06125em) {
    .differentiators-headline .grid-container-lg .differentiators__upper .section-heading__subheading {
        text-align: left;
    }
}

.differentiators-headline .grid-container-lg .differentiators__lower {
    margin-right: 1rem;
    margin-left: 1rem;
}

.differentiators-headline .grid-container-lg .section-heading__heading {
    color: #000;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
}

.differentiators-headline .grid-container-lg .section-heading__heading::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.differentiators-headline .grid-container-lg .section-heading__heading::before {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.differentiators-headline .grid-container-lg .section-heading__heading::before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1rem;
    margin-right: .5rem;
    font-weight: 400;
}

.differentiators-headline .grid-container-lg .section-heading__heading::after {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    margin-left: .5rem;
    font-size: 1rem;
    font-weight: 400;
}

@media screen and (max-width: 48.06125em) {
    .differentiators-headline .grid-container-lg .section-heading__heading {
        font-size: 16px;
        text-align: left;
    }

    .differentiators-headline .grid-container-lg .section-heading__heading::before {
        display: none;
    }

    .differentiators-headline .grid-container-lg .section-heading__heading::after {
        width: 100%;
    }
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper {
    padding: 2rem;
    background-color: #115e6b;
    color: #fff;
}

@media print,
screen and (min-width: 64.0625em) {
    .differentiators-headline .grid-container-lg .differentiator__card--wrapper {
        padding: 3rem;
    }
}

@media screen and (max-width: 75.06125em) {
    .differentiators-headline .grid-container-lg .differentiator__card--wrapper {
        padding-bottom: 1rem;
    }
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card h3 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card li {
    font-size: 1.125rem;
    margin-left: 1.25rem;
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card li::marker {
    color: #ffcd00;
    font-size: 1.3125rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card li {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 64.06125em) and (min-width: 64.0625em) {
    .differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card {
        margin-bottom: 2.5rem;
    }
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card--last {
    width: 260px;
    height: 260px;
    color: #000;
    background-color: #ffcd00;
    border-radius: 50%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card--last__inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card--last__inside .eyebrow-large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card--last h3 {
    font-size: 5.75rem;
}

.differentiators-headline .grid-container-lg .differentiator__card--wrapper .differentiator__card--last p {
    text-transform: uppercase;
    font-family: kapra-neue-regular-expanded, sans-serif;
    text-align: left;
    line-height: 1.3;
    margin-top: -15px;
}

.card--differentiator {
    margin-top: 2rem;
    overflow: hidden;
    background: #fff;
}

@media print,
screen and (min-width: 64.0625em) {
    .card--differentiator {
        margin-top: 2.5rem;
    }
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .card--differentiator--image {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .card--differentiator--image .card__content__inner {
        padding: 0 0 0 2.5rem;
    }

    .card--differentiator--image .card__media {
        width: 50%;
        margin-bottom: 0;
    }

    .card--differentiator--image .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--differentiator--image img {
        display: block;
    }
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .card--differentiator--image {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        padding: 2rem;
    }

    .card--differentiator--image .card__content__inner {
        padding: 0 0 0 2.5rem;
    }

    .card--differentiator--image .card__media {
        width: 50%;
        margin-bottom: 0;
    }

    .card--differentiator--image .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--differentiator--image img {
        display: block;
    }
}

.card--differentiator .card__media {
    border-radius: 0;
}

@media screen and (max-width: 64.06125em) {
    .card--differentiator .card__media {
        max-width: 21.875rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .card--differentiator .card__media {
        max-width: none;
    }
}

.card--differentiator h3,
.card--differentiator p {
    margin-top: 1rem;
}

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

    .card--differentiator h3,
    .card--differentiator p {
        margin-top: 1.5rem;
    }
}

.card--differentiator .card__media+.card__content h3 {
    margin-top: 0;
}

@media screen and (max-width: 48.06125em) {
    .card--differentiator {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 2.5rem;
    }

    .card--differentiator .card__content__inner {
        padding: 2rem 0 0 0;
    }

    .card--differentiator .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--differentiator .card__content {
        width: 100%;
    }

    .card--differentiator img {
        display: block;
    }
}

@media screen and (min-width: 48.0625em) {
    .card--differentiator {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--differentiator .card__content__inner {
        padding: 2rem 0 0 0;
    }

    .card--differentiator .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--differentiator .card__content {
        width: 100%;
    }

    .card--differentiator img {
        display: block;
    }
}

@media screen and (min-width: 64.0625em) {
    .card--differentiator {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--differentiator .card__content__inner {
        padding: 3rem 0 0 0;
    }

    .card--differentiator .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--differentiator .card__content {
        width: 100%;
    }

    .card--differentiator img {
        display: block;
    }
}

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

.webform-likert-table-wrapper .mobile-table {
    margin-top: 1rem;
}

.webform-likert-table {
    border: none;
    width: 100%;
}

.webform-likert-table * {
    border: none;
}

.webform-likert-table thead [type='radio']+label,
.webform-likert-table tbody [type='radio']+label {
    width: 100%;
    height: 100%;
    margin: 0;
}

.webform-likert-table thead [type='radio']+label:before,
.webform-likert-table tbody [type='radio']+label:before {
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.webform-likert-table thead label,
.webform-likert-table tbody label {
    padding: 0;
    margin-left: 0 !important;
    font-weight: 500;
}

.webform-likert-table thead div,
.webform-likert-table tbody div {
    margin: 0;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.webform-likert-table thead tr,
.webform-likert-table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.webform-likert-table thead td,
.webform-likert-table thead th,
.webform-likert-table tbody td,
.webform-likert-table tbody th {
    width: 50px;
    margin: 2px;
    padding: 0;
    min-width: auto;
    position: relative;
}

.webform-likert-table thead td:first-child,
.webform-likert-table thead th:first-child,
.webform-likert-table tbody td:first-child,
.webform-likert-table tbody th:first-child {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
    padding: 4px 8px;
    min-width: auto;
    width: 100%;
}

.webform-likert-table thead th {
    background-color: transparent;
}

.webform-likert-table tbody tr:nth-child(odd) td {
    background-color: #f1eb9c;
}

.gallery-slider {
    overflow: hidden;
    margin-bottom: 3rem;
}

.gallery-slider .section-heading h2::before {
    display: none;
}

.gallery-slider .section-heading p {
    text-align: left;
}

.gallery-slider figure {
    margin: 0;
}

.gallery-slider .swiper-container {
    overflow: visible;
}

.gallery-slider .swiper-container-initialized .swiper-slide {
    -webkit-transition: opacity 150ms cubic-bezier(.42, .08, .06, .98);
    transition: opacity 150ms cubic-bezier(.42, .08, .06, .98);
    mix-blend-mode: normal;
    opacity: .4;
    pointer-events: none;
}

.gallery-slider .swiper-container-initialized .swiper-slide-visible {
    opacity: 1;
}

.gallery-slider .swiper-container-initialized .swiper-slide-visible+.swiper-slide:not(.swiper-slide-visible) {
    mix-blend-mode: normal;
    opacity: .4;
    pointer-events: none;
}

.gallery-slider .swiper-pagination {
    visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.gallery-slider .swiper-pagination span {
    visibility: visible;
    font-size: 1.5rem;
    font-family: kapra-neue-semibold, sans-serif;
    font-weight: 700;
}

.gallery-slider .swiper-pagination span:first-child::after {
    content: "of";
    padding-left: 6px;
}

@media screen and (max-width: 48.06125em) {
    .gallery-slider__lower {
        width: calc(100% - 40px);
    }

    .gallery-slider .btn {
        width: 100%;
    }

    .gallery-slider .slider-navigation {
        margin-top: 1rem;
        gap: .5rem;
    }

    .gallery-slider .swiper-pagination {
        position: absolute;
        bottom: 1.4375rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .gallery-slider .swiper-button-disabled {
        visibility: hidden;
    }

    .gallery-slider .swiper-wrapper {
        padding-bottom: 2.9rem;
    }

    .gallery-slider .slider-navigation {
        position: absolute;
        top: 43%;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .gallery-slider .slider-navigation__prev {
        margin-left: -1.25rem;
    }

    .gallery-slider .slider-navigation__next {
        margin-right: -1.25rem;
    }
}

.parallax-mask {
    position: relative;
    z-index: 3;
    background: #fff;
}

.hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-height: 68vh;
}

@media screen and (max-width: 62.5em) {
    .hero {
        max-height: 60vw;
    }
}

.hero img {
    min-height: 185px;
}

.hero img,
.hero video,
.hero .video-feature {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    aspect-ratio: 1.99;
}

@media print,
screen and (min-width: 48.0625em) {
    .hero {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: trasparent;
    }
}

.hero__media {
    display: block;
    width: 100%;
}

.hero__content {
    z-index: 3;
    padding: 1.25rem;
}

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

    .hero__content h1,
    .hero__content p {
        text-align: center;
        color: #fff;
    }
}

.hero__content h1 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
}

.hero__content p {
    max-width: 60rem;
    margin-right: auto;
    margin-left: auto;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.hero__content .btn {
    margin: auto;
}

@media print,
screen and (min-width: 48.0625em) {
    .hero__content {
        position: absolute;
        color: #fff;
    }
}

.hero__overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .4);
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {
    .hero__overlay {
        display: none;
    }
}

.autoplay-video-container {
    position: relative;
}

.hero--video .video-feature,
.hero--video video {
    position: relative;
    z-index: 2;
}

@media screen and (min-width: 48.0625em) {
    .hero--video img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

.hero--no-img {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 25vw;
    max-height: 360px;
    background-color: #fcf7ae;
    background-image: url(../image/spiral-dots--primarycolor.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero--no-img~.curve-convex--yellow {
    display: none;
}

@media screen and (max-width: 60.875em) {
    .hero--no-img {
        display: none;
    }

    .hero--no-img~.curve-convex {
        display: none;
    }
}

.hero--no-img .hero__content {
    padding-right: .625rem;
    padding-left: .625rem;
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
    width: 100%;
}

@media print,
screen and (min-width: 48.0625em) {
    .hero--no-img .hero__content {
        padding-right: .9375rem;
        padding-left: .9375rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .hero--no-img .hero__content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.hero--no-img .hero__content h1,
.hero--no-img .hero__content p {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    color: #000;
}

.hero--no-img .hero__content p {
    font-size: 1.375rem;
    font-weight: normal;
    line-height: 1.7;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media print,
screen and (min-width: 64.0625em) {
    .hero--no-img .hero__content p {
        font-size: 1.625rem;
    }
}

.hero--no-img .hero__content h1 {
    font-weight: 600;
}

@media screen and (max-width: 48.125em) {
    .hero--img~.curve-convex {
        margin-top: -15vw;
    }

    .hero--img~.curve-convex--yellow {
        height: 23vw;
    }
}

.hero.hero--parallax {
    overflow: hidden;
    min-height: 75vh;
}

@media screen and (max-width: 62.5em) {
    .hero.hero--parallax {
        min-height: 60vw;
        max-height: 60vw;
    }
}

.hero.hero--parallax img,
.hero.hero--parallax video {
    height: 135%;
    -webkit-transform: translateY(calc(var(--scroll-tracker) * 35%));
    transform: translateY(calc(var(--scroll-tracker) * 35%));
    will-change: transform;
}

.hero.hero--parallax .hero__media,
.hero.hero--parallax .video-feature,
.hero.hero--parallax .autoplay-video-container {
    height: 100%;
}

.hero.hero--parallax img,
.hero.hero--parallax video,
.hero.hero--parallax .hero__media,
.hero.hero--parallax .video-feature,
.hero.hero--parallax .autoplay-video-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero--iframe .video-feature {
    position: relative;
    z-index: 3;
    overflow: hidden;
    height: 0;
    padding-top: 30px;
    padding-bottom: 56.25%;
}

@media print,
screen and (min-width: 48.0625em) {
    .hero--iframe img {
        position: absolute;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .hero--iframe iframe {
        position: absolute;
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        min-width: 1165px;
        height: 100%;
        min-height: 700px;
    }
}

.hero--iframe .video-feature {
    display: none;
}

@media print,
screen and (min-width: 48.0625em) {
    .hero--iframe .video-feature {
        display: block;
        margin-top: -3.125rem;
    }
}

.hero--parallax-iframe .video-feature {
    display: none;
}

@media print,
screen and (min-width: 48.0625em) {
    .hero--parallax-iframe .video-feature {
        position: relative;
        z-index: 2;
        display: block;
        width: 100vw;
        height: 100vh;
    }
}

@media screen and (min-width: 48.0625em) {
    .page-title-only h1 {
        font-size: 4rem;
    }
}

.page-title-only p {
    font-size: 1.375rem;
    font-weight: normal;
    line-height: 1.7;
    font-family: kapra-neue-regular-expanded, sans-serif;
    max-width: 60rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .page-title-only p {
        font-size: 1.625rem;
    }
}

.home-page-hero__media {
    background-color: #000;
    position: relative;
    z-index: 1;
}

.home-page-hero__media img {
    vertical-align: middle;
}

@media (min-width:1025px) {
    .home-page-hero__media img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .home-page-hero__media {
        position: fixed;
        top: 0;
        height: 100vh;
        width: 100%;
    }


}

.home-page-hero__content {
    position: relative;
    z-index: 2;
}

.home-page-hero__content--wrap h2 {
    font-family: kapra-neue-semibold, sans-serif;
    text-transform: uppercase;
}

.home-page-hero__content--wrap p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media (max-width:1024px) {
    .home-page-hero__content--wrap {
        background-color: #ffcd00;
        background-image: url(../image/spiral-dots--white.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 12vw;
    }
}

@media screen and (max-width: 48.06125em) {


    .home-page-hero__content--wrap h2,
    .home-page-hero__content--wrap p {
        color: #000;
    }

    .home-page-hero__content--wrap h2 {
        font-size: 2rem;
        line-height: 2.0625rem;
    }

    .home-page-hero__content--wrap p {
        margin-top: .5rem;
        font-size: 1.125rem;
        line-height: 1.375rem;
    }

    .home-page-hero__content--wrap .btn {
        margin-top: 1rem;
        border-color: #000;
        color: #000;
    }

    .home-page-hero__content--wrap .btn::before {
        display: none !important;
    }
}

@media (min-width:1025px) {
    .home-page-hero__content--wrap {
        background-image: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(rgba(0, 0, 0, .4)), to(rgba(0, 0, 0, 0)));
        background-image: linear-gradient(to top, #000, rgba(0, 0, 0, .4), rgba(0, 0, 0, 0));
        padding-top: 33vh;
        padding-bottom: 10vh;
    }
}

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


    .home-page-hero__content--wrap h2 {
        color: #ffcd00;
        font-size: 5.75rem;
        line-height: 5.875rem;
    }

    .home-page-hero__content--wrap p {
        color: #fff;
        margin-top: 1.5rem;
        font-size: 2.25rem;
        line-height: 2.6875rem;
    }

    .home-page-hero__content--wrap .btn {
        margin-top: 2.5rem;
    }
}

.home-page-hero__content--wrap .grid-contaner {
    position: relative;
    z-index: 1;
}

.home-page-hero__content--wrap~.curve-convex {
    position: relative;
    z-index: 2;
    margin-top: -4vw;
}

.home-page-hero__content--wrap~.curve-convex+.curve-convex {
    z-index: 3;
    margin-top: -9vw;
}

@media screen and (max-width: 48.06125em) {
    .home-page-hero__content--wrap~.curve-convex--yellow {
        display: none;
    }
}

.home-page-hero__content+.home-page {
    background-color: #fff;
    position: relative;
    z-index: 3;
}

@media print,
screen and (min-width: 48.0625em) {
    .home-page-hero__media {
        height: 100vh;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .home-page-hero__media .clicktoplay-video-container {
        display: none;
    }
}

@media screen and (max-width: 48.06125em) {
    .home-page-hero__media .clicktoplay-video-container {
        position: relative;
    }

    .home-page-hero__media .clicktoplay-video-container:before {
        display: block;
        padding-bottom: calc(.43 * 100%);
        content: '';
    }
}

@media screen and (max-width: 48.06125em) {
    .home-page-hero__media .home-autoplay-video-container {
        display: none;
    }
}

.home-page-hero__media .home-autoplay-video-container button,
.home-page-hero__media .cell--home-video-button button {
    opacity: 0;
}

.home-page-hero__media .clicktoplay-video-container {
    -o-object-fit: cover;
    object-fit: cover;
}

.home-page-hero__media .clicktoplay-video-container,
.home-page-hero__media .clicktoplay-video-container .video-mobile {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: none;
}

.home-page-hero__media .clicktoplay-video-container,
.home-page-hero__media .clicktoplay-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border: none;
}

.home-page-hero__media .home-autoplay-video-container,
.home-page-hero__media .home-autoplay-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media print,
screen and (min-width: 48.0625em) {
    .cell--home-video-button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -ms-flex-line-pack: end;
        align-content: flex-end;
    }

    .cell--home-video-button .video-play-button {
        position: relative;
        bottom: 0;
        left: 0;
    }

    .cell--home-video-button .video-play-button::before {
        display: none;
    }

    .cell--home-video-button .video-play-button::after {
        font-weight: 100;
    }
}

.section--horizontal-feature-box {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.section--horizontal-feature-box h2 {
    margin-top: 0;
}

.horizontal-feature-box__img {
    margin-bottom: 20px;
}

@media print,
screen and (min-width: 48.0625em) {
    .horizontal-feature-box__img {
        margin-bottom: 0;
    }
}

@-webkit-keyframes left-leg {
    from {
        -webkit-transform: none;
        transform: none;
    }

    to {
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }
}

@keyframes left-leg {
    from {
        -webkit-transform: none;
        transform: none;
    }

    to {
        -webkit-transform: rotate(-20deg);
        transform: rotate(-20deg);
    }
}

@-webkit-keyframes right-leg {
    from {
        -webkit-transform: none;
        transform: none;
    }

    to {
        -webkit-transform: rotate(23deg);
        transform: rotate(23deg);
    }
}

@keyframes right-leg {
    from {
        -webkit-transform: none;
        transform: none;
    }

    to {
        -webkit-transform: rotate(23deg);
        transform: rotate(23deg);
    }
}

.page--scroll-tracker .site-header {
    display: none;
}

.page--scroll-tracker h1 {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
}

.student-journey {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 100vh;
}

.student-journey h2 {
    max-width: 960px;
    text-transform: uppercase;
    font-size: 12vw;
    line-height: .8;
}

.student-journey h2 .oho-animate:last-child:after {
    display: block;
    width: 3px;
    height: 200px;
    content: '';
    -webkit-transition: height .8s cubic-bezier(.82, .06, .14, .97);
    transition: height .8s cubic-bezier(.82, .06, .14, .97);
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    background: #000;
}

.student-journey h2 .oho-animate.oho-animate--ready:last-child:after {
    height: 0;
    -webkit-transition: none;
    transition: none;
}

.horizontal-story-container {
    position: relative;
    width: 100%;
    min-height: 4900vh;
}

.horizontal-story {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: calc(var(--scroll-tracker) * 20);
}

.horizontal-story .laptop-cloud {
    display: none;
    fill: url(#laptop-cloud-gradient);
}

.horizontal-story .background path {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -8%));
    transform: translateX(calc(var(--scroll-tracker) * -8%));
    opacity: .7;
    fill: #dfe9f7;
}

.horizontal-story .background path:nth-child(2) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -1%));
    transform: translateX(calc(var(--scroll-tracker) * -1%));
}

.horizontal-story .background path:nth-child(3) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -5%));
    transform: translateX(calc(var(--scroll-tracker) * -5%));
}

.horizontal-story .background path:nth-child(4) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -1%));
    transform: translateX(calc(var(--scroll-tracker) * -1%));
}

.horizontal-story .background path:nth-child(5) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -2%));
    transform: translateX(calc(var(--scroll-tracker) * -2%));
}

.horizontal-story .background path.cloud-background--offset-top {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -1%)) translateY(36%);
    transform: translateX(calc(var(--scroll-tracker) * -1%)) translateY(36%);
}

.horizontal-story .background:nth-child(3) path,
.horizontal-story .background:nth-child(4) path,
.horizontal-story .background:nth-child(5) path {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -4%));
    transform: translateX(calc(var(--scroll-tracker) * -4%));
}

.horizontal-story .background:nth-child(3) path:nth-child(2),
.horizontal-story .background:nth-child(4) path:nth-child(2),
.horizontal-story .background:nth-child(5) path:nth-child(2) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -42%));
    transform: translateX(calc(var(--scroll-tracker) * -42%));
}

.horizontal-story .background:nth-child(3) path:nth-child(3),
.horizontal-story .background:nth-child(4) path:nth-child(3),
.horizontal-story .background:nth-child(5) path:nth-child(3) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -43%));
    transform: translateX(calc(var(--scroll-tracker) * -43%));
}

.horizontal-story .background:nth-child(3) path:nth-child(4),
.horizontal-story .background:nth-child(4) path:nth-child(4),
.horizontal-story .background:nth-child(5) path:nth-child(4) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -45%));
    transform: translateX(calc(var(--scroll-tracker) * -45%));
}

.horizontal-story .background:nth-child(3) path:nth-child(5),
.horizontal-story .background:nth-child(4) path:nth-child(5),
.horizontal-story .background:nth-child(5) path:nth-child(5) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -5%));
    transform: translateX(calc(var(--scroll-tracker) * -5%));
}

.laptop__screen,
.laptop__keyboard--accent {
    fill: #2d3079;
}

.laptop__screen--inner {
    fill: #fff;
}

.laptop__keyboard {
    fill: #71b3e2;
}

.laptop__bars {
    fill: #ffe21a;
}

.laptop__molecules {
    fill: #ffcd00;
    -webkit-transform: rotate(calc(var(--scroll-tracker) * .05deg));
    transform: rotate(calc(var(--scroll-tracker) * .05deg));
    -webkit-transform-origin: 70% 42.1%;
    transform-origin: 70% 42.1%;
}

.person {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * .02%));
    transform: translateX(calc(var(--scroll-tracker) * .02%));
}

.person .skin {
    fill: #4e3a2d;
}

.person .hair,
.person .skirt,
.person .shoe {
    fill: #2d3079;
    -webkit-transition: 1.4s;
    transition: 1.4s;
}

.person .torso {
    fill: #aeaed7;
}

.person .sleeve {
    fill: #fff;
}

.person .mouth {
    fill: none;
    stroke: #f3f3f3;
    stroke-width: 2.7032;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
}

.leg {
    -webkit-transform-origin: 58% 52%;
    transform-origin: 58% 52%;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-timing-function: cubic-bezier(.82, .06, .14, .97);
    animation-timing-function: cubic-bezier(.82, .06, .14, .97);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.leg--right {
    -webkit-animation-name: right-leg;
    animation-name: right-leg;
}

.leg--left {
    -webkit-animation-name: left-leg;
    animation-name: left-leg;
}

.grounds {
    -webkit-transform: translateY(6.1%);
    transform: translateY(6.1%);
}

.grounds line {
    fill: none;
    stroke: #97d1ed;
    stroke-width: 4.1196;
    stroke-linecap: round;
    stroke-miterlimit: 10;
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -2%));
    transform: translateX(calc(var(--scroll-tracker) * -2%));
}

.grounds line:nth-child(2) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -3%));
    transform: translateX(calc(var(--scroll-tracker) * -3%));
}

.grounds line:nth-child(3) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -5%));
    transform: translateX(calc(var(--scroll-tracker) * -5%));
}

.grounds line:nth-child(3) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -12%));
    transform: translateX(calc(var(--scroll-tracker) * -12%));
}

.ground:nth-child(3) path,
.ground:nth-child(4) path,
.ground:nth-child(5) path {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -114%));
    transform: translateX(calc(var(--scroll-tracker) * -114%));
}

.ground:nth-child(3) path:nth-child(2),
.ground:nth-child(4) path:nth-child(2),
.ground:nth-child(5) path:nth-child(2) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -142%));
    transform: translateX(calc(var(--scroll-tracker) * -142%));
}

.ground:nth-child(3) path:nth-child(3),
.ground:nth-child(4) path:nth-child(3),
.ground:nth-child(5) path:nth-child(3) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -143%));
    transform: translateX(calc(var(--scroll-tracker) * -143%));
}

.ground:nth-child(3) path:nth-child(4),
.ground:nth-child(4) path:nth-child(4),
.ground:nth-child(5) path:nth-child(4) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -145%));
    transform: translateX(calc(var(--scroll-tracker) * -145%));
}

.ground:nth-child(3) path:nth-child(5),
.ground:nth-child(4) path:nth-child(5),
.ground:nth-child(5) path:nth-child(5) {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -143%));
    transform: translateX(calc(var(--scroll-tracker) * -143%));
}

.horizontal-story--content {
    position: relative;
    z-index: 3;
    min-height: 100vh;
}

.horizontal-story--content .initial-12 {
    padding: 2.5rem;
    background: rgba(255, 255, 255, .5);
}

@media print,
screen and (min-width: 48.0625em) {
    .horizontal-story--content .initial-12 {
        padding: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .horizontal-story--content .initial-12 {
        padding: 3.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .horizontal-story--content .initial-12 {
        padding-left: 10%;
    }
}

.st17 {
    fill: #a0dadc;
}

.st18 {
    opacity: .15;
}

.st19 {
    fill: #875c35;
}

.st20 {
    fill: #77685a;
}

.st21 {
    fill: #517c7d;
}

.st22 {
    fill: #fcb773;
}

.st23 {
    fill: #d39053;
}

.st24 {
    fill: #aa774d;
}

.st25 {
    fill: #f37c73;
}

.st26 {
    fill: #a99989;
}

.st27,
.bush {
    fill: #2d7138;
}

.st28 {
    fill: #d2923b;
}

.st29 {
    fill: #61bd63;
}

.st30 {
    fill: #b9d248;
}

.st31 {
    fill: #ffe2c0;
}

.st32 {
    fill: #c65856;
}

.st33 {
    fill: #6384c2;
}

.st34 {
    fill: #416299;
}

.st35 {
    fill: #444544;
}

.st36 {
    fill: #666766;
}

.st37 {
    fill: #e7f1f4;
}

.st38 {
    fill: #747d53;
}

.st39 {
    fill: #586039;
}

.st40 {
    fill: #c7c6c6;
}

.st41 {
    fill: #f99d1c;
}

.city .buildings-left {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -113%));
    transform: translateX(calc(var(--scroll-tracker) * -113%));
}

.city .house {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -135%));
    transform: translateX(calc(var(--scroll-tracker) * -135%));
}

.city .trees {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -142%));
    transform: translateX(calc(var(--scroll-tracker) * -142%));
}

.city .buildings-right {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -183%));
    transform: translateX(calc(var(--scroll-tracker) * -183%));
}

.city .car {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -204%));
    transform: translateX(calc(var(--scroll-tracker) * -204%));
}

.city .van {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -235%));
    transform: translateX(calc(var(--scroll-tracker) * -235%));
}

.city .suv {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -245%));
    transform: translateX(calc(var(--scroll-tracker) * -245%));
}

.city .sign {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -235%));
    transform: translateX(calc(var(--scroll-tracker) * -235%));
}

.timeline-outer {
    -webkit-transform: translateX(12%);
    transform: translateX(12%);
}

.timeline {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -350%)) translateY(10%);
    transform: translateX(calc(var(--scroll-tracker) * -350%)) translateY(10%);
}

.timeline .purple-fill,
.timeline__point {
    fill: #2d3079;
}

.timeline__info-bubble .text {
    fill: #fff;
}

.timeline__line {
    stroke: #2d3079;
    stroke-width: 8px;
}

.workingst17 {
    opacity: .73;
    fill: #fff;
}

.workingst18 {
    fill: #d4dbe1;
}

.workingst19 {
    fill: #86c0e9;
}

.workingst20 {
    fill: #5d554e;
}

.workingst21 {
    fill: #3d4246;
}

.workingst22 {
    fill: #34383b;
}

.workingst23 {
    fill: #efa986;
}

.workingst24 {
    fill: #fdcda3;
}

.workingst25 {
    fill: #e2d2ca;
}

.workingst26 {
    fill: #4a5055;
}

.workingst27 {
    fill: #d7d6d6;
}

.workingst28 {
    fill: #c98462;
}

.workingst29 {
    fill: #df9e7d;
}

.workingst30 {
    fill: #e9e8e8;
}

.workingst31 {
    fill: #bcd5ef;
}

.workingst32 {
    fill: #767676;
}

.workingst33 {
    fill: #fff;
}

.workingst34 {
    fill: url(#SVGID_1_);
}

.workingst35 {
    fill: url(#SVGID_2_);
}

.workingst36 {
    fill: url(#SVGID_3_);
}

.workingst37 {
    fill: #c5ccd1;
}

.workingst38 {
    fill: url(#SVGID_4_);
}

.workingst39 {
    fill: #e0e1e0;
}

.workingst40 {
    fill: #b9b9b9;
}

.workingst41 {
    fill: #d9d9d8;
}

.workingst42 {
    fill: url(#SVGID_5_);
}

.workingst43 {
    fill: url(#SVGID_6_);
}

.workingst44 {
    fill: #d64e4b;
}

.workingst45 {
    fill: #2a2c47;
}

.workingst46 {
    fill: #3e426b;
}

.workingst47 {
    fill: #d0beb6;
}

.workingst48 {
    fill: #23263d;
}

.workingst49 {
    fill: #f15c5b;
}

.workingst50 {
    fill: #807167;
}

.workingst51 {
    fill: #191b2b;
}

.workingst52 {
    fill: #a77961;
}

.workingst53 {
    fill: #b1403e;
}

.workingst54 {
    fill: #292c45;
}

.workingst55 {
    fill: #eddad3;
}

.workingst56 {
    fill: #f5f6f6;
}

.workingst57 {
    fill: #62a9dc;
}

.workingst58 {
    fill: #3983c4;
}

.workingst59 {
    fill: #1a5a8d;
}

.workingst60 {
    fill: #2274b5;
}

.workingst61 {
    fill: #3a88c8;
}

.workingst62 {
    fill: url(#SVGID_7_);
}

.workingst63 {
    fill: url(#SVGID_8_);
}

.workingst64 {
    fill: url(#SVGID_9_);
}

.workingst65 {
    fill: url(#SVGID_10_);
}

.workingst66 {
    fill: url(#SVGID_11_);
}

.workingst67 {
    fill: url(#SVGID_12_);
}

.workingst68 {
    fill: #706966;
}

.workingst69 {
    fill: #ccbdb7;
}

.workingst70 {
    fill: #998e89;
}

.workingst71 {
    fill: #b59074;
}

.workingst72 {
    fill: #fcb557;
}

.workingst73 {
    fill: #434873;
}

.workingst74 {
    fill: #3b4048;
}

.workingst75 {
    fill: #323757;
}

.workingst76 {
    fill: #928783;
}

.workingst77 {
    fill: #5f5955;
}

.workingst78 {
    fill: #bfb2ac;
}

.workingst79 {
    fill: #b9aca6;
}

.workingst80 {
    fill: #f6f7fb;
}

.workingst81 {
    fill: #928681;
}

.workingst82 {
    fill: #dfe1e8;
}

.workingst83 {
    fill: #a0dadc;
}

.workingst84 {
    opacity: .15;
}

.workingst85 {
    fill: #875c35;
}

.workingst86 {
    fill: #77685a;
}

.workingst87 {
    fill: #517c7d;
}

.workingst88 {
    fill: #fcb773;
}

.workingst89 {
    fill: #d39053;
}

.workingst90 {
    fill: #aa774d;
}

.workingst91 {
    fill: #f37c73;
}

.workingst92 {
    fill: #a99989;
}

.workingst93 {
    fill: #2d7138;
}

.workingst94 {
    fill: #d2923b;
}

.workingst95 {
    fill: #61bd63;
}

.workingst96 {
    fill: #b9d248;
}

.workingst97 {
    fill: #ffe2c0;
}

.workingst98 {
    fill: #c65856;
}

.workingst99 {
    fill: #6384c2;
}

.workingst100 {
    fill: #416299;
}

.workingst101 {
    fill: #444544;
}

.workingst102 {
    fill: #666766;
}

.workingst103 {
    fill: #e7f1f4;
}

.workingst104 {
    fill: #747d53;
}

.workingst105 {
    fill: #586039;
}

.workingst106 {
    fill: #c7c6c6;
}

.workingst107 {
    fill: #f99d1c;
}

.workingst108 {
    fill: none;
    stroke: #2b2e74;
    stroke-width: 7;
    stroke-miterlimit: 10;
}

.working-left {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -155%));
    transform: translateX(calc(var(--scroll-tracker) * -155%));
}

.working-middle {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -140%));
    transform: translateX(calc(var(--scroll-tracker) * -140%));
}

.working-right {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -129%));
    transform: translateX(calc(var(--scroll-tracker) * -129%));
}

.landscape-scrolltracker__scene {
    min-height: 400vh;
}

.landscape-scrolltracker__scene svg {
    position: sticky;
    top: 0;
    height: 100vh;
}

.landscape-scrolltracker__item--night .landscape-scrolltracker__scene svg>g {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * 55%));
    transform: translateX(calc(var(--scroll-tracker) * 55%));
}

.landscape-scrolltracker__item--night .landscape-scrolltracker__scene #night_water {
    -webkit-transform: none;
    transform: none;
}

.landscape-scrolltracker__item--night .landscape-scrolltracker__scene .night_water__glare {
    -webkit-transform: translateX(14%);
    transform: translateX(14%);
}

.landscape-scrolltracker__item--night .landscape-scrolltracker__scene .night_water__glare path {
    -webkit-transform: rotateY(calc(var(--scroll-tracker) * 15deg));
    transform: rotateY(calc(var(--scroll-tracker) * 15deg));
    -webkit-transform-origin: 58% 63%;
    transform-origin: 58% 63%;
}

.landscape-scrolltracker__item--night .landscape-scrolltracker__scene .night_water__streaks {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -42%));
    transform: translateX(calc(var(--scroll-tracker) * -42%));
}

.landscape-scrolltracker__item--night .landscape-scrolltracker__scene #night_stars {
    -webkit-transform: none;
    transform: none;
}

.landscape-scrolltracker__item--night .landscape-scrolltracker__scene #night_foreground-land,
.landscape-scrolltracker__item--night .landscape-scrolltracker__scene #night_foreground-foliage {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -42%));
    transform: translateX(calc(var(--scroll-tracker) * -42%));
}

.landscape-scrolltracker__item--night .landscape-scrolltracker__scene #night_sun {
    -webkit-transform: translateY(calc(var(--scroll-tracker) * -34%));
    transform: translateY(calc(var(--scroll-tracker) * -34%));
}

.landscape-scrolltracker__item--spring,
.landscape-scrolltracker__item--sunset {
    position: relative;
}

.landscape-scrolltracker__item--spring svg,
.landscape-scrolltracker__item--sunset svg {
    z-index: 2;
}

.landscape-scrolltracker__item--spring .landscape-scrolltracker__scene:after,
.landscape-scrolltracker__item--sunset .landscape-scrolltracker__scene:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 350vh;
    margin-top: calc(var(--scroll-tracker) * -219%);
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.landscape-scrolltracker__item--sunset .landscape-scrolltracker__scene:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(153, 26, 9, 0)), color-stop(35%, #991a09));
    background: linear-gradient(to bottom, rgba(153, 26, 9, 0) 0%, #991a09 35%);
}

.landscape-scrolltracker__item--spring .landscape-scrolltracker__scene:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(156, 193, 222, 0)), color-stop(35%, #9cc1de));
    background: linear-gradient(to bottom, rgba(156, 193, 222, 0) 0%, #9cc1de 35%);
}

.landscape-scrolltracker__item--sunset {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.landscape-scrolltracker__item--sunset .landscape-scrolltracker__scene svg>g {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -65%));
    transform: translateX(calc(var(--scroll-tracker) * -65%));
}

.landscape-scrolltracker__item--sunset .landscape-scrolltracker__scene #sunset_sun {
    -webkit-transform: translateY(calc(var(--scroll-tracker) * 44%)) translateX(calc(var(--scroll-tracker) * -34%));
    transform: translateY(calc(var(--scroll-tracker) * 44%)) translateX(calc(var(--scroll-tracker) * -34%));
}

.landscape-scrolltracker__item--sunset .landscape-scrolltracker__scene #sunset_clouds {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -67%));
    transform: translateX(calc(var(--scroll-tracker) * -67%));
}

.landscape-scrolltracker__item--sunset .landscape-scrolltracker__scene #sunset_stars {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -45%));
    transform: translateX(calc(var(--scroll-tracker) * -45%));
}

.landscape-scrolltracker__item--sunset .landscape-scrolltracker__scene #sunset_birds {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -71%));
    transform: translateX(calc(var(--scroll-tracker) * -71%));
}

.landscape-scrolltracker__item--spring svg>g {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -55%));
    transform: translateX(calc(var(--scroll-tracker) * -55%));
}

.landscape-scrolltracker__item--spring #spring_trees-foreground {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -35%));
    transform: translateX(calc(var(--scroll-tracker) * -35%));
}

.landscape-scrolltracker__item--spring #spring_water,
.landscape-scrolltracker__item--spring #spring_sky,
.landscape-scrolltracker__item--spring #spring_foreground-hill,
.landscape-scrolltracker__item--spring #spring_stars-dots,
.landscape-scrolltracker__item--spring #spring_stars-twinkle {
    -webkit-transform: none;
    transform: none;
}

.landscape-scrolltracker__item--spring #spring_water-accents {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -23%));
    transform: translateX(calc(var(--scroll-tracker) * -23%));
}

.landscape-scrolltracker__item--spring #spring_mountains-right {
    -webkit-transform: none;
    transform: none;
}

.landscape-scrolltracker__item--spring #spring_mountains-right>g:first-child {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -18%));
    transform: translateX(calc(var(--scroll-tracker) * -18%));
}

.landscape-scrolltracker__item--spring #spring_mountains-right>g:nth-child(2) {
    -webkit-transform: translateY(5%) translateX(calc(var(--scroll-tracker) * -16%));
    transform: translateY(5%) translateX(calc(var(--scroll-tracker) * -16%));
}

.landscape-scrolltracker__item--spring #spring_light-house,
.landscape-scrolltracker__item--spring #spring_background-trees {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -15%));
    transform: translateX(calc(var(--scroll-tracker) * -15%));
}

.landscape-scrolltracker__item--spring #spring_sailboat_sail-boat--left {
    -webkit-transform: translateX(calc(var(--scroll-tracker) * -35%));
    transform: translateX(calc(var(--scroll-tracker) * -35%));
}

.landscape-scrolltracker__item--spring #spring_moon {
    -webkit-transform: translateY(calc(var(--scroll-tracker) * -35%));
    transform: translateY(calc(var(--scroll-tracker) * -35%));
}

.stat-journey-block {
    position: sticky;
    z-index: 2;
    top: 6.25rem;
    left: 6.25rem;
    overflow: hidden;
    max-width: 550px;
    padding: 40px;
    color: #fff;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(121, 37, 72, .4)), to(rgba(94, 27, 56, .8)));
    background: linear-gradient(to bottom, rgba(121, 37, 72, .4) 0%, rgba(94, 27, 56, .8) 100%);
}

.stat-journey-block .h1 {
    font-size: 120px;
}

.landscape-scrolltracker__item--sunset .stat-journey-block {
    top: 36%;
    right: 0;
    left: 0;
    max-width: 1020px;
    margin: auto;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(147, 15, 14, .4)), to(rgba(173, 51, 26, .8)));
    background: linear-gradient(to bottom, rgba(147, 15, 14, .4) 0%, rgba(173, 51, 26, .8) 100%);
}

.landscape-scrolltracker__item--sunset .stat-journey-block .grid-x {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.landscape-scrolltracker__item--spring .stat-journey-block {
    right: 100px;
    left: auto;
    float: right;
    background: -webkit-gradient(linear, left top, left bottom, from(#275585), to(rgba(36, 30, 59, .8)));
    background: linear-gradient(to bottom, #275585 0%, rgba(36, 30, 59, .8) 100%);
}

.student-journey--adventure h2 {
    color: #fff;
}

.student-journey--adventure h2 .oho-animate:last-child:after {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: -webkit-gradient(linear, left top, left bottom, from(#792548), to(#733f69));
    background: linear-gradient(to bottom, #792548 0%, #733f69 100%);
}

.student-journey--adventure h2 .oho-animate:not(.oho-animate--ready):last-child:after {
    height: 110vh;
}

@media print,
screen and (min-width: 40.0625em) {
    .image-grid .glide__slides {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-left: -.625rem;
        margin-right: -.625rem;
    }
}

@media print,
screen and (min-width: 40.0625em) and (min-width: 48.0625em) {
    .image-grid .glide__slides {
        margin-left: -.9375rem;
        margin-right: -.9375rem;
    }
}

@media print,
screen and (min-width: 40.0625em) {
    .image-grid .glide__arrows {
        display: none;
    }
}

.image-grid-item__link {
    position: relative;
    display: table;
    margin: 0 auto;
    line-height: 1;
}

.image-grid-item__link:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    -webkit-transition: background-color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: background-color 150ms cubic-bezier(.42, .08, .06, .98);
    background-color: rgba(1, 74, 133, 0);
}

.image-grid-item__link:hover:before,
.image-grid-item__link:focus:before {
    background-color: rgba(1, 74, 133, .333);
}

.image-grid-item__expand {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: .5em;
    background-color: #fff;
    font-size: 1.25rem;
}

.image-grid-item .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.8125rem;
    height: 2.8125rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 40.06125em) {
    .image-grid-item {
        padding: 0;
    }

    .image-grid-item__toggle {
        display: none;
    }
}

@media print,
screen and (min-width: 40.0625em) {
    .image-grid-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        min-height: 0;
        min-width: 0;
        width: calc(33.33333% - 1.25rem);
        margin-right: .625rem;
        margin-left: .625rem;
        display: block;
        height: auto;
        padding-bottom: 30px;
    }

    .image-grid-item__toggle {
        position: absolute;
        top: 0;
        right: 0;
        padding: .5em .5625em;
        text-align: center;
        color: #ffcd00;
        background-color: #fff;
        font-size: 1.25rem;
    }

    .image-grid-item__toggle:before {
        font-family: "Font Awesome 5 Pro";
        font-weight: 400;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-smoothing: antialiased;
        content: "";
        font-weight: 300;
    }

    .image-grid-item__toggle:hover {
        background-color: #fff;
    }
}

.jump-nav {
    position: sticky;
}

.more-less {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.more-less [data-more-less-content] {
    position: relative;
    overflow: hidden;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.more-less [data-more-less-toggle],
.more-less .more-less__toggle {
    display: none;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.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;
}

: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;
}

.take-next-step {
    background-color: #fff;
    position: relative;
}

.take-next-step::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background-color: #f2f5f7;
}

.take-next-step__container {
    padding-right: 0;
    padding-left: 0;
    max-width: 1344px;
    margin-left: auto;
    margin-right: auto;
    background-color: #115e6b;
    padding-left: 3rem;
    padding-right: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 4;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 48.0625em) {
    .take-next-step__container {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
        margin-top: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .take-next-step__container {
        padding-left: 5.5rem;
        padding-right: 5.5rem;
        margin-top: 5.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .take-next-step__container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .take-next-step__container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .take-next-step__container {
        text-align: center;
        padding-top: 2rem;
        margin-right: .625rem;
        margin-left: .625rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 64.0625em) {
    .take-next-step__container {
        padding-top: 3rem;
    }
}

@media screen and (max-width: 40.06125em) {
    .take-next-step__container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.take-next-step__card {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    text-align: left;
    border-radius: 4px;
    margin-top: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .take-next-step__card {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .take-next-step__card {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media screen and (min-width: 48.0625em) {
    .take-next-step__card {
        height: 100%;
    }
}

.take-next-step__card .eyebrow-large {
    font-size: 1.125rem;
    text-transform: uppercase;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    margin: 0;
}

.take-next-step__card p {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 1rem;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .take-next-step__card p {
        font-size: 1.25rem;
    }
}

.take-next-step h2 {
    color: #fff;
    margin: 0;
}

.take-next-step a {
    color: #014a85;
    display: table;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: kapra-neue-semibold, sans-serif;
}

@media print,
screen and (min-width: 64.0625em) {
    .take-next-step a {
        font-size: 1.25rem;
    }
}

.take-next-step a:not(:first-child) {
    margin-top: .5rem;
}

@media screen and (max-width: 48.06125em) {
    .cta-next-step__button+.cta-next-step__button {
        margin-top: 1.5rem;
    }
}

.offset-slider {
    overflow-x: hidden;
}

.offset-slider .slick-list {
    overflow: visible !important;
}

.offset-slider .slick-track {
    left: -3.5rem;
}

.offset-slider__item {
    width: calc(100vw - 8rem);
    margin: 0 1rem;
}

.offset-slider__item>img {
    width: 100%;
    height: 100%;
}

@media print,
screen and (min-width: 48.0625em) {
    .offset-slider .slick-track {
        left: 0;
    }

    .offset-slider__item {
        width: calc(50vw - 6rem);
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .offset-slider--three {
        margin: 0 -1rem;
    }

    .offset-slider--three .offset-slider__item {
        float: left;
        width: calc(33.333% - 2rem);
    }

    .offset-slider--unlimited .offset-slider__item {
        width: calc(33.333vw - 4rem);
    }
}

.mobile-offset-slider,
.slider-row {
    position: relative;
}

@media screen and (min-width: 40.0625em) and (max-width: 48.06125em) {

    .mobile-offset-slider,
    .slider-row {
        padding: 0 0 0 1.25rem;
    }

    .mobile-offset-slider .slick-slide,
    .slider-row .slick-slide {
        width: 100%;
        max-width: calc(100vw - 120px);
        padding: 0;
        -webkit-transition: opacity 600ms ease;
        transition: opacity 600ms ease;
        opacity: .6 !important;
    }

    .mobile-offset-slider .slick-slide[aria-hidden='true'],
    .slider-row .slick-slide[aria-hidden='true'] {
        opacity: 0 !important;
    }

    .mobile-offset-slider .slick-slide.slick-active,
    .slider-row .slick-slide.slick-active {
        opacity: 1 !important;
    }

    .mobile-offset-slider .slick-slide[aria-hidden='false']+.slick-slide,
    .slider-row .slick-slide[aria-hidden='false']+.slick-slide {
        opacity: 0 !important;
    }

    .mobile-offset-slider .slick-slide img,
    .slider-row .slick-slide img {
        width: 100%;
        max-width: none;
    }
}

.photo-gallery {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    overflow: hidden;
    background-color: #333;
}

@media print,
screen and (min-width: 48.0625em) {
    .photo-gallery {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .photo-gallery {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.photo-gallery .slick-list {
    overflow: visible;
    padding: 0 !important;
}

.photo-gallery__title {
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-weight: 700;
}

@media print,
screen and (min-width: 48.0625em) {
    .photo-gallery__title {
        margin-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .photo-gallery__title {
        margin-bottom: 4rem;
    }
}

.photo-gallery__item {
    position: relative;
    margin: 0;
}

.photo-gallery__item img {
    vertical-align: middle;
}

.photo-gallery__item figcaption p {
    pointer-events: auto;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-weight: 700;
    line-height: calc(22 / 14);
}

.photo-gallery__item figcaption p a {
    pointer-events: auto;
    color: #ff0;
}

@media print,
screen and (min-width: 64.0625em) {
    .photo-gallery__item figcaption p {
        width: 66%;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .photo-gallery__item figcaption {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding: 1.25rem;
        -webkit-transition: opacity 300ms ease;
        transition: opacity 300ms ease;
        pointer-events: none;
        opacity: 0;
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .8)));
        background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .8));
    }
}

.photo-gallery__item.slick-slide {
    z-index: 2;
    display: table !important;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: scale(.95);
    transform: scale(.95);
    opacity: .65;
}

@media(max-width: 580px) {
    .photo-gallery__item.slick-slide {
        width: 300px;
    }
}

.photo-gallery__item.slick-current {
    z-index: 3;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

@media print,
screen and (min-width: 48.0625em) {
    .photo-gallery__item.slick-current {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

    .photo-gallery__item.slick-current:hover figcaption {
        opacity: 1;
    }
}

.photo-gallery__gallery .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1em 0 3em;
}

.photo-gallery__gallery .slick-prev {
    left: 1.25rem;
}

@media(min-width: 75em) {
    .photo-gallery__gallery .slick-prev {
        left: calc(50% - 600px);
    }
}

.photo-gallery__gallery .slick-next {
    right: 1.25rem;
}

@media(min-width: 75em) {
    .photo-gallery__gallery .slick-next {
        right: calc(50% - 600px);
    }
}

.program-promo {
    position: relative;
    overflow: hidden;
}

.program-promo figure {
    position: relative;
    margin: 0;
}

.program-promo figure::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .7)), color-stop(25%, rgba(0, 0, 0, .7)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .7) 25%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}

.program-promo figure>.media img {
    position: relative;
    z-index: 1;
    vertical-align: middle;
}

@media print,
screen and (min-width: 64.0625em) {
    .program-promo figure {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    .program-promo figure>.media img {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.program-promo .btn {
    z-index: 3;
}

.program-promo .dotted-circle {
    position: absolute;
    z-index: 3;
    top: -30px;
    left: 0;
    bottom: 0;
    height: 100%;
}

.program-promo .dotted-circle img {
    width: 100%;
}

@media screen and (min-width: 96.875em) {
    .program-promo .dotted-circle {
        left: 10vw;
    }
}

@media screen and (max-width: 75em) {
    .program-promo .dotted-circle {
        top: 20px;
        left: -15vw;
    }
}

@media screen and (max-width: 48.06125em) {
    .program-promo .dotted-circle {
        display: none;
    }
}

.program-promo--text {
    position: relative;
    z-index: 2;
}

.program-promo--text h2 {
    font-family: kapra-neue-semibold, sans-serif;
    text-transform: uppercase;
}

.program-promo--text p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media screen and (max-width: 64.06125em) {
    .program-promo--text {
        margin-top: 1.5rem;
    }

    .program-promo--text h2,
    .program-promo--text p {
        color: #000;
        text-align: center;
    }

    .program-promo--text h2 {
        font-size: 3rem;
        line-height: 3.125rem;
    }

    .program-promo--text p {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .program-promo--text .btn {
        -webkit-transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
        transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
        font-weight: normal;
        font-family: kapra-neue-semibold-expanded, sans-serif;
        border-width: 2px;
        display: inline-block;
        position: relative;
        z-index: 2;
        line-height: 1.1;
        text-decoration: none;
        text-align: center;
        margin-top: 0;
        margin-bottom: 0;
        font-size: 1rem;
        padding: .5625rem 1.3125rem .5rem;
        border-radius: 3px;
        color: #000;
        background-color: #ffcd00;
        border: 2px solid transparent;
        display: table;
        margin-right: auto;
        margin-left: auto;
    }

    .program-promo--text .btn:hover,
    .program-promo--text .btn:focus {
        text-decoration: none;
        outline: none;
    }

    .program-promo--text .btn:disabled {
        cursor: not-allowed;
        pointer-events: none;
        opacity: .6;
    }

    .program-promo--text .btn::before {
        border-radius: 3px;
    }

    .program-promo--text .btn::before {
        content: '';
        display: block;
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: transparent;
        pointer-events: none;
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
        -webkit-transition: -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
        transition: -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
        transition: transform .5s cubic-bezier(.82, .06, .14, .97);
        transition: transform .5s cubic-bezier(.82, .06, .14, .97), -webkit-transform .5s cubic-bezier(.82, .06, .14, .97);
    }

    .program-promo--text .btn:hover {
        color: #000;
        background-color: #ffcd00;
        border: 2px solid transparent;
    }

    .program-promo--text .btn:hover::before {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
        border: 2px solid #ffcd00;
    }

    .program-promo--text .btn:focus {
        color: #000;
        background-color: #ffcd00;
        border: 2px solid #000;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .program-promo--text {
        padding-top: 6.5rem;
        padding-bottom: 8.75rem;
    }

    .program-promo--text h2 {
        color: #ffcd00;
        font-size: 5.75rem;
        line-height: 5.875rem;
    }

    .program-promo--text p {
        color: #fff;
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

.recuring-featured-events .eyebrow {
    font-size: 1.125rem;
}

.recuring-featured-events .summary {
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
}

@media print,
screen and (min-width: 64.0625em) {
    .recuring-featured-events .summary {
        font-size: 1rem;
    }
}

.recuring-featured-events .swiper-container-event {
    overflow: hidden;
}

.recuring-featured-events .swiper-container-event .fully-disable {
    display: none;
}

.recuring-featured-events .swiper-slide {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    background-color: #f2f5f7;
    gap: 1.875rem;
    padding: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .recuring-featured-events .swiper-slide {
        padding: 3rem;
    }
}

@media screen and (min-width: 40.0625em) {
    .recuring-featured-events .swiper-slide {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -ms-flex-wrap: inherit;
        flex-wrap: inherit;
        gap: 2.75rem;
    }
}

.recuring-featured-events .wrapper-swiper-pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    place-content: center;
}

.recuring-featured-events .card__media {
    width: 22.5rem;
}

.recuring-featured-events .card__media figure {
    width: 22.5rem;
    overflow: hidden;
}

@media screen and (max-width: 48.06125em) {
    .recuring-featured-events .card__media {
        width: 100%;
    }

    .recuring-featured-events .card__media figure {
        width: 100%;
    }
}

.recuring-featured-events .card__content {
    max-width: 59.6875rem;
}

@media screen and (max-width: 48.06125em) {
    .recuring-featured-events .card__content .text-margin-reset {
        margin-top: .5rem;
    }
}

.recuring-featured-events .card__content__inner {
    padding: 0;
}

.recuring-featured-events .swiper-container-initialized .slider-navigation {
    display: grid;
}

@media screen and (max-width: 48.06125em) {
    .recuring-featured-events .swiper-container-initialized .slider-navigation {
        display: block;
        text-align: center;
    }
}

.recuring-featured-events .slider-navigation {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    grid-template-columns: 1fr 100px;
    margin-top: 1.5rem;
}

.recuring-featured-events .slider-navigation .swiper-pagination {
    position: inherit;
    margin-right: .625rem;
    margin-left: .625rem;
}

.recuring-featured-events .slider-navigation .swiper-pagination .swiper-pagination-bullet {
    margin: 10px;
    background-color: #ffcd00;
    opacity: 1;
    color: transparent;
}

.recuring-featured-events .slider-navigation .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #6f7c87;
    outline: solid 1px #6f7c87;
    outline-offset: 3px;
}

.recuring-featured-events .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: none;
    transform: none;
}

.recuring-featured-events .link-arrow {
    margin-left: -2.8125rem;
}

@media screen and (max-width: 48.06125em) {
    .recuring-featured-events .link-arrow {
        margin-top: 1.5rem;
        margin-left: 0;
        display: block;
    }
}

.recuring--curriculum {
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

@media screen and (max-width: 64.06125em) {
    .recuring--curriculum {
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

@media screen and (max-width: 64.06125em) and (min-width: 48.0625em) {
    .recuring--curriculum {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }
}

.recuring--curriculum__title .h6 {
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
}

.recuring--curriculum__title .h6::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.recuring--curriculum__title .h6::after {
    padding-left: .6rem;
}

.recurring-card-feature .section-heading__subheading.intro-text {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1.3125rem;
    line-height: 1.8;
}

.recurring-card-feature__upper {
    text-align: center;
}

.recurring-card-feature__upper h2 {
    color: #000;
    font-size: 4rem;
    text-transform: uppercase;
}

.recurring-card-feature__upper h2::before {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

@media screen and (max-width: 48.06125em) {
    .recurring-card-feature__upper h2 {
        font-size: 2.25rem;
    }
}

.recurring-card-feature__upper h2:before {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35rem;
    overflow: hidden;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .recurring-card-feature__upper h2:before {
        margin-bottom: 2rem;
    }
}

.recurring-card-feature__upper:before {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35rem;
    overflow: hidden;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .recurring-card-feature__upper:before {
        margin-bottom: 2rem;
    }
}

.recurring-card-feature .medium-12 {
    overflow: hidden;
}

.recurring-card-feature h3 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.recurring-card-feature p {
    margin-top: .5rem;
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media print,
screen and (min-width: 64.0625em) {
    .recurring-card-feature p {
        font-size: 1rem;
    }
}

.recurring-card-feature .card {
    display: block;
}

.recurring-card-feature .card--feature-item {
    text-align: center;
    position: relative;
    margin-top: 8.5rem;
    border: 1.5px solid #ffcd00;
    max-width: 22.5rem;
    height: calc(100% - 8.5rem);
}

@media screen and (max-width: 48.06125em) {
    .recurring-card-feature .card--feature-item {
        margin-top: 6.25rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.recurring-card-feature .card--feature-item .card__content__inner {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-bottom: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 0;
}

@media print,
screen and (min-width: 48.0625em) {
    .recurring-card-feature .card--feature-item .card__content__inner {
        padding-right: 2rem;
        padding-left: 2rem;
        padding-bottom: 2rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .recurring-card-feature .card--feature-item .card__content__inner {
        padding-bottom: 0;
    }
}

.recurring-card-feature .card__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -4.3125rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.recurring-card-feature .card__media figure {
    margin: 0;
    position: relative;
    width: 100%;
    max-width: 80%;
}

.recurring-card-feature .card__media figure .aspect-ratio-frame::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    background-image: url(../image/dotted-circle.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.recurring-card-feature .card__media figure .aspect-ratio-frame img {
    border-radius: 50%;
    z-index: 2;
    top: 10px;
    left: 10px;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
}

.recurring-card-feature .card__media .aspect-ratio-frame::before {
    background: #fff;
    border-radius: 50%;
    top: 0;
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.recurring-card-feature__button {
    text-align: center;
}

@media screen and (max-width: 40.06125em) {
    .recurring-card-feature .btn {
        width: 100%;
    }
}

.recurring-card-feature__shadow {
    display: none;
}

.home-page>.recurring-card-feature:first-child {
    position: relative;
    padding-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .home-page>.recurring-card-feature:first-child {
        padding-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .home-page>.recurring-card-feature:first-child {
        padding-top: 3.5rem;
    }
}

@media screen and (min-width: 80em) {
    .home-page>.recurring-card-feature:first-child .recurring-card-feature__shadow {
        display: block;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }
}

.home-page>.recurring-card-feature:first-child .recurring-card-feature__upper,
.home-page>.recurring-card-feature:first-child .recurring-card-feature__lower {
    position: relative;
    z-index: 2;
}

.home-page>.recurring-card-feature:first-child .recurring-card-feature__upper h2:before {
    display: none;
}

.recurring-contact-headline {
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

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

.recurring-contact__upper .section-heading__heading {
    color: #000;
    color: #000;
    text-transform: uppercase;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    white-space: nowrap;
}

.recurring-contact__upper .section-heading__heading::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.recurring-contact__upper .section-heading__heading::before {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.recurring-contact__upper .section-heading__heading::before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    margin-right: .5rem;
    font-size: 1rem;
    font-weight: 400;
}

.recurring-contact__upper .section-heading__heading::after {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    margin-left: .5rem;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 400;
}

@media screen and (max-width: 48.06125em) {
    .recurring-contact__upper .section-heading__heading {
        font-size: 16px;
        text-align: left;
    }

    .recurring-contact__upper .section-heading__heading::before {
        display: none;
    }

    .recurring-contact__upper .section-heading__heading::after {
        width: 100%;
    }
}

.recurring-contact__upper .section-heading__subheading {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1.125rem;
    line-height: 1.8;
}

@media screen and (max-width: 48.06125em) {
    .recurring-contact__upper .section-heading__subheading {
        text-align: left;
        display: block;
    }
}

.recurring-contact__lower {
    padding-right: 0;
    padding-left: 0;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

.recurring-contact__card {
    margin: auto;
}

.recurring-contact__card--img {
    background-color: #ffcd00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 6.25rem;
    min-width: 6.25rem;
    max-width: 6.25rem;
    height: 6.25rem;
    background-image: url(../image/business_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.recurring-contact__card--person {
    background-image: url(../image/people.svg);
    background-size: 55px;
}

.recurring-contact__card img {
    overflow: hidden;
    border-radius: 50px;
}

.recurring-contact__card--title {
    margin-top: auto;
    margin-bottom: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.recurring-contact__card--title p {
    font-family: kapra-neue-regular-expanded, sans-serif;
    margin-top: .5rem;
}

.recurring-contact__card--title li {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    min-width: 8.75rem;
    font-family: kapra-neue-regular-expanded, sans-serif;
    list-style: none;
}

@media print,
screen and (min-width: 64.0625em) {
    .recurring-contact__card--title li {
        font-size: 1.125rem;
    }
}

.recurring-contact__card--title li a {
    text-decoration: none;
    color: #000;
    font-weight: normal;
}

.recurring-contact__card--title li:nth-last-child(1) a {
    color: #014a85;
}

.recurring-contact__card--title .fas:before {
    color: #115e6b;
    font-weight: 900;
}

@media print,
screen and (min-width: 48.0625em) {
    .recurring-contact__card--title {
        gap: 1.25rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .recurring-contact__card--title {
        display: block;
    }

    .recurring-contact__card--title .icon-list {
        margin-top: .5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .recurring-contact__card .initial-3 {
        max-width: 6.25rem;
    }
}

.recurring-differentiator {
    background-image: url(../image/differentiator-bg.png);
}

@media screen and (min-width: 40.0625em) {
    .recurring-differentiator {
        margin-right: 2rem;
        margin-left: 2rem;
    }
}

@media screen and (min-width: 40.0625em) and (min-width: 64.0625em) {
    .recurring-differentiator {
        margin-right: 3rem;
        margin-left: 3rem;
    }
}

.recurring-differentiator__upper {
    text-align: center;
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.recurring-differentiator__upper p {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
}

@media print,
screen and (min-width: 64.0625em) {
    .recurring-differentiator__upper p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .recurring-differentiator__upper p {
        text-align: left;
    }
}

.recurring-differentiator__upper .section-heading__heading {
    color: #000;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
}

.recurring-differentiator__upper .section-heading__heading::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.recurring-differentiator__upper .section-heading__heading::before {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.recurring-differentiator__upper .section-heading__heading::before {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
    margin-right: .5rem;
    font-size: 1rem;
    font-weight: 400;
}

.recurring-differentiator__upper .section-heading__heading::after {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    margin-left: .5rem;
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 400;
}

@media screen and (max-width: 48.06125em) {
    .recurring-differentiator__upper .section-heading__heading {
        font-size: 16px;
        text-align: left;
    }

    .recurring-differentiator__upper .section-heading__heading::before {
        display: none;
    }

    .recurring-differentiator__upper .section-heading__heading::after {
        width: 100%;
    }
}

.recurring-differentiator__lower h3 {
    text-transform: uppercase;
}

.recurring-differentiator__lower p {
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
    text-transform: uppercase;
    margin-top: .5rem;
    font-family: kapra-neue-regular-expanded, sans-serif;
    line-height: 1.3;
}

@media print,
screen and (min-width: 64.0625em) {
    .recurring-differentiator__lower p {
        font-size: 1rem;
    }
}

.recurring-differentiator__lower .card__content__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.recurring-differentiator__lower .stat {
    background-color: #ffcd00;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 4.25rem;
}

.recurring-differentiator__lower .stat .after-stat {
    font-size: 2.5rem;
}

@media screen and (max-width: 48.06125em) {
    .recurring-differentiator__lower .stat {
        font-size: 3.375rem;
        width: 8.125rem;
        height: 8.125rem;
    }

    .recurring-differentiator__lower .stat .after-stat {
        font-size: 2rem;
    }
}

.recurring-differentiator__wrapper {
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

.recurring-differentiator__wrapper,
.recurring-differentiator__wrapper:last-child:not(:first-child) {
    float: none;
    clear: both;
}

.recurring-differentiator__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 360px;
    margin: auto;
    margin-top: 2rem;
}

.recurring-differentiator__card img {
    width: 160px;
    height: 160px;
}

@media print,
screen and (min-width: 64.0625em) {
    .recurring-differentiator__card {
        margin-top: 3rem;
    }
}

@media screen and (min-width: 75.0625em) {
    .recurring-differentiator__card:nth-last-child(2) {
        margin-right: 0;
    }

    .recurring-differentiator__card:nth-last-child(1) {
        margin-left: 0;
    }
}

.recurring-differentiator__card .card__content__inner {
    padding: 0;
}

.recurring-differentiator__card--icon {
    margin-right: 1.25rem;
    width: 10rem;
    min-width: 10rem;
    max-width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #69b4f6;
}

@media screen and (max-width: 48.06125em) {
    .recurring-differentiator__card--icon {
        height: 8.125rem;
        width: 8.125rem;
        min-width: 8.125rem;
        max-width: 8.125rem;
    }
}

.recurring-differentiator__card--icon img {
    width: 5rem;
    height: 5rem;
}

@media screen and (max-width: 48.06125em) {
    .recurring-differentiator__card--icon img {
        width: 3.875rem;
    }
}

.recurring-differentiator__card--img {
    margin-right: 1.25rem;
}

.recurring-differentiator__card--img img {
    width: 160px;
    border-radius: 50%;
}

@media screen and (max-width: 48.06125em) {
    .recurring-differentiator__card--img img {
        height: 8.125rem;
        width: 8.125rem;
    }
}

.recurring-differentiator__card--title {
    margin: auto 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (min-width: 64.0625em) {
    .recurring-differentiator__card--title {
        padding-right: 1rem;
    }
}

@media screen and (max-width: 75.06125em) {
    .recurring-differentiator__card--title {
        padding-right: 1.25rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .recurring-differentiator__card--title {
        -webkit-box-flex: .8;
        -ms-flex: .8;
        flex: .8;
        padding-right: 0;
    }
}

.recurring-differentiator__icon~.recurring-differentiator__icon .recurring-differentiator__card--icon {
    background-color: #6abcb6;
}

.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon .recurring-differentiator__card--icon {
    background-color: #69b4f6;
}

.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon .recurring-differentiator__card--icon {
    background-color: #6abcb6;
}

.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon .recurring-differentiator__card--icon {
    background-color: #69b4f6;
}

.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon .recurring-differentiator__card--icon {
    background-color: #6abcb6;
}

.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon .recurring-differentiator__card--icon {
    background-color: #69b4f6;
}

.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon~.recurring-differentiator__icon .recurring-differentiator__card--icon {
    background-color: #6abcb6;
}

.recuring--nav-inpage {
    padding-right: 0;
    padding-left: 0;
    max-width: 1344px;
    margin-left: auto;
    margin-right: auto;
}

.recuring--nav-inpage__container {
    position: relative;
    z-index: 4;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    padding-right: 3rem;
    padding-left: 3rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .recuring--nav-inpage__container {
        padding-right: 3.5rem;
        padding-left: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .recuring--nav-inpage__container {
        padding-right: 5.5rem;
        padding-left: 5.5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .recuring--nav-inpage__container {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .recuring--nav-inpage__container {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

@media screen and (max-width: 90.06125em) {
    .recuring--nav-inpage__container {
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

@media screen and (max-width: 90.06125em) and (min-width: 48.0625em) {
    .recuring--nav-inpage__container {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }
}

.recuring--nav-inpage__title {
    overflow: hidden;
}

.recuring--nav-inpage__title h2 {
    color: #000;
    white-space: nowrap;
}

.recuring--nav-inpage__title h2::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.recuring--nav-inpage__title h2::after {
    padding-left: .6rem;
}

.recuring--nav-inpage__content a {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.25rem;
    color: #014a85;
}

.recuring--nav-inpage ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
}

.recuring--nav-inpage ul li {
    list-style: none;
    width: 20%;
}

@media screen and (max-width: 75.06125em) {
    .recuring--nav-inpage ul li {
        width: 27%;
        gap: 1rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .recuring--nav-inpage ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .recuring--nav-inpage ul li {
        width: 100%;
    }
}

.related-news--slider {
    overflow: hidden;
    margin-bottom: 3rem;
}

.related-news--slider .card__content {
    margin-top: 1rem;
}

.related-news--slider .card__content__inner {
    padding: 0;
}

.related-news--slider .card__content__inner .date {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 0;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media print,
screen and (min-width: 64.0625em) {
    .related-news--slider .card__content__inner .date {
        font-size: 1.125rem;
    }
}

.related-news--slider .card__content__inner h3,
.related-news--slider .card__content__inner h2 {
    margin-top: .5rem;
}

@media screen and (min-width: 48.0625em) {
    .related-news--slider {
        margin-bottom: 6rem;
    }

    .related-news--slider .swiper-wrapper {
        display: block;
    }

    .related-news--slider .swiper-wrapper .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: unset;
        flex-wrap: unset;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .related-news--slider .swiper-wrapper .card:not(:first-child) {
        margin-top: 2rem;
    }
}

@media screen and (min-width: 48.0625em) and (min-width: 64.0625em) {
    .related-news--slider .swiper-wrapper .card:not(:first-child) {
        margin-top: 3rem;
    }
}

@media screen and (min-width: 48.0625em) {
    .related-news--slider .swiper-wrapper .card__media {
        max-width: 300px;
    }

    .related-news--slider .swiper-wrapper .card__media figure .aspect-ratio-frame {
        height: 200px;
    }

    .related-news--slider .swiper-wrapper .card__content {
        margin-top: 0;
    }

    .related-news--slider .swiper-wrapper .card__content__inner {
        padding: 0;
    }

    .related-news--slider .swiper-wrapper .card__content__inner p {
        padding-right: 2.5rem;
        font-size: .875rem;
        font-weight: normal;
        line-height: 1.8;
    }
}

@media screen and (min-width: 48.0625em) and (min-width: 64.0625em) {
    .related-news--slider .swiper-wrapper .card__content__inner p {
        font-size: 1rem;
    }
}

.related-news--slider .swiper-container {
    overflow: visible;
}

.related-news--slider .slider-navigation {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-content: center;
    gap: .5rem;
}

@media screen and (min-width: 48.0625em) {
    .related-news--slider .slider-navigation {
        display: none;
    }
}

.related-news--slider .video-tag {
    position: absolute;
    text-align: center;
    background-color: #115e6b;
    padding: .5625rem .625rem;
    -webkit-text-decoration: uppercase;
    text-decoration: uppercase;
    top: 0;
    color: #fff;
    right: 0;
    z-index: 10;
    font-size: .875rem;
}

@media screen and (max-width: 25em) {
    .related-news--slider .swiper-container {
        width: 86vw;
        margin-left: 0;
    }

    .related-news--slider .swiper-slide {
        width: 100%;
    }
}

.related--news .heading-link-arrow {
    margin-left: auto;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 5px;
}

@media screen and (max-width: 48.06125em) {
    .related--news .heading-link-arrow {
        margin-left: 0;
    }
}

.related--news .heading-link-arrow a {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.3;
    text-transform: none;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .related--news .heading-link-arrow a {
        font-size: 1.25rem;
    }
}

.related--news .heading-link-arrow::after {
    position: relative;
    display: block;
}

.related {
    margin-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .related {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .related {
        margin-top: 4rem;
    }
}

.related h2.section-heading__heading {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
}

@media print,
screen and (min-width: 64.0625em) {
    .related h2.section-heading__heading {
        font-size: 1.125rem;
    }
}

.related .btn--small {
    margin: 0 4px;
}

.related .btn--small.swiper-button-disabled {
    opacity: .5;
}

.slider-navigation {
    display: none;
}

.swiper-container-initialized .slider-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slider-navigation button::before {
    display: none;
}

.swiper-wrapper {
    list-style: none;
}

.swiper-wrapper>li {
    list-style: none;
}

.slide-toggle {
    --slide-toggle-offset: 0;
    --slide-toggle-scale: 1;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slide-toggle__button {
    margin: 0;
    -webkit-transition: color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: color 150ms cubic-bezier(.42, .08, .06, .98);
    background-color: transparent;
}

.slide-toggle--line {
    border-bottom: .0625em solid #000;
}

.slide-toggle--line .slide-toggle__button {
    color: #000;
}

.slide-toggle--line .slide-toggle__button[aria-selected='true'] {
    color: #ffcd00;
}

@supports(--css: variables) {
    .slide-toggle--line:after {
        bottom: 0;
        height: .3125em;
        -webkit-transform: translate(var(--slide-toggle-offset), 50%) scale(var(--slide-toggle-scale), 1);
        transform: translate(var(--slide-toggle-offset), 50%) scale(var(--slide-toggle-scale), 1);
        background-color: #ffcd00;
    }
}

.slide-toggle--pill {
    padding: 1em;
    background-color: #997b00;
}

.slide-toggle--pill .slide-toggle__button {
    position: relative;
    z-index: 1;
}

.slide-toggle--pill .slide-toggle__button:hover {
    background-color: #ffcd00;
}

.slide-toggle--pill .slide-toggle__button[aria-selected='true'] {
    background-color: #ffcd00;
}

@supports(--css: variables) {
    .slide-toggle--pill:after {
        top: 1em;
        bottom: 1em;
        -webkit-transform: translateX(calc(var(--slide-toggle-offset) - 1em)) scale(var(--slide-toggle-scale), 1);
        transform: translateX(calc(var(--slide-toggle-offset) - 1em)) scale(var(--slide-toggle-scale), 1);
        background-color: #ffd733;
    }
}

@supports(--css: variables) {
    .slide-toggle:after {
        position: absolute;
        display: block;
        width: 100px;
        content: '';
        -webkit-transition: -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
        transition: -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
        transition: transform 150ms cubic-bezier(.42, .08, .06, .98);
        transition: transform 150ms cubic-bezier(.42, .08, .06, .98), -webkit-transform 150ms cubic-bezier(.42, .08, .06, .98);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    .slide-toggle .slide-toggle__button {
        background-color: transparent !important;
    }
}

.social-media {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-media li {
    display: inline-block;
}

.social-media a {
    display: block;
    margin: 0 .25em;
    -webkit-transition: color 150ms cubic-bezier(.42, .08, .06, .98);
    transition: color 150ms cubic-bezier(.42, .08, .06, .98);
    font-size: 1.5rem;
}

.social-media a:hover {
    color: #997b00;
}

.stacker .stacker__items {
    width: 100%;
}

.stacker .stacker__items>.grid-x>.cell {
    text-align: center;
}

@media print,
screen and (min-width: 64.0625em) {
    .stacker .stacker__items>.grid-x>.cell {
        text-align: left;
    }

    .stacker--right .stacker__items>.grid-x>.cell:nth-child(1) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .stacker--right .stacker__items>.grid-x>.cell:nth-child(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .stacker--left .stacker__items>.grid-x>.cell:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .stacker--left .stacker__items>.grid-x>.cell:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .stacker--alternating-right .stacker__items>.grid-x:nth-child(odd)>.cell:nth-child(1) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .stacker--alternating-right .stacker__items>.grid-x:nth-child(odd)>.cell:nth-child(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .stacker--alternating-right .stacker__items>.grid-x:nth-child(even)>.cell:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .stacker--alternating-right .stacker__items>.grid-x:nth-child(even)>.cell:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .stacker--alternating-left .stacker__items>.grid-x:nth-child(odd)>.cell:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .stacker--alternating-left .stacker__items>.grid-x:nth-child(odd)>.cell:nth-child(2) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .stacker--alternating-left .stacker__items>.grid-x:nth-child(even)>.cell:nth-child(1) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }

    .stacker--alternating-left .stacker__items>.grid-x:nth-child(even)>.cell:nth-child(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.student--quote {
    background-image: url(../image/differentiator-bg.png);
    padding: 2.5rem;
    padding-right: 0;
    padding-left: 0;
    max-width: 1344px;
    margin-left: auto;
    margin-right: auto;
}

@media print,
screen and (min-width: 48.0625em) {
    .student--quote {
        padding: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .student--quote {
        padding: 5rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .student--quote {
        margin-right: 0;
        margin-left: 0;
        padding-right: 1rem;
        padding-left: 1rem;
        padding-bottom: 3rem;
    }
}

@media screen and (max-width: 64.06125em) and (min-width: 48.0625em) {
    .student--quote {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

.student--quote__wrapper {
    padding-right: 0;
    padding-left: 0;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
    background-color: #fff;
}

@media print,
screen and (min-width: 48.0625em) {
    .student--quote__wrapper {
        padding-left: 3rem;
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .student--quote__wrapper {
        padding-left: 4rem;
        padding-bottom: 4rem;
        padding-top: 4rem;
    }
}

@media screen and (min-width: 48.0625em) {
    .student--quote__wrapper {
        -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    }

    .student--quote__wrapper .fa-quote-left {
        display: none;
    }
}

@media screen and (max-width: 48.06125em) {
    .student--quote__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding-left: 0;
        padding-bottom: 0;
        padding-top: 0;
        background-color: transparent;
    }

    .student--quote__wrapper .fa-quote-left {
        font-size: 30px;
        color: #ffcd00;
        top: -20px;
        position: absolute;
    }
}

.student--quote .student--quote__content {
    position: relative;
    background-color: #fff;
}

.student--quote .student--quote__content .medium-4 {
    margin-left: 1.5rem;
}

@media screen and (max-width: 48.06125em) {
    .student--quote .student--quote__content .medium-4 {
        margin-left: auto;
    }
}

@media screen and (max-width: 48.06125em) {
    .student--quote .student--quote__content {
        -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 2.5rem;
        padding-top: 2.5rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .student--quote .student--quote__content {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .student--quote .student--quote__content {
        padding-bottom: 3rem;
        padding-top: 3rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 64.0625em) {
    .student--quote .student--quote__content {
        padding-bottom: 3.5rem;
        padding-top: 3.5rem;
    }
}

.student--quote .subheading {
    margin: 0;
    font-size: 1.5rem;
}

.student--quote .subheading::before {
    content: '';
    background-image: url(../image/quote.svg);
    display: inline-block;
    height: 35px;
    width: 42px;
    background-repeat: no-repeat;
    margin-left: -75px;
    padding-right: 33px;
}

@media screen and (max-width: 48.06125em) {
    .student--quote .subheading {
        font-size: 1.125rem;
    }

    .student--quote .subheading::before {
        display: none;
    }
}

.student--quote .student--quote__subcontent p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.student--quote .student--quote__img {
    margin-right: 0;
    margin-left: auto;
}

@media screen and (max-width: 48.06125em) {
    .student--quote .student--quote__img {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 64.0625em) {
    .student--quote .student--quote__img {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.student--quote .student--quote__img img {
    border-bottom-left-radius: 50% 50%;
    border-top-left-radius: 50% 50%;
}

@media screen and (max-width: 40.06125em) {
    .student--quote .student--quote__img img {
        border-bottom-right-radius: 50% 50%;
        border-top-right-radius: 50% 50%;
        border-bottom-left-radius: unset;
        border-top-left-radius: unset;
    }
}

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

.student-voices__upper h2 {
    color: #000;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 4rem;
}

.student-voices__upper h2::before {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

@media screen and (max-width: 48.06125em) {
    .student-voices__upper h2 {
        font-size: 2.25rem;
    }
}

.student-voices__upper h2::before {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35rem;
    overflow: hidden;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .student-voices__upper h2::before {
        margin-bottom: 2rem;
    }
}

.student-voices__upper .intro-text {
    max-width: 60rem;
    margin-right: auto;
    margin-left: auto;
}

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

.student-voices .swiper-wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.student-voices .testimonial {
    background-color: #ffcd00;
    height: unset;
}

@media screen and (min-width: 48.0625em) {
    .student-voices .testimonial {
        width: calc(33.3333% - 26.6667px);
    }
}

.student-voices .testimonial h3 {
    background-color: #fff;
    padding-bottom: 1rem;
}

.student-voices .testimonial figure {
    margin: 0;
    position: relative;
    z-index: 1;
}

.student-voices .testimonial blockquote {
    margin: -3rem 1.5rem 0;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    border-radius: .25rem;
    padding: 1.5rem 1.3125rem;
    position: relative;
    z-index: 2;
    text-align: left;
    overflow: visible;
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .student-voices .testimonial blockquote {
        margin-top: -1.5rem;
    }
}

.student-voices .testimonial blockquote::before {
    content: "";
    display: block;
    width: 43px;
    height: 36px;
    background-image: url(../image/quote-teal.svg);
    position: absolute;
    z-index: 2;
    top: -18px;
    left: calc(50% - 21.5px);
}

.student-voices .testimonial blockquote p {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1.125rem;
    line-height: 1.875rem;
    position: relative;
}

.student-voices .testimonial blockquote p::before {
    content: "“";
    position: absolute;
    left: -.5em;
    top: 0;
}

.student-voices .testimonial blockquote p::after {
    content: "”";
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .student-voices .testimonial blockquote p {
        font-size: .875rem;
        line-height: 1.5rem;
    }
}

.student-voices .testimonial__details {
    padding: .5rem 1.5rem 2rem;
}

.student-voices .testimonial__details dt {
    margin-top: 1.5rem;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
}

@media print,
screen and (min-width: 64.0625em) {
    .student-voices .testimonial__details dt {
        font-size: .875rem;
    }
}

.student-voices .testimonial__details dd {
    margin-top: .5rem;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.25rem;
    line-height: 1.875rem;
}

.student-voices .testimonial__details a.link-arrow {
    font-family: kapra-neue-semibold-expanded, sans-serif;
}

.student-voices .slider-navigation {
    position: absolute;
    top: 20%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    left: -5px;
    width: calc(100% + 10px);
}

@media screen and (min-width: 37.5em) {
    .student-voices .slider-navigation {
        top: 28%;
    }
}

.student-voices .slider-navigation>button {
    margin: 0 .25rem;
    width: 2.5rem;
    height: 2.5rem;
}

.student-voices .slider-navigation>button .far::before {
    color: #fff;
}

.student-voices .slider-navigation>button:hover,
.student-voices .slider-navigation>button:focus {
    background-color: #000;
}

@media screen and (max-width: 48.06125em) {
    .tabs__buttons {
        display: none;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .tabs__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    :root:not(.oho-js) .tabs__buttons {
        display: none;
    }

    .tabs__buttons li+li {
        margin-left: 1em;
    }

    .tabs__button {
        margin-bottom: -.0625em;
        border: .0625em solid #ffcd00;
    }

    .tabs__button[aria-selected='true'] {
        color: #ffcd00;
        border-bottom-color: #fff;
        background-color: #fff;
    }

    .tabs .accordion {
        display: block;
        margin-top: 0;
        padding: 1.75em;
        border: .0625em solid #ffcd00;
    }

    .tabs .accordion::before,
    .tabs .accordion::after {
        display: table;
        content: ' ';
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .tabs .accordion::after {
        clear: both;
    }

    .tabs .accordion[aria-hidden='true'] {
        display: none;
    }

    .tabs .accordion__button {
        display: none;
    }

    :root:not(.oho-js) .tabs .accordion__button {
        display: block;
    }
}

.tags ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.tags li {
    display: inline-block;
}

.tags li a {
    padding: 5px 18px;
    display: inline-block;
    border: 1px solid #ffcd00;
    border-radius: 15px;
}

.tags li a:hover,
.tags li a:focus {
    text-decoration: none;
}

.tags li+li {
    margin-left: .25em;
}

@media screen and (max-width: 40.06125em) {
    .tags li+li {
        margin-left: 0;
        margin-top: .5rem;
    }
}

.tags li:nth-last-child(n+2):after {
    content: '';
}

section+.tags {
    margin-top: 2rem;
    padding-top: 2rem;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #262626), color-stop(4em, #262626), color-stop(4em, transparent));
    background-image: linear-gradient(to right, #262626 0, #262626 4em, transparent 4em);
    background-repeat: no-repeat;
    background-size: 100% .0625em;
}

.tooltip-box {
    position: absolute;
    z-index: 10;
    visibility: hidden;
    max-width: 18.75rem;
    -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease;
    transition: opacity 300ms ease, -webkit-transform 300ms ease;
    transition: opacity 300ms ease, transform 300ms ease;
    transition: opacity 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    opacity: 0;
}

.tooltip-box--active {
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.tooltip-box__container {
    position: relative;
    border: 1px solid #ffcd00;
    border-top: 20px solid #ffcd00;
}

.tooltip-box__container i {
    position: absolute;
    top: -19px;
    right: 4px;
    cursor: pointer;
    color: #fff;
}

.tooltip-box__container .tooltip-box__content {
    display: block;
    padding: 15px;
    background: #fff;
    font-size: 15px;
}

.tooltip-box-toggle:after {
    padding-left: 10px;
    content: '';
    cursor: pointer;
    -webkit-transition: color 200ms ease;
    transition: color 200ms ease;
    color: #999;
    font-family: "Font Awesome 5 Pro";
}

.tooltip-box-toggle--active:after {
    color: #ffcd00;
}

[id='back-to-top'] {
    width: 100%;
    margin-bottom: 45px;
    text-align: center;
}

[id='back-to-top'] a:hover {
    text-decoration: none;
}

[id='back-to-top'] span {
    display: block;
}

.has-tooltip-box {
    color: #000;
}

.costs__textrow,
.costs__accordion-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.costs__textrow .costs__amount,
.costs__accordion-button .costs__amount {
    width: 8rem;
}

.event-item--alter .card__content__inner {
    padding: 0;
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-item--alter .card__content__inner {
        margin-top: 1.5rem;
    }
}

.event-item--alter .card__media {
    margin-top: 0;
}

.event-item--alter li:after {
    display: block;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-item--alter li:after {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .event-item--alter li:after {
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
}

.event-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.event-time p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.event-time .fas {
    font-weight: normal;
}

.event-time .fas:before {
    margin-right: .5rem;
    font-weight: 900;
}

.event-time .time,
.event-time .location {
    margin: 0;
}

@media screen and (max-width: 40.06125em) {

    .event-time .time,
    .event-time .location {
        width: 100%;
    }
}

@media screen and (max-width: 40.06125em) {
    .event-time .time {
        margin-top: 1rem;
    }
}

.event-time .time:before {
    content: '';
    font-family: "Font Awesome 5 Pro";
}

.event-time .location:before {
    content: '';
    font-family: "Font Awesome 5 Pro";
}

@media screen and (max-width: 40.06125em) {
    .event-time {
        display: block;
        gap: 1rem;
    }
}

@media screen and (min-width: 40.0625em) {
    .event-time {
        margin-top: .5rem;
        gap: 2rem;
    }
}

.card--event {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.card--event .card__media {
    width: auto;
}

.card--event .date-block {
    padding: 1rem;
    color: #fff;
    background-color: #997b00;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--event .date-block {
        padding: 1.5rem;
    }
}

.card--event .text-margin-reset p {
    margin-top: 1rem;
}

.card--event .text-margin-reset .icon-list {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--event .text-margin-reset .icon-list {
        margin-top: 1.5rem;
    }
}

.card--listing--event .card__media {
    max-width: 17.5rem;
}

.card--listing--event .grid-x {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--listing--event .grid-x {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

.card--listing--event .card--event__content__column {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--listing--event {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.card--featured-event .card__content {
    width: 100%;
}

.card--featured-event .card--event__content__column {
    margin-top: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--featured-event .card--event__content__column {
        margin-top: 2rem;
    }
}

.card--news .date,
.card--news p,
.card--news .tags {
    margin-top: 1rem;
    display: block;
}

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

    .card--news .date,
    .card--news p,
    .card--news .tags {
        margin-top: 1.5rem;
    }
}

.card--news .date+p {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--listing--news {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .card--listing--news .card__content__inner {
        padding: 0 2rem 0 0;
    }

    .card--listing--news .card__media {
        width: 25%;
        margin-bottom: 0;
    }

    .card--listing--news .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--listing--news img {
        display: block;
    }
}

@media screen and (max-width: 48.06125em) {
    .card--listing--news .card__content__inner {
        padding: 0;
    }
}

.card--listing--news p {
    font-size: .875rem;
    font-weight: normal;
    line-height: 1.8;
}

@media print,
screen and (min-width: 64.0625em) {
    .card--listing--news p {
        font-size: 1rem;
    }
}

.video-tag {
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    background-color: #115e6b;
    padding: .5625rem .625rem;
    -webkit-text-decoration: uppercase;
    text-decoration: uppercase;
    top: 0;
    color: #fff;
    right: 0;
    z-index: 10;
    font-size: .875rem;
}

.listing__rows>ol>li:first-child>.card--listing--news {
    padding-top: 0;
}

.page-width-md {
    background-color: #fff;
    margin-top: -13vw;
    border-radius: 4px;
    position: relative;
    z-index: 9;
    padding-right: 0;
    padding-left: 0;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 64.0625em) {
    .page-width-md h1 {
        font-size: 4rem;
    }
}

@media screen and (min-width: 70.625em) {
    .page-width-md {
        margin-top: -29vw;
    }
}

@media screen and (min-width: 70.625em) and (max-height: 640px) {
    .page-width-md {
        margin-top: -36vw;
    }
}

@media screen and (min-width: 90em) {
    .page-width-md {
        margin-top: -410px;
    }
}

@media screen and (min-width: 90em) and (max-height: 640px) {
    .page-width-md {
        margin-top: -480px;
    }
}

@media screen and (min-width: 118.75em) {
    .page-width-md {
        margin-top: -390px;
    }
}

@media screen and (min-width: 118.75em) and (max-height: 640px) {
    .page-width-md {
        margin-top: -480px;
    }
}

.hero--no-img~.page-width-md {
    margin-top: -31vw;
}

@media screen and (min-width: 90em) {
    .hero--no-img~.page-width-md {
        margin-top: -450px;
    }
}

@media screen and (max-width: 60.875em) {
    .hero--no-img~.page-width-md {
        margin-top: 0;
    }
}

.page-width-md .card--shadow {
    border-radius: 4px;
    background-color: #fff;
    padding-right: 4.5rem;
    padding-left: 4.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .page-width-md .card--shadow {
        padding-right: 5.5rem;
        padding-left: 5.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .page-width-md .card--shadow {
        padding-right: 6.25rem;
        padding-left: 6.25rem;
    }
}

.page-width-md .card--shadow>.global-spacing--default {
    margin-top: 0;
    padding-top: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .page-width-md .card--shadow>.global-spacing--default {
        padding-top: 3rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .page-width-md .card--shadow {
        padding-right: .625rem;
        padding-left: .625rem;
    }
}

.page-width-md .card--shadow h1 {
    margin: 0;
}

.page-width-md .card--shadow .intro-text {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .page-width-md .card--shadow .intro-text {
        margin-top: 1.5rem;
    }
}

.page-width-md .card--shadow .breadcrumbs {
    margin-right: -.625rem;
    margin-left: -.625rem;
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .page-width-md .card--shadow .breadcrumbs {
        margin-right: -.9375rem;
        margin-left: -.9375rem;
    }
}

@media screen and (min-width: 48.0625em) {
    .page-width-md .card--shadow .breadcrumbs {
        padding-top: 3.5rem;
    }
}

.page-width-md .card--shadow .news__title {
    margin: 0;
}

.page-width-md .card--shadow .news__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .page-width-md .card--shadow .news__date {
        font-size: 1.25rem;
    }
}

.page-width-md .card--shadow .news__date .news__author {
    font-weight: 800;
    margin-left: .5rem;
}

.page-width-md .card--shadow .news__date .date {
    padding-top: 2px;
}

.page-width-md .card--shadow .news__date p {
    margin-top: 0;
}

.page-width-md .card--shadow .eyebrow {
    color: #014a85;
}

.card--shadow .breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.card--shadow .breadcrumbs li {
    white-space: nowrap;
}

.card--shadow .breadcrumbs li:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--shadow-md::before {
        content: "";
        -webkit-box-shadow: 0 9px 0 0 white, 0 -9px 0 0 white, 10px 0 12px -4px rgba(0, 0, 0, .15), -10px 0 12px -4px rgba(0, 0, 0, .15);
        box-shadow: 0 9px 0 0 white, 0 -9px 0 0 white, 10px 0 12px -4px rgba(0, 0, 0, .15), -10px 0 12px -4px rgba(0, 0, 0, .15);
        width: 100%;
        height: 190px;
        background: #fff;
        position: absolute;
        z-index: -1;
        margin-top: 10px;
    }
}

.page-width-sm {
    background-color: #fff;
    margin-top: -13vw;
    border-radius: 4px;
    position: relative;
    z-index: 9;
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 64.0625em) {
    .page-width-sm h1 {
        font-size: 4rem;
    }
}

@media screen and (min-width: 62.5em) {
    .page-width-sm {
        margin-top: -35vw;
    }
}

@media screen and (min-width: 62.5em) and (max-height: 640px) {
    .page-width-sm {
        margin-top: -38vw;
    }
}

@media screen and (min-width: 70.625em) {
    .page-width-sm {
        margin-top: -34vw;
    }
}

@media screen and (min-width: 70.625em) and (max-height: 640px) {
    .page-width-sm {
        margin-top: -36vw;
    }
}

@media screen and (min-width: 88.75em) {
    .page-width-sm {
        margin-top: -450px;
    }
}

@media screen and (min-width: 88.75em) and (max-height: 640px) {
    .page-width-sm {
        margin-top: -480px;
    }
}

.hero--no-img~.page-width-sm {
    margin-top: -31vw;
}

@media screen and (min-width: 90em) {
    .hero--no-img~.page-width-sm {
        margin-top: -450px;
    }
}

@media screen and (max-width: 60.875em) {
    .hero--no-img~.page-width-sm {
        margin-top: 0;
    }
}

.page-width-sm .card--shadow {
    border-radius: 4px;
    background-color: #fff;
    padding-right: 4.5rem;
    padding-left: 4.5rem;
    -webkit-box-shadow: 0 9px 0 0 white, 0 -9px 0 0 white, 10px 0 12px -4px rgba(0, 0, 0, .15), -10px 0 12px -4px rgba(0, 0, 0, .15);
    box-shadow: 0 9px 0 0 white, 0 -9px 0 0 white, 10px 0 12px -4px rgba(0, 0, 0, .15), -10px 0 12px -4px rgba(0, 0, 0, .15);
}

@media print,
screen and (min-width: 48.0625em) {
    .page-width-sm .card--shadow {
        padding-right: 5.5rem;
        padding-left: 5.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .page-width-sm .card--shadow {
        padding-right: 6.25rem;
        padding-left: 6.25rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .page-width-sm .card--shadow {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .page-width-sm .card--shadow {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

.page-width-sm .card--shadow .breadcrumbs {
    margin-right: -.625rem;
    margin-left: -.625rem;
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .page-width-sm .card--shadow .breadcrumbs {
        margin-right: -.9375rem;
        margin-left: -.9375rem;
    }
}

@media screen and (min-width: 48.0625em) {
    .page-width-sm .card--shadow .breadcrumbs {
        padding-top: 3.5rem;
    }
}

.page-width-sm .card--shadow .news__title {
    margin: 0;
}

.profile-feature-variable .faculty--title {
    overflow: hidden;
}

.profile-feature-variable .faculty--title h6 {
    text-transform: uppercase;
    overflow: hidden;
}

.profile-feature-variable .faculty--title .medium-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.profile-feature-variable .swiper-container .swiper-container-initialized .swiper-slide-visible+.swiper-slide:not(.swiper-slide-visible) {
    opacity: .5;
    pointer-events: all;
}

.profile-feature-variable .swiper-slide {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    min-height: 420px;
}

.profile-feature-variable .swiper-slide .card__media img {
    border-radius: 50%;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .profile-feature-variable .swiper-slide .card__media img {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .profile-feature-variable .swiper-slide .card__media img {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.profile-feature-variable .swiper-slide .card__content {
    text-align: center;
}

.profile-feature-variable .swiper-slide .card__content .card__content__inner {
    padding-top: 0;
}

.profile-feature-variable .swiper-slide .card__content .link-arrow {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600;
}

@media print,
screen and (min-width: 64.0625em) {
    .profile-feature-variable .swiper-slide .card__content .link-arrow {
        font-size: 1.25rem;
    }
}

.profile-feature-variable .swiper-slide .card__content .link-arrow::after {
    display: none;
}

.profile-feature-variable .slider-navigation__prev {
    padding: .9rem;
    color: #fff;
    bottom: 200px;
    margin-left: -15px;
    background-color: #115e6b;
}

.profile-feature-variable .slider-navigation__prev::before {
    display: none;
}

.profile-feature-variable .slider-navigation__next {
    padding: 1rem;
    color: #fff;
    bottom: 200px;
    margin-right: -15px;
    margin-left: auto;
    background-color: #115e6b;
}

.profile-feature-variable .slider-navigation__next::before {
    display: none;
}

.profile-feature {
    overflow: hidden;
    padding-bottom: 10px;
}

.profile-feature h2.section-heading__heading {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
}

@media print,
screen and (min-width: 64.0625em) {
    .profile-feature h2.section-heading__heading {
        font-size: 1.125rem;
    }
}

.profile-feature h3 {
    font-size: 1.25rem;
    color: #014a85;
}

.profile-feature .intro-text {
    font-family: galaxie-copernicus-book, serif;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .profile-feature .intro-text {
        font-size: 1.125rem;
    }
}

.profile-feature .swiper-container {
    overflow: visible;
}

.profile-feature .swiper-container-initialized .swiper-slide {
    -webkit-transition: opacity 150ms cubic-bezier(.42, .08, .06, .98);
    transition: opacity 150ms cubic-bezier(.42, .08, .06, .98);
    opacity: 0;
}

.profile-feature .swiper-container-initialized .swiper-slide-visible {
    opacity: 1;
}

.profile-feature .swiper-container-initialized .swiper-slide-visible+.swiper-slide:not(.swiper-slide-visible) {
    opacity: .55;
}

.profile-feature .swiper-wrapper {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.profile-feature .swiper-slide {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.profile-feature .swiper-slide .aspect-ratio-frame {
    background-image: url(../image/faculty-placeholder.svg);
    width: 140px;
    margin: auto;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-feature .swiper-slide .card__content {
    text-align: center;
}

.profile-feature .swiper-slide .card__content__inner {
    padding-top: 1.125rem;
    padding-bottom: 0;
}

.profile-feature .swiper-slide .card__content__inner p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.profile-feature .fully-disable {
    display: none;
}

.profile-feature .slider-navigation__prev {
    bottom: 220px;
    margin-left: -15px;
}

.profile-feature .slider-navigation__next {
    bottom: 220px;
    margin-right: -15px;
    margin-left: auto;
}

@media screen and (max-width: 40.06125em) {
    .profile-feature .slider-navigation {
        margin-top: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        place-content: center;
        gap: .5rem;
    }

    .profile-feature .slider-navigation__prev {
        padding: 0;
        bottom: auto;
        margin-left: 0;
        width: 2.5rem;
        height: 2.5rem;
    }

    .profile-feature .slider-navigation__next {
        padding: 0;
        bottom: auto;
        margin-right: 0;
        margin-left: 0;
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media screen and (max-width: 25em) {
    .profile-feature .swiper-container-large {
        width: 86vw;
        margin-left: 0;
    }

    .profile-feature .swiper-slide {
        width: 100%;
    }
}

.card--profile h2,
.card--profile h3 {
    margin: 0;
}

.card--profile p,
.card--profile .positions {
    margin-top: 1rem;
    display: block;
    margin-bottom: 0;
}

.card--profile .positions {
    list-style: none;
}

.card--profile .positions li+li {
    margin-top: 1rem;
}

.card--profile .btn {
    margin-top: 1rem;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--profile .btn {
        margin-top: 1.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .card--listing--profile {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .card--listing--profile .card__content__inner {
        padding: 0 2rem 0 0;
    }

    .card--listing--profile .card__media {
        width: 100%;
        margin-bottom: 0;
    }

    .card--listing--profile .card__content {
        width: 100%;
    }

    .card--listing--profile img {
        display: block;
    }
}

.listing__rows-items li {
    padding-left: 0;
}

ol.listing__rows>li:before,
ol.listing__rows-items>li:before {
    content: none;
}

.program-listing-item {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    width: 100%;
    color: #000;
}

@media print,
screen and (min-width: 48.0625em) {
    .program-listing-item {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .program-listing-item {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.program-listing-item h3 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .program-listing-item h3 {
        font-size: 1.875rem;
    }
}

.program-listing-item .link-arrow {
    display: block;
}

.program-listing-item .grid-x {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.program-listing-item ol,
.program-listing-item li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.program-listing-item {
    color: #000;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .program-listing-item {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .program-listing-item p {
        margin-top: 10px;
    }
}

@media screen and (min-width: 48.0625em) {
    .program-listing-item__secondary-heading {
        display: none;
    }

    .program-listing-item__secondary-heading+h4,
    .program-listing-item__secondary-heading+p {
        margin: 0;
    }
}

.program-listing-item .btn--compare {
    padding: 1.25rem 1.875rem .85rem;
}

@media screen and (max-width: 48.06125em) {
    .program-header {
        display: none;
    }
}

@media screen and (min-width: 48.0625em) {
    .program-header__container {
        padding-left: 6.25rem;
    }
}

.program-header__container,
.program-listing-item__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -.625rem;
    margin-left: -.625rem;
}

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

    .program-header__container,
    .program-listing-item__grid {
        margin-right: -.9375rem;
        margin-left: -.9375rem;
    }
}

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

    .program-header__column--program,
    .program-listing-item__column--program {
        width: calc(40% - 1.875rem);
        margin-right: .9375rem;
        margin-left: .9375rem;
    }
}

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

    .program-header__column--degree,
    .program-listing-item__column--degree {
        width: calc(20% - 1.875rem);
        margin-right: .9375rem;
        margin-left: .9375rem;
    }
}

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

    .program-header__column--type,
    .program-listing-item__column--type {
        width: calc(20% - 1.875rem);
        margin-right: .9375rem;
        margin-left: .9375rem;
    }
}

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

    .program-header__column--location,
    .program-listing-item__column--location {
        width: calc(20% - 1.875rem);
        margin-right: .9375rem;
        margin-left: .9375rem;
    }
}

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

    .program-header__column--compare,
    .program-listing-item__column--compare {
        width: calc(20% - 1.875rem);
        margin-right: .9375rem;
        margin-left: .9375rem;
    }
}

.program-listing-item__column--degree {
    width: 50%;
}

.card--story h2,
.card--story h3 {
    margin: 0;
}

.card--story .subject-info,
.card--story p,
.card--story .tags {
    margin-top: 1rem;
    display: block;
    margin-bottom: 0;
}

.card--story .btn {
    margin-top: 1rem;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--story .btn {
        margin-top: 1.5rem;
    }
}

.card--story .quote {
    font-weight: 500;
    font-style: italic;
}

.subject-info:not(:first-child) {
    margin-top: 2rem;
}

.subject-info span {
    display: block;
}

.subject-info span:not(:first-child) {
    margin-top: .5rem;
}

.subject-info__name {
    font-weight: 600;
}

.subject-info__meta {
    color: #595959;
}

@media print,
screen and (min-width: 48.0625em) {
    .card--listing--story {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .card--listing--story .card__content__inner {
        padding: 0 2rem 0 0;
    }

    .card--listing--story .card__media {
        width: 25%;
        margin-bottom: 0;
    }

    .card--listing--story .card__content {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .card--listing--story img {
        display: block;
    }
}

.event-detail .event-time {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-detail .event-time {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 40.06125em) {
    .event-detail .event-time {
        display: block;
        margin-top: .3125rem;
    }
}

.event-detail .event-time p {
    font-weight: normal;
}

.event-detail .event-time p:before {
    font-weight: 900;
}

.event-detail .news__tag--wrapper .eyebrow {
    margin-right: 1rem;
}

.event-detail .event-detail__context {
    margin-right: 1rem;
    margin-left: 1rem;
}

@media screen and (min-width: 48.0625em) {
    .event-detail .event-detail__context {
        margin-right: 4.5rem;
        margin-left: 4.5rem;
    }
}

@media screen and (min-width: 48.0625em) and (min-width: 48.0625em) {
    .event-detail .event-detail__context {
        margin-right: 5.5rem;
        margin-left: 5.5rem;
    }
}

@media screen and (min-width: 48.0625em) and (min-width: 64.0625em) {
    .event-detail .event-detail__context {
        margin-right: 6.25rem;
        margin-left: 6.25rem;
    }
}

.event-detail .wysiwyg {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-detail .wysiwyg {
        margin-top: 1.5rem;
    }
}

.event-detail__more-event {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    padding: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .event-detail__more-event {
        padding: 2.5rem;
    }
}

.event-detail__more-event .h6 {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.event-detail__more-event .optional-heading .h6:first-child {
    font-family: kapra-neue-semibold, sans-serif;
}

.event-detail__more-event a {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .event-detail__more-event a {
        font-size: 1.25rem;
    }
}

.event-detail__more-event h3 {
    font-size: .875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-detail .upcoming-events {
    padding-right: 0;
    padding-left: 0;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-detail .upcoming-events {
        margin-top: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .event-detail .upcoming-events {
        margin-top: 5.5rem;
    }
}

@media screen and (max-width: 75.06125em) {
    .event-detail .upcoming-events {
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

.event-detail .upcoming-events .event-time {
    display: grid;
    gap: 0;
}

@media screen and (min-width: 40.0625em) {
    .event-detail .upcoming-events {
        margin-top: 1rem;
        gap: 1rem;
    }
}

.event-detail__wrapper {
    gap: 2.5rem;
}

.event-detail__card {
    max-width: 22.5rem;
}

.event-detail__card a {
    margin-top: .5rem;
}

.heading-link-arrow {
    padding-right: 1.375rem;
}

@media screen and (min-width: 20.0625em) {
    .heading-link-arrow {
        margin-left: auto;
    }
}

.event-detail .event-time {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-detail .event-time {
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 40.06125em) {
    .event-detail .event-time {
        display: block;
        margin-top: .3125rem;
    }
}

.event-detail .event-time p {
    font-weight: normal;
}

.event-detail .event-time p:before {
    font-weight: 900;
}

.event-detail .news__tag--wrapper .eyebrow {
    margin-right: 1rem;
}

.event-detail .event-detail__context {
    margin-right: 1rem;
    margin-left: 1rem;
}

@media screen and (min-width: 48.0625em) {
    .event-detail .event-detail__context {
        margin-right: 4.5rem;
        margin-left: 4.5rem;
    }
}

@media screen and (min-width: 48.0625em) and (min-width: 48.0625em) {
    .event-detail .event-detail__context {
        margin-right: 5.5rem;
        margin-left: 5.5rem;
    }
}

@media screen and (min-width: 48.0625em) and (min-width: 64.0625em) {
    .event-detail .event-detail__context {
        margin-right: 6.25rem;
        margin-left: 6.25rem;
    }
}

.event-detail .wysiwyg {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-detail .wysiwyg {
        margin-top: 1.5rem;
    }
}

.event-detail__more-event {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    padding: 2rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .event-detail__more-event {
        padding: 2.5rem;
    }
}

.event-detail__more-event .h6 {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.event-detail__more-event .optional-heading .h6:first-child {
    font-family: kapra-neue-semibold, sans-serif;
}

.event-detail__more-event a {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .event-detail__more-event a {
        font-size: 1.25rem;
    }
}

.event-detail__more-event h3 {
    font-size: .875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-detail .upcoming-events {
    padding-right: 0;
    padding-left: 0;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-detail .upcoming-events {
        margin-top: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .event-detail .upcoming-events {
        margin-top: 5.5rem;
    }
}

@media screen and (max-width: 75.06125em) {
    .event-detail .upcoming-events {
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

.event-detail .upcoming-events .event-time {
    display: grid;
    gap: 1rem;
}

@media screen and (min-width: 40.0625em) {
    .event-detail .upcoming-events {
        gap: 1rem;
    }
}

.event-detail .upcoming-events__wrapper {
    gap: 2.5rem;
}

.event-detail .upcoming-events__card {
    max-width: 22.5rem;
}

.event-detail .upcoming-events__card a {
    display: block;
    margin-top: .5rem;
}

@media screen and (max-width: 40.06125em) {
    .event-detail .upcoming-events article+article {
        margin-top: 3rem;
    }
}

.heading-link-arrow {
    padding-right: 1.375rem;
}

@media screen and (min-width: 20.0625em) {
    .heading-link-arrow {
        margin-left: auto;
    }
}

.event-listing {
    padding-right: 0;
    padding-left: 0;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.event-listing .form__wrapper__input {
    max-width: 51.25rem;
}

.event-listing .form__wrapper__input .form-item-search {
    width: 47.5rem;
}

.event-listing .form__wrapper__input .form-item-category {
    max-width: 16.25rem;
}

.event-listing .detail__sidebar--info h2 {
    text-transform: unset;
    margin: 0;
}

.event-listing .detail__sidebar--info a {
    font-size: 1.25rem;
}

@media screen and (max-width: 48.06125em) {
    .event-listing .detail__sidebar--info a {
        font-size: 1.125rem;
    }
}

.event-listing .detail__sidebar--info li:not(:first-child) {
    margin-top: .75rem;
}

@media screen and (max-width: 48.06125em) {
    .event-listing .detail__sidebar--info li:not(:first-child) {
        margin-top: .5rem;
    }
}

.event-listing .listing__rows--grouped {
    margin-top: 0;
}

.event-listing .listing__rows--grouped .time,
.event-listing .listing__rows--grouped .location {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.8;
}

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

    .event-listing .listing__rows--grouped .time,
    .event-listing .listing__rows--grouped .location {
        font-size: 1.125rem;
    }
}

.event-listing .listing__rows--grouped .time:before,
.event-listing .listing__rows--grouped .location:before {
    font-weight: bold;
}

@media screen and (min-width: 48.0625em) {
    .event-listing .office-detail__content--context {
        max-width: 41.25rem;
        margin-right: 6.875rem;
    }
}

.event-listing .detail__sidebar {
    margin-left: 0;
}

.event-listing .lower-list-links h2 {
    text-transform: uppercase;
}

.event-listing .card--stacked--small {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.event-listing .card--stacked--small .card__media {
    width: 100%;
    margin-bottom: 0;
}

.event-listing .card--stacked--small .card__content {
    width: 100%;
}

.event-listing .card--stacked--small img {
    display: block;
}

.event-listing .pager {
    margin-top: 0;
    place-content: flex-start;
}

.event-item--alter .card .card__media figure {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .event-item--alter .card .card__media figure {
        margin-top: 1.5rem;
    }
}

.faculty-detail .curve-convex {
    margin-top: -6vw;
}

.faculty-detail .img-staff {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 48.06125em) {
    .faculty-detail .img-staff {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .faculty-detail .img-staff {
        padding-right: 1.25rem;
    }
}

.faculty-detail .img-staff img {
    border-radius: 50%;
}

.faculty-detail .recurring-contact__card--person {
    background-color: #ffcd00;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    height: 16.25rem;
    width: 16.25rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 7.5rem;
}

@media screen and (max-width: 64.06125em) {
    .faculty-detail__title {
        margin-top: 2rem;
    }

    .faculty-detail__title .tags {
        display: none;
    }
}

.faculty-detail__title p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.faculty-detail--columns {
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.faculty-detail .faculty-detail__context {
    max-width: 660px;
    overflow: hidden;
}

.faculty-detail .faculty-detail__context .dotted {
    display: inline-block;
}

.faculty-detail .faculty-detail__context p {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .faculty-detail .faculty-detail__context p {
        font-size: 1.125rem;
    }
}

.faculty-detail .faculty-detail__context--department {
    gap: .625rem;
}

@media screen and (min-width: 40.0625em) {
    .faculty-detail .faculty-detail__context--department {
        gap: 1.5rem;
    }
}

.faculty-detail .faculty-detail__context--downloads .fa-arrow-alt-to-bottom:before {
    display: none;
}

.faculty-detail .faculty-detail__context--downloads .fa-arrow-alt-to-bottom:after {
    margin-left: .6875rem;
}

.faculty-detail .faculty-detail__context--downloads .fas {
    font-size: 1.125rem;
    color: #014a85;
    font-family: kapra-neue-semibold, sans-serif;
}

.faculty-detail .faculty-detail__context--downloads .fas:hover {
    text-decoration: underline;
}

.faculty-detail__content .wysiwyg,
.faculty-detail__content .wysiwyg p {
    font-family: galaxie-copernicus-book, serif;
}

.faculty-directory .faculty-directory-item {
    display: grid;
    grid-template-columns: 160px 3fr;
}

.faculty-directory .faculty-directory-item p {
    margin: 0;
}

.faculty-directory .faculty-directory-item .categorie {
    font-size: .875rem;
}

.faculty-directory .faculty-directory-item .categorie a {
    font-weight: 600;
    border: none;
    padding: 0;
}

@media screen and (min-width: 20.0625em) {
    .faculty-directory .faculty-directory-item .categorie li:not(:first-child) {
        margin-left: 1rem;
    }
}

@media screen and (max-width: 40.06125em) {
    .faculty-directory .faculty-directory-item .categorie li:not(:first-child) {
        margin-top: 1rem;
    }
}

.faculty-directory .faculty-directory-item .tags li {
    margin-top: 1rem;
}

@media screen and (min-width: 20.0625em) {
    .faculty-directory .faculty-directory-item .tags li:not(:last-child) {
        margin-right: .5rem;
    }
}

.faculty-directory .faculty-directory-item img {
    border-radius: 50%;
}

@media screen and (max-width: 40.06125em) {
    .faculty-directory .faculty-directory-item img {
        height: 4.375rem;
        width: 4.375rem;
    }
}

.faculty-directory .faculty-directory-item__column {
    margin-left: 2.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.faculty-directory .faculty-directory-item__column .block-head {
    grid-column: 1;
}

.faculty-directory .faculty-directory-item__column .block-contact {
    grid-column: 2;
    grid-row: 1;
}

.faculty-directory .faculty-directory-item__column .block-tags {
    grid-column: 1;
}

@media screen and (max-width: 48.06125em) {
    .faculty-directory .faculty-directory-item__column {
        margin-left: 1rem;
        grid-template-columns: 1fr;
    }

    .faculty-directory .faculty-directory-item__column .block-head {
        grid-row: 1;
    }

    .faculty-directory .faculty-directory-item__column .block-contact {
        grid-column: 1;
        grid-row: 2;
    }

    .faculty-directory .faculty-directory-item__column .block-tags {
        grid-row: 3;
    }
}

@media screen and (max-width: 40.06125em) {
    .faculty-directory .faculty-directory-item {
        grid-template-columns: 70px 2fr;
    }
}

.faculty-directory .faculty-directory-item .aspect-ratio-frame {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
}

.faculty-directory .faculty-directory-item .aspect-ratio-frame--icon {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ffcd00;
}

.faculty-directory .faculty-directory-item .aspect-ratio-frame--icon img {
    border-radius: 0;
    width: 5rem;
    height: 5rem;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 48.06125em) {
    .faculty-directory .faculty-directory-item .aspect-ratio-frame--icon img {
        width: 1.9375rem;
        height: 2.125rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .faculty-directory .faculty-directory-item .aspect-ratio-frame--icon {
        width: 4.375rem;
        height: 4.375rem;
    }
}

.faculty-directory .listing__rows--grouped {
    margin-top: 0;
}

.faculty-directory .listing__rows--grouped h4 {
    margin-right: 2.25rem;
}

@media screen and (max-width: 48.06125em) {
    .faculty-directory .listing__rows--grouped h4 {
        margin-bottom: 0;
        margin-top: 2rem;
    }
}

.faculty-directory .listing__rows--grouped h3 {
    margin: 0;
}

.faculty-directory .listing__rows--grouped ol {
    max-width: 60rem;
    overflow: hidden;
}

.faculty-directory .listing__rows--grouped p {
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media screen and (max-width: 48.06125em) {
    .faculty-directory .listing__rows--grouped p {
        font-size: 1.0625rem;
    }
}

.faculty-directory .listing__rows--grouped li {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.faculty-directory .listing__rows--grouped li:after {
    margin-top: 2.5rem;
    display: block;
}

@media print,
screen and (min-width: 48.0625em) {
    .faculty-directory .listing__rows--grouped li:after {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .faculty-directory .listing__rows--grouped li:after {
        margin-top: 3.5rem;
    }
}

.faculty-directory .listing__rows--grouped .listing__rows-items {
    margin-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .faculty-directory .listing__rows--grouped .listing__rows-items {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .faculty-directory .listing__rows--grouped .listing__rows-items {
        margin-top: 3.5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .faculty-directory .listing__rows--grouped .listing__rows-items {
        margin-top: 2rem;
    }
}

.faculty-directory .listing__rows--grouped .icon-list {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .faculty-directory .listing__rows--grouped .icon-list {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 64.06125em) {
    .faculty-directory .listing__rows--grouped .icon-list {
        margin-top: 1.3125rem;
    }
}

.faculty-directory .listing__rows--grouped .icon-list li:first-child {
    margin-top: 0;
}

.faculty-directory .listing__rows--grouped .icon-list li:not(:first-child) {
    margin-top: 1rem;
}

.faculty-directory .listing__rows--grouped .icon-list li:after {
    display: none;
}

.faculty-directory .listing__rows--grouped .icon-list li:first-child a {
    color: #000;
}

.faculty-directory .listing__rows--grouped .fas:before {
    color: #115e6b;
}

.faculty-directory .pager {
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

article.page--general::before,
article.page--general::after {
    display: table;
    content: ' ';
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

article.page--general::after {
    clear: both;
}

.general-page-max__content {
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
}

@media print,
screen and (min-width: 48.0625em) {
    .general-page-max__content {
        min-height: 13.75rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .general-page-max__content {
        height: 100%;
    }
}

.general-page-max__context {
    padding-right: 4.5rem;
    padding-left: 4.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .general-page-max__context {
        padding-right: 5.5rem;
        padding-left: 5.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .general-page-max__context {
        padding-right: 6.25rem;
        padding-left: 6.25rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .general-page-max__context {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .general-page-max__context {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

.general-page-max__context .link-arrow {
    margin-left: auto;
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 5px;
}

.general-page-max__context .link-arrow a {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600;
}

@media print,
screen and (min-width: 64.0625em) {
    .general-page-max__context .link-arrow a {
        font-size: 1.25rem;
    }
}

.general-page-max__context .link-arrow::after {
    position: relative;
    display: block;
}

.new__related .listing__rows {
    margin-top: 0;
}

.new__related li::after {
    display: none;
}

.listing form {
    padding: 2.5rem;
    border-radius: 4px;
    -webkit-box-shadow: 0 4px 10px RGBA(0, 0, 0, .15);
    box-shadow: 0 4px 10px RGBA(0, 0, 0, .15);
    background-color: #f2f5f7;
}

.listing form::before,
.listing form::after {
    display: table;
    content: ' ';
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.listing form::after {
    clear: both;
}

@media screen and (max-width: 75em) {
    .listing form {
        margin-right: .9375rem;
        margin-left: .9375rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .listing form {
        padding: 1rem;
        margin-right: .625rem;
        margin-left: .625rem;
    }
}

.listing form .form__title h2 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
    overflow: hidden;
    white-space: nowrap;
    color: #000;
    margin: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .listing form .form__title h2 {
        font-size: 1.125rem;
    }
}

.listing form .form__title h2::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.listing form .form__title h2::after {
    padding-left: .1rem;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

.listing form .form__column__wraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.listing form .form__column__wraper .form-actions {
    height: 2.375rem;
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

@media screen and (max-width: 48.06125em) {
    .listing form .form__column__wraper .form-actions {
        height: 2.1875rem;
    }
}

.listing form .form__column--program-type {
    min-width: 240px;
}

.listing form .form__column--area-study {
    min-width: 175px;
}

.listing .form-item {
    max-width: none;
    margin-top: 0;
}

.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 {
    text-align: start;
    width: 100%;
}

.listing [data-drupal-selector='edit-reset'] {
    -webkit-transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    transition: color .5s cubic-bezier(.82, .06, .14, .97), background .5s cubic-bezier(.82, .06, .14, .97), border .5s cubic-bezier(.82, .06, .14, .97);
    font-weight: normal;
    font-family: kapra-neue-semibold-expanded, sans-serif;
    border-width: 2px;
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    padding: .5rem .625rem .625rem;
    display: block;
    border-radius: 2px;
    color: #fff;
    text-transform: uppercase;
    background-color: #115e6b;
    border-color: #115e6b;
}

.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 {
    border-radius: 2px;
}

.listing [data-drupal-selector='edit-reset']::before {
    display: none;
}

.listing [data-drupal-selector='edit-reset']::after {
    color: #fff;
}

.listing [data-drupal-selector='edit-reset']:hover,
.listing [data-drupal-selector='edit-reset']:focus {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

.listing [data-drupal-selector='edit-reset']:hover:after,
.listing [data-drupal-selector='edit-reset']:focus:after {
    color: #fff;
}

.listing .form-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.listing [type='submit'] {
    margin-left: .7rem;
}

@media screen and (max-width: 48.06125em) {
    .listing [type='submit'] {
        margin-left: 0;
    }
}

.listing [type='submit']+[type='submit'] {
    margin-left: 1em;
}

@media screen and (max-width: 48.06125em) {

    .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 {
        margin-bottom: 0;
    }

    .listing .form-item,
    .listing .form-actions {
        margin-bottom: 0;
    }

    .listing .form-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 100%;
    }

    .listing .form-item+.form-item,
    .listing .form-item+.form-actions {
        margin-left: 1rem;
    }
}

@media screen and (max-width: 48.06125em) and (max-width: 48.06125em) {

    .listing .form-item+.form-item,
    .listing .form-item+.form-actions {
        margin-left: .3rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .listing .form-actions {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

.card--listing {
    width: 100%;
    margin-top: 2rem;
}

.card--listing+.card--listing {
    padding-top: 2rem;
    border-top: .0625em solid #a7bacb;
}

.listing__rows--grouped {
    list-style: none;
    overflow: hidden;
    margin-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .listing__rows--grouped {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .listing__rows--grouped {
        margin-top: 3.5rem;
    }
}

.vaf+.listing__rows--grouped {
    margin-top: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .vaf+.listing__rows--grouped {
        margin-top: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .vaf+.listing__rows--grouped {
        margin-top: 3.5rem;
    }
}

.listing__rows--grouped .grid-x {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.listing__rows--grouped>*:nth-child(odd),
.listing__rows--grouped>*:nth-child(even) {
    background-color: transparent;
}

.listing__rows--grouped [data-start-color='true']>li:before {
    content: '';
}

.listing__rows--grouped [data-start-color='true']>li:nth-child(odd):before,
.listing__rows--grouped [data-start-color='false']>li:nth-child(even):before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50%;
    display: block;
    background-color: #fff;
    width: 100%;
}

.listing__rows--grouped>ol,
.listing__rows--grouped>li,
.listing__rows--grouped>li>ol,
.listing__rows--grouped>li>ol>li {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.listing__rows--grouped ol li {
    padding-left: 0;
    color: #000;
}

.listing__rows--grouped ol li::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.listing__rows--grouped ol li .eyebrow {
    color: #014a85;
    margin-top: 1rem;
}

.listing__rows--grouped ol li p {
    margin-bottom: 1rem;
}

.listing__rows--grouped .tags li::after {
    content: none;
}

.listing__rows--grouped>li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.listing__rows--grouped>li:before {
    display: none;
}

.listing__rows--grouped>li>.eyebrow {
    display: block;
    width: 6.25rem;
    height: 1.25rem;
}

.listing__rows--grouped>li .date {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    font-family: kapra-neue-regular-expanded, sans-serif;
}

@media print,
screen and (min-width: 64.0625em) {
    .listing__rows--grouped>li .date {
        font-size: 1.125rem;
    }
}

.listing__rows--grouped>li {
    padding-right: 0;
    padding-left: 0;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}

.page--listing-page .detail__sidebar {
    padding-bottom: 10px;
}

@media screen and (max-width: 48.06125em) {
    .card--listing--news .card__media {
        margin-bottom: 1rem;
    }
}

.news--detail .news__herobar {
    margin-top: -8vw;
    z-index: 2;
}

@media screen and (max-width: 48.06125em) {
    .news--detail .news__herobar {
        margin-top: -23vw;
        margin-bottom: 20vw;
    }
}

@media screen and (max-width: 62.4375em) {
    .news--detail .news--content {
        margin-top: -14vw;
    }
}

@media screen and (min-width: 62.5em) {
    .news--detail .news--content {
        margin-top: -27vw;
    }
}

@media screen and (min-width: 62.5em) and (max-height: 640px) {
    .news--detail .news--content {
        margin-top: -36vw;
    }
}

@media screen and (min-width: 90em) {
    .news--detail .news--content {
        margin-top: -362px;
    }
}

@media screen and (min-width: 90em) and (max-height: 640px) {
    .news--detail .news--content {
        margin-top: -480vw;
    }
}

@media screen and (min-width: 118.75em) {
    .news--detail .news--content {
        margin-top: -390px;
    }
}

@media screen and (min-width: 118.75em) and (max-height: 640px) {
    .news--detail .news--content {
        margin-top: -480px;
    }
}

.news--detail .hero--no-img~.news--content {
    margin-top: -31vw;
}

@media screen and (min-width: 90em) {
    .news--detail .hero--no-img~.news--content {
        margin-top: -370px;
    }
}

@media screen and (max-width: 60.875em) {
    .news--detail .hero--no-img~.news--content {
        margin-top: 2rem;
    }
}

.news--detail .news--content {
    border-radius: 4px;
    position: relative;
    z-index: 9;
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.news--detail .news--content .card--shadow {
    border-radius: 4px;
    background-color: #fff;
    padding-top: 2rem;
    padding-right: 4.5rem;
    padding-left: 4.5rem;
    -webkit-box-shadow: 0 9px 0 0 white, 0 -9px 0 0 white, 10px 0 12px -4px rgba(0, 0, 0, .15), -10px 0 12px -4px rgba(0, 0, 0, .15);
    box-shadow: 0 9px 0 0 white, 0 -9px 0 0 white, 10px 0 12px -4px rgba(0, 0, 0, .15), -10px 0 12px -4px rgba(0, 0, 0, .15);
}

@media print,
screen and (min-width: 64.0625em) {
    .news--detail .news--content .card--shadow {
        padding-top: 3rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .news--detail .news--content .card--shadow {
        padding-right: 6rem;
        padding-left: 6rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .news--detail .news--content .card--shadow {
        padding-right: 7.5rem;
        padding-left: 7.5rem;
    }
}

@media screen and (max-width: 62.4375em) {
    .news--detail .news--content .card--shadow {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media screen and (max-width: 48.06125em) {
    .news--detail .news--content .card--shadow {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .news--detail .news--content .card--shadow {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

.news--detail .news--content .card--shadow .breadcrumbs {
    margin-right: -.625rem;
    margin-left: -.625rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .news--detail .news--content .card--shadow .breadcrumbs {
        margin-right: -.9375rem;
        margin-left: -.9375rem;
    }
}

.news--detail .news--content .card--shadow .news__title {
    margin: 0;
}

.news--detail .news--content .card--shadow .news__date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .news--detail .news--content .card--shadow .news__date {
        font-size: 1.25rem;
    }
}

.news--detail .news--content .card--shadow .news__date p {
    margin-top: 0;
}

.news--detail .news--content .card--shadow .news__author {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: kapra-neue-semibold, sans-serif;
    margin-left: .5rem;
}

@media print,
screen and (min-width: 64.0625em) {
    .news--detail .news--content .card--shadow .news__author {
        font-size: 1.25rem;
    }
}

.news--detail .news--content .card--shadow .eyebrow {
    color: #014a85;
}

.news--detail .news--content .tags li {
    padding: 0;
}

.news--detail .news--content .tags li::after {
    content: none;
}

.news--detail .news--content .news--content__context .news__intro-text {
    padding-right: 6.5rem;
    padding-left: 6.5rem;
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .news--detail .news--content .news--content__context .news__intro-text {
        padding-right: 5rem;
        padding-left: 5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .news--detail .news--content .news--content__context .news__intro-text {
        padding-right: 0;
        padding-left: 0;
    }
}

.news--detail .news--content .news--content__context--columns {
    padding-left: 6.5rem;
}

@media screen and (min-width: 48.0625em) and (max-width: 64.06125em) {
    .news--detail .news--content .news--content__context--columns {
        padding-left: 5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .news--detail .news--content .news--content__context--columns {
        padding-left: 0;
    }
}

.news--detail .news--content .news--content__context--columns .news__context--main .main__img {
    margin-left: -6.25rem;
    float: left;
    width: 70%;
}

@media screen and (max-width: 48.06125em) {
    .news--detail .news--content .news--content__context--columns .news__context--main .main__img {
        margin-bottom: 2rem;
        margin-top: 2rem;
        margin-left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 64.0625em) {
    .news--detail .news--content .news--content__context--columns .news__context--main .main__img {
        margin-bottom: 2.5rem;
        margin-top: 2.5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .news--detail .news--content .news--content__context--columns .news__context--main .main__img figure {
        margin: 0;
    }
}

.news--detail .news--content .news--content__context--columns .news__sidebar img {
    border-radius: 50%;
}

.news--detail .news--content .news--content__context--columns .news__sidebar .eyebrow {
    color: #000;
    overflow: hidden;
}

.news--detail .news--content .news--content__context--columns .news__sidebar .eyebrow::after {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.news--detail .news--content .news--content__context--columns .news__sidebar .eyebrow::after {
    padding-left: .2rem;
}

.news--detail .news--content .news--content__context--columns .news__sidebar .sidebar__subtitle {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    font-family: kapra-neue-semibold, sans-serif;
    margin: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .news--detail .news--content .news--content__context--columns .news__sidebar .sidebar__subtitle {
        font-size: 1.125rem;
    }
}

.news--detail .news--content .news--content__context--columns .news__sidebar .h5 {
    margin-top: 1rem;
}

.news--detail .news--content .news--content__context--columns .news__sidebar p {
    margin-top: 1rem;
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .news--detail .news--content .news--content__context--columns .news__sidebar p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .news--detail .news--content .news--content__context--columns .news__sidebar {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 64.0625em) {
    .news--detail .news--content .news--content__context--columns .news__sidebar {
        margin-top: 2.5rem;
    }
}

.related--news .link-arrow {
    margin-left: auto;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 5px;
    font-size: 1.5rem;
}

.related--news .link-arrow a {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 600;
}

@media print,
screen and (min-width: 64.0625em) {
    .related--news .link-arrow a {
        font-size: 1.25rem;
    }
}

.related--news .link-arrow::after {
    position: relative;
    display: block;
}

.new__related .listing__rows {
    margin-top: 0;
}

.new__related li::after {
    display: none;
}

.office-detail .office-detail__content--columns {
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    color: #000;
}

@media screen and (max-width: 75.06125em) {
    .office-detail .office-detail__content--columns {
        margin-right: 1rem;
        margin-left: 1rem;
    }
}

.office-detail .office-detail__content--columns::before {
    content: '.......................................................................................................................................................................................................................................................';
    letter-spacing: .2rem;
}

.office-detail .office-detail__content--columns::before {
    padding-right: 6.25rem;
    overflow: hidden;
}

.office-detail .office-detail__content--context {
    max-width: 660px;
}

@media screen and (max-width: 40.06125em) {
    .office-detail .tag--wrapper {
        margin-top: .5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .office-directory {
        margin-right: .625rem;
        margin-left: .625rem;
    }
}

.office-directory .listing__rows--grouped .h2 {
    padding: 0 20px;
    margin-top: 0;
}

@media print,
screen and (min-width: 48.0625em) {
    .office-directory .listing__rows--grouped .h2 {
        line-height: 68px;
    }
}

.office-directory .listing__rows--grouped h3 {
    margin-top: 0;
}

.office-directory .listing__rows--grouped ol {
    max-width: 60rem;
    overflow: hidden;
}

.office-directory .listing__rows--grouped li {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.office-directory .listing__rows--grouped li:after {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    display: block;
}

@media print,
screen and (min-width: 48.0625em) {
    .office-directory .listing__rows--grouped li:after {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .office-directory .listing__rows--grouped li:after {
        margin-top: 3.5rem;
        margin-bottom: 3.5rem;
    }
}

.office-directory .listing__rows--grouped .office-directory-item {
    display: grid;
    grid-template-columns: 3fr 1fr;
}

.office-directory .listing__rows--grouped .icon-list {
    font-family: kapra-neue-regular-expanded, sans-serif;
    font-size: 1.0625rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 0;
}

@media print,
screen and (min-width: 64.0625em) {
    .office-directory .listing__rows--grouped .icon-list {
        font-size: 1.125rem;
    }
}

.office-directory .listing__rows--grouped .icon-list li:after {
    display: none;
}

.office-directory .listing__rows--grouped .icon-list li:last-child a {
    color: #000;
}

.office-directory .listing__rows--grouped .tags li {
    margin-top: 0;
}

.office-directory .listing__rows--grouped .fas:before {
    color: #115e6b;
}

@media screen and (max-width: 40.06125em) {
    .office-directory .listing__rows--grouped h3 {
        margin-top: 1rem;
    }

    .office-directory .listing__rows--grouped .office-directory-item {
        display: block;
    }

    .office-directory .listing__rows--grouped .office-directory-item__row {
        margin-top: 1.5rem;
    }
}

.office-directory p {
    font-size: 1.25rem;
}

@media screen and (max-width: 48.06125em) {
    .office-directory {
        padding: 0;
        margin-top: .5rem;
    }

    .office-directory .program-listing-item {
        padding-bottom: .5rem;
    }
}

.office-directory .pager {
    padding-right: 0;
    padding-left: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.office-directory-item__row .icon-list .fas {
    display: block;
    margin-left: 32px;
    position: relative;
}

.office-directory-item__row .icon-list .fas::before {
    position: absolute;
    top: 0;
    left: -32px;
}

.office-directory-item__row .icon-list .fas strong {
    font-family: kapra-neue-semibold-expanded, sans-serif;
}

.office-directory-item__row .icon-list .fas p+p {
    margin-top: .5em;
}

.office-directory-item__row .icon-list .fa-map-marker-alt::before {
    top: 6px;
}

.program--content-block {
    position: relative;
    z-index: 3;
    margin-top: -16vw;
}

@media screen and (min-width: 80em) {
    .program--content-block {
        margin-top: -36vw;
    }
}

@media screen and (min-width: 88.75em) {
    .program--content-block {
        margin-top: -425px;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .program--content-block>.grid-container {
        padding-right: 0;
        padding-left: 0;
    }
}

.program--content-block__shadow {
    border-radius: 4px;
    background-color: #fff;
}

@media screen and (min-width: 80em) {
    .program--content-block__shadow {
        position: relative;
    }

    .program--content-block__shadow::before {
        content: '';
        display: block;
        position: absolute;
        z-index: -2;
        top: 10px;
        left: 0;
        width: 100%;
        height: 377px;
        -webkit-box-shadow: 0 9px 0 0 white, 0 -9px 0 0 white, 10px 0 12px -4px rgba(0, 0, 0, .15), -10px 0 12px -4px rgba(0, 0, 0, .15);
        box-shadow: 0 9px 0 0 white, 0 -9px 0 0 white, 10px 0 12px -4px rgba(0, 0, 0, .15), -10px 0 12px -4px rgba(0, 0, 0, .15);
    }

    .program--content-block__shadow::after {
        content: '';
        display: block;
        position: absolute;
        z-index: -1;
        top: 0;
        left: -10px;
        width: calc(20px + 100%);
        height: 400px;
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(80%, rgba(255, 255, 255, 0)), to(#fff));
        background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 80%, #fff 100%);
    }
}

.program--content-block__shadow .dotted {
    overflow: hidden;
    margin-bottom: 2.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .program--content-block__shadow .dotted {
        margin-bottom: 3rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .program--content-block__shadow .dotted {
        margin-bottom: 4rem;
    }
}

.program--content-block .program__title {
    margin-bottom: 0;
}

.program--content-block .program__sidebar ul {
    list-style: none;
}

.program--content-block .program__sidebar li+li {
    margin-top: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .program--content-block .program__sidebar li+li {
        margin-top: 1.5rem;
    }
}

.program--content-block .program__sidebar .btn {
    display: block;
}

.program--detail~.contextual-region {
    padding-top: 3rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .program--detail~.contextual-region {
        padding-top: 3.5rem;
    }
}

@media print,
screen and (min-width: 64.0625em) {
    .program--detail~.contextual-region {
        padding-top: 5.5rem;
    }
}

.program--listing-page .listing__rows--grouped {
    margin-top: 0;
}

.program--listing-page .program-header__container {
    background-color: #ffcd00;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .program--listing-page .program-header__container {
        padding-top: 1.5rem;
    }
}

@media print,
screen and (min-width: 48.0625em) {
    .program--listing-page .program-header__container {
        padding-bottom: 1.5rem;
    }
}

.program--listing-page .program-header__container .h5 {
    font-family: kapra-neue-semibold-expanded, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: normal;
    letter-spacing: 2px;
}

@media print,
screen and (min-width: 64.0625em) {
    .program--listing-page .program-header__container .h5 {
        font-size: 1.125rem;
    }
}

.program--listing-page .listing__rows--grouped li {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

@media screen and (max-width: 48.06125em) {
    .program--listing-page .listing__rows--grouped li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .program--listing-page .listing__rows--grouped li .program-listing-item__grid {
        margin-left: .5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.program--listing-page .listing__rows--grouped li .h2 {
    margin-right: 2rem;
    font-weight: 400;
    text-transform: uppercase;
    background-color: #fcf7ae;
    border-radius: 50%;
    display: block;
    padding: 0;
    width: 64px;
    min-width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
}

@media print,
screen and (min-width: 64.0625em) {
    .program--listing-page .listing__rows--grouped li .h2 {
        margin-right: 2.5rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .program--listing-page .listing__rows--grouped li .h2 {
        width: 48px;
        min-width: 48px;
        height: 48px;
        line-height: 48px;
        margin-top: 1.5rem;
    }
}

@media screen and (max-width: 48.06125em) and (min-width: 48.0625em) {
    .program--listing-page .listing__rows--grouped li .h2 {
        margin-top: 2rem;
    }
}

.program--listing-page .listing__rows--grouped li .program-listing-item__column p {
    font-size: 1.25rem;
    font-family: kapra-neue-regular-expanded, sans-serif;
    line-height: 1.75rem;
}

.program--listing-page .listing__rows--grouped li .program-listing-item__column p:last-child {
    padding-left: 0 !important;
}

.program--listing-page .listing__rows--grouped li .program-listing-item__column--degree {
    display: block;
}

.program--listing-page .listing__rows--grouped li .program-listing-item__column--degree .eyebrow-large {
    font-size: 1rem;
    margin-top: 1.5rem;
}

@media print,
screen and (min-width: 48.0625em) {
    .program--listing-page .listing__rows--grouped li .program-listing-item__column--degree p {
        display: inline-block;
    }

    .program--listing-page .listing__rows--grouped li .program-listing-item__column--degree p:not(:last-child) {
        margin-right: 2.25rem;
    }
}

@media screen and (max-width: 48.06125em) {
    .program--listing-page .listing__rows--grouped {
        padding: 0;
        margin-top: .5rem;
    }

    .program--listing-page .listing__rows--grouped .program-listing-item {
        padding-bottom: .5rem;
    }
}

.print-only {
    display: none !important;
}

@media print {
    @page {
        margin: 1cm;
    }

    * {
        color: #000 !important;
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^='javascript:']:after,
    a[href^='#']:after {
        content: '';
    }

    a[href]:after {
        display: none;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

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

.aspect-ratio-frame .is-b-loading:not(.is-b-loaded) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}