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

.not-selectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

.carousel *,
.carousel :after,
.carousel :before {
    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;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

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

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + 0.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: 0.25;
    transition: opacity 0.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 0.15s ease;
}

.carousel__button.is-next,
.carousel__button.is-prev {
    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: 0.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: transparent;
    overflow: hidden;
    z-index: 9999;
    outline: 0;
    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, 0.4));
}

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

.fancybox__container :focus {
    outline: 0;
}

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, 0.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, 0.92));
}

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

.fancybox__carousel.has-dots {
    margin-bottom: calc(0.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;
    -webkit-overflow-scrolling: touch;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
}

.fancybox__slide::after,
.fancybox__slide::before {
    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;
    }
}

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

.fancybox__container.is-animated[aria-hidden="false"] .carousel__button.is-close,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__dots,
.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 {
    animation: 0.15s ease backwards fancybox-fadeIn;
}

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

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

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

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

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

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

.fancybox-throwOutDown {
    animation: 0.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(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }

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

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(0.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, 0.1);
}

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

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

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    box-shadow: inset 0 0 4px rgba(0, 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;
    touch-action: none;
    user-select: none;
    transition: none;
}

.has-image .fancybox__content {
    padding: 0;
    background: 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-html5video .fancybox__content,
.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 {
    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-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-html5video .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 {
    padding: 0;
    background: rgba(24, 24, 27, 0.9);
    color: #fff;
    min-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: 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: 0.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(1, 210, 232, 0.94));
    opacity: 0;
    transition: opacity 0.15s ease;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    opacity: 0.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, 0.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,
            rgba(0, 0, 0, 0) 0,
            rgba(0, 0, 0, 0.006) 8.1%,
            rgba(0, 0, 0, 0.021) 15.5%,
            rgba(0, 0, 0, 0.046) 22.5%,
            rgba(0, 0, 0, 0.077) 29%,
            rgba(0, 0, 0, 0.114) 35.3%,
            rgba(0, 0, 0, 0.155) 41.2%,
            rgba(0, 0, 0, 0.198) 47.1%,
            rgba(0, 0, 0, 0.242) 52.9%,
            rgba(0, 0, 0, 0.285) 58.8%,
            rgba(0, 0, 0, 0.326) 64.7%,
            rgba(0, 0, 0, 0.363) 71%,
            rgba(0, 0, 0, 0.394) 77.5%,
            rgba(0, 0, 0, 0.419) 84.5%,
            rgba(0, 0, 0, 0.434) 91.9%,
            rgba(0, 0, 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, 0.4));
}

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

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
    animation: 0.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(1, 210, 232, 0.94));
    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");
    font-weight: 400;
    font-style: normal;
}

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

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

.swiper-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-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0, 0, 0);
}

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

.swiper-pointer-events.swiper-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-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
}

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

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

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

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

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 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-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.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(0.66);
}

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

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

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

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

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -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: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-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, 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>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    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 .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

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

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

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

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

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

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

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

.swiper-cube {
    overflow: visible;
}

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

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

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

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

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

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

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

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

.swiper-flip {
    overflow: visible;
}

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

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

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

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

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

.swiper-cards {
    overflow: visible;
}

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

[hidden],
template {
    display: none;
}

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

address {
    font-style: inherit;
}

cite,
dfn,
em,
i {
    font-style: italic;
}

b,
strong {
    font-weight: 700;
}

a {
    text-decoration: none;
}

a svg {
    pointer-events: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

figure,
p {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

[tabindex],
a,
area,
button,
input,
label,
select,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

[hreflang]>abbr[title] {
    text-decoration: none;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

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

img[height],
img[width],
svg[height],
svg[width] {
    max-width: none;
}

img {
    font-style: italic;
}

svg {
    fill: currentColor;
}

input,
select,
textarea {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    outline: 0;
    border: 0;
    border-radius: 0;
    background: none transparent;
    color: inherit;
    font: inherit;
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select {
    text-transform: none;
}

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

select::-ms-value {
    background: 0 0;
    color: inherit;
}

textarea {
    overflow: auto;
    resize: vertical;
}

.o-button,
button {
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    background: none transparent;
    color: inherit;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    font: inherit;
    line-height: normal;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.o-button:focus,
.o-button:hover,
button:focus,
button:hover {
    text-decoration: none;
}

.l-layout__content-sub {
    font-size: 0.75rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.625rem;
}

.-center .l-layout__content-sub {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.-dark .l-layout__content-sub {
    color: #fff;
}

.l-layout__content-sub::after {
    content: "";
    margin-left: 0.625rem;
    background-color: #db0007;
    display: block;
    width: 5.625rem;
    height: 3px;
}

.l-layout__content-title {
    font-size: 2.5625rem;
    font-family: Speedee, sans-serif;
    font-weight: 700;
    margin-bottom: 1.5625rem;
    line-height: normal;
    color: #292929;
}

.-dark .l-layout__content-title {
    color: #fff;
}

.l-layout__content-title.-small {
    font-size: 2rem;
}

.l-layout__content-title.-tiny {
    font-size: 1.375rem;
}

@media (min-width: 1000px) {
    .l-layout__content-title {
        font-size: 2.5625rem;
    }
}

.l-layout__content-title--wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 3.75rem;
}

.l-layout__content-title--wrap .l-layout__content-title {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-bottom: 0;
}

.l-layout__content-title--wrap.is-inview .l-layout__content-title {
    -webkit-transform: none;
    transform: none;
}

.l-layout__content-title .-highlight,
.l-layout__content-title .-period {
    color: #db0007;
}

.l-layout__content-title .-break {
    display: block;
}

.l-layout__content-title .-italic {
    font-style: italic;
    display: block;
    font-weight: 400;
}

.l-layout__content-list {
    line-height: 2;
    font-weight: 400;
}

.-dark .l-layout__content-list {
    color: #fff;
}

.l-layout__content-listing {
    line-height: 2;
    font-weight: 700;
    padding-left: 3.125rem;
    list-style-type: disc;
    display: block;
    margin-bottom: 0.625rem;
}

@media (min-width: 700px) {
    .l-layout__content-listing.-deaux {
        -webkit-columns: 2;
        -moz-columns: 2;
        columns: 2;
    }
}

.l-layout__content-text {
    line-height: 2;
    font-weight: 400;
    margin-bottom: 0.625rem;
}

.-dark .l-layout__content-text {
    color: #fff;
}

.l-layout__content-text a {
    font-weight: 700;
    color: #db0007;
}

.l-layout__content-link {
    font-weight: 700;
    color: #db0007;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.l-layout__content-link:hover {
    color: #db0007;
    text-decoration: underline;
}

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

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

.l-layout__content.-short {
    width: 1200px;
    margin: 0 auto;
    max-width: 100%;
}

@font-face {
    font-family: "custom-icons";
    src: url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/UIU6H_custom-icons/custom-icons.eot?#iefix") format("embedded-opentype"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/QPIZY_custom-icons/custom-icons.woff2") format("woff2"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/LRTSB_custom-icons/custom-icons.woff") format("woff"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/R8RF3_custom-icons/custom-icons.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
    font-display: swap
}

@font-face {
    font-family: "Speedee";
    src: url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/LXC6Y_Speedee-Bold/Speedee-Bold.eot?#iefix") format("embedded-opentype"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/W9U6F_Speedee-Bold/Speedee-Bold.woff2") format("woff2"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/P614E_Speedee-Bold/Speedee-Bold.woff") format("woff"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/R2MV3_Speedee-Bold/Speedee-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: bold;
    text-rendering: optimizeLegibility;
    font-display: swap
}

@font-face {
    font-family: "Speedee";
    src: url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/FELQR_Speedee-Italic/Speedee-Italic.eot?#iefix") format("embedded-opentype"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/A7IXF_Speedee-Italic/Speedee-Italic.woff2") format("woff2"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/33VGR_Speedee-Italic/Speedee-Italic.woff") format("woff"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/BMNBJ_Speedee-Italic/Speedee-Italic.ttf") format("truetype");
    font-style: italic;
    font-weight: normal;
    text-rendering: optimizeLegibility;
    font-display: swap
}

@font-face {
    font-family: "Speedee";
    src: url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/7FYFE_Speedee-Regular/Speedee-Regular.eot?#iefix") format("embedded-opentype"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/NBAQT_Speedee-Regular/Speedee-Regular.woff2") format("woff2"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/5VHA5_Speedee-Regular/Speedee-Regular.woff") format("woff"), url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/font/2025/4/U24CL_Speedee-Regular/Speedee-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
    text-rendering: optimizeLegibility;
    font-display: swap
}

html {
    min-height: 100%;
    color: #222;
    font-family: Speedee, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 699px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 700px) and (max-width: 999px) {
    html {
        font-size: 14px;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    html {
        font-size: 15px;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 1600px) and (max-width: 1999px) {
    html {
        font-size: 17px;
    }
}

@media (min-width: 2000px) and (max-width: 2399px) {
    html {
        font-size: 18px;
    }
}

@media (min-width: 2400px) {
    html {
        font-size: 20px;
    }
}

html.is-loading {
    cursor: wait;
}

html.has-scroll-smooth {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    overflow-x: hidden;
}

.has-scroll-smooth body {
    overflow: hidden;
}

::-moz-selection {
    background-color: #ffbc0d;
    color: #000;
    text-shadow: none;
}

::selection {
    background-color: #ffbc0d;
    color: #000;
    text-shadow: none;
}

a {
    color: #1a0dab;
}

a:focus,
a:hover {
    color: #13097c;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
    white-space: nowrap;
    height: 100vh;
    display: inline-block;
    white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    height: 100%;
}

#svg-- {
    display: none;
}

#company-profile-main .c-header-navigation,
#job-detail .c-header-navigation,
#location-description .c-header-navigation,
.page-corporate-jobs .c-header-navigation,
.page-corporate-search .c-header-navigation,
.page-finance .c-header-navigation,
.page-global-impact .c-header-navigation,
.page-hr .c-header-navigation,
.page-jobs .c-header-navigation,
.page-marketing .c-header-navigation,
.page-restaurant-jobs .c-header-navigation,
.page-technology .c-header-navigation,
.page-university-positions .c-header-navigation,
[data-page-name="Find jobs by location"] .c-header-navigation {
    position: relative;
}

#company-profile-main [data-component="main-hero"] .c-main-hero,
#job-detail [data-component="main-hero"] .c-main-hero,
#location-description [data-component="main-hero"] .c-main-hero,
.page-corporate-jobs [data-component="main-hero"] .c-main-hero,
.page-corporate-search [data-component="main-hero"] .c-main-hero,
.page-finance [data-component="main-hero"] .c-main-hero,
.page-global-impact [data-component="main-hero"] .c-main-hero,
.page-hr [data-component="main-hero"] .c-main-hero,
.page-jobs [data-component="main-hero"] .c-main-hero,
.page-marketing [data-component="main-hero"] .c-main-hero,
.page-restaurant-jobs [data-component="main-hero"] .c-main-hero,
.page-technology [data-component="main-hero"] .c-main-hero,
.page-university-positions [data-component="main-hero"] .c-main-hero,
[data-page-name="Find jobs by location"] [data-component="main-hero"] .c-main-hero {
    background-color: #f9f9f9;
}

#company-profile-main [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
#company-profile-main [data-component="main-hero"] .c-main-hero .c-main-hero__title,
#job-detail [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
#job-detail [data-component="main-hero"] .c-main-hero .c-main-hero__title,
#location-description [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
#location-description [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-corporate-jobs [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-corporate-jobs [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-corporate-search [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-corporate-search [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-finance [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-finance [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-global-impact [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-global-impact [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-hr [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-hr [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-jobs [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-jobs [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-marketing [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-marketing [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-restaurant-jobs [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-restaurant-jobs [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-technology [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-technology [data-component="main-hero"] .c-main-hero .c-main-hero__title,
.page-university-positions [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
.page-university-positions [data-component="main-hero"] .c-main-hero .c-main-hero__title,
[data-page-name="Find jobs by location"] [data-component="main-hero"] .c-main-hero .c-main-hero__subtitle-content,
[data-page-name="Find jobs by location"] [data-component="main-hero"] .c-main-hero .c-main-hero__title {
    color: #333;
}

.o-wrap {
    overflow-x: hidden;
}

main {
    height: 100%;
}

.mt-large {
    margin-top: 11.25rem;
}

@media (min-width: 1000px) {
    .mt-large-nomobile {
        margin-top: 11.25rem;
    }
}

@media (max-width: 999px) {
    .hide-mobile {
        display: none;
    }
}

.o-scroll {
    overflow-x: hidden;
    overflow-y: hidden;
}

.has-scroll-smooth .o-scroll {
    min-height: 100vh;
    will-change: transform, opacity;
}

.o-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 7vw;
    padding-left: 7vw;
    max-width: 2560px;
}

@media (min-width: 500px) {
    .o-container {
        padding-right: 10vw;
        padding-left: 10vw;
    }
}

@media (min-width: 700px) {
    .o-container {
        padding-right: 9rem;
        padding-left: 9rem;
    }
}

.o-layout {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    margin-left: 0;
}

.o-layout.-gutter {
    margin-left: -3.75rem;
}

.o-layout.-gutter-small {
    margin-left: -1.875rem;
}

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

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

@media (max-width: 999px) {
    .o-layout.-reverse-mobile {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-flow: wrap-reverse !important;
        flex-flow: wrap-reverse !important;
    }
}

.o-layout.-reverse {
    direction: rtl;
}

.o-layout.-reverse.-flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.o-layout.-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 1199px) {
    #ctu .o-layout.-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
}

@media (max-width: 999px) {
    .o-layout.-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
}

.o-layout.-flex.-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.o-layout.-flex.-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.o-layout.-flex.-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.o-layout.-flex.-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.o-layout.-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.o-layout__item {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    font-size: 1rem;
    padding-left: 0;
}

.o-layout.-gutter>.o-layout__item {
    padding-left: 3.75rem;
}

.o-layout.-gutter-small>.o-layout__item {
    padding-left: 1.875rem;
}

.o-layout.-middle>.o-layout__item {
    vertical-align: middle;
}

.o-layout.-bottom>.o-layout__item {
    vertical-align: bottom;
}

.o-layout.-center>.o-layout__item,
.o-layout.-reverse>.o-layout__item,
.o-layout.-right>.o-layout__item {
    text-align: left;
}

.o-layout.-reverse>.o-layout__item {
    direction: ltr;
}

.o-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.o-image::before {
    content: "";
    display: block;
    padding-bottom: 75%;
}

.o-image__title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    font-size: 7vw;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-weight: 700;
    margin: 0;
}

.o-image__title span {
    display: inline-block;
    min-width: 0.1em;
    padding: 10vh 0;
}

.o-image__background {
    position: absolute;
    top: -25%;
    bottom: -25%;
    right: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
}

.o-image__background::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.o-fixed__wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.o-fixed {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.o-fixed__target {
    display: block;
    position: absolute;
    top: -100vh;
    right: 0;
    left: 0;
    height: 200vh;
}

.o-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
}

.o-background__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.o-background__image-full {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    opacity: 0;
}

.o-background__image-full.-zoom {
    top: -25%;
    bottom: -25%;
}

.o-background__image-full.-zoom-small {
    top: -10%;
    bottom: -10%;
}

.o-background__image-full.-zoom-medium {
    top: -15%;
    bottom: -15%;
}

.o-background__image-full.-lazy-loaded {
    -webkit-animation: 0.6s cubic-bezier(0.2, 0.85, 0.45, 1) 0s 1 normal forwards running ffSPMP;
    animation: 0.6s cubic-bezier(0.2, 0.85, 0.45, 1) 0s 1 normal forwards running ffSPMP;
}


@-webkit-keyframes ffSPMP {
    to {
        opacity: 1;
    }
}

@keyframes ffSPMP {
    to {
        opacity: 1;
    }
}

.o-button {
    padding: 0 0 0 1.5625rem;
    margin-top: 1.5625rem;
    border-radius: 1.875rem;
    border: 2px solid rgba(182, 184, 185, 0.29);
    color: #fff;
    -webkit-transition:
        background-color 0.3s cubic-bezier(0.4, 0, 0, 1),
        border 0.3s cubic-bezier(0.4, 0, 0, 1),
        color 0.3s cubic-bezier(0.4, 0, 0, 1);
    transition:
        background-color 0.3s cubic-bezier(0.4, 0, 0, 1),
        border 0.3s cubic-bezier(0.4, 0, 0, 1),
        color 0.3s cubic-bezier(0.4, 0, 0, 1);
    position: relative;
}

@media (max-width: 360px) {
    .o-button.-long-btn {
        max-width: 100%;
    }

    .o-button.-long-btn .o-button__label {
        width: 80%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

.o-button.-dark {
    color: #000;
}

.o-button.-dark:hover {
    color: #000;
}

.o-button.-fill {
    background-color: #ffbc0d;
    color: #222;
    border-color: transparent;
    border-radius: 0.625rem;
}

@media (min-width: 699px) {
    .is-chrome .o-button.-fill {
        -webkit-filter: url(#goo);
        filter: url(#goo);
    }
}

.o-button.-fill .o-button__icon {
    margin-right: 0.3125rem;
}

.o-button.-fill:hover {
    color: #222;
}

.o-button.-fill:hover .o-button__icon {
    background-color: #db0007;
}

@media (min-width: 699px) {

    .is-chrome .o-button.-fill:hover::after,
    .is-chrome .o-button.-fill:hover::before {
        -webkit-transform: none;
        transform: none;
    }
}

@media (min-width: 699px) {

    .is-chrome .o-button.-fill::after,
    .is-chrome .o-button.-fill::before {
        width: 4rem;
        height: 2.95em;
        position: absolute;
        content: "";
        display: inline-block;
        background: #ffbc0d;
        border-radius: 50%;
        -webkit-transition: -webkit-transform 1s ease;
        transition: -webkit-transform 1s ease;
        transition: transform 1s ease;
        transition:
            transform 1s ease,
            -webkit-transform 1s ease;
        -webkit-transform: scale(0);
        transform: scale(0);
        z-index: -1;
    }

    .is-chrome .o-button.-fill::before {
        bottom: -30%;
        left: 26%;
        width: 3rem;
    }

    .is-chrome .o-button.-fill::after {
        bottom: -60%;
        left: 50%;
        width: 2.5rem;
    }
}

.o-button.-red {
    background-color: #db0007;
    color: #fff;
    border-radius: 5px;
    padding: 0.625rem 1.875rem;
}

.o-button:hover {
    color: #fff;
}

.o-button:hover .o-button__icon {
    background-color: #ffbc0d;
}

.o-button__inner {
    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;
}

.o-button__label {
    font-weight: 700;
    font-size: 0.875rem;
}

.o-button__icon {
    margin: 3px 3px 3px 1rem;
    background-color: #db0007;
    border-radius: 50%;
    color: #fff;
    width: 1.875rem;
    height: 1.875rem;
    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;
    -webkit-transition: background-color 0.3s cubic-bezier(0.4, 0, 0, 1);
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0, 1);
}

.o-button__icon svg {
    width: 0.9375rem;
    height: 0.9375rem;
}

@media (min-width: 420px) {
    .deux .o-button:first-of-type {
        margin-right: 1rem;
    }
}

.o-button>svg {
    display: none;
}

@media (min-width: 699px) {
    .o-button>svg {
        display: block;
        visibility: hidden;
        position: absolute;
    }

    .is-edge-chromium .o-button>svg,
    .is-firefox .o-button>svg,
    .is-safari .o-button>svg {
        display: none;
    }
}

.o-loader {
    white-space: nowrap;
    font-size: 0;
    text-align: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999999;
    -webkit-transition: visibility 0s;
    transition: visibility 0s;
}

.is-loaded .o-loader {
    visibility: hidden;
}

.is-loaded .o-loader::after {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
}

.o-loader::before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.o-loader::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #ffbc0d;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition:
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

.o-loader__line {
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    width: 8.4375rem;
    height: 0.6875rem;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.o-loader__line:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    background-color: #fff;
    content: "";
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center left;
    transform-origin: center left;
    -webkit-animation: loading 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite forwards;
    animation: loading 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite forwards;
}

.is-loaded .o-loader__line {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
}

@-webkit-keyframes loading {
    0% {
        -webkit-transform: translate(0) scaleX(0);
        transform: translate(0) scaleX(0);
    }

    30% {
        -webkit-transform: translate(0) scaleX(1);
        transform: translate(0) scaleX(1);
    }

    80% {
        -webkit-transform: translate(100%) scaleX(0);
        transform: translate(100%) scaleX(0);
    }

    100% {
        -webkit-transform: translate(100%) scaleX(0);
        transform: translate(100%) scaleX(0);
    }
}

@keyframes loading {
    0% {
        -webkit-transform: translate(0) scaleX(0);
        transform: translate(0) scaleX(0);
    }

    30% {
        -webkit-transform: translate(0) scaleX(1);
        transform: translate(0) scaleX(1);
    }

    80% {
        -webkit-transform: translate(100%) scaleX(0);
        transform: translate(100%) scaleX(0);
    }

    100% {
        -webkit-transform: translate(100%) scaleX(0);
        transform: translate(100%) scaleX(0);
    }
}

.has-custom-cursor,
.has-custom-cursor a {
    cursor: default;
}

.has-custom-cursor .o-cursor {
    opacity: 1;
}

.o-cursor {
    opacity: 0;
    -webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
}

html:not(.has-custom-cursor) .o-cursor {
    visibility: hidden;
    opacity: 0;
}

.o-cursor-circle {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
}

.o-cursor-circle__outer {
    width: 30px;
    height: 30px;
    border: 2px solid #db0007;
    z-index: 12000;
    opacity: 1;
}

.o-cursor-circle__inner {
    width: 6px;
    height: 6px;
    left: -3.5px;
    top: -3.5px;
    z-index: 11000;
    background: #ffbc0d;
}

.o-reveal.is-reveal .o-background {
    opacity: 1;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.o-reveal .o-background {
    top: -10%;
    bottom: -10%;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.o-reveal__background-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #eee;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition:
        transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.is-reveal .o-reveal__background-reveal {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
}

.is-reveal .o-reveal__background-reveal.-blur {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 1;
}

.o-reveal__background-reveal.-blur {
    -webkit-filter: blur(50px);
    filter: blur(50px);
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition:
        transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0) scale(1);
    transform: translate3d(0, 100%, 0) scale(1);
    background-size: cover;
}

.o-image_wrapper {
    position: relative;
    overflow: hidden;
    background-color: #d4c9c9;
}

.o-image {
    opacity: 0.75;
    mix-blend-mode: multiply;
}

.o-image img {
    width: 100%;
    opacity: 0;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transition:
        opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:
        opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:
        opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition:
        opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1),
        -webkit-transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.o-image.is-inview img {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100vh;
    -webkit-transform-origin: center right;
    transform-origin: center right;
    -webkit-transition:
        opacity 0.3s,
        -webkit-transform 0.3s;
    transition:
        opacity 0.3s,
        -webkit-transform 0.3s;
    transition:
        transform 0.3s,
        opacity 0.3s;
    transition:
        transform 0.3s,
        opacity 0.3s,
        -webkit-transform 0.3s;
    opacity: 0;
    z-index: 9999;
}

.c-scrollbar:hover {
    -webkit-transform: scaleX(1.45);
    transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-dragging .c-scrollbar,
.has-scroll-scrolling .c-scrollbar {
    opacity: 1;
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffbc0d;
    opacity: 1;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: -webkit-grab;
    cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.progress {
    background: -webkit-gradient(linear, left top, right top, from(#db0007), color-stop(0, transparent));
    background: linear-gradient(to right, #db0007 var(--scroll), transparent 0);
    background-repeat: no-repeat;
    position: fixed;
    width: 100%;
    height: 4px;
    z-index: 99999;
}

.c-heading {
    line-height: 1.5;
    margin-bottom: 1.875rem;
}

.c-heading.-h1 {
    font-size: 2.25rem;
}

.c-heading.-h2 {
    font-size: 1.75rem;
}

.c-heading.-h3 {
    font-size: 1.5rem;
}

.c-heading.-h4 {
    font-size: 1.25rem;
}

.c-heading.-h5 {
    font-size: 1.125rem;
}

.c-heading.-h6 {
    font-size: 1rem;
}

.c-form_item {
    position: relative;
    margin-bottom: 1.875rem;
}

.c-form_checkboxLabel,
.c-form_label,
.c-form_radioLabel {
    display: block;
    margin-bottom: 0.625rem;
}

.c-form_input,
.c-form_select_input,
.c-form_textarea {
    padding: 0.625rem;
    border: 1px solid #d3d3d3;
    background-color: #fff;
}

.c-form_input:hover,
.c-form_select_input:hover,
.c-form_textarea:hover {
    border-color: #a9a9a9;
}

.c-form_input:focus,
.c-form_select_input:focus,
.c-form_textarea:focus {
    border-color: #696969;
}

.c-form_input::-webkit-input-placeholder,
.c-form_select_input::-webkit-input-placeholder,
.c-form_textarea::-webkit-input-placeholder {
    color: gray;
}

.c-form_input::-moz-placeholder,
.c-form_select_input::-moz-placeholder,
.c-form_textarea::-moz-placeholder {
    color: gray;
}

.c-form_input:-ms-input-placeholder,
.c-form_select_input:-ms-input-placeholder,
.c-form_textarea:-ms-input-placeholder {
    color: gray;
}

.c-form_input::-ms-input-placeholder,
.c-form_select_input::-ms-input-placeholder,
.c-form_textarea::-ms-input-placeholder {
    color: gray;
}

.c-form_input::placeholder,
.c-form_select_input::placeholder,
.c-form_textarea::placeholder {
    color: gray;
}

.c-form_checkboxLabel,
.c-form_radioLabel {
    position: relative;
    display: inline-block;
    margin-right: 0.625rem;
    margin-bottom: 0;
    padding-left: 1.75rem;
    cursor: pointer;
}

.c-form_checkboxLabel::after,
.c-form_checkboxLabel::before,
.c-form_radioLabel::after,
.c-form_radioLabel::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    margin-top: -0.5625rem;
    padding: 0;
    width: 1.125rem;
    height: 1.125rem;
    content: "";
}

.c-form_checkboxLabel::before,
.c-form_radioLabel::before {
    background-color: #fff;
    border: 1px solid #d3d3d3;
}

.c-form_checkboxLabel::after,
.c-form_radioLabel::after {
    border-color: transparent;
    background-color: transparent;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2013%2010.5%22%20enable-background%3D%22new%200%200%2013%2010.5%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23424242%22%20d%3D%22M4.8%205.8L2.4%203.3%200%205.7l4.8%204.8L13%202.4c0%200-2.4-2.4-2.4-2.4L4.8%205.8z%22%2F%3E%3C%2Fsvg%3E);
    background-position: center;
    background-size: 0.75rem;
    background-repeat: no-repeat;
    opacity: 0;
}

.c-form_checkboxLabel:hover::before,
.c-form_radioLabel:hover::before {
    border-color: #a9a9a9;
}

.c-form_checkbox:focus+.c-form_checkboxLabel::before,
.c-form_checkbox:focus+.c-form_radioLabel::before,
.c-form_radio:focus+.c-form_checkboxLabel::before,
.c-form_radio:focus+.c-form_radioLabel::before {
    border-color: #696969;
}

.c-form_checkbox:checked+.c-form_checkboxLabel::after,
.c-form_checkbox:checked+.c-form_radioLabel::after,
.c-form_radio:checked+.c-form_checkboxLabel::after,
.c-form_radio:checked+.c-form_radioLabel::after {
    opacity: 1;
}

.c-form_checkbox,
.c-form_radio {
    position: absolute;
    width: 0;
    opacity: 0;
}

.c-form_radioLabel::after,
.c-form_radioLabel::before {
    border-radius: 50%;
}

.c-form_radioLabel::after {
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E);
    background-size: 0.375rem;
}

.c-form_select {
    position: relative;
    cursor: pointer;
}

.c-form_select::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 2.5rem;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23424242%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E);
    background-position: center;
    background-size: 0.5rem;
    background-repeat: no-repeat;
    content: "";
    pointer-events: none;
}

.c-form_select_input {
    position: relative;
    z-index: 1;
    padding-right: 2.5rem;
    cursor: pointer;
}

.c-form_textarea {
    min-height: 12.5rem;
}

[data-namespace="home-video"] .c-main-hero {
    height: auto;
    min-height: auto;
    background-color: #fff;
}

[data-namespace="home-video"]-video {
    position: relative;
}

[data-namespace="home-video"] .c-main-hero-video__wrapper {
    background-color: #eee;
}

[data-namespace="home-video"] .c-main-hero-video,
[data-namespace="home-video"] .c-main-hero__background-main {
    overflow: hidden;
    height: 26.25rem;
}

@media (min-width: 1000px) {

    [data-namespace="home-video"] .c-main-hero-video,
    [data-namespace="home-video"] .c-main-hero__background-main {
        height: 45rem;
    }
}

[data-namespace="home-video"] .c-main-hero__background,
[data-namespace="home-video"] .c-main-hero__video {
    position: relative;
}

[data-namespace="home-video"] .c-main-hero__subtitle-content,
[data-namespace="home-video"] .c-main-hero__title {
    color: #292929;
}

@media (min-width: 1000px) {
    [data-namespace="home-video"] .c-main-hero__title {
        font-size: 4.254343294vw;
    }
}

[data-namespace="home-video"] .c-main-hero__inner {
    height: 100%;
}

[data-namespace="home-video"] .c-main-hero__container {
    height: 100%;
    margin: 8rem 0;
}

@media (max-width: 700px) {
    [data-namespace="home-video"] .c-main-hero__container {
        margin: 5rem 0;
        margin-top: 2rem;
    }
}

[data-namespace="home-video"] .__scroll {
    right: 0;
    left: auto;
    left: initial;
}

.is-safari [data-namespace="home-video"] .__scroll {
    top: 8rem;
}

[data-namespace="home-video"] .__scroll .scroll-text {
    color: #292929;
}

[data-namespace="home-video"] .__scroll .scroll-arrow svg {
    fill: #292929;
}

[data-namespace="home-video"] .c-main-hero__title-bg {
    background-color: #ffbc0d;
}

.c-main-hero {
    position: relative;
    background-color: #292929;
    height: 80vh;
    overflow: hidden;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
    min-height: 760px;
}

[data-namespace="interior"] .c-main-hero {
    border-bottom: 5px solid #db0007;
    background-color: #fff;
    height: 450px;
    min-height: 450px;
}

@media (max-width: 500px) {
    .c-main-hero {
        height: 100vh;
        min-height: 760px;
    }

    [data-namespace="interior"] .c-main-hero {
        height: 30vh;
        min-height: 300px;
    }

    [data-page="ebn"] .c-main-hero {
        min-height: auto;
        height: 450px;
    }
}

@media (min-width: 1000px) {
    .c-main-hero {
        min-height: 100vh;
        height: 700px;
    }

    [data-namespace="interior"] .c-main-hero {
        min-height: 400px;
        height: 400px;
    }

    [data-page="ebn"] .c-main-hero {
        min-height: 50vh;
        height: 600px;
    }
}

@media (min-width: 1600px) {
    .c-main-hero {
        min-height: 100vh;
        height: 1200px;
    }

    [data-namespace="interior"] .c-main-hero {
        min-height: 30vh;
        height: 600px;
    }

    [data-page="ebn"] .c-main-hero {
        height: 700px;
    }
}

.c-main-hero__inner {
    position: relative;
    text-align: left;
    padding-top: 6rem;
    height: 100%;
    display: block;
}

@media (min-width: 1000px) {
    .c-main-hero__inner {
        padding-top: calc(6rem + 1.5625rem);
        padding-bottom: 0;
    }
}

.c-main-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transition:
        transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
        -webkit-transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    overflow: hidden;
}

.is-loaded .c-main-hero__background {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.c-main-hero__background-wrap .o-background {
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.c-main-hero__video {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    overflow: hidden;
}

.browserIE .c-main-hero__video {
    height: auto;
}

.c-main-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    background-image: linear-gradient(165deg, #000 10%, rgba(0, 0, 0, 0.3098) 55%, #000 95%, #222 100%);
    pointer-events: none;
}

@media (min-width: 499px) {
    .c-main-hero__overlay {
        background-image: linear-gradient(165deg, #000 10%, rgba(0, 0, 0, 0.3098) 55%, #000 95%, #222 100%);
    }
}

.c-main-hero__container {
    height: 100%;
}

@media (min-width: 1000px) {
    .c-main-hero__container {
        height: calc(100% - 3rem);
    }

    [data-namespace="interior"] .c-main-hero__container {
        height: 100%;
    }
}

.c-main-hero__layout {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 1000px) {
    .c-main-hero__layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
}

@media (max-width: 1000px) {
    .c-main-hero__layout-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: calc(50% + 15rem);
    }

    [data-namespace="interior"] .c-main-hero__layout-item {
        height: 100%;
        width: auto !important;
    }

    [data-page="ebn"] .c-main-hero__layout-item {
        height: 50%;
    }
}

.c-main-hero__content {
    text-align: left;
    position: relative;
    width: 100%;
    will-change: transform;
}

.c-main-hero__content.-center {
    text-align: center;
}

@media (min-width: 1000px) {
    .c-main-hero__content {
        padding-top: 0;
    }
}

.c-main-hero__title {
    font-family: Speedee, sans-serif;
    -webkit-transition:
        background-color 0.6s linear,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition:
        background-color 0.6s linear,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition:
        background-color 0.6s linear,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition:
        background-color 0.6s linear,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0 auto;
    color: #fff;
    width: 100%;
    position: relative;
    font-weight: 700;
    text-transform: none;
    opacity: 0;
    line-height: normal;
    font-size: 8.5836909871vw;
}

.is-loaded .c-main-hero__title {
    opacity: 1;
}

@media (min-width: 700px) and (max-width: 999px) {
    .c-main-hero__title {
        font-size: 4.6911649726vw;
    }
}

@media (min-width: 1000px) {
    .c-main-hero__title {
        font-size: 3.254343294vw;
    }
}

.c-main-hero__title--em {
    text-transform: uppercase;
    font-family: Speedee, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: normal;
    color: #db0007;
    display: block;
    margin-bottom: 0.9375rem;
}

.c-main-hero__title-logo {
    display: inline-block;
}

.c-main-hero__title-logo svg {
    width: 3.125rem;
    height: 3.125rem;
    margin-left: 1.25rem;
}

@media (min-width: 1000px) {
    .c-main-hero__title-logo svg {
        width: 5rem;
        margin-left: 1.25rem;
        height: 5rem;
    }
}

.c-main-hero__title-inner {
    position: relative;
    display: block;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    -webkit-transition: -webkit-clip-path 0.8s cubic-bezier(1, 0, 0, 1) 0.3s;
    transition: -webkit-clip-path 0.8s cubic-bezier(1, 0, 0, 1) 0.3s;
    transition: clip-path 0.8s cubic-bezier(1, 0, 0, 1) 0.3s;
    transition:
        clip-path 0.8s cubic-bezier(1, 0, 0, 1) 0.3s,
        -webkit-clip-path 0.8s cubic-bezier(1, 0, 0, 1) 0.3s;
}

.is-loaded .c-main-hero__title-inner {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 180%, 0 180%);
    clip-path: polygon(0 0, 100% 0, 100% 180%, 0 180%);
}

@media (min-width: 1000px) {
    .c-main-hero__title-inner {
        display: inline-block;
    }
}

.c-main-hero__title-inner .-highlight,
.c-main-hero__title-inner .-period {
    color: #db0007;
}

.c-main-hero__title-bg {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200vw;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    height: 100%;
    -webkit-transition: height 0.6s cubic-bezier(1, 0, 0, 1) 1s;
    transition: height 0.6s cubic-bezier(1, 0, 0, 1) 1s;
}

.is-loaded .c-main-hero__title-bg {
    height: 0;
}

.c-main-hero__link {
    background-color: transparent;
}

@media (min-width: 1000px) {
    .c-main-hero__link {
        margin-top: 2.5rem;
    }
}

.c-main-hero__link .o-button__label {
    color: #fff;
}

.c-main-hero__subtitle {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition:
        opacity,
        -webkit-transform;
    transition:
        opacity,
        -webkit-transform;
    transition: opacity, transform;
    transition:
        opacity,
        transform,
        -webkit-transform;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
}

.is-loaded .c-main-hero__subtitle {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.c-main-hero__subtitle-content {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.c-main-hero__subtitle-message {
    margin: 1.875rem 0;
}

@media (min-width: 1000px) {
    .c-main-hero__subtitle-message {
        margin-top: 0.625rem;
    }
}

@media (max-width: 700px) {
    .c-main-hero__subtitle-message {
        margin-top: 0;
        margin-bottom: 2.5rem;
    }
}

.c-main-hero__blurb {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition:
        opacity,
        -webkit-transform;
    transition:
        opacity,
        -webkit-transform;
    transition: opacity, transform;
    transition:
        opacity,
        transform,
        -webkit-transform;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 3rem;
}

.is-loaded .c-main-hero__blurb {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media (min-width: 1200px) {
    .c-main-hero__blurb {
        width: 50%;
        padding: 3rem;
        max-width: calc(100% - 18rem);
    }
}

.c-main-hero__blurb-content {
    color: #fff;
    margin: 0;
    font-size: 1.3rem;
}

.c-main-hero__blurb-title {
    font-family: Speedee;
    font-size: 1.75rem;
    position: relative;
}

.c-main-hero__blurb-title:after {
    content: "";
    display: block;
    margin: 0.625rem 0;
    width: 4.375rem;
    background-color: #db0007;
    height: 0.1875rem;
    border-radius: 10px;
}

.c-main-hero__blurb-text {
    margin-top: 1.875rem;
    font-size: 1rem;
}

.c-main-hero__social {
    display: none;
}

.c-main-hero__social input {
    display: none;
}

.c-main-hero__social label {
    display: block;
}

@media (min-width: 1000px) {
    .c-main-hero__social {
        position: absolute;
        width: 9rem;
        right: 0;
        bottom: 3.75rem;
        height: auto;
        display: block;
        z-index: 999;
    }
}

.c-main-hero__social-list {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.c-main-hero__social-item {
    list-style: none;
}

.c-main-hero__social-link {
    border-radius: 100%;
    border: 1px solid #fff;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-main-hero__social-link.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-main-hero__social-link.-social-hub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-main-hero__social-link.-social-hub.-open {
    border-color: #f47721;
}

.c-main-hero__social-link.-social-hub:hover svg {
    fill: #f47721;
}

.c-main-hero__social-link.-twitter:hover svg {
    fill: #1da1f2;
}

.c-main-hero__social-link.-linkedin:hover svg {
    fill: #0077b5;
}

.c-main-hero__social-link.-facebook:hover svg {
    fill: #3b5998;
}

.c-main-hero__social-link.-youtube:hover svg {
    fill: #cd201f;
}

.c-main-hero__social-link.-instagram:hover svg {
    fill: #e1306c;
}

.c-main-hero__social-link svg {
    width: 0.8rem;
    height: 0.8rem;
    fill: #fff;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.__scroll {
    display: none;
}

[data-namespace="interior"] .__scroll {
    bottom: 6rem;
}

@media screen and (min-width: 1000px) {
    .__scroll {
        position: absolute;
        left: 0;
        width: 9rem;
        bottom: 18.75rem;
        height: auto;
        display: block;
        z-index: 1;
        cursor: pointer;
    }

    .__scroll:hover .scroll-text {
        opacity: 0.7;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    .__scroll:hover .scroll-arrow {
        -webkit-transform: translateX(15px) scale(0.9);
        transform: translateX(15px) scale(0.9);
    }

    .__scroll:hover .scroll-arrow::before {
        -webkit-transform: rotate(90deg) scale(0.9);
        transform: rotate(90deg) scale(0.9);
        opacity: 0.7;
    }
}

.scroll-wrap {
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    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;
}

@media screen and (min-width: 1000px) {
    .scroll-text {
        float: left;
        color: #fff;
        pointer-events: none;
        font-size: 12px;
        margin: 1px 0 0;
        white-space: nowrap;
        line-height: 43px;
        -webkit-transition:
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        transition:
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        transition:
            transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease-in-out;
        transition:
            transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    }
}

@media screen and (min-width: 1000px) {
    .scroll-arrow {
        position: relative;
        float: left;
        pointer-events: none;
        -webkit-transition:
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        transition:
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        transition:
            transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease-in-out;
        transition:
            transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        margin: 0 0 0 18px;
        width: 20px;
        height: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.scroll-arrow::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    left: 0;
    right: 0;
    top: -1px;
    position: absolute;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 2px solid #db0007;
    border-bottom: 2px solid transparent;
    border-top: 2px solid #db0007;
    -webkit-transition:
        opacity 0.3s ease-in-out,
        -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    transition:
        opacity 0.3s ease-in-out,
        -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    transition:
        transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.3s ease-in-out;
    transition:
        transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.3s ease-in-out,
        -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.scroll-arrow svg {
    fill: #fff;
    width: 20px;
    height: 30px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: relative;
    top: -1px;
}

@media (min-width: 1000px) {
    [data-page="ebn"] .c-hero-big {
        display: none;
    }
}

.c-hero-big__background-image {
    width: 100%;
    height: 34.375rem;
    position: relative;
    overflow: hidden;
}

.c-accordion {
    padding: 5.625rem 0;
    display: block;
    position: relative;
    margin-top: 3.75rem;
}

.c-accordion .-single {
    max-width: 1000px;
    margin: 0 auto;
    display: block;
}

.c-faq {
    z-index: 1;
    position: relative;
}

.c-faq__background {
    position: relative;
    overflow: hidden;
    right: -7vw;
    width: 100%;
    height: 15rem;
}

@media (max-width: 999px) {
    .c-faq__background {
        display: none;
    }
}

@media (min-width: 500px) {
    .c-faq__background {
        right: -10vw;
    }
}

@media (min-width: 700px) {
    .c-faq__background {
        right: -9rem;
        height: 28rem;
    }
}

@media (min-width: 1000px) {
    .c-faq__background {
        height: 30rem;
        right: -6rem;
        width: calc(100% + 3rem);
    }
}

.c-faq-min__content {
    position: relative;
    padding: 9.375rem 1.875rem;
}

.c-faq-min__content::before {
    content: "";
    display: block;
    position: absolute;
    left: -9rem;
    top: 0;
    width: calc(100% + 18rem);
    height: 100%;
    background-color: #db0007;
    z-index: -1;
}

.c-faq-min__item {
    position: relative;
    width: 100%;
    background-color: #292929;
    padding: 1.25rem 0;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.c-faq-min__item.is-active {
    background-color: #ffbc0d;
}

.c-faq-min__item_click__JS {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 1rem;
}

@media (min-width: 1000px) {
    .c-faq-min__item_click__JS {
        padding: 0 3rem;
    }
}

.c-faq-min__title {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 60%;
}

.is-active .c-faq-min__title {
    color: #292929;
}

@media (min-width: 700px) {
    .-single .c-faq-min__title {
        width: 90%;
    }
}

@media (min-width: 1000px) {
    .c-faq-min__title {
        font-size: 20px;
    }
}

.c-faq-min__title span {
    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    margin-right: 1rem;
}

@media (min-width: 700px) {
    .c-faq-min__title {
        width: 100%;
    }
}

.c-faq-min__btn {
    position: relative;
    width: 2.88889rem;
    height: 2.88889rem;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.c-faq-min__btn svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1.66667rem;
    height: 0.44444rem;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    stroke: #db0007;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

[data-component="downloads"] .c-faq-min__btn svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    width: 0.9375rem;
    height: 0.9375rem;
}

.c-faq-min__item.is-active .c-faq-min__btn:after {
    opacity: 1;
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
    transform: scale(1.1) translate3d(0, 0, 0);
}

.c-faq-min__item.is-active .c-faq-min__btn svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    stroke: #fff;
}

html:not(.is-mobile) .c-faq-min__btn:hover:after {
    opacity: 1;
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
    transform: scale(1.1) translate3d(0, 0, 0);
}

html:not(.is-mobile) .c-faq-min__btn:hover svg {
    stroke: #fff;
}

html:not(.is-mobile) .c-faq-min__btn:hover span {
    color: #fff;
}

.c-faq-min__btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: #db0007;
    border-radius: 50%;
    -webkit-transform: scale(0.5) translate3d(0, 0, 0);
    transform: scale(0.5) translate3d(0, 0, 0);
    opacity: 0;
    -webkit-transition: all 0.45s cubic-bezier(0.6, 0.01, 0, 1.38) 0s;
    transition: all 0.45s cubic-bezier(0.6, 0.01, 0, 1.38) 0s;
}

.c-footnote.is-active .c-faq-min__btn:after {
    opacity: 1;
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
    transform: scale(1.1) translate3d(0, 0, 0);
}

.c-faq-min__item.is-active .c-faq-min__btn:after {
    opacity: 1;
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
    transform: scale(1.1) translate3d(0, 0, 0);
}

.c-faq-min__bottom {
    height: 0;
    overflow: hidden;
}

.c-faq-min__bottom-ov {
    width: 100%;
    padding: 0 3.125rem;
    margin-top: 1.875rem;
}

html:not(.is-mobile) .c-faq-min__btn:hover svg {
    stroke: #fff;
    z-index: 1;
}

.c-faq-min__item.is-active .c-faq-min__btn svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    stroke: #fff;
    z-index: 1;
}

.c-download {
    z-index: 1;
    position: relative;
}

.c-download__background {
    position: relative;
    overflow: hidden;
    right: -7vw;
    width: 100%;
    height: 15rem;
}

@media (max-width: 999px) {
    .c-download__background {
        display: none;
    }
}

@media (min-width: 500px) {
    .c-download__background {
        right: -10vw;
    }
}

@media (min-width: 700px) {
    .c-download__background {
        right: -9rem;
        height: 28rem;
    }
}

@media (min-width: 1000px) {
    .c-download__background {
        height: 30rem;
        right: -6rem;
        width: calc(100% + 3rem);
    }
}

.c-download-min__content {
    position: relative;
    padding: 9.375rem 1.875rem;
}

.c-download-min__content::before {
    content: "";
    display: block;
    position: absolute;
    left: -9rem;
    top: 0;
    width: calc(100% + 18rem);
    height: 100%;
    background-color: #db0007;
    z-index: -1;
}

.c-download-min__item {
    position: relative;
    width: 100%;
    background-color: #292929;
    padding: 1.25rem 0;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.c-download-min__item.is-active {
    background-color: #ffbc0d;
}

.c-download-min__item_click__JS {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 1rem;
}

@media (min-width: 1000px) {
    .c-download-min__item_click__JS {
        padding: 0 3rem;
    }
}

.c-download-min__title {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 60%;
}

.is-active .c-download-min__title {
    color: #fff;
}

@media (min-width: 700px) {
    .-single .c-download-min__title {
        width: 90%;
    }
}

@media (min-width: 1000px) {
    .c-download-min__title {
        font-size: 20px;
    }
}

.c-download-min__title span {
    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    margin-right: 1rem;
}

@media (min-width: 700px) {
    .c-download-min__title {
        width: 100%;
    }
}

.c-download-min__btn {
    position: relative;
    width: 2.88889rem;
    height: 2.88889rem;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.c-download-min__btn svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1.66667rem;
    height: 0.44444rem;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    stroke: #db0007;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

[data-component="downloads"] .c-download-min__btn svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    width: 0.9375rem;
    height: 0.9375rem;
}

.c-download-min__item.is-active .c-download-min__btn:after {
    opacity: 1;
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
    transform: scale(1.1) translate3d(0, 0, 0);
}

.c-download-min__item.is-active .c-download-min__btn svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    stroke: #fff;
}

html:not(.is-mobile) .c-download-min__btn:hover:after {
    opacity: 1;
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
    transform: scale(1.1) translate3d(0, 0, 0);
}

html:not(.is-mobile) .c-download-min__btn:hover svg {
    stroke: #fff;
}

html:not(.is-mobile) .c-download-min__btn:hover span {
    color: #fff;
}

.c-download-min__btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background: #db0007;
    border-radius: 50%;
    -webkit-transform: scale(0.5) translate3d(0, 0, 0);
    transform: scale(0.5) translate3d(0, 0, 0);
    opacity: 0;
    -webkit-transition: all 0.45s cubic-bezier(0.6, 0.01, 0, 1.38) 0s;
    transition: all 0.45s cubic-bezier(0.6, 0.01, 0, 1.38) 0s;
}

.c-footnote.is-active .c-download-min__btn:after {
    opacity: 1;
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
    transform: scale(1.1) translate3d(0, 0, 0);
}

.c-download-min__item.is-active .c-download-min__btn:after {
    opacity: 1;
    -webkit-transform: scale(1.1) translate3d(0, 0, 0);
    transform: scale(1.1) translate3d(0, 0, 0);
}

.c-download-min__bottom {
    height: 0;
    overflow: hidden;
}

.c-download-min__bottom-ov {
    width: 100%;
    padding: 0 3.125rem;
    margin-top: 1.875rem;
}

html:not(.is-mobile) .c-download-min__btn:hover svg {
    stroke: #fff;
    z-index: 1;
}

.c-download-min__item.is-active .c-download-min__btn svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    stroke: #fff;
    z-index: 1;
}

.c-header-navigation {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    height: auto;
}

#job-detail .c-header-navigation.-dark .c-header-navigation__link,
#location-description .c-header-navigation.-dark .c-header-navigation__link,
.page-corporate-jobs .c-header-navigation.-dark .c-header-navigation__link,
.page-corporate-search .c-header-navigation.-dark .c-header-navigation__link,
.page-global-impact .c-header-navigation.-dark .c-header-navigation__link,
.page-jobs .c-header-navigation.-dark .c-header-navigation__link,
.page-restaurant-jobs .c-header-navigation.-dark .c-header-navigation__link,
.page-university-positions .c-header-navigation.-dark .c-header-navigation__link,
[data-page-name="Find jobs by location"] .c-header-navigation.-dark .c-header-navigation__link {
    color: #333;
}

#job-detail .c-header-navigation.-dark .c-header-navigation__link:hover,
#location-description .c-header-navigation.-dark .c-header-navigation__link:hover,
.page-corporate-jobs .c-header-navigation.-dark .c-header-navigation__link:hover,
.page-corporate-search .c-header-navigation.-dark .c-header-navigation__link:hover,
.page-global-impact .c-header-navigation.-dark .c-header-navigation__link:hover,
.page-jobs .c-header-navigation.-dark .c-header-navigation__link:hover,
.page-restaurant-jobs .c-header-navigation.-dark .c-header-navigation__link:hover,
.page-university-positions .c-header-navigation.-dark .c-header-navigation__link:hover,
[data-page-name="Find jobs by location"] .c-header-navigation.-dark .c-header-navigation__link:hover {
    color: #333;
}

.c-header-navigation.-dark .c-header-navigation__link {
    color: #292929;
}

.c-header-navigation.-dark .c-header-navigation__link:hover {
    color: #292929;
}

.c-header-navigation__content {
    top: 0;
    left: 0;
    right: 0;
    position: relative;
    height: 6rem;
    color: #333;
}

@media (min-width: 1000px) {
    .c-header-navigation__content {
        margin-top: 1.5625rem;
    }
}

@media (min-width: 1000px) {
    .has-nav .c-header-navigation__content {
        position: absolute;
        width: 6rem;
        top: -6rem;
        right: 0;
        left: auto;
    }
}

@media (min-width: 500px) {
    .c-header-navigation__content::before {
        content: "";
        opacity: 0.5;
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: rgba(182, 184, 185, 0.29);
        height: 1px;
        width: 100%;
    }
}

@media (min-width: 1000px) {
    .c-header-navigation__content {
        height: 6rem;
    }
}

@media (max-width: 499px) {
    .c-header-navigation__content {
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
        border-radius: 0 0 2rem 2rem;
    }

    .has-scrolled .c-header-navigation__content {
        border-color: transparent;
        background-color: transparent;
    }
}

.c-header-navigation__logo {
    position: relative;
    width: 6rem;
    display: inline-block;
    height: 100%;
    text-align: center;
    font-size: 0;
    pointer-events: auto;
}

@media (min-width: 700px) {
    .c-header-navigation__logo {
        width: 6rem;
    }
}

.c-header-navigation__logo::before {
    content: "";
    height: 100%;
    display: inline-block;
    vertical-align: middle;
}

.c-header-navigation__logo:hover {
    cursor: pointer;
}

.c-header-navigation__logo:hover::after {
    opacity: 1;
    visibility: visible;
}

.c-header-navigation__logo::after {
    content: "";
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/KWRSV_bubbles/bubbles.svg);
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    position: absolute;
    visibility: hidden;
    left: 1.875rem;
    bottom: -7.5rem;
    background-size: contain;
    width: 9.375rem;
    height: 9.375rem;
}

.c-header-navigation__logo--desktop {
    fill: #fff;
    width: auto;
    height: 3.375rem;
}

@media (min-width: 500px) {
    .c-header-navigation__logo--desktop {
        display: inline-block;
        width: 20rem;
        height: 3rem;
    }
}

.c-header-navigation__search-btn {
    display: none;
}

@media (min-width: 1000px) {
    .c-header-navigation__search-btn {
        display: inline-block;
        position: absolute;
        height: 6rem;
        right: 10rem;
    }
}

.c-header-navigation__search-btn>div {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-header-navigation__nav {
    display: none;
}

@media (min-width: 1250px) {
    .c-header-navigation__nav {
        display: inline-block;
        position: absolute;
        color: #fff;
        top: 0;
        left: 6rem;
        padding-right: 6rem;
        height: 6rem;
    }
}

.c-header-navigation__list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.c-header-navigation__list li:hover>ul {
    opacity: 1;
    visibility: visible;
    background: #ffbc0d;
    border-radius: 10px;
    top: 6rem;
    display: block;
}

.c-header-navigation__list li:hover>ul::before {
    opacity: 1;
    visibility: visible;
}

.c-header-navigation__list ul {
    width: 100%;
    opacity: 0;
    padding: 0;
    left: 0;
    list-style: none;
    position: absolute;
    top: 160%;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
}

.c-header-navigation__list ul::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2.375rem;
    width: 50%;
    right: 10%;
    height: 2.5rem;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/Q1SQP_gooe/gooe.svg);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
}

.c-header-navigation__list .full-list ul {
    width: 33rem;
    left: 0;
    overflow: hidden;
}

.c-header-navigation__item {
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: auto;
    height: 100%;
}

.c-header-navigation__item.-last {
    padding: 0 1.2vw;
}

.c-header-navigation__item-submenu ul {
    top: 0;
    left: 160%;
}

.c-header-navigation__item-submenu li {
    display: inline-block;
    position: relative;
    width: 100%;
}

.c-header-navigation__item-submenu li:hover>ul {
    top: 0;
    left: 100%;
    opacity: 1;
    visibility: visible;
}

.c-header-navigation__item-submenu a {
    text-decoration: none;
    display: block;
    color: #222;
    font-weight: 700;
    font-size: 16px;
    padding: 10px 15px;
    text-align: left;
    border-bottom: solid 3px transparent;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition:
        color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition:
        color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition:
        color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition:
        color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-header-navigation__item-submenu a:hover {
    color: #db0007;
}

.c-header-navigation__item-submenu a span {
    float: right;
}

.c-header-navigation__link {
    font-family: Speedee, sans-serif;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: inline-block;
    padding: 0 1vw;
    font-size: 1rem;
    line-height: 1;
}

.c-header-navigation__link:focus {
    color: #fff;
}

.c-header-navigation__link.active:not(.-cta-btn)::after {
    border-bottom: 3px solid #db0007;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.c-header-navigation__link.has-drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-header-navigation__link.has-drop .c-header-navigation__item-drop {
    width: 1.25rem;
    height: auto;
    display: inline-block;
    margin-left: 0.5rem;
}

.c-header-navigation__link.has-drop .c-header-navigation__item-drop svg {
    width: 1.25rem;
    height: 1.25rem;
}

.c-header-navigation__link:not(.-cta-btn)::after {
    content: "";
    width: 100%;
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: -2.5rem;
    left: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
    transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0, 1),
        -webkit-transform 0.3s cubic-bezier(0.4, 0, 0, 1);
    -webkit-transform-origin: center right;
    transform-origin: center right;
    border-bottom: 3px solid #db0007;
}

.has-drop .c-header-navigation__link:not(.-cta-btn)::after {
    display: none;
}

.c-header-navigation__link:not(.-cta-btn):hover {
    color: #fff;
}

.c-header-navigation__link:not(.-cta-btn):hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.c-header-navigation__link.-cta-btn {
    border-radius: 2rem;
    border: solid 2px rgba(182, 184, 185, 0.29);
    height: auto;
    padding: 0 0 0 1.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: relative;
    -webkit-transition: background-color 0.3s cubic-bezier(0.4, 0, 0, 1);
    transition: background-color 0.3s cubic-bezier(0.4, 0, 0, 1);
}

.c-header-navigation__link.-cta-btn:hover {
    color: #fff;
}

.c-header-navigation__link.-cta-btn:hover .o-button__icon {
    background-color: #ffbc0d;
}

.c-header-navigation__link-icon svg {
    stroke: #fff;
    stroke-width: 0.125rem;
    width: 1.875rem;
    height: 1.875rem;
}

.c-header-navigation__phone {
    position: relative;
    display: inline-block;
    margin-right: 0.5rem;
    width: 1.645rem;
    height: 1.645rem;
}

.c-header-navigation__menu {
    height: 100%;
    text-align: center;
    font-size: 0;
    pointer-events: auto;
    -webkit-transition:
        opacity 0.3s cubic-bezier(0.4, 0, 0, 1),
        visibility 0s;
    transition:
        opacity 0.3s cubic-bezier(0.4, 0, 0, 1),
        visibility 0s;
    float: right;
    width: 20%;
}

@media (min-width: 700px) {
    .c-header-navigation__menu {
        width: 6rem;
    }
}

@media (max-width: 499px) {
    .has-scrolled .c-header-navigation__menu {
        background: #ffbc0d;
        border-radius: 0 0 0 10px;
    }
}

.c-header-navigation__menu-wrap {
    height: 100%;
}

.c-header-navigation__button {
    width: 2rem;
    position: relative;
    z-index: 1001;
    font-size: 0 !important;
}

.c-header-navigation__button::before {
    opacity: 0;
    content: "menu";
    display: block;
    position: absolute;
    top: -1.3rem;
    width: 100%;
    color: #fff;
    height: 100%;
    left: 0;
    text-transform: uppercase;
    font-size: 10px;
    -webkit-transition:
        background-color 0.6s linear,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    transition:
        background-color 0.6s linear,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    transition:
        background-color 0.6s linear,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    transition:
        background-color 0.6s linear,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.c-header-navigation__button-line {
    display: inline-block;
    width: 33px;
    height: 2px;
    -webkit-transition: all 0.4s cubic-bezier(0.43, 0.195, 0.02, 1);
    transition: all 0.4s cubic-bezier(0.43, 0.195, 0.02, 1);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    -webkit-transform: translateY(-3%);
    transform: translateY(-3%);
    background-color: #fff;
}

.-dark .c-header-navigation__button-line {
    background-color: #292929;
}

.c-header-navigation__button-line:first-of-type {
    background-color: #ffbc0d;
}

.c-header-navigation__button-line:nth-of-type(3):nth-last-of-type(1) {
    -webkit-transform: scaleX(0.5);
    transform: scaleX(0.5);
    background-color: #ffbc0d;
}

.c-header-navigation__button-line:nth-child(2) {
    margin: 7px 0;
}

.c-header-navigation__button:hover .c-header-navigation__button-line:nth-of-type(3):nth-last-of-type(1) {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.c-header-navigation__top {
    display: none;
}

@media (min-width: 1000px) {
    .c-header-navigation__top {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        width: calc(100% - 21rem);
        margin: 0 auto;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.c-header-navigation__top ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    z-index: 1;
    top: 0.9375rem;
}

@media (min-width: 1000px) {
    .c-header-navigation__top ul {
        width: 40%;
        max-width: 400px;
    }
}

.c-header-navigation__top ul a {
    color: #292929;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-header-navigation__top ul a span {
    height: auto;
    width: 0.9375rem;
    display: inline-block;
    margin-right: 0.625rem;
}

.c-header-navigation__top ul a span svg {
    fill: rgba(0, 0, 0, 0.5);
    width: 1.25rem;
    height: 1.25rem;
}

.c-header-navigation.has-nav-open .c-header-navigation__button-line:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.c-header-navigation.has-nav-open .c-header-navigation__button-line:nth-child(2) {
    -webkit-transform: rotate(45deg) translate(10px, 10px);
    transform: rotate(45deg) translate(10px, 10px);
}

.c-header-navigation.has-nav-open .c-header-navigation__button-line:nth-child(3) {
    opacity: 0;
    -webkit-transform: translateY(-0.59375rem);
    transform: translateY(-0.59375rem);
}

.c-header-navigation.has-nav-open .o-overlay {
    opacity: 1;
    visibility: visible;
}

.c-header-navigation.has-nav-open .c-mega-menu {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media (min-width: 700px) {
    .c-header-navigation.has-nav-open .c-mega-menu {
        right: 0;
    }
}

.c-header-navigation.has-nav-open .c-header-navigation__nav {
    opacity: 0;
}

.c-header-navigation.has-nav-open .c-header-navigation__top {
    opacity: 0;
}

.o-overlay {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.35);
    -webkit-transition: 0.4s all ease-in-out;
    transition: 0.4s all ease-in-out;
}

.global-menu {
    width: 100vw;
    height: 100vh;
    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;
    position: fixed;
    top: 0;
    right: 0;
    pointer-events: none;
    z-index: 100;
}

@media (min-width: 1000px) {
    .global-menu {
        width: 50vw;
        height: 80vh;
        min-height: 600px;
    }
}

@media (min-width: 1000px) {
    .global-menu__wrap {
        padding: 1.875rem 0;
    }
}

.global-menu__item {
    color: #222;
    font-size: 1.5625rem;
    font-weight: 700;
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    pointer-events: none;
    display: block;
    margin: 0.25em 0;
    -webkit-transition:
        opacity 0.3s,
        -webkit-transform 0.3s;
    transition:
        opacity 0.3s,
        -webkit-transform 0.3s;
    transition:
        transform 0.3s,
        opacity 0.3s;
    transition:
        transform 0.3s,
        opacity 0.3s,
        -webkit-transform 0.3s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

.global-menu__item.-remove>a {
    cursor: pointer;
}

.global-menu__item.-remove>a:hover {
    color: #db0007;
}

@media (max-width: 999px) {
    .global-menu__item.-remove ul {
        display: none;
    }
}

@media (max-width: 999px) {
    .global-menu__item {
        font-size: 1.75rem;
    }
}

.global-menu__item a {
    color: #222;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.global-menu__item a:hover {
    color: #db0007;
}

.global-menu__item a:active {
    color: #db0007;
    -webkit-transition: 0s all ease-in-out;
    transition: 0s all ease-in-out;
}

.global-menu__item ul {
    border-left: 3px solid #db0007;
}

.global-menu__item ul>li {
    font-size: 1.3125rem;
    margin-left: 1.25rem;
}

.global-menu__item--melt {
    -webkit-transition:
        opacity 0.1s,
        -webkit-transform 0.1s;
    transition:
        opacity 0.1s,
        -webkit-transform 0.1s;
    transition:
        transform 0.1s,
        opacity 0.1s;
    transition:
        transform 0.1s,
        opacity 0.1s,
        -webkit-transform 0.1s;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.global-menu__item:hover {
    color: #db0007;
}

.global-menu__item.is-opened {
    opacity: 1;
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
    pointer-events: auto;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.global-menu__item:nth-of-type(1) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.global-menu__item.is-opened:nth-of-type(1) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.global-menu__item:nth-of-type(2) {
    -webkit-transition-delay: 50ms;
    transition-delay: 50ms;
}

.global-menu__item.is-opened:nth-of-type(2) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.global-menu__item:nth-of-type(3) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.global-menu__item.is-opened:nth-of-type(3) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.global-menu__item:nth-of-type(4) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.global-menu__item.is-opened:nth-of-type(4) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.global-menu__item:nth-of-type(5) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.global-menu__item.is-opened:nth-of-type(5) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.global-menu__item:nth-of-type(6) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.global-menu__item.is-opened:nth-of-type(6) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.global-menu__item--melt.is-opened {
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.global-menu__item--melt:nth-of-type(1) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.global-menu__item--melt.is-opened:nth-of-type(1) {
    -webkit-transition-delay: 0.65s;
    transition-delay: 0.65s;
}

.global-menu__item--melt:nth-of-type(2) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.global-menu__item--melt.is-opened:nth-of-type(2) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.global-menu__item--melt:nth-of-type(3) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.global-menu__item--melt.is-opened:nth-of-type(3) {
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.global-menu__item--melt:nth-of-type(4) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.global-menu__item--melt.is-opened:nth-of-type(4) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}

.global-menu__item--melt:nth-of-type(5) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.global-menu__item--melt.is-opened:nth-of-type(5) {
    -webkit-transition-delay: 0.85s;
    transition-delay: 0.85s;
}

.global-menu__item--melt:nth-of-type(6) {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.global-menu__item--melt.is-opened:nth-of-type(6) {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.shape-overlays {
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
}

@media (min-width: 1000px) {
    .shape-overlays {
        width: 50vw;
        height: 80vh;
        min-height: 600px;
        border-radius: 0 0 0 10px;
    }
}

.shape-overlays.is-opened {
    pointer-events: auto;
}

.shape-overlays__path:nth-of-type(1) {
    fill: #000;
}

.shape-overlays__path:nth-of-type(2) {
    fill: #292929;
}

.shape-overlays__path:nth-of-type(3) {
    fill: #ffbc0d;
}

@media (max-width: 999px) {
    [data-component="olivia-cta"]>.o-container {
        padding: 0;
    }
}

.c-olivia-cta {
    position: relative;
    background-color: #292929;
}

.c-olivia-cta.-light {
    background-color: #fff;
    -webkit-box-shadow: 0 1px 20px 16px rgba(0, 0, 0, 0.05098);
    box-shadow: 0 1px 20px 16px rgba(0, 0, 0, 0.05098);
}

@media (min-width: 1000px) {
    .c-olivia-cta {
        margin-top: -7.5rem;
        width: 80%;
        border-radius: 30px;
        z-index: 1;
    }
}

.c-olivia-cta h3 {
    font-size: 1.5rem;
}

.c-olivia-cta__inner {
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
}

@media (min-width: 1000px) {
    .c-olivia-cta__inner {
        padding: 3.75rem;
    }
}

.c-olivia-cta .c-bubbles {
    position: absolute;
    right: -14.375rem;
    top: -15.625rem;
    width: 25rem;
    height: 25rem;
    will-change: transform;
}

@media (min-width: 999px) {
    .c-olivia-cta .c-bubbles {
        top: 7.5rem;
        bottom: 0;
    }
}

.c-olivia-cta .c-bubbles svg {
    width: 100%;
    height: 100%;
}

.c-olivia-cta__layout-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
}

@media (min-width: 700px) {
    .c-olivia-cta__layout-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

@media (min-width: 699px) {
    .c-olivia-cta__layout-item .l-layout__content {
        width: 85%;
    }
}

.c-olivia-cta__layout-item .c-olivia-cta__image {
    margin-bottom: 3.75rem;
    border: 5px solid #ffbc0d;
    border-radius: 50%;
    z-index: 1;
    padding: 1.875rem;
    width: 10rem;
}

@media (min-width: 700px) {
    .c-olivia-cta__layout-item .c-olivia-cta__image {
        margin-bottom: 0;
        margin-left: 1.875rem;
    }
}

@media (max-width: 699px) {
    .c-olivia-cta__layout-item .c-olivia-cta__image {
        display: none;
    }
}

.c-olivia-cta__layout-item .c-olivia-cta__image img {
    max-width: 100%;
}

.c-olivia-cta__layout-item .c-olivia-cta__image img.-lazy-loaded {
    -webkit-animation: 0.6s cubic-bezier(0.2, 0.85, 0.45, 1) 0s 1 normal forwards running ffSPMP;
    animation: 0.6s cubic-bezier(0.2, 0.85, 0.45, 1) 0s 1 normal forwards running ffSPMP;
}

.c-cta-banner {
    position: relative;
    background-color: #292929;
    z-index: 1;
}

.c-cta-banner.-light {
    background-color: #fff;
}

.c-cta-banner .c-bubbles {
    position: absolute;
    right: 0;
    top: -6.25rem;
    width: 15.625rem;
    height: 15.625rem;
    will-change: transform;
}

@media (max-width: 699px) {
    .c-cta-banner .c-bubbles {
        left: -20%;
        z-index: -1;
    }
}

.c-cta-banner .c-bubbles svg {
    width: 100%;
    height: 100%;
}

.c-cta-banner__inner {
    padding: 3.75rem;
    text-align: center;
}

@media (min-width: 1000px) {
    .c-cta-banner__inner h2 {
        margin: 0 auto;
    }
}

.c-cta-banner__inner a {
    margin: 0 auto;
    z-index: 1;
}

.c-blurb-image__content-logo {
    margin-bottom: 1.875rem;
}

.c-blurb-image__content-logo img {
    max-width: 100%;
}

.c-job-combo__content {
    position: relative;
    display: block;
    padding: 6.25rem 0;
}

.-noolivia .c-job-combo__content {
    padding: 6.25rem 0;
}

.-noolivia .c-job-combo__content::before {
    display: none;
}

@media (max-width: 999px) {
    .c-job-combo__content {
        background-color: #f9f9f9;
    }
}

@media (min-width: 1000px) {
    .c-job-combo__content {
        padding-top: 31.25rem;
        padding-bottom: 7.5rem;
    }

    .c-job-combo__content::before {
        content: "";
        display: block;
        background-color: #f9f9f9;
        position: absolute;
        top: 0;
        right: 0;
        left: -9rem;
        width: calc(100% + 9rem);
        height: 100%;
        z-index: -1;
    }
}

@media (min-width: 1200px) {
    .c-job-combo__content {
        padding-top: 25rem;
    }
}

.c-job-combo__content a.o-button {
    z-index: 999;
}

.c-job-combo-slider {
    position: relative;
    background: #ffbc0d;
}

@media (min-width: 1000px) {
    .c-job-combo-slider {
        margin-top: 12.5rem;
    }
}

.c-job-combo-slider::after {
    content: "";
    display: block;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/Q1SQP_gooe/gooe.svg);
    width: 25rem;
    height: 6.25rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    right: 20%;
    z-index: 1;
}

@media (min-width: 1000px) {
    .c-job-combo-slider {
        border-radius: 0 5px 5px 0;
    }
}

.c-job-combo-slider__content {
    text-align: left;
    padding: 3.75rem 1.25rem;
}

@media (min-width: 1000px) {
    .c-job-combo-slider__content {
        padding: 3.75rem 1.875rem;
        margin-left: 3.75rem;
    }
}

.c-job-combo-slider__content h3 {
    font-size: 2.5625rem;
    margin-bottom: 0;
}

.c-job-combo .swiper-pagination .swiper-pagination-bullet-active {
    background: #222;
}

.c-job-combo .swiper-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-job-combo .swiper-control-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #db0007;
    border-radius: 5px 0 0 0;
}

@media (min-width: 1000px) {
    .c-job-combo .swiper-control-options {
        border-radius: 5px 0 5px 0;
    }
}

.c-job-combo .swiper-control-options svg {
    fill: #fff;
    width: 1.25rem;
    height: 1.875rem;
    margin-left: 0.625rem;
}

.c-job-combo .swiper-control-options a,
.c-job-combo .swiper-control-options button {
    display: block;
    margin: 0 0.625rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.c-job-combo .swiper-control-options a:hover,
.c-job-combo .swiper-control-options button:hover {
    cursor: pointer;
}

.c-job-combo .swiper-control-options a.active svg,
.c-job-combo .swiper-control-options button.active svg {
    fill: #ffbc0d;
}

[data-component="golden-arches"] {
    position: relative;
    display: block;
    z-index: 1;
}

@media (min-width: 1000px) {
    [data-component="golden-arches"] {
        margin: 8.75rem 0;
        margin-bottom: 0;
    }
}

[data-component="golden-arches"] canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.c-golden-arches {
    position: relative;
    display: block;
}

@media (min-width: 1000px) {
    .c-golden-arches {
        margin-top: 7.5rem;
    }
}

.c-golden-arches__content {
    position: relative;
}

.c-golden-arches__horizontal {
    display: none;
    text-align: center;
    will-change: transform;
}

@media (min-width: 1000px) {
    .c-golden-arches__horizontal {
        display: block;
    }
}

.c-golden-arches__horizontal h3 {
    text-transform: uppercase;
    font-size: 6.25rem;
    font-size: 5vw;
    white-space: nowrap;
    margin: 0;
}

.c-golden-arches__horizontal.-small h3 {
    text-transform: none;
    font-size: 3.5vw;
    margin-bottom: 0.5rem;
}

.c-golden-arches__gallery {
    position: relative;
    height: 31.25rem;
    overflow: hidden;
    border-top: 0.625rem solid #ffbc0d;
    background: #ffbc0d;
}

@media (min-width: 1000px) {
    .c-golden-arches__gallery {
        margin-top: -15px;
        margin-top: -1.4vw;
    }
}

.c-golden-arches__gallery::before {
    content: "";
    display: block;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/Q1SQP_gooe/gooe.svg);
    width: 12.5rem;
    height: 6.25rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    left: 20%;
    z-index: 2;
    top: 0;
}

.c-golden-arches__banner {
    display: block;
    background-color: #292929;
    padding: 1.875rem;
    position: relative;
}

@media (min-width: 1000px) {
    .c-golden-arches__banner {
        border-radius: 5px 0 0 5px;
        right: -9rem;
        width: calc(100% - 9rem);
        margin-top: -5.625rem;
        z-index: 1;
    }

    .c-golden-arches__banner-img svg {
        width: 18.75rem;
        height: 18.75rem;
    }
}

.c-golden-arches__banner .o-container {
    padding: 0;
}

@media (min-width: 700px) {
    .c-golden-arches__banner .o-container {
        padding: 0 7.5rem;
    }
}

@media (min-width: 1000px) {
    .c-golden-arches__banner .o-container {
        padding: 0 3.75rem;
    }
}

.c-golden-arches__banner-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 1000px) {
    .c-golden-arches__banner-inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

@media (max-width: 999px) {
    .c-golden-arches__banner-img {
        margin-bottom: 1.875rem;
    }
}

.c-golden-arches__banner-content--img {
    position: relative;
    height: 31.25rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.c-golden-arches__banner-content--img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    width: 100%;
    height: 100%;
}

.c-golden-arches__banner .-has-border {
    border-bottom: 3px solid #ffbc0d;
    margin-bottom: 1.25rem;
}

@media (min-width: 1000px) {
    .c-golden-arches__banner .-has-border {
        border-right: 3px solid #ffbc0d;
        border-bottom: 0;
        margin-bottom: 0;
        margin-right: 1.25rem;
        padding-right: 0.625rem;
    }
}

.c-golden-arches__banner .-has-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 700px) {
    .c-golden-arches__banner .-has-img {
        -ms-flex-flow: nowrap;
        flex-flow: nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .c-golden-arches__banner .-has-img>div:nth-child(1) {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 100%;
        height: auto;
        margin-bottom: 0;
        padding-right: 1.875rem;
    }

    .c-golden-arches__banner .-has-img>div:nth-child(2) {
        -webkit-box-flex: 3;
        -ms-flex-positive: 3;
        flex-grow: 3;
    }
}

@media (min-width: 1000px) {
    .c-golden-arches__banner .-has-img>div:nth-child(1) {
        width: 31.25rem;
    }
}

.c-benefits {
    position: relative;
}

.c-benefits::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -99;
}

@media (max-width: 699px) {
    .c-benefits__inner .o-container {
        padding: 0;
    }

    .c-benefits__inner .o-container .c-benefits__banner {
        border-radius: 0;
        padding: 3.75rem;
    }
}

.c-benefits__banner {
    background-color: #ffb71c;
    padding: 3.75rem;
    border-radius: 5px;
    position: relative;
    margin-top: -5.625rem;
    z-index: 99;
}

@media (min-width: 1000px) {
    .c-benefits__banner::before {
        content: "";
        display: block;
        position: absolute;
        background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/ZRWBC_McDSesameSeeds-final/McDSesameSeeds-final.gif);
        background-size: contain;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        z-index: -1;
        top: 0;
        left: 0;
        background-repeat: no-repeat;
        background-position: 0 bottom;
    }
}

.c-benefits-list-scroll {
    position: relative;
}

@media (max-width: 999px) {
    .c-benefits-list-scroll__layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }

    .c-benefits-list-scroll__layout.-mobile-flip {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
    }
}

.c-benefits-list-scroll__layout .o-container {
    padding-right: 0;
}

.c-benefits-list-scroll__inner {
    position: relative;
    padding: 5.625rem 1.875rem;
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__inner {
        padding: 5.625rem 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.c-benefits-list-scroll__background {
    position: relative;
    overflow: hidden;
    height: 15rem;
}

.c-benefits-list-scroll__background.no-bg {
    text-align: center;
    height: 100%;
    margin-bottom: 3.75rem;
}

.c-benefits-list-scroll__background.no-bg .o-background {
    position: relative;
}

.c-benefits-list-scroll__background.no-bg svg {
    height: 12.5rem;
}

@media (min-width: 700px) {
    .c-benefits-list-scroll__background {
        height: 22.5rem;
    }
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__background {
        height: 31.25rem;
    }

    [data-namespace="interior"] .c-benefits-list-scroll__background {
        height: 35rem;
    }
}

.c-benefits-list-scroll__background svg {
    fill: #ffbc0d;
    width: 12.5rem;
    height: 100%;
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__background svg {
        width: 18.75rem;
    }
}

.c-benefits-list-scroll__background--text {
    font-size: 2rem;
    color: #292929;
    font-weight: 700;
    position: relative;
    text-align: center;
}

.c-benefits-list-scroll__background--text.mod {
    background-color: #ffbc0d;
    color: #292929;
    border-radius: 5px 0 0 5px;
    padding: 1rem;
    margin-top: -3rem;
}

.c-benefits-list-scroll__cta {
    width: calc(100% + 14vw);
    left: -7vw;
    background-color: #000;
    z-index: 1;
    position: relative;
    color: #fff;
    padding: 3.75rem;
}

@media (min-width: 500px) {
    .c-benefits-list-scroll__cta {
        width: calc(100% + 20vw);
        left: -10vw;
    }
}

@media (min-width: 700px) {
    .c-benefits-list-scroll__cta {
        width: auto;
        left: auto;
        margin-top: -4rem;
    }
}

.c-benefits-list-scroll__cta p {
    font-size: 1.3125rem;
    font-weight: 600;
}

.c-benefits-list-scroll__list {
    padding: 1.875rem 0;
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__list {
        width: 80%;
        max-width: 100%;
    }
}

.c-benefits-list-scroll__list-item {
    margin-bottom: 1.875rem;
}

@media (min-width: 700px) {
    .c-benefits-list-scroll__list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.c-benefits-list-scroll__list-img {
    width: 60px;
    margin-bottom: 1.875rem;
}

.c-benefits-list-scroll__list-content {
    font-weight: 700;
}

@media (min-width: 700px) {
    .c-benefits-list-scroll__list-content {
        margin-left: 1.875rem;
    }
}

.c-benefits-list-scroll__list-content h3 {
    color: #db0007;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.c-benefits-list-scroll__main {
    position: relative;
    display: block;
}

.c-benefits-list-scroll__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    margin-bottom: 3.75rem;
    cursor: pointer;
    height: auto;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

@media (min-width: 700px) {
    .c-benefits-list-scroll__item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

.c-benefits-list-scroll__item:hover .c-benefits-list-scroll__item-img {
    border: #db0007 solid 3px;
}

.c-benefits-list-scroll__item-img {
    background-color: #fff;
    border-radius: 10px;
    padding: 0.625rem;
    border: #ffbc0d solid 3px;
    margin-right: 1.25rem;
    position: relative;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.active .c-benefits-list-scroll__item-img {
    border: #db0007 solid 3px;
}

@media (min-width: 1000px) {
    .active .c-benefits-list-scroll__item-img::before {
        content: "";
        display: block;
        top: -11px;
        right: -8px;
        background-color: #db0007;
        width: 0.9375rem;
        position: absolute;
        border-radius: 50%;
        height: 0.9375rem;
    }
}

.c-benefits-list-scroll__item-img img,
.c-benefits-list-scroll__item-img svg {
    width: 3.125rem;
    height: 3.125rem;
    fill: #ffbc0d;
}

.c-benefits-list-scroll__item-content {
    color: #292929;
    margin-top: 1.875rem;
}

@media (min-width: 700px) {
    .c-benefits-list-scroll__item-content {
        margin-top: 0;
    }
}

.c-benefits-list-scroll__item-content h4 {
    font-size: 1.3rem;
}

.c-benefits-list-scroll__item-content p {
    margin: 0 auto;
    display: block;
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__item-content p {
        display: none;
    }
}

.c-benefits-list-scroll__item-wall {
    display: none;
}

.c-benefits-list-scroll__item-wall.active {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.c-benefits-list-scroll__item-wall .no-bg::after {
    content: none;
}

.c-benefits-list-scroll__item-wall.push {
    padding-right: 9rem;
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__nav {
        width: 50%;
    }
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__nav-wrapper {
        height: 500px;
        overflow-x: auto;
        position: relative;
        display: block;
        padding-top: 1.875rem;
        scrollbar-color: #db0007 #eee !important;
        scrollbar-width: thin !important;
    }

    .c-benefits-list-scroll__nav-wrapper::-webkit-scrollbar {
        width: 5px;
    }

    .c-benefits-list-scroll__nav-wrapper::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px gray;
        box-shadow: inset 0 0 5px gray;
        border-radius: 5px;
    }

    .c-benefits-list-scroll__nav-wrapper::-webkit-scrollbar-thumb {
        background: #db0007;
        border-radius: 5px;
    }

    .c-benefits-list-scroll__nav-wrapper::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }
}

.c-benefits-list-scroll__nav-pagination {
    text-align: center;
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__nav-pagination {
        display: none;
    }
}

.c-benefits-list-scroll__nav-pagination .swiper-pagination-bullet-active {
    background-color: #db0007;
}

.c-benefits-list-scroll__content {
    display: none;
}

@media (min-width: 1000px) {
    .c-benefits-list-scroll__content {
        width: 50%;
        right: -9rem;
        position: relative;
        display: block;
    }
}

.c-benefits-list-scroll .o-background__image-full {
    background-size: contain;
    background-repeat: no-repeat;
}

.c-benefits-list-scroll .o-background__image-full.zoom {
    margin-bottom: -30px;
    margin-top: -30px;
}

.c-benefits-list-scroll .safety-img {
    background-size: cover;
}

@media (min-width: 1600px) {
    .c-benefits-list-scroll .safety-img {
        background-position: right -50px;
    }
}

@media (min-width: 2400px) {
    .c-benefits-list-scroll .safety-img {
        background-size: contain;
    }
}

@media (max-width: 1199px) {
    .c-benefits-list-scroll .safety-img {
        background-position: center 30px !important;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.c-image-info {
    position: relative;
    margin: 11.25rem 0;
    overflow: hidden;
}

.c-image-info .rmhc-logo {
    max-width: 100%;
}

@media (max-width: 1199px) {
    #ctu .c-image-info .c-image-info__wrap {
        padding: 3.75rem 0 0 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        left: 0;
    }
}

@media (max-width: 999px) {
    #ctu .c-image-info {
        background: #fff;
    }
}

@media (max-width: 999px) {
    .c-image-info #rmhc {
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media (max-width: 999px) {
    .c-image-info .hide-mobile {
        display: none;
    }
}

.c-image-info.-has-bg {
    padding-bottom: 9.375rem;
    margin-bottom: 0;
}

@media (min-width: 1000px) {
    .c-image-info.-has-bg {
        padding-bottom: 18.75rem;
    }
}

.c-image-info.-has-bg::before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -7.5rem;
    height: 100%;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1173/image/2025/7/98JJ9_FlattenedArches/FlattenedArches.svg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.c-image-info.show {
    overflow: visible;
}

@media (max-width: 999px) {
    .c-image-info.show {
        margin-top: 3.75rem;
    }
}

.c-image-info__logos {
    padding: 1.875rem 0;
    text-align: center;
    position: relative;
}

@media (min-width: 1199px) {
    .c-image-info__logos {
        left: -6rem;
        padding: 5.625rem 0;
    }
}

.c-image-info__logos img {
    max-width: 100%;
}

.c-image-info.-border:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 11.875rem;
    z-index: -1;
    height: calc(100% + 9rem);
    background-color: #ffbc0d;
    border-radius: 0 5px 5px 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 999px) {
    .c-image-info__layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }

    .c-image-info__layout.-mobile-flip {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
    }
}

@media (min-width: 1000px) {
    .c-image-info__layout-item.pl-0 {
        padding-left: 0 !important;
    }
}

.c-image-info__inner {
    position: relative;
}

.-has-cube .c-image-info__inner::before {
    content: "";
    display: block;
    position: absolute;
    height: 9rem;
    width: 9rem;
    right: -9rem;
    top: -9rem;
    background-color: #db0007;
}

.c-image-info__wrap {
    background-color: #fff;
    -webkit-box-shadow: 10px 6px 20px 6px rgba(0, 0, 0, 0.05);
    box-shadow: 10px 6px 20px 6px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 3.75rem;
    position: relative;
    z-index: 2;
}

[data-page="our-people"] .c-image-info__wrap {
    margin-bottom: 5.625rem;
}

@media (min-width: 999px) {
    .-border .c-image-info__wrap {
        left: -6rem;
    }
}

@media (max-width: 700px) {
    .c-image-info__wrap {
        padding: 3.75rem 1.875rem;
    }
}

.c-image-info__wrap .c-bubbles {
    position: absolute;
    top: -5.625rem;
    left: -3.75rem;
    will-change: transform;
}

.c-image-info__background {
    position: relative;
    overflow: hidden;
    right: 7vw;
    width: calc(100% + 14vw);
    height: 15rem;
}

@media (min-width: 700px) {
    .c-image-info__background {
        border-radius: 10px 0 0 10px;
    }
}

.c-image-info__background-wrap {
    position: relative;
    display: block;
}

.c-image-info__background-wrap::after {
    content: "";
    display: block;
    background-color: #db0007;
    width: 50%;
    height: 0.625rem;
    position: absolute;
    bottom: -0.625rem;
    right: -9rem;
    border-radius: 0 0 0 10px;
}

.-flipped .c-image-info__background {
    left: -7vw;
}

.-has-cube .c-image-info__background,
.-mobile-flip .c-image-info__background,
.-spacer .c-image-info__background {
    margin-top: 3.75rem;
}

@media (min-width: 1000px) {

    .-has-cube .c-image-info__background,
    .-mobile-flip .c-image-info__background,
    .-spacer .c-image-info__background {
        margin-top: 0;
    }
}

@media (min-width: 500px) {
    .c-image-info__background {
        right: 10vw;
        width: calc(100% + 20vw);
    }

    .-flipped .c-image-info__background {
        left: -10vw;
    }
}

@media (min-width: 700px) {
    .c-image-info__background {
        right: -9rem;
        height: 22.5rem;
        width: 100%;
    }

    .-flipped .c-image-info__background {
        left: -9rem;
    }
}

@media (min-width: 1000px) {
    .c-image-info__background {
        height: 31.25rem;
    }

    [data-namespace="interior"] .c-image-info__background {
        height: 35rem;
    }
}

.c-image-info__cta {
    width: calc(100% + 14vw);
    left: -7vw;
    background-color: #000;
    z-index: 1;
    position: relative;
    color: #fff;
    padding: 3.75rem;
}

@media (min-width: 500px) {
    .c-image-info__cta {
        width: calc(100% + 20vw);
        left: -10vw;
    }
}

@media (min-width: 700px) {
    .c-image-info__cta {
        width: auto;
        left: auto;
        margin-top: -4rem;
    }
}

.c-image-info__cta p {
    font-size: 1.3125rem;
    font-weight: 600;
}

.c-image-info__list {
    padding: 1.875rem 0;
}

@media (min-width: 1000px) {
    .c-image-info__list {
        width: auto;
        max-width: 100%;
    }
}

.c-image-info__list-item {
    margin-bottom: 1.875rem;
}

@media (min-width: 700px) {
    .c-image-info__list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.c-image-info__list-img {
    margin-bottom: 1.875rem;
}

.c-image-info__list-img svg {
    width: 11.25rem;
    height: 5rem;
}

@media (max-width: 700px) {
    .c-image-info__list-img svg {
        width: 5rem;
        height: 5rem;
    }
}

.c-image-info__list-img img {
    width: 5rem;
    max-width: 100%;
}

.c-image-info__list-content {
    font-weight: 700;
    width: 100%;
}

@media (min-width: 700px) {
    .c-image-info__list-content {
        margin-left: 1.875rem;
    }
}

.c-image-info__list-content h3 {
    color: #db0007;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.c-image__background {
    position: relative;
    overflow: hidden;
    height: 20.625rem;
    border-radius: 10px;
}

.c-image__background-wrap {
    position: relative;
    display: block;
}

.c-image__background-wrap.-normal {
    display: none;
}

@media (min-width: 1200px) {
    .c-image__background-wrap.-normal {
        display: block;
        margin-top: 7.5rem;
    }

    .c-image__background-wrap.-normal::after {
        content: "";
        display: block;
        background-color: #db0007;
        width: calc(100% + 30px);
        margin: 0 auto;
        height: 7.5rem;
        position: absolute;
        bottom: -0.625rem;
        left: -15px;
        border-radius: 10px;
        z-index: -1;
    }
}

.c-image__background-wrap.-small {
    display: none;
}

@media (min-width: 1000px) {
    .c-image__background-wrap.-small {
        display: block;
        margin-top: 5.625rem;
        width: 15.625rem;
    }
}

.c-image__background-wrap.-small .c-image__background {
    height: 12.5rem;
}

.c-image__background-wrap.-small.-bump {
    position: relative;
    padding-top: 5.625rem;
}

.c-image__background-wrap.-small.-bump::after {
    content: "";
    width: 50%;
    bottom: -0.625rem;
    left: auto;
    left: initial;
    right: -0.9375rem;
}

.c-image__background-wrap.-small::after {
    content: "";
    display: block;
    background-color: #db0007;
    width: calc(100% + 30px);
    margin: 0 auto;
    height: 7.5rem;
    position: absolute;
    bottom: -0.625rem;
    left: -15px;
    z-index: -1;
    border-radius: 10px;
}

.c-image__background-wrap.-video {
    margin-top: 7.5rem;
}

@media (min-width: 1000px) {
    .c-image__background-wrap.-video {
        width: 37.5rem;
        margin-top: 0;
    }
}

.c-image__background-wrap.-video::after {
    content: "";
    display: block;
    background-color: #db0007;
    width: 10%;
    margin: 0 auto;
    height: 13.75rem;
    position: absolute;
    bottom: -0.625rem;
    right: -15px;
    border-radius: 10px;
    z-index: -1;
}

.c-image-info__video {
    position: absolute;
    display: block;
    left: 1.875rem;
    bottom: 1.875rem;
    width: auto;
    z-index: 2;
}

.c-image-info__video-btn {
    display: block;
    padding: 1rem;
    position: relative;
    border-radius: 100%;
}

.c-image-info__video-btn:after,
.c-image-info__video-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ffbc0d;
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
}

.c-image-info__video-btn:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation: pulsey 2s infinite linear;
    animation: pulsey 2s infinite linear;
}

.c-image-info__video-btn:after {
    -webkit-animation: pulsey 2s 1s infinite linear;
    animation: pulsey 2s 1s infinite linear;
}

.c-image-info__video-ring {
    border-radius: 100%;
    width: 3rem;
    height: 3rem;
    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;
}

.c-image-info__video-ring svg {
    width: 2rem;
    height: 2rem;
    fill: #fff;
}

@-webkit-keyframes pulsey {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }

    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulsey {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }

    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

.c-image-info-slider {
    width: calc(100% + 18rem);
    left: -9rem;
    margin-bottom: -1.875rem;
    display: block;
    position: relative;
}

.c-image-info-slider__background {
    width: 100%;
    height: 21.875rem;
    border-radius: 10px;
}

.c-image-info-slider .swiper-pagination {
    display: none;
}

@media (min-width: 1000px) {
    .c-image-info-slider .swiper-pagination {
        display: block;
        padding-top: 5.625rem;
        position: relative;
        right: 9rem;
        width: calc(100% + 9rem);
        margin: 0 auto;
    }
}

.c-image-info-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #222;
}

.c-image-info .c-accordion {
    padding: 0;
}

.c-education-benefits {
    position: relative;
}

.c-education-benefits__main {
    position: relative;
}

.c-education-benefits__main-content {
    position: relative;
    z-index: 1;
}

@media (min-width: 700px) {
    .c-education-benefits__main-content {
        margin-top: -5rem;
    }
}

.c-education-benefits__main-content .l-layout__content-listing a {
    color: #222;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.c-education-benefits__main-content .l-layout__content-listing a:hover {
    color: #db0007;
}

.c-education-benefits__main-inner {
    padding: 3rem 0;
    background-color: #fff;
    position: relative;
    border-radius: 10px;
    z-index: 1;
}

@media (min-width: 700px) {
    .c-education-benefits__main-inner {
        padding: 3rem;
    }
}

.c-education-benefits__main-inner::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1173/image/2025/7/X7UWL_hat/hat.png);
    opacity: 0.05;
    width: 18.75rem;
    height: 18.75rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    right: 0;
    bottom: 10%;
    z-index: -1;
}

.c-education-benefits__image {
    height: 15.625rem;
    overflow: hidden;
    position: relative;
}

@media (min-width: 700px) {
    .c-education-benefits__image {
        height: 31.25rem;
    }
}

.c-education-benefits__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin: 3.75rem 0;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

@media (max-width: 375px) {
    .c-education-benefits__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
}

@media (min-width: 1000px) {
    .c-education-benefits__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

.c-education-benefits__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 1.875rem;
}

@media (min-width: 500px) {
    .c-education-benefits__list-item {
        width: 35%;
    }
}

.c-education-benefits__list-icon {
    width: 5.625rem;
    height: 11.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-education-benefits__list-content {
    font-weight: 700;
    text-align: center;
}

.c-education-benefits__list-header {
    padding-top: 1.875rem;
}

.c-education-benefits__list-header h3 {
    font-weight: 700;
    color: #db0007;
}

.c-blurb {
    position: relative;
    display: block;
    margin-top: 7.5rem;
}

.c-blurb.has-bg {
    background-color: #f9f9f9;
    margin-top: 0;
    padding: 5.625rem 0;
}

.c-blurb .swiper-pagination {
    position: relative;
}

@media (min-width: 1000px) {
    .c-blurb .swiper-pagination {
        text-align: left;
    }
}

.c-blurb .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #db0007;
}

.c-blurb .c-bubbles {
    position: absolute;
    right: 0;
    top: -18.75rem;
    width: 25rem;
    height: 25rem;
    z-index: 1;
    will-change: transform;
}

.c-blurb .c-bubbles svg {
    width: 100%;
    height: 100%;
}

.c-blurb-image {
    position: relative;
    margin-top: 7.5rem;
}

.c-blurb-image__background {
    width: 100%;
    height: 18.75rem;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

.c-blurb-image__background-wrapper {
    position: relative;
}

@media (max-width: 999px) {
    .c-blurb-image__background-wrapper {
        width: calc(100% + 18rem);
        left: -9rem;
        margin-top: 1.25rem;
    }
}

.c-blurb-image__background-wrapper:before {
    content: "";
    display: block;
    background-color: #db0007;
    width: 12.5rem;
    height: 12.5rem;
    position: absolute;
    top: -1.875rem;
    right: -1.875rem;
    border-radius: 10px;
}

.c-blurb-image__background-wrapper.-simple::before {
    display: none;
}

.c-blurb-image__background-wrapper.-simple .c-blurb-image__background {
    height: 15.625rem;
    margin-bottom: 1.875rem;
}

@media (min-width: 1000px) {
    .c-blurb-image__background {
        border-radius: 10px;
    }
}

@media (min-width: 1400px) {
    .c-blurb-image__background {
        height: 25rem;
    }
}

@media (min-width: 1000px) {
    #accommodation-scrollto {
        margin-bottom: 7.5rem;
    }
}

.c-blurb-slider {
    position: relative;
}

.c-blurb-slider__inner {
    margin-bottom: 5.625rem;
}

.c-blurb-slider__inner.-no-margin {
    margin-bottom: 0;
}

@media (min-width: 1000px) {
    .c-blurb-slider__main {
        overflow: visible;
    }
}

.c-blurb-slider__item {
    padding: 4.375rem 0;
}

.c-blurb-slider__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 1.875rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 1000px) {
    [data-page="university"] .c-blurb-slider__content {
        background-color: #e5e5e5;
    }
}

@media (min-width: 1000px) {
    .c-blurb-slider__content {
        -webkit-box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.03);
        box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.03);
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        text-align: left;
    }
}

.c-blurb-slider__content-image {
    position: relative;
    text-align: center;
}

@media (min-width: 1000px) {
    .c-blurb-slider__content-image {
        width: 30%;
        margin-right: 3.75rem;
    }
}

.c-blurb-slider__content-image img {
    width: 6.25rem;
}

.c-blurb-slider__content-text {
    width: 70%;
}

.c-blurb-slider__content-text.-center {
    text-align: center;
}

.c-blurb-slider__content-text h3 {
    margin-bottom: 0;
}

.c-blurb-slider__content-text p {
    font-weight: 400;
}

#corpjobs {
    margin-top: 7.5rem;
    position: relative;
}

@media (max-width: 1000px) {
    .mobile-mb-sm {
        margin-bottom: 3.75rem;
    }
}

.mt-bg {
    margin-top: 5.625rem;
}

.c-blurb__list {
    position: relative;
    display: block;
}

.c-blurb__list-item {
    padding: 1.25rem;
    background-color: #ffbc0d;
    border-radius: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}

.c-blurb__list-content {
    font-weight: 700;
    font-size: 1.3125rem;
    width: 70%;
}

.c-blurb__list-number {
    width: 30%;
    color: #db0007;
    font-size: 1.3125rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50px;
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.c-blurb__list-number::before {
    content: "";
    z-index: -1;
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #000;
}

[data-page="university"] [data-component="events"] .c-blurb {
    margin-top: 0;
}

@media (min-width: 1000px) {
    [data-page="university"] .swiper-slide-active .c-blurb-slider__content {
        background-color: #ffbc0d;
    }
}

.c-cta-bucket {
    position: relative;
    margin: 3.75rem 0;
}

.c-cta-bucket-header {
    position: relative;
    display: block;
    margin-bottom: 7.5rem;
}

.c-cta-bucket__main {
    background-color: #33353e;
    border-radius: 10px;
    padding: 1.875rem;
    text-align: center;
    margin-bottom: 7.5rem;
}

@media (min-width: 1000px) {
    .c-cta-bucket__main {
        margin-bottom: 0;
    }
}

.c-cta-bucket__background {
    width: 100%;
    height: 18.75rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.c-cta-bucket__background-wrapper {
    position: relative;
    margin-top: -5.625rem;
}

@media (min-width: 1400px) {
    .c-cta-bucket__background {
        height: 25rem;
    }
}

.c-map {
    position: relative;
    display: block;
}

.c-map__main {
    margin-top: 7.5rem;
}

.c-map__header {
    display: block;
    position: relative;
    margin-bottom: 3.75rem;
    padding-top: 3.75rem;
}

.c-map #map a {
    opacity: 0.6;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.c-map #map a:hover {
    opacity: 1;
}

.c-map-anchors__content {
    position: relative;
    margin-top: 3.75rem;
}

.c-map-anchors__content:last-of-type {
    margin-bottom: 3.75rem;
}

.c-map-anchors__content-header {
    border-bottom: 1px solid rgba(45, 45, 45, 0.2);
    margin-bottom: 1.875rem;
}

.c-map-anchors__content-header h2 {
    font-size: 1.3125rem;
}

.c-map-anchors__content-skip {
    font-size: 1rem;
    font-weight: 400;
    text-decoration: underline;
    color: #db0007;
    display: inline-block;
    margin-left: 1.25rem;
}

.c-map-anchors__content-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

.c-map-anchors__content-item {
    width: 50%;
    margin-bottom: 1.25rem;
}

@media (min-width: 1000px) {
    .c-map-anchors__content-item {
        width: 16%;
    }
}

.c-map-anchors__content-item a {
    color: #222;
    text-decoration: underline;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.c-map-anchors__content-item a:hover {
    color: #db0007;
}

.c-map-select {
    position: relative;
    display: block;
    margin: 7.5rem 0;
}

.c-map-select__header {
    margin-bottom: 3.75rem;
}

@media (min-width: 1000px) {
    .swiper-map__nav-slider {
        padding: 5rem 0;
    }
}

@media (min-width: 1000px) {
    .swiper-map__nav-slider .swiper-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px;
        gap: 20px;
    }
}

@media (min-width: 1000px) {
    .swiper-map__nav-item {
        width: auto !important;
        margin-bottom: 3.75rem;
        text-align: center;
    }
}

.swiper-map__nav-item--icon {
    text-align: center;
}

.swiper-map__nav-item--icon img {
    width: 12.5rem;
    height: 12.5rem;
}

.swiper-slide-active .swiper-map__nav-item--icon img {
    fill: #db0007;
}

.swiper-map__nav-item--icon svg {
    fill: #ffbc0d;
    cursor: pointer;
    width: 12.5rem;
    height: 12.5rem;
    transition:
        background-color 0.5s ease 0.15s,
        transform 0.45s cubic-bezier(0.17, 0.67, 0.3, 1.33),
        -webkit-transform 0.45s cubic-bezier(0.17, 0.67, 0.3, 1.33);
}

.swiper-slide-thumb-active .swiper-map__nav-item--icon svg {
    fill: #db0007;
}

.swiper-map__nav-item--icon svg:hover {
    -webkit-transform: translateZ(0) scale(1.1);
    transform: translateZ(0) scale(1.1);
    fill: #db0007;
}

.swiper-map__nav-item--icon span {
    font-weight: 700;
    display: block;
    margin-top: 1.875rem;
}

.swiper-map__main-wrapper {
    display: block;
}

@media (min-width: 1000px) {
    .swiper-map__main-slider {
        display: none;
    }
}

.swiper-map__main-header {
    background-color: #292929;
    color: #fff;
    padding: 1.875rem 3.75rem;
    border-radius: 10px 10px 0 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-map__main-header span {
    font-weight: 700;
    font-size: 1.3125rem;
}

.swiper-map__main-header-arrows {
    position: relative;
    display: block;
    width: 8.75rem;
}

.swiper-map__main-header-arrows div {
    background-color: #fff;
    border-radius: 50%;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.swiper-map__main-header-arrows div:hover {
    background-color: #ffbc0d;
}

.swiper-map__main-header-arrows div:after {
    color: #db0007;
    font-size: 1rem;
    font-weight: 700;
}

@media (min-width: 1000px) {
    .swiper-map__main-header {
        display: none;
    }
}

.swiper-map__main-body {
    background-color: #f9f9f9;
    padding: 1.875rem 3.75rem;
    border-radius: 0 0 10px 10px;
}

.c-cards {
    position: relative;
    padding-top: 5.625rem;
}

.c-cards canvas {
    position: absolute;
    top: 0;
    z-index: -1;
}

@media (min-width: 1000px) {
    .c-cards::after {
        content: "";
        top: 0;
        z-index: -999;
        right: 0;
        display: block;
        width: 100%;
        position: absolute;
        height: calc(100% + 15rem);
        background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1173/image/2025/7/9GDS2_white-long/white-long.svg);
        background-size: cover;
    }
}

.c-cards .l-layout__content-title {
    font-size: 1.3125rem;
    margin-bottom: 0.625rem;
}

.c-cards.-has-border {
    position: relative;
    border-top: 0.625rem solid #ffbc0d;
}

.c-cards.-has-border::before {
    content: "";
    display: block;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/Q1SQP_gooe/gooe.svg);
    width: 12.5rem;
    height: 6.25rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    left: 20%;
    z-index: 2;
    top: 0;
}

.c-cards__main {
    background-color: #fff;
    border-radius: 0.625rem;
    -webkit-box-shadow: 14px 13px 14px 4px rgba(0, 0, 0, 0.05098);
    box-shadow: 14px 13px 14px 4px rgba(0, 0, 0, 0.05098);
}

.c-cards__main-inner {
    padding: 1.25rem;
}

.c-cards__main-img {
    width: 100%;
    height: 6.25rem;
    margin-bottom: 1.875rem;
}

.c-cards__main-img img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
    -o-object-position: left;
    object-position: left;
}

.c-cards__layout-item {
    padding-bottom: 1.875rem;
}

.readmore__wrap {
    position: relative;
    overflow: hidden;
    -webkit-transition: height 0.2s ease-in;
    transition: height 0.2s ease-in;
}

.readmore__wrap:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    -webkit-transition: height 0.2s ease-in;
    transition: height 0.2s ease-in;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
    background-size: 100%;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.readmore__wrap--open:before {
    opacity: 0;
    height: 0;
}

.readmore__link {
    text-decoration: none;
    background-color: #f0f0f0;
    width: 100%;
    text-align: center;
    color: #000;
    font-weight: 700;
    border-radius: 0.9375rem;
    padding: 0.15625rem;
    display: inline-block;
    margin-top: 0;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.readmore__link:hover {
    background-color: #db0007;
    color: #fff;
}

.readmore__link--open {
    background-color: #db0007;
    color: #fff;
}

.readmore__link--open:focus {
    color: #fff;
}

.readmore__link--hidden {
    display: none !important;
}

.readmore__icon {
    display: inline-block;
    font-family: FontAwesome !important;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.readmore__icon:before {
    content: "\f107";
    padding-left: 10px;
    font-weight: 700;
}

.readmore__icon--open:before {
    content: "\f106";
    padding-left: 10px;
    font-weight: 700;
}

[data-component="mission"] {
    position: relative;
    z-index: 1;
}

.c-mission {
    position: relative;
    margin: 3.125rem 0;
}

.c-mission.-nologo::before {
    display: none;
}

@media (min-width: 1000px) {
    .c-mission {
        margin: 10rem 0;
    }
}

.c-mission:before {
    content: "";
    display: block;
    position: absolute;
    bottom: -10rem;
    left: 0;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1173/image/2025/7/43EWY_left-mcD/left-mcD.svg);
    width: 15.625rem;
    height: 15.625rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: -50px bottom;
    opacity: 0.4;
}

.c-mission .c-bubbles {
    position: absolute;
    right: 0;
    top: -18.75rem;
    width: 25rem;
    height: 25rem;
    will-change: transform;
}

.c-mission .c-bubbles svg {
    width: 100%;
    height: 100%;
}

.c-mission h3 {
    font-size: 1.9375rem;
}

.c-mission__grid-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.c-mission__grid-item {
    position: relative;
    width: 100%;
}

.c-mission__grid-item:nth-child(2) {
    margin: 0 3.75rem;
}

@media (min-width: 1000px) {
    .c-mission__grid-item:nth-child(2) {
        margin: 0 5rem;
    }
}

@media (max-width: 699px) {
    .c-mission__grid-item:nth-child(2) {
        margin: 0;
    }

    .c-mission__grid-item:nth-child(2) .c-mission__grid-image {
        border-radius: 0;
    }
}

.c-mission__grid-item:nth-child(2)::before {
    content: "";
    display: block;
    background-color: #db0007;
    position: absolute;
    width: 9.375rem;
    height: 9.375rem;
    top: -1.875rem;
    right: -1.875rem;
    border-radius: 5px;
}

@media (max-width: 999px) {
    [data-page="overview"] .c-mission__grid-item {
        display: none;
    }
}

@media (max-width: 999px) {
    .c-mission__grid-item:first-of-type {
        display: none;
    }
}

.c-mission__grid-item:first-of-type::before {
    content: "";
    display: block;
    background-color: #db0007;
    position: absolute;
    width: 9.375rem;
    height: 9.375rem;
    bottom: -1.875rem;
    right: -1.875rem;
    border-radius: 5px;
}

.c-mission__grid-item:first-of-type .c-mission__grid-image {
    border-radius: 0 10px 10px 0;
}

@media (max-width: 999px) {
    .c-mission__grid-item:last-of-type {
        display: none;
    }
}

.c-mission__grid-item:last-of-type::before {
    content: "";
    display: block;
    background-color: #db0007;
    position: absolute;
    width: 9.375rem;
    height: 1.875rem;
    bottom: -1.875rem;
    right: -1.875rem;
    border-radius: 0 0 0 10px;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.c-mission__grid-item:last-of-type .c-mission__grid-image {
    border-radius: 10px 0 0 10px;
}

.c-mission__grid-image {
    width: 100%;
    height: 15.625rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.c-values {
    position: relative;
}

@media (max-width: 1000px) {
    .c-values .c-blurb {
        margin-top: 0;
    }
}

@media (min-width: 999px) {
    .c-values {
        padding-top: 12.5rem;
    }
}

@media (max-width: 699px) {
    .c-values {
        padding-top: 0;
    }
}

@media (min-width: 999px) {
    .c-values::before {
        content: "";
        top: -3.75rem;
        z-index: -1;
        right: 0;
        display: block;
        width: 100%;
        position: absolute;
        height: 100%;
        background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1173/image/2025/7/3EY6I_long/long.svg);
        background-size: cover;
    }
}

.c-values__banner {
    display: block;
    background-color: #292929;
    padding: 1.875rem;
    position: relative;
}

.c-values__banner-content {
    width: 100%;
}

.c-values__banner svg {
    fill: #fff;
}

.c-values__banner::before {
    position: relative;
    content: "";
    margin: 0 auto;
    display: block;
    width: 12.5rem;
    height: 12.5rem;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1173/image/2025/7/LWVQC_logo-yellow/logo-yellow.png);
    background-size: contain;
    background-repeat: no-repeat;
}

@media (min-width: 1000px) {
    .c-values__banner::before {
        background-image: url("https://d21jvwj1c73d2e.cloudfront.net/oms/1173/image/2025/7/PX6M3_logo-white/logo-white.png");
        width: 18.75rem;
        height: 18.75rem;
        top: -12.5rem;
        z-index: -1;
        right: 0;
        left: 30px;
        position: absolute;
    }
}

@media (min-width: 1000px) {
    .c-values__banner-img svg {
        width: 18.75rem;
        height: 18.75rem;
    }
}

.c-values__banner .o-container {
    padding: 0;
}

@media (min-width: 700px) {
    .c-values__banner .o-container {
        padding: 0 7.5rem;
    }
}

.c-values__banner-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 1000px) {
    .c-values__banner-inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

@media (max-width: 999px) {
    .c-values__banner-img {
        margin-bottom: 1.875rem;
    }
}

.c-values__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3.75rem 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (min-width: 1000px) {
    .c-values__list-item {
        padding: 7.5rem 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

.c-values__list-item:last-of-type {
    padding-bottom: 11.875rem;
}

@media (max-width: 699px) {
    .c-values__list-item:last-of-type {
        padding-bottom: 3.75rem;
    }
}

.c-values__list-image {
    margin-bottom: 3.75rem;
    will-change: transform;
}

@media (min-width: 1000px) {
    .c-values__list-image {
        margin-bottom: 0;
        margin-right: 5.625rem;
        width: 25%;
        position: absolute;
        left: 9rem;
    }
}

.c-values__list-image img {
    display: block;
    height: 18.75rem;
}

@media (min-width: 1000px) {
    .c-values__list-image img {
        height: auto;
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.17, 0.67, 0.3, 1.33);
        transition: -webkit-transform 0.6s cubic-bezier(0.17, 0.67, 0.3, 1.33);
        transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.3, 1.33);
        transition:
            transform 0.6s cubic-bezier(0.17, 0.67, 0.3, 1.33),
            -webkit-transform 0.6s cubic-bezier(0.17, 0.67, 0.3, 1.33);
    }

    .c-values__list-image img.is-inview {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }
}

.c-values__list-content {
    width: 100%;
}

@media (min-width: 1000px) {
    .c-values__list-content {
        width: 60%;
    }
}

.c-values__list-content--header {
    font-weight: 700;
    opacity: 1;
    color: #ffbc0d;
    font-size: 3.75rem;
    text-transform: uppercase;
}

@media (min-width: 1000px) {
    .c-values__list-content--header {
        font-size: 6.25rem;
        color: #fff;
        text-shadow:
            1px 1px #000,
            -1px -1px #000;
    }

    @supports (-webkit-text-stroke: 1px black) {
        .c-values__list-content--header {
            color: transparent;
            -webkit-text-stroke: 1px #000;
            text-shadow: none;
        }
    }
}

.c-values .c-image-info {
    margin-top: 0;
}

@media (max-width: 999px) {
    .c-values .c-image-info {
        margin-bottom: 0;
        border-bottom: 5px solid #db0006;
    }
}

.c-values .c-image__background-wrap.-small,
.c-values .c-image__background-wrap.-video {
    width: 100%;
}

.c-values .c-image-info__content-logo {
    margin-bottom: 1.875rem;
}

.c-mission__grid {
    position: relative;
    padding-bottom: 2rem;
}

.c-image-box {
    position: relative;
    z-index: 1;
}

.c-image-box.-stripe {
    margin-top: 18.125rem;
}

@media (max-width: 999px) {
    [data-page="mission-values"] .c-image-box.-stripe {
        margin-top: 0;
    }
}

@media (max-width: 699px) {
    .c-image-box.-stripe {
        margin-top: 0;
    }
}

.c-image-box.-stripe::before {
    content: "";
    display: block;
    background-color: #ffbc0d;
    border-radius: 0 10px 0 0;
    width: 6.25rem;
    height: 6.25rem;
    position: absolute;
    left: 0;
    top: -10%;
}

@media (max-width: 699px) {
    .c-image-box.-stripe::before {
        display: none;
    }
}

.c-image-box__header {
    padding: 9.375rem 0;
}

.c-image-box__header-content {
    padding: 0 1.875rem;
}

.c-image-box-main__background {
    position: relative;
    overflow: hidden;
    left: -7vw;
    width: calc(100% + 14vw);
    height: 15rem;
}

.-full .c-image-box-main__background {
    width: calc(100% + 18rem);
    border-radius: 0;
}

@media (min-width: 500px) {
    .c-image-box-main__background {
        left: -10vw;
        width: calc(100% + 20vw);
    }
}

@media (min-width: 700px) {
    .c-image-box-main__background {
        left: -9rem;
        height: 28rem;
        width: calc(100% + 18rem);
    }
}

@media (min-width: 1000px) {
    .c-image-box-main__background {
        height: 45rem;
        width: calc(100% + 9rem);
        border-radius: 0 10px 0 0;
    }
}

.c-image-box-main__content {
    background-color: #ffb71c;
    padding: 3.125rem;
    position: relative;
    left: -7vw;
    width: calc(100% + 14vw);
    z-index: 1;
}

@media (min-width: 500px) {
    .c-image-box-main__content {
        left: -10vw;
        width: calc(100% + 20vw);
    }
}

@media (min-width: 700px) {
    .c-image-box-main__content {
        width: calc(100% + 18rem);
        left: -9rem;
    }
}

@media (min-width: 1000px) {
    .c-image-box-main__content {
        padding: 6.25rem;
        border-radius: 5px 0 0 5px;
    }
}

.c-image-box-main__cta {
    left: -7vw;
    width: calc(100% + 14vw);
    position: relative;
    padding: 1.875rem;
    background-color: #f9f9f9;
    text-align: center;
}

@media (min-width: 500px) {
    .c-image-box-main__cta {
        left: -10vw;
        width: calc(100% + 20vw);
        padding: 3.75rem;
    }
}

@media (min-width: 700px) {
    .c-image-box-main__cta {
        width: calc(100% + 18rem);
        left: -9rem;
    }
}

@media (min-width: 1000px) {
    .c-image-box-main__cta {
        width: calc(100% + 9rem);
        padding: 5.625rem;
        left: auto;
        left: initial;
    }
}

.c-image-box-main__cta a {
    margin: 0 auto;
}

.c-image-box-main.-has-bubbles {
    display: block;
    position: relative;
}

@media (min-width: 1000px) {
    .c-image-box-main.-has-bubbles {
        margin-bottom: -3rem;
        z-index: 9999;
        position: relative;
    }
}

.c-image-box-main.-has-bubbles::before {
    content: "";
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/KWRSV_bubbles/bubbles.svg);
    position: absolute;
    left: 1.875rem;
    top: -7.5rem;
    background-size: contain;
    width: 28.125rem;
    height: 28.125rem;
}

@media (max-width: 999px) {
    .c-image-box .hide-mobile {
        display: none;
    }
}

.c-footer {
    position: relative;
    height: auto;
    padding-top: 1rem;
    overflow: hidden;
}

@media (min-width: 1000px) {
    .c-footer {
        padding-top: 0;
    }
}

.c-footer__content {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 6rem;
    color: #222;
    z-index: 1;
}

.c-footer__content::before {
    content: "";
    opacity: 0.5;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(182, 184, 185, 0.29);
    height: 1px;
    width: calc(100% - 18rem);
    margin: 0 auto;
}

@media (min-width: 1000px) {
    .c-footer__content {
        height: 9rem;
    }
}

.c-footer__link-info {
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 700px) {
    .c-footer__link-info {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

.c-footer__link-info span {
    font-size: 0.9375rem;
    font-weight: 700;
}

.c-footer__link-info p {
    margin: 0 auto;
    font-size: 0.9375rem;
}

.c-footer__link-info a {
    color: #222;
}

.c-footer__link-info a:hover {
    color: #db0007;
}

.c-footer__link-info>div {
    padding: 1.3rem 0;
}

.c-footer__info {
    position: relative;
    height: 100%;
    display: block;
    padding: 2rem 0;
}

@media (min-width: 999px) {
    .c-footer__info {
        padding: 0 9rem;
    }
}

.c-footer__info-layout {
    padding: 0;
}

@media (max-width: 499px) {
    .c-footer__info-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        padding-bottom: 1.875rem;
    }
}

@media (min-width: 700px) {
    .c-footer__info-layout {
        padding: 0 1rem;
    }
}

@media (min-width: 1000px) {
    .c-footer__info-layout {
        padding: 1rem 0;
    }
}

@media (max-width: 999px) {
    .c-footer__info .o-container-fluid {
        padding: 0 9rem;
    }
}

@media (max-width: 699px) {
    .c-footer__info .o-container-fluid {
        padding: 0 7vw;
    }
}

.c-footer__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 1.25rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 1000px) {
    .c-footer__media {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

.c-footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 999px) {
    .c-footer__social {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.c-footer__social__item {
    margin-left: 1rem;
}

.c-footer__social__item:first-of-type {
    margin-left: 0;
}

.c-footer__social-link {
    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;
    position: relative;
    text-align: center;
    padding: 0.5rem;
    width: 3rem;
    height: 3rem;
}

.c-footer__social-link.-twitter:hover svg {
    fill: #1da1f2;
}

.c-footer__social-link.-linkedin:hover svg {
    fill: #0077b5;
}

.c-footer__social-link.-facebook:hover svg {
    fill: #3b5998;
}

.c-footer__social-link.-snap:hover svg {
    fill: #ffbc0d;
}

.c-footer__social-link.-youtube:hover svg {
    fill: #cd201f;
}

.c-footer__social-link.-instagram:hover svg {
    fill: #e1306c;
}

.c-footer__social-icon {
    width: 0.88rem;
    height: 0.88rem;
    fill: #222;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.c-footer__eeo {
    color: #222;
    margin: 2rem 0;
    font-size: 12px;
}

.c-footer__eeo p {
    margin-bottom: 0.625rem;
}

.c-footer__eeo a {
    color: #db0007;
}

.c-footer__copy-right {
    position: relative;
    color: #222;
    padding: 2rem 0;
    font-size: 14px;
}

.c-footer__copy-right:before {
    content: "";
    opacity: 0.5;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    background-color: rgba(182, 184, 185, 0.29);
    height: 1px;
    width: calc(100%);
    margin: 0 auto;
}

.c-footer__copy-right p {
    font-size: 14px;
}

.c-footer__copy-right ul {
    font-size: 14px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (min-width: 1000px) {
    .c-footer__copy-right ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.c-footer__copy-right-layout {
    padding: 0;
}

@media (min-width: 700px) {
    .c-footer__copy-right-layout {
        padding: 0 1rem;
    }
}

@media (min-width: 1000px) {
    .c-footer__copy-right-layout {
        padding: 0;
    }
}

.c-footer__copy-right a {
    color: #292929;
}

.c-footer__copy-right--reserved {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1.875rem;
}

@media (min-width: 1000px) {
    .c-footer__copy-right--reserved {
        text-align: right;
        -webkit-box-pack: right;
        -ms-flex-pack: right;
        justify-content: right;
        margin-top: 0;
    }
}

.c-footer__copy-right--reserved img,
.c-footer__copy-right--reserved svg {
    width: 1.875rem;
    height: 1.875rem;
    margin-right: 0.625rem;
}

@media (min-width: 1000px) {
    .c-footer__license {
        width: 75%;
    }
}

@media (min-width: 1000px) {
    .c-footer__site-by {
        width: 25%;
    }
}

.c-footer__external-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

@media (min-width: 700px) {
    .c-footer__external-links {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
    }
}

.c-footer__external-links a {
    margin-bottom: 1.875rem;
    color: #222;
}

@media (min-width: 700px) {
    .c-footer__external-links a {
        margin: 0 0.3125rem;
    }
}

.c-footer__external-links a img {
    width: 118px;
}

.c-footer__external-links .o-button {
    border-radius: 5px;
    height: 37px;
}

.c-footer__external-links .o-button__inner {
    height: 100%;
}

.c-footer__external-links .o-button__icon {
    width: 1.5625rem;
    height: 1.5625rem;
}

.c-footer__external-links .o-button__label {
    font-size: 0.75rem;
}

@media (max-width: 699px) {
    .c-footer__external-links .double {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

@media (max-width: 699px) {
    .c-footer__external-links .double a:first-of-type {
        margin-right: 0.625rem;
    }
}

@media (min-width: 1000px) {
    .c-footer__external-links .double {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .c-footer__external-links .double:before {
        content: "";
        display: inline-block;
        height: 100%;
        width: 1px;
        background: rgba(182, 184, 185, 0.29);
        position: relative;
        margin: 0 1rem;
    }
}

.__back-to {
    display: none;
}

@media (min-width: 1000px) {
    .__back-to {
        opacity: 0;
        top: -40%;
        right: 0;
        bottom: 0;
        width: 9rem;
        height: 20rem;
        position: absolute;
        display: block;
        cursor: pointer;
    }

    .__back-to .__back-to-link {
        width: 100%;
        height: 9rem;
        position: absolute;
        bottom: 5rem;
        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;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .__back-to .__back-to-link:hover .__back-to-icon {
        -webkit-transform: translateX(-15px) scale(0.9);
        transform: translateX(-15px) scale(0.9);
    }

    .__back-to .__back-to-link:hover .__back-to-icon svg {
        fill: #db0007;
    }

    .__back-to .__back-to-link:hover .__back-to-label {
        opacity: 0.7;
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    .__back-to .__back-to-icon {
        position: relative;
        pointer-events: none;
        -webkit-transition:
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        transition:
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        transition:
            transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease-in-out;
        transition:
            transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        width: 25px;
        height: 43px;
        left: -1.3rem;
    }

    .__back-to .__back-to-icon svg {
        fill: #222;
        width: 25px;
        height: 43px;
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .__back-to .__back-to-label {
        color: #222;
        pointer-events: none;
        font-size: 12px;
        margin: 1px 0 0;
        white-space: nowrap;
        line-height: 43px;
        -webkit-transition:
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        transition:
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
        transition:
            transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease-in-out;
        transition:
            transform 1.2s cubic-bezier(0.77, 0, 0.175, 1),
            opacity 0.3s ease-in-out,
            -webkit-transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    }
}

.c-language {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    padding: 0.625rem;
    background-color: #db0007;
    color: #fff;
    border-radius: 0 5px 0 0;
    font-size: 0.75rem;
}

.c-language a {
    color: #fff;
    font-weight: 700;
}

.c-language a.selected {
    color: #ffbc0d;
}

@media (min-width: 1000px) {
    [data-namespace="interior"][data-page="faq"] .c-main-hero__background .o-background {
        background-size: 40%;
    }
}

[data-namespace="interior"][data-page="faq"] .button-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

[data-namespace="interior"][data-page="faq"] .button-grid>a {
    width: 100%;
}

@media (min-width: 700px) {
    [data-namespace="interior"][data-page="faq"] .button-grid>a {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: calc(33% - 6px);
        margin: 6px;
    }
}

@media (min-width: 1000px) {
    [data-namespace="interior"][data-page="corportate"] .c-main-hero__background .o-background {
        background-size: contain;
    }
}

[data-namespace="interior"] .c-main-hero__background {
    width: 100%;
    height: calc(50% - 3rem);
    top: auto;
    top: initial;
    bottom: 0;
}

@media (min-width: 1000px) {
    [data-namespace="interior"] .c-main-hero__background {
        width: 55%;
        right: 0;
        left: auto;
        left: initial;
        height: 100%;
        height: calc(100% - 12rem);
    }
}

@media (min-width: 1600px) {
    [data-namespace="interior"] .c-main-hero__background {
        width: 40%;
    }
}

[data-namespace="interior"] .c-main-hero__background .o-background {
    background-position: center center;
    background-size: 150px;
}

@media (min-width: 1000px) {
    [data-namespace="interior"] .c-main-hero__background .o-background {
        background-size: 60%;
    }
}

[data-namespace="interior"] .c-main-hero__title {
    color: #222;
}

[data-namespace="interior"] .c-main-hero__title-bg {
    background-color: #ffbc0d;
}

[data-namespace="interior"] .c-main-hero__subtitle {
    margin-top: 1.875rem;
    background-color: #ffbc0d;
    position: relative;
    border-radius: 5px;
    width: 400px;
    margin: 2rem auto;
}

[data-namespace="interior"] .c-main-hero__subtitle::after {
    content: "";
    display: block;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/Q1SQP_gooe/gooe.svg);
    width: 5rem;
    height: 1.25rem;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    right: 20%;
    bottom: -1.25rem;
    z-index: 1;
}

[data-namespace="interior"] .c-main-hero__subtitle-content {
    color: #222;
    padding: 0.625rem;
}

@media (min-width: 1000px) {
    [data-namespace="interior"] .c-main-hero__subtitle-content {
        text-align: left;
    }
}

[data-namespace="interior"] .c-main-hero__subtitle-content p {
    margin: 0 auto;
    text-align: center;
}

[data-namespace="interior"] .scroll-text {
    color: #222;
}

[data-namespace="interior"] .scroll-arrow svg {
    fill: #222;
}

[data-namespace="crm-jobs"] .c-main-hero__inner {
    padding-top: 0;
}

[data-namespace="crm-jobs"] .c-main-hero__title-bg {
    background-color: #ffbc0d;
}

[data-namespace="crm-jobs"] .c-main-hero__content {
    text-align: center;
}

[data-namespace="crm-jobs"] .c-main-hero {
    height: 20vh;
    min-height: 360px;
}

@media (min-width: 1000px) {
    [data-namespace="crm-jobs"] .c-main-hero {
        min-height: 30vh;
        height: 400px;
    }
}

[data-component="blurb"] .c-mission__grid {
    margin-top: 7.5rem;
}

[data-component="downloads"] .c-accordion {
    padding-top: 0;
}

[data-component="downloads"] .c-download__content h3 {
    color: #db0007;
    font-size: 1.75rem;
}

[data-page="corportate"] .c-cta-banner {
    margin-top: 7.5rem;
}

[data-page="corportate"] .c-cta-banner .c-bubbles {
    right: 0;
}

@media (max-width: 699px) {
    [data-page="corportate"] [data-component="benefits-perks"] .c-accordion {
        padding: 0;
    }
}

@media (max-width: 699px) {
    [data-page="corportate"] [data-component="blurb"] .c-blurb {
        margin-top: 3.75rem;
    }
}

@media (max-width: 699px) {
    [data-page="corportate"] [data-component="our-mission"] {
        margin-top: 5.625rem;
    }
}

@media (max-width: 699px) {
    [data-page="corportate"] [data-component="image-info"] {
        margin-top: 5.625rem;
    }
}

@media (max-width: 699px) {
    [data-page="corportate"] [data-component="blurb"] .c-blurb-image__background-wrapper {
        margin-top: 1.25rem;
    }
}

@media (max-width: 699px) {
    [data-page="corportate"] [data-component="blurb"] .c-blurb__layout-item {
        margin-top: 1.875rem;
    }
}

[data-page="mission-values"] [data-component="diversity"] {
    margin-top: 13.75rem;
}

@media (max-width: 1000px) {

    [data-page="mission-values"] [data-component="blurb-image"] .c-blurb-image,
    [data-page="mission-values"] [data-component="blurb-image"] .c-blurb-image__background-wrapper {
        margin-top: 0;
    }

    [data-page="mission-values"] [data-component="blurb-image"] .c-blurb-image__content-logo {
        margin-top: 3.75rem;
    }
}

@media (max-width: 1000px) {
    .-mobile-flip {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-flow: column-reverse !important;
        flex-flow: column-reverse !important;
    }
}

.button-grid__content {
    max-width: 600px;
}

[data-page="ebn"] .c-blurb-image__background-wrapper {
    display: none;
}

@media (min-width: 1000px) {
    [data-page="ebn"] .c-blurb-image__background-wrapper {
        display: block;
    }
}

.u-1\/1 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/1\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/1\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/1\@large {
        width: 100% !important;
    }
}

.u-1\/2 {
    width: 50% !important;
}

.u-2\/2 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/2\@small {
        width: 50% !important;
    }

    .u-2\/2\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/2\@medium {
        width: 50% !important;
    }

    .u-2\/2\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/2\@large {
        width: 50% !important;
    }

    .u-2\/2\@large {
        width: 100% !important;
    }
}

.u-1\/3 {
    width: 33.33333% !important;
}

.u-2\/3 {
    width: 66.66667% !important;
}

.u-3\/3 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/3\@small {
        width: 33.33333% !important;
    }

    .u-2\/3\@small {
        width: 66.66667% !important;
    }

    .u-3\/3\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/3\@medium {
        width: 33.33333% !important;
    }

    .u-2\/3\@medium {
        width: 66.66667% !important;
    }

    .u-3\/3\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/3\@large {
        width: 33.33333% !important;
    }

    .u-2\/3\@large {
        width: 66.66667% !important;
    }

    .u-3\/3\@large {
        width: 100% !important;
    }
}

.u-1\/4 {
    width: 25% !important;
}

.u-2\/4 {
    width: 50% !important;
}

.u-3\/4 {
    width: 75% !important;
}

.u-4\/4 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/4\@small {
        width: 25% !important;
    }

    .u-2\/4\@small {
        width: 50% !important;
    }

    .u-3\/4\@small {
        width: 75% !important;
    }

    .u-4\/4\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/4\@medium {
        width: 25% !important;
    }

    .u-2\/4\@medium {
        width: 50% !important;
    }

    .u-3\/4\@medium {
        width: 75% !important;
    }

    .u-4\/4\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/4\@large {
        width: 25% !important;
    }

    .u-2\/4\@large {
        width: 50% !important;
    }

    .u-3\/4\@large {
        width: 75% !important;
    }

    .u-4\/4\@large {
        width: 100% !important;
    }
}

.u-1\/5 {
    width: 20% !important;
}

.u-2\/5 {
    width: 40% !important;
}

.u-3\/5 {
    width: 60% !important;
}

.u-4\/5 {
    width: 80% !important;
}

.u-5\/5 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/5\@small {
        width: 20% !important;
    }

    .u-2\/5\@small {
        width: 40% !important;
    }

    .u-3\/5\@small {
        width: 60% !important;
    }

    .u-4\/5\@small {
        width: 80% !important;
    }

    .u-5\/5\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/5\@medium {
        width: 20% !important;
    }

    .u-2\/5\@medium {
        width: 40% !important;
    }

    .u-3\/5\@medium {
        width: 60% !important;
    }

    .u-4\/5\@medium {
        width: 80% !important;
    }

    .u-5\/5\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/5\@large {
        width: 20% !important;
    }

    .u-2\/5\@large {
        width: 40% !important;
    }

    .u-3\/5\@large {
        width: 60% !important;
    }

    .u-4\/5\@large {
        width: 80% !important;
    }

    .u-5\/5\@large {
        width: 100% !important;
    }
}

.u-1\/6 {
    width: 16.66667% !important;
}

.u-2\/6 {
    width: 33.33333% !important;
}

.u-3\/6 {
    width: 50% !important;
}

.u-4\/6 {
    width: 66.66667% !important;
}

.u-5\/6 {
    width: 83.33333% !important;
}

.u-6\/6 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/6\@small {
        width: 16.66667% !important;
    }

    .u-2\/6\@small {
        width: 33.33333% !important;
    }

    .u-3\/6\@small {
        width: 50% !important;
    }

    .u-4\/6\@small {
        width: 66.66667% !important;
    }

    .u-5\/6\@small {
        width: 83.33333% !important;
    }

    .u-6\/6\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/6\@medium {
        width: 16.66667% !important;
    }

    .u-2\/6\@medium {
        width: 33.33333% !important;
    }

    .u-3\/6\@medium {
        width: 50% !important;
    }

    .u-4\/6\@medium {
        width: 66.66667% !important;
    }

    .u-5\/6\@medium {
        width: 83.33333% !important;
    }

    .u-6\/6\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/6\@large {
        width: 16.66667% !important;
    }

    .u-2\/6\@large {
        width: 33.33333% !important;
    }

    .u-3\/6\@large {
        width: 50% !important;
    }

    .u-4\/6\@large {
        width: 66.66667% !important;
    }

    .u-5\/6\@large {
        width: 83.33333% !important;
    }

    .u-6\/6\@large {
        width: 100% !important;
    }
}

.u-1\/7 {
    width: 14.28571% !important;
}

.u-2\/7 {
    width: 28.57143% !important;
}

.u-3\/7 {
    width: 42.85714% !important;
}

.u-4\/7 {
    width: 57.14286% !important;
}

.u-5\/7 {
    width: 71.42857% !important;
}

.u-6\/7 {
    width: 85.71429% !important;
}

.u-7\/7 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/7\@small {
        width: 14.28571% !important;
    }

    .u-2\/7\@small {
        width: 28.57143% !important;
    }

    .u-3\/7\@small {
        width: 42.85714% !important;
    }

    .u-4\/7\@small {
        width: 57.14286% !important;
    }

    .u-5\/7\@small {
        width: 71.42857% !important;
    }

    .u-6\/7\@small {
        width: 85.71429% !important;
    }

    .u-7\/7\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/7\@medium {
        width: 14.28571% !important;
    }

    .u-2\/7\@medium {
        width: 28.57143% !important;
    }

    .u-3\/7\@medium {
        width: 42.85714% !important;
    }

    .u-4\/7\@medium {
        width: 57.14286% !important;
    }

    .u-5\/7\@medium {
        width: 71.42857% !important;
    }

    .u-6\/7\@medium {
        width: 85.71429% !important;
    }

    .u-7\/7\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/7\@large {
        width: 14.28571% !important;
    }

    .u-2\/7\@large {
        width: 28.57143% !important;
    }

    .u-3\/7\@large {
        width: 42.85714% !important;
    }

    .u-4\/7\@large {
        width: 57.14286% !important;
    }

    .u-5\/7\@large {
        width: 71.42857% !important;
    }

    .u-6\/7\@large {
        width: 85.71429% !important;
    }

    .u-7\/7\@large {
        width: 100% !important;
    }
}

.u-1\/8 {
    width: 12.5% !important;
}

.u-2\/8 {
    width: 25% !important;
}

.u-3\/8 {
    width: 37.5% !important;
}

.u-4\/8 {
    width: 50% !important;
}

.u-5\/8 {
    width: 62.5% !important;
}

.u-6\/8 {
    width: 75% !important;
}

.u-7\/8 {
    width: 87.5% !important;
}

.u-8\/8 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/8\@small {
        width: 12.5% !important;
    }

    .u-2\/8\@small {
        width: 25% !important;
    }

    .u-3\/8\@small {
        width: 37.5% !important;
    }

    .u-4\/8\@small {
        width: 50% !important;
    }

    .u-5\/8\@small {
        width: 62.5% !important;
    }

    .u-6\/8\@small {
        width: 75% !important;
    }

    .u-7\/8\@small {
        width: 87.5% !important;
    }

    .u-8\/8\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/8\@medium {
        width: 12.5% !important;
    }

    .u-2\/8\@medium {
        width: 25% !important;
    }

    .u-3\/8\@medium {
        width: 37.5% !important;
    }

    .u-4\/8\@medium {
        width: 50% !important;
    }

    .u-5\/8\@medium {
        width: 62.5% !important;
    }

    .u-6\/8\@medium {
        width: 75% !important;
    }

    .u-7\/8\@medium {
        width: 87.5% !important;
    }

    .u-8\/8\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/8\@large {
        width: 12.5% !important;
    }

    .u-2\/8\@large {
        width: 25% !important;
    }

    .u-3\/8\@large {
        width: 37.5% !important;
    }

    .u-4\/8\@large {
        width: 50% !important;
    }

    .u-5\/8\@large {
        width: 62.5% !important;
    }

    .u-6\/8\@large {
        width: 75% !important;
    }

    .u-7\/8\@large {
        width: 87.5% !important;
    }

    .u-8\/8\@large {
        width: 100% !important;
    }
}

.u-1\/9 {
    width: 11.11111% !important;
}

.u-2\/9 {
    width: 22.22222% !important;
}

.u-3\/9 {
    width: 33.33333% !important;
}

.u-4\/9 {
    width: 44.44444% !important;
}

.u-5\/9 {
    width: 55.55556% !important;
}

.u-6\/9 {
    width: 66.66667% !important;
}

.u-7\/9 {
    width: 77.77778% !important;
}

.u-8\/9 {
    width: 88.88889% !important;
}

.u-9\/9 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/9\@small {
        width: 11.11111% !important;
    }

    .u-2\/9\@small {
        width: 22.22222% !important;
    }

    .u-3\/9\@small {
        width: 33.33333% !important;
    }

    .u-4\/9\@small {
        width: 44.44444% !important;
    }

    .u-5\/9\@small {
        width: 55.55556% !important;
    }

    .u-6\/9\@small {
        width: 66.66667% !important;
    }

    .u-7\/9\@small {
        width: 77.77778% !important;
    }

    .u-8\/9\@small {
        width: 88.88889% !important;
    }

    .u-9\/9\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/9\@medium {
        width: 11.11111% !important;
    }

    .u-2\/9\@medium {
        width: 22.22222% !important;
    }

    .u-3\/9\@medium {
        width: 33.33333% !important;
    }

    .u-4\/9\@medium {
        width: 44.44444% !important;
    }

    .u-5\/9\@medium {
        width: 55.55556% !important;
    }

    .u-6\/9\@medium {
        width: 66.66667% !important;
    }

    .u-7\/9\@medium {
        width: 77.77778% !important;
    }

    .u-8\/9\@medium {
        width: 88.88889% !important;
    }

    .u-9\/9\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/9\@large {
        width: 11.11111% !important;
    }

    .u-2\/9\@large {
        width: 22.22222% !important;
    }

    .u-3\/9\@large {
        width: 33.33333% !important;
    }

    .u-4\/9\@large {
        width: 44.44444% !important;
    }

    .u-5\/9\@large {
        width: 55.55556% !important;
    }

    .u-6\/9\@large {
        width: 66.66667% !important;
    }

    .u-7\/9\@large {
        width: 77.77778% !important;
    }

    .u-8\/9\@large {
        width: 88.88889% !important;
    }

    .u-9\/9\@large {
        width: 100% !important;
    }
}

.u-1\/10 {
    width: 10% !important;
}

.u-2\/10 {
    width: 20% !important;
}

.u-3\/10 {
    width: 30% !important;
}

.u-4\/10 {
    width: 40% !important;
}

.u-5\/10 {
    width: 50% !important;
}

.u-6\/10 {
    width: 60% !important;
}

.u-7\/10 {
    width: 70% !important;
}

.u-8\/10 {
    width: 80% !important;
}

.u-9\/10 {
    width: 90% !important;
}

.u-10\/10 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/10\@small {
        width: 10% !important;
    }

    .u-2\/10\@small {
        width: 20% !important;
    }

    .u-3\/10\@small {
        width: 30% !important;
    }

    .u-4\/10\@small {
        width: 40% !important;
    }

    .u-5\/10\@small {
        width: 50% !important;
    }

    .u-6\/10\@small {
        width: 60% !important;
    }

    .u-7\/10\@small {
        width: 70% !important;
    }

    .u-8\/10\@small {
        width: 80% !important;
    }

    .u-9\/10\@small {
        width: 90% !important;
    }

    .u-10\/10\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/10\@medium {
        width: 10% !important;
    }

    .u-2\/10\@medium {
        width: 20% !important;
    }

    .u-3\/10\@medium {
        width: 30% !important;
    }

    .u-4\/10\@medium {
        width: 40% !important;
    }

    .u-5\/10\@medium {
        width: 50% !important;
    }

    .u-6\/10\@medium {
        width: 60% !important;
    }

    .u-7\/10\@medium {
        width: 70% !important;
    }

    .u-8\/10\@medium {
        width: 80% !important;
    }

    .u-9\/10\@medium {
        width: 90% !important;
    }

    .u-10\/10\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/10\@large {
        width: 10% !important;
    }

    .u-2\/10\@large {
        width: 20% !important;
    }

    .u-3\/10\@large {
        width: 30% !important;
    }

    .u-4\/10\@large {
        width: 40% !important;
    }

    .u-5\/10\@large {
        width: 50% !important;
    }

    .u-6\/10\@large {
        width: 60% !important;
    }

    .u-7\/10\@large {
        width: 70% !important;
    }

    .u-8\/10\@large {
        width: 80% !important;
    }

    .u-9\/10\@large {
        width: 90% !important;
    }

    .u-10\/10\@large {
        width: 100% !important;
    }
}

.u-1\/11 {
    width: 9.09091% !important;
}

.u-2\/11 {
    width: 18.18182% !important;
}

.u-3\/11 {
    width: 27.27273% !important;
}

.u-4\/11 {
    width: 36.36364% !important;
}

.u-5\/11 {
    width: 45.45455% !important;
}

.u-6\/11 {
    width: 54.54545% !important;
}

.u-7\/11 {
    width: 63.63636% !important;
}

.u-8\/11 {
    width: 72.72727% !important;
}

.u-9\/11 {
    width: 81.81818% !important;
}

.u-10\/11 {
    width: 90.90909% !important;
}

.u-11\/11 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/11\@small {
        width: 9.09091% !important;
    }

    .u-2\/11\@small {
        width: 18.18182% !important;
    }

    .u-3\/11\@small {
        width: 27.27273% !important;
    }

    .u-4\/11\@small {
        width: 36.36364% !important;
    }

    .u-5\/11\@small {
        width: 45.45455% !important;
    }

    .u-6\/11\@small {
        width: 54.54545% !important;
    }

    .u-7\/11\@small {
        width: 63.63636% !important;
    }

    .u-8\/11\@small {
        width: 72.72727% !important;
    }

    .u-9\/11\@small {
        width: 81.81818% !important;
    }

    .u-10\/11\@small {
        width: 90.90909% !important;
    }

    .u-11\/11\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/11\@medium {
        width: 9.09091% !important;
    }

    .u-2\/11\@medium {
        width: 18.18182% !important;
    }

    .u-3\/11\@medium {
        width: 27.27273% !important;
    }

    .u-4\/11\@medium {
        width: 36.36364% !important;
    }

    .u-5\/11\@medium {
        width: 45.45455% !important;
    }

    .u-6\/11\@medium {
        width: 54.54545% !important;
    }

    .u-7\/11\@medium {
        width: 63.63636% !important;
    }

    .u-8\/11\@medium {
        width: 72.72727% !important;
    }

    .u-9\/11\@medium {
        width: 81.81818% !important;
    }

    .u-10\/11\@medium {
        width: 90.90909% !important;
    }

    .u-11\/11\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/11\@large {
        width: 9.09091% !important;
    }

    .u-2\/11\@large {
        width: 18.18182% !important;
    }

    .u-3\/11\@large {
        width: 27.27273% !important;
    }

    .u-4\/11\@large {
        width: 36.36364% !important;
    }

    .u-5\/11\@large {
        width: 45.45455% !important;
    }

    .u-6\/11\@large {
        width: 54.54545% !important;
    }

    .u-7\/11\@large {
        width: 63.63636% !important;
    }

    .u-8\/11\@large {
        width: 72.72727% !important;
    }

    .u-9\/11\@large {
        width: 81.81818% !important;
    }

    .u-10\/11\@large {
        width: 90.90909% !important;
    }

    .u-11\/11\@large {
        width: 100% !important;
    }
}

.u-1\/12 {
    width: 8.33333% !important;
}

.u-2\/12 {
    width: 16.66667% !important;
}

.u-3\/12 {
    width: 25% !important;
}

.u-4\/12 {
    width: 33.33333% !important;
}

.u-5\/12 {
    width: 41.66667% !important;
}

.u-6\/12 {
    width: 50% !important;
}

.u-7\/12 {
    width: 58.33333% !important;
}

.u-8\/12 {
    width: 66.66667% !important;
}

.u-9\/12 {
    width: 75% !important;
}

.u-10\/12 {
    width: 83.33333% !important;
}

.u-11\/12 {
    width: 91.66667% !important;
}

.u-12\/12 {
    width: 100% !important;
}

@media only screen and (min-width: 700px) {
    .u-1\/12\@small {
        width: 8.33333% !important;
    }

    .u-2\/12\@small {
        width: 16.66667% !important;
    }

    .u-3\/12\@small {
        width: 25% !important;
    }

    .u-4\/12\@small {
        width: 33.33333% !important;
    }

    .u-5\/12\@small {
        width: 41.66667% !important;
    }

    .u-6\/12\@small {
        width: 50% !important;
    }

    .u-7\/12\@small {
        width: 58.33333% !important;
    }

    .u-8\/12\@small {
        width: 66.66667% !important;
    }

    .u-9\/12\@small {
        width: 75% !important;
    }

    .u-10\/12\@small {
        width: 83.33333% !important;
    }

    .u-11\/12\@small {
        width: 91.66667% !important;
    }

    .u-12\/12\@small {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1000px) {
    .u-1\/12\@medium {
        width: 8.33333% !important;
    }

    .u-2\/12\@medium {
        width: 16.66667% !important;
    }

    .u-3\/12\@medium {
        width: 25% !important;
    }

    .u-4\/12\@medium {
        width: 33.33333% !important;
    }

    .u-5\/12\@medium {
        width: 41.66667% !important;
    }

    .u-6\/12\@medium {
        width: 50% !important;
    }

    .u-7\/12\@medium {
        width: 58.33333% !important;
    }

    .u-8\/12\@medium {
        width: 66.66667% !important;
    }

    .u-9\/12\@medium {
        width: 75% !important;
    }

    .u-10\/12\@medium {
        width: 83.33333% !important;
    }

    .u-11\/12\@medium {
        width: 91.66667% !important;
    }

    .u-12\/12\@medium {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    .u-1\/12\@large {
        width: 8.33333% !important;
    }

    .u-2\/12\@large {
        width: 16.66667% !important;
    }

    .u-3\/12\@large {
        width: 25% !important;
    }

    .u-4\/12\@large {
        width: 33.33333% !important;
    }

    .u-5\/12\@large {
        width: 41.66667% !important;
    }

    .u-6\/12\@large {
        width: 50% !important;
    }

    .u-7\/12\@large {
        width: 58.33333% !important;
    }

    .u-8\/12\@large {
        width: 66.66667% !important;
    }

    .u-9\/12\@large {
        width: 75% !important;
    }

    .u-10\/12\@large {
        width: 83.33333% !important;
    }

    .u-11\/12\@large {
        width: 91.66667% !important;
    }

    .u-12\/12\@large {
        width: 100% !important;
    }
}

.u-float-left {
    float: left !important;
}

.u-float-right {
    float: right !important;
}

.u-text-center {
    text-align: center !important;
}

.u-text-left {
    text-align: left !important;
}

.u-text-right {
    text-align: right !important;
}

.u-align-baseline {
    vertical-align: baseline !important;
}

.u-align-bottom {
    vertical-align: bottom !important;
}

.u-align-middle {
    vertical-align: middle !important;
}

.u-align-top {
    vertical-align: top !important;
}

.u-vertical-center {
    font-size: 0;
}

.u-vertical-center::before {
    display: inline-block;
    height: 100%;
    content: "";
    vertical-align: middle;
}

.u-vertical-center>* {
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
}

.u-anime {
    -webkit-transform: translateY(-190px);
    transform: translateY(-190px);
    -webkit-transition:
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
    transition:
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
    transition:
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s,
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
    transition:
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s,
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s;
    opacity: 0;
}

.is-loaded .u-anime {
    opacity: 1;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.is-loaded .u-anime.-delay-1 {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.is-loaded .u-anime.-delay-2 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.is-loaded .u-anime.-delay-3 {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.is-loaded .u-anime.-delay-4 {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.is-loaded .u-anime.-delay-5 {
    -webkit-transition-delay: 1.15s;
    transition-delay: 1.15s;
}

[aria-busy="true"] {
    cursor: progress;
}

[aria-controls] {
    cursor: pointer;
}

[aria-disabled] {
    cursor: default;
}

.is-visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.is-invisible {
    visibility: hidden !important;
    opacity: 0 !important;
}

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

@media not print {
    .is-hidden\@screen {
        display: none !important;
        visibility: hidden !important;
    }
}

@media print {
    .is-hidden\@print {
        display: none !important;
        visibility: hidden !important;
    }
}

.is-loaded.has-scrolled .__scroll,
.is-loaded.has-scrolled .c-header-navigation__logo,
.is-loaded.has-scrolled .c-header-navigation__nav,
.is-loaded.has-scrolled .c-header-navigation__search-btn,
.is-loaded.has-scrolled .c-header-navigation__top,
.is-loaded.has-scrolled .c-main-hero__social {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.is-loaded.has-scrolled .c-header-navigation__content {
    background-color: transparent;
    margin-top: 0;
}

.is-loaded.has-scrolled .c-header-navigation__content::before {
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.is-loaded.has-scrolled .c-header-navigation__button-line {
    background-color: #000;
}

@media (min-width: 500px) {
    .is-loaded.has-scrolled .c-header-navigation__menu {
        background-color: #ffbc0d;
    }
}

.is-loaded.has-scrolled .c-header-navigation__button::before {
    opacity: 1;
    color: #000;
}

.is-loaded.has-nav .o-line {
    opacity: 0;
}

.is-loaded.has-scrolled-bottom .__back-to {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.is-loaded.has-scrolled-bottom .o-line {
    opacity: 0.5;
}

.is-loaded .__back-to,
.is-loaded .__scroll,
.is-loaded .c-header-navigation__content,
.is-loaded .c-header-navigation__logo,
.is-loaded .c-header-navigation__menu,
.is-loaded .c-header-navigation__nav,
.is-loaded .c-header-navigation__search-btn,
.is-loaded .c-header-navigation__top,
.is-loaded .c-main-hero__social {
    -webkit-transition:
        background-color 0.1s linear,
        margin 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    transition:
        background-color 0.1s linear,
        margin 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    transition:
        background-color 0.1s linear,
        margin 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    transition:
        background-color 0.1s linear,
        margin 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
        opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
        -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.is-loaded.has-scrolled .has-nav-open .c-header-navigation__button-line {
    background-color: #000;
}

.is-loaded.has-scrolled .has-nav-open .c-header-navigation__button::before {
    color: #000;
}

.is-loaded .has-nav-open .c-header-navigation__button-line {
    background-color: #000;
}

section.technology .l-layout__content .l-layout__content-title {
    margin-bottom: 1.786rem;
}

section.technology .l-layout__content .l-layout__content-text {
    line-height: 1.27;
    font-size: inherit;
    margin-bottom: 0.57rem;
}

section.technology .l-layout__content h3 {
    font-weight: 700;
}

section.technology .l-layout__content .l-layout__content-text_link {
    -webkit-text-decoration: underline solid #000 0.0625rem;
    text-decoration: underline solid #000 0.0625rem;
    text-underline-offset: 0.1rem;
    margin: 1.14rem 0 0.57rem;
}

section.technology .l-layout__content p+h3 {
    margin-top: 2rem;
}

section.technology .l-layout__content .l-layout-content__button:last-child {
    margin-top: 0.9375rem;
}

section.technology .c-blurb-image-wrapper {
    width: calc(100% + 18rem);
    position: relative;
    left: -9rem;
    margin-top: 3.75rem;
}

section.technology .c-blurb-image-wrapper:before {
    display: none;
}

section.technology .c-blurb-image-wrapper .c-blurb-image__background {
    height: 18.75rem;
}

section.technology .c-blurb-image-wrapper .c-blurb-image__background .o-background__image-full {
    background-position: center bottom -13.125rem !important;
}

section.technology .c-blurb-image-wrapper [class^="c-blurb-image__decorator"] {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.2, 0.85, 0.45, 1) 0.6s;
}

section.technology .c-blurb-image-wrapper [class^="c-blurb-image__decorator"].is-inview {
    opacity: 1;
    z-index: 1;
}

section.technology .c-blurb-image-wrapper .c-blurb-image__decorator-left,
section.technology .c-blurb-image-wrapper .c-blurb-image__decorator-right {
    position: relative;
    width: min(100%, 100vw);
    margin: 0 auto;
}

section.technology .c-blurb-image-wrapper .c-blurb-image__decorator-left svg {
    height: 11.5625rem;
    width: 16.9375rem;
    position: absolute;
    z-index: 1;
    bottom: -3rem;
    left: 0;
}

section.technology .c-blurb-image-wrapper .c-blurb-image__decorator-right svg {
    width: 6.25rem;
    height: 6.25rem;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
}

@media (min-width: 700px) {
    section.technology .c-blurb-image-wrapper .c-blurb-image__background {
        height: 33.25rem;
    }

    section.technology .c-blurb-image-wrapper .c-blurb-image__decorator-left svg {
        width: 33.875rem;
        height: 20.3125rem;
        bottom: -4.25rem;
    }

    section.technology .c-blurb-image-wrapper .c-blurb-image__decorator-right svg {
        width: 10rem;
        height: 10rem;
    }
}

@media (min-width: 1000px) {
    section.technology .o-container {
        padding-right: 0;
    }

    section.technology .o-container .c-blurb-image__layout-item:first-child {
        padding-right: 3.75rem;
    }

    section.technology .c-blurb-image-wrapper {
        width: 100%;
        position: initial;
        left: 0;
        margin-top: 0;
    }

    section.technology .c-blurb-image-wrapper .c-blurb-image__background {
        height: 49.4375rem;
        border-radius: 1.875rem 0 0 1.875rem;
    }

    section.technology .c-blurb-image-wrapper .c-blurb-image__background .o-background {
        top: 0;
        bottom: 0;
    }

    section.technology .c-blurb-image-wrapper .c-blurb-image__background .o-background .o-background__image-full {
        background-position: center bottom !important;
    }

    section.technology .c-blurb-image-wrapper .c-blurb-image__decorator-left svg {
        width: min(87.42%, 33.875rem);
        bottom: -3rem;
    }
}

#global-technology section {
    display: flex;
    flex-direction: column;
    gap: 4.29rem;
    --padding-x: 1.93rem;
    padding: 0 var(--padding-x);
    max-width: 183rem;
    margin: 0 auto;
}

#global-technology section h2 {
    font-size: 2.57rem;
    letter-spacing: -0.0257rem;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 1.786rem;
}

#global-technology section .c-blurb-image-wrapper {
    position: relative;
    height: 76.92vw;
    width: 100vw;
    margin: 0 calc(-1 * var(--padding-x));
}

#global-technology section .c-blurb-image-wrapper:before {
    display: none;
}

#global-technology section .c-blurb-image-wrapper .c-blurb-image__background {
    height: 100%;
    border-radius: 0;
}

#global-technology section .c-blurb-image-wrapper .c-blurb-image__background .o-background {
    top: 0;
    bottom: 0;
}

#global-technology section .c-blurb-image-wrapper .c-blurb-image__decorator-wrapper {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.2, 0.85, 0.45, 1) 0.6s;
}

#global-technology section .c-blurb-image-wrapper .c-blurb-image__decorator-wrapper.is-inview {
    opacity: 1;
    z-index: 1;
}

#global-technology section .c-blurb-image-wrapper .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container {
    position: relative;
    height: 100%;
}

@media (min-width: 700px) {
    #global-technology section {
        --padding-x: 9rem;
    }

    #global-technology section .c-blurb-image-wrapper {
        height: 49.76vw;
    }
}

@media (min-width: 1000px) {
    #global-technology section {
        --padding-x: min(9.1vw, 10.28rem);
        flex-direction: row;
        align-items: center;
    }

    #global-technology section>* {
        flex: 1;
        min-width: 0;
    }

    #global-technology section .c-blurb-image-wrapper {
        margin: 0;
        height: min(37.92vw, 39rem);
    }

    #global-technology section .c-blurb-image-wrapper .c-blurb-image__background {
        margin: 0;
    }

    #global-technology section .c-blurb-image-wrapper .c-blurb-image__background .o-background__image-full {
        background-repeat: no-repeat;
    }
}

#global-technology #hero {
    margin-top: 6rem;
}

#global-technology #hero .c-main-hero-video__wrapper {
    border-radius: 0 0 1.43rem 1.43rem;
    margin: 0 calc(-1 * var(--padding-x));
}

#global-technology #hero .c-main-hero-video__wrapper .c-main-hero-video {
    height: unset;
    border-radius: inherit;
}

#global-technology #hero .c-hero-list {
    display: flex;
    flex-direction: column;
    gap: 4.29rem;
    padding: 3.71rem 0;
}

#global-technology #hero .c-hero-list .c-hero-list-item article {
    display: flex;
    gap: 2.14rem;
    align-items: center;
    font-size: 1.14rem;
    letter-spacing: -0.0114rem;
}

#global-technology #hero .c-hero-list .c-hero-list-item article svg {
    width: 5.64rem;
    height: 5.64rem;
    flex-shrink: 0;
}

#global-technology #hero .c-hero-divider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -1rem;
}

#global-technology #hero .c-hero-divider .c-hero-divider-horizontal {
    width: calc(100% + 0.29rem);
    height: 0.29rem;
    margin: 0 -0.29rem 0 0;
    background-color: #ffbc0d;
}

#global-technology #hero .c-hero-divider svg {
    flex-shrink: 0;
}

#global-technology #hero .c-hero-divider svg:first-child {
    width: 3.29rem;
    height: 3.29rem;
}

#global-technology #hero .c-hero-divider svg:last-child {
    width: 5.43rem;
    height: 4.14rem;
}

@media (min-width: 700px) {
    #global-technology #hero {
        padding: 0 2.29rem;
    }

    #global-technology #hero .c-hero-divider,
    #global-technology #hero .c-main-hero-video__wrapper {
        margin: 0;
    }

    #global-technology #hero .c-hero-list {
        padding: 5.14rem 0;
        margin: 0 auto;
        width: -moz-fit-content;
        width: fit-content;
    }
}

@media (min-width: 1000px) {
    #global-technology #hero {
        padding: 0 var(--padding-x);
        margin: 7.5625rem auto 0;
    }

    #global-technology #hero .c-hero-list {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    #global-technology #hero .c-hero-list .c-hero-list-item {
        width: 19.29rem;
        flex: 1;
    }
}

@media (min-width: 1400px) {
    #global-technology #hero .c-main-hero-video__wrapper {
        margin: 0 -1.93rem;
    }

    #global-technology #hero .c-hero-divider {
        padding: 0 min(9.31vw, 7rem) 0 0;
    }
}

#global-technology #make-a-difference {
    margin-top: 3.71rem;
}

#global-technology #make-a-difference h2 {
    max-width: 23.07rem;
}

#global-technology #make-a-difference q {
    display: block;
    margin-bottom: 1.71rem;
}

#global-technology #make-a-difference p,
#global-technology #make-a-difference q {
    font-size: 1.14rem;
    line-height: 1.5;
    letter-spacing: -0.0114rem;
}

#global-technology #make-a-difference .o-background__image-full {
    background-position: right bottom;
}

#global-technology #focus-area {
    margin-top: 7.14rem;
}

#global-technology #focus-area ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.57rem 1.14rem;
}

#global-technology #focus-area ul li {
    font-size: 1.29rem;
    padding: 0.57rem 1.71rem;
    background-color: #ededed;
    border-radius: 99rem;
    white-space: nowrap;
}

#global-technology #focus-area .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container .left {
    position: absolute;
    width: 6.29rem;
    height: 3.64rem;
    bottom: -1.07rem;
    left: 0;
}

#global-technology #focus-area .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container .right {
    position: absolute;
    width: 6rem;
    right: 0;
    transform: translateY(-50%);
}

#global-technology #focus-area .o-background__image-full {
    background-position: center top;
}

@media (min-width: 700px) {
    #global-technology #focus-area .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container .left {
        width: 12.57rem;
        height: 7.29rem;
        bottom: -2.29rem;
    }

    #global-technology #focus-area .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container .right {
        position: absolute;
        width: 8.07rem;
        transform: translateY(-50%);
    }
}

@media (min-width: 1000px) {
    #global-technology #focus-area .c-blurb-image-wrapper {
        order: -1;
    }
}

#global-technology #supercharge-career {
    margin-top: 7.14rem;
}

#global-technology #supercharge-career h2 {
    font-weight: 700;
    max-width: 28.29rem;
}

#global-technology #supercharge-career p {
    font-size: 1.286rem;
    letter-spacing: -0.01286rem;
    margin-bottom: 1.786rem;
}

#global-technology #supercharge-career .o-button {
    margin-top: 0;
}

#global-technology #supercharge-career .o-button .o-button__label {
    font-size: 1.14rem;
    letter-spacing: -0.00114rem;
}

#global-technology #supercharge-career .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container svg {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
    width: 3.21rem;
    height: 3.21rem;
}

@media (min-width: 700px) {
    #global-technology #supercharge-career .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container svg {
        width: 5rem;
        height: 5rem;
    }
}

@media (min-width: 1000px) {
    #global-technology #supercharge-career .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container svg {
        transform: translate(50%, -50%);
    }
}

#global-technology #global_tech-life {
    margin: 7.14rem auto;
}

#global-technology #global_tech-life h2 {
    font-size: 2.286rem;
    font-weight: 700;
    letter-spacing: -0.02286rem;
    margin-bottom: 2.86rem;
    text-align: center;
}

#global-technology #global_tech-life .l-global__tech-list {
    display: flex;
    flex-direction: column;
    gap: 4.43rem;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

#global-technology #global_tech-life .l-global__tech-list .l-global__tech-list-item {
    display: flex;
    align-items: center;
    gap: 1.71rem;
    text-align: left;
}

#global-technology #global_tech-life .l-global__tech-list .l-global__tech-list-item img {
    width: 6.14rem;
    height: 6.14rem;
    border-radius: 0.71rem;
}

#global-technology #global_tech-life .l-global__tech-list .l-global__tech-list-item h3 {
    color: #d90007;
    font-size: 1.21rem;
    font-weight: 700;
    line-height: 1.57rem;
    letter-spacing: -0.0121rem;
}

#global-technology #global_tech-life .l-global__tech-list .l-global__tech-list-item p {
    font-size: 1.07rem;
    font-weight: 400;
    line-height: 1.36rem;
    letter-spacing: -0.0214rem;
}

#global-technology #global_tech-life .l-layout-content__button {
    margin: 2.86rem auto 0;
    max-width: -moz-fit-content;
    max-width: fit-content;
    display: block;
}

#global-technology #global_tech-life .l-layout-content__button .o-button__label {
    font-size: 0.86rem;
    letter-spacing: -0.01rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#global-technology #global_tech-life .l-layout-content__button .o-button__icon {
    flex-shrink: 0;
}

@media (min-width: 700px) {
    #global-technology #global_tech-life {
        margin: 8.57rem auto;
    }
}

@media (min-width: 1000px) {
    #global-technology #global_tech-life {
        padding: 0 var(--padding-x);
    }

    #global-technology #global_tech-life .l-global__tech-list {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    #global-technology #global_tech-life .l-global__tech-list .l-global__tech-list-item {
        width: 19.29rem;
        flex: 1;
    }
}

@media (min-width: 1400px) {
    #global-technology #global_tech-life .l-layout__content .l-global__tech-list {
        flex-direction: row;
    }

    #global-technology #global_tech-life .l-layout__content .l-global__tech-list .l-global__tech-list-item {
        flex: 1 0 17.86rem;
    }

    #global-technology #global_tech-life .l-layout__content .l-layout-content__button .o-button__label {
        font-size: 1.14rem;
        letter-spacing: -0.01rem;
    }
}

section#mcc-in-mexico-city .o-layout {
    gap: 4.29rem;
}

@media (min-width: 1000px) {
    section#mcc-in-mexico-city .o-layout {
        gap: 0;
        align-items: start;
    }
}

section#mcc-in-mexico-city .c-blurb-image__background-wrapper:before {
    content: none;
}

#mx-ct section {
    display: flex;
    flex-direction: column;
    gap: 4.29rem;
    --padding-x: 1.93rem;
    padding: 0 var(--padding-x);
    max-width: 183rem;
    margin: 0 auto;
}

#mx-ct section h2 {
    font-size: 2.57rem;
    letter-spacing: -0.0257rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 1.786rem;
}

#mx-ct section .divider {
    height: 0.14rem;
    background-color: #ffbc0d;
}

#mx-ct section .c-blurb-image-wrapper {
    position: relative;
    height: 76.92vw;
    width: 100vw;
    margin: 0 calc(-1 * var(--padding-x));
}

#mx-ct section .c-blurb-image-wrapper:before {
    display: none;
}

#mx-ct section .c-blurb-image-wrapper .c-blurb-image__background {
    height: 100%;
    border-radius: 0;
}

#mx-ct section .c-blurb-image-wrapper .c-blurb-image__background .o-background {
    top: 0;
    bottom: 0;
}

#mx-ct section .c-blurb-image-wrapper .c-blurb-image__decorator-wrapper {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.2, 0.85, 0.45, 1) 0.6s;
}

#mx-ct section .c-blurb-image-wrapper .c-blurb-image__decorator-wrapper.is-inview {
    opacity: 1;
    z-index: 1;
}

#mx-ct section .c-blurb-image-wrapper .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container {
    position: relative;
    height: 100%;
}

#mx-ct #why-join-us {
    display: flex;
    flex-direction: column;
    margin-top: 7.5rem;
}

#mx-ct #opportunity {
    margin-top: 7.5rem;
}

#mx-ct #opportunity .opportunity__header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

#mx-ct #opportunity .opportunity__content__cards {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.625rem;
    mar: 2rem;
}

#mx-ct #opportunity .opportunity__content__cards>div>p {
    text-align: center;
    font-size: 17px;
}

#mx-ct #opportunity .opportunity__content__cards>div {
    background-color: #fff;
    border-radius: 10px;
    padding: 0.625rem;
    /* border: #ffbc0d solid 3px; */
    position: relative;
    -webkit-transition: 0.3s allease-in-out;
    transition: 0.3s allease-in-out;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
}

#mx-ct #why-join-us .why-join-us__left__content,
#mx-ct #why-join-us .why-join-us__right__content {
    flex: 1;
}

#mx-ct #why-join-us .why-join-us__left__content p,
#mx-ct #why-join-us .why-join-us__right__content p {
    line-height: 2;
    font-weight: 400;
    margin-bottom: 0.625rem;
}

@media (min-width: 700px) {
    #mx-ct section {
        --padding-x: 9rem;
    }

    #mx-ct section .c-blurb-image-wrapper {
        height: 49.76vw;
    }

    #mx-ct #opportunity .opportunity__header {
        max-width: 643px;
        margin: 0 auto;
    }
}

@media (min-width: 1000px) {
    #mx-ct section {
        --padding-x: min(9.1vw, 10.28rem);
    }

    #mx-ct section .c-blurb-image-wrapper {
        margin: 0;
        height: min(37.92vw, 39rem);
    }

    #mx-ct #why-join-us .c-blurb-image-wrapper {
        width: 100%;
    }

    #mx-ct section .c-blurb-image-wrapper .c-blurb-image__background {
        margin: 0;
    }

    #mx-ct section .c-blurb-image-wrapper .c-blurb-image__background .o-background__image-full {
        background-repeat: no-repeat;
    }

    /* #mx-ct #opportunity .opportunity__content {
        position: relative;
        display: flex;
        justify-content: center;
        margin-bottom: 220px;
    } */

    #mx-ct #opportunity .opportunity__content__cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        row-gap: 30px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: 5rem;
        /* position: absolute; */
        bottom: -150px;
    }

    #mx-ct #opportunity .opportunity__content__cards>div {
        width: calc((100% - 40px) / 3);
        height: 100px;
    }
}

#mx-ct #hero {
    padding: 0;
    margin-top: 6rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mx-ct #hero .c-blurb-image-wrapper {
    margin: 0;
}

#mx-ct #hero .c-blurb-image-wrapper .o-background__image-full {
    background-repeat: no-repeat;
    background-position: -196vw -94vw;
    background-size: 426vw auto;
    mix-blend-mode: multiply;
}

#mx-ct #hero .hero-title {
    width: 100%;
    max-width: 102.86rem;
    padding: 0 1.93rem;
    position: absolute;
    z-index: 1;
}

#mx-ct #hero .hero-title h1 {
    text-align: center;
    color: #fff;
    line-height: 1;
    font-size: 2.36rem;
}

#mx-ct #hero .hero-decorator {
    position: absolute;
    bottom: 0;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    transform: translate(-85px, 50%);
}

#mx-ct #hero .hero-decorator .hero-decorator-size {
    width: 52.29rem;
    height: 7.79rem;
}

#mx-ct #hero .hero-decorator svg {
    width: 100%;
    height: 100%;
}

@media (min-width: 700px) {
    #mx-ct #hero .c-blurb-image-wrapper .o-background__image-full {
        background-position: -65vw -35vw;
        background-size: 197vw auto;
    }

    #mx-ct #hero .hero-title h1 {
        font-size: 3.29rem;
    }

    #mx-ct #hero .hero-title b {
        display: block;
    }

    #mx-ct #hero .hero-decorator {
        transform: translate(-30px, 70px);
    }

    #mx-ct #hero .hero-decorator .hero-decorator-size {
        width: 80.79rem;
        height: 16.79rem;
    }
}

@media (min-width: 1000px) {
    #mx-ct #hero .hero-decorator {
        transform: translate(-150px, 70px);
    }

    #mx-ct #hero .c-blurb-image-wrapper .o-background__image-full {
        background-position: -14vw center;
        background-size: 114vw auto;
    }
}

#mx-ct #build-future {
    margin-top: 10rem;
}

#mx-ct #build-future h2 {
    text-align: center;
}

#mx-ct #build-future a,
#mx-ct #build-future p {
    font-size: 1.14rem;
    line-height: 2.25;
    letter-spacing: -0.0114rem;
}

#mx-ct #build-future p {
    margin-bottom: 1.71rem;
}

#mx-ct #build-future a {
    color: inherit;
    text-decoration: underline;
}

#mx-ct #build-future .o-background__image-full {
    background-position: right bottom;
}

@media (min-width: 700px) {
    #mx-ct #build-future {
        margin-top: 5rem;
    }

    #mx-ct #build-future h2 {
        font-size: 2.93rem;
    }
}

#mx-ct #work-in {
    margin-top: 10rem;
    position: relative;
}

#mx-ct #work-in h2 {
    font-size: 2rem;
    line-height: 1.6;
}

#mx-ct #work-in p {
    font-size: 1.14rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.0114rem;
}

#mx-ct #work-in p+p {
    margin: 1.79rem 0 0;
}

#mx-ct #work-in .c-blurb-image__decorator-wrapper {
    position: absolute;
    z-index: 1;
    top: 70vw;
    left: 0;
}

#mx-ct #work-in .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container {
    width: 16.86rem;
    height: 7.36rem;
}

#mx-ct #work-in .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container svg {
    width: 100%;
    height: 100%;
}

#mx-ct #work-in .o-background__image-full {
    background-position: center top;
}

@media (min-width: 700px) {
    #mx-ct #work-in {
        margin-top: 5rem;
    }

    #mx-ct #work-in h2,
    #mx-ct #why-join-us h2 {
        font-size: 2.57rem;
    }

    #mx-ct #why-join-us .why-join-us__left__content p {
        white-space: nowrap;
    }

    #mx-ct #work-in .c-blurb-image__decorator-wrapper {
        top: 45vw;
    }

    #mx-ct #work-in .c-blurb-image__decorator-wrapper .c-blurb-image__decorator-container {
        bottom: -2.29rem;
    }
}

@media (min-width: 1000px) {
    #mx-ct #work-in {
        flex-direction: row;
        align-items: center;
    }

    #mx-ct #work-in>* {
        flex: 1;
        min-width: 0;
    }

    #mx-ct #work-in .c-blurb-image-wrapper {
        order: -1;
    }

    #mx-ct #work-in.create-the-future .c-blurb-image-wrapper {
        order: 0;
    }

    #mx-ct #work-in .c-blurb-image__decorator-wrapper {
        top: 50%;
        z-index: 0;
        transform: translate(-10%);
    }
}

#mx-ct section.banner {
    margin: 5rem 0 0;
}

@media (min-width: 700px) {
    #mx-ct section.banner {
        margin: 10rem auto 0;
    }
}

@media (min-width: 1000px) {
    #mx-ct section.banner .c-blurb-image-wrapper {
        width: 100%;
    }
}

#mx-ct #mx-ct-desc {
    margin: 10rem auto 0;
}

#mx-ct #mx-ct-desc h2 {
    font-size: 2rem;
    line-height: 1.6;
    max-width: 20rem;
    text-align: center;
    margin: 0 auto 1.79rem;
}

#mx-ct #mx-ct-desc p {
    font-size: 1.14rem;
    line-height: 2.25;
}

#mx-ct #mx-ct-desc .pragraph-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.14rem;
}

@media (min-width: 700px) {
    #mx-ct #mx-ct-desc h2 {
        font-size: 2.57rem;
        max-width: 30rem;
    }
}

@media (min-width: 1000px) {
    #mx-ct #mx-ct-desc h2 {
        max-width: unset;
    }

    #mx-ct #mx-ct-desc p+p {
        margin: 0;
    }

    #mx-ct #mx-ct-desc .pragraph-wrapper {
        flex-direction: row;
        gap: 2rem;
    }

    #mx-ct #mx-ct-desc.innovate .pragraph-wrapper {
        flex-direction: row;
        gap: 3rem;
    }

    #mx-ct #mx-ct-desc .pragraph-wrapper>* {
        flex: 1;
    }
}

#mx-ct #find-a-role {
    margin-top: 2.5rem;
    padding-bottom: 5rem;
}

#mx-ct #find-a-role .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.79rem;
}

#mx-ct #find-a-role h2 {
    font-size: 2rem;
    line-height: 1.6;
    font-weight: 700;
    margin: 0;
}

#mx-ct #find-a-role p {
    font-size: 1.286rem;
    letter-spacing: -0.01286rem;
}

#mx-ct #find-a-role .o-button {
    margin-top: 0;
    color: #000;
}

#mx-ct #find-a-role .o-button .o-button__label {
    font-size: 1.14rem;
    letter-spacing: -0.00114rem;
}

#mx-ct #find-a-role .o-button .o-button__icon {
    background-color: #000;
}

.why-join-us__right__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4.29rem;
}

.vertical-divider {
    width: 100%;
    height: 0.14rem;
    background-color: #ffbc0d;
}

@media (min-width: 700px) {
    #mx-ct #find-a-role {
        margin-top: 3.43rem;
    }

    #mx-ct #find-a-role h2 {
        font-size: 2.57rem;
    }
}

@media (min-width: 1000px) {
    #mx-ct #find-a-role {
        padding-bottom: 10rem;
    }

    #mx-ct #find-a-role .wrapper {
        flex-direction: row;
        justify-content: space-between;
        width: 75%;
        margin: 0 auto;
    }

    #mx-ct #find-a-role .wrapper a {
        flex-shrink: 0;
    }

    #mx-ct #why-join-us {
        flex-direction: column;
    }

    .why-join-us__right__content {
        flex-direction: row;
    }

    .vertical-divider {
        align-self: stretch;
        width: 0.3rem;
        flex: none !important;
        height: auto;
    }
}

.positive-impact h4,
.innovate-with-us h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5625rem;
    font-family: Speedee, sans-serif;
    font-weight: 700;
}