.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 *:before,
.carousel *:after {
  box-sizing: inherit
}

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

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

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

.carousel__track {
  display: flex
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -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: .25;
  transition: opacity .15s ease-in-out
}

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

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

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

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

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

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

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

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

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

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  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: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))
}

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

.fancybox__container :focus {
  outline: none
}

body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 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::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto
}

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

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

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

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

.is-loading .fancybox__caption {
  visibility: hidden
}

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

.fancybox__nav .carousel__button {
  z-index: 40
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1
  }
}

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

@keyframes fancybox-zoomInUp {
  from {
    transform: scale(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, .1)
}

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

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

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

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

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

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto
}

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

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

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

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

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

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, .9);
  color: #fff;
  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: transparent
}

.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: 0px 3px;
  opacity: var(--fancybox-opacity, 1)
}

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

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

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

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

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

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

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

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, 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: .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
}

/**
           * Swiper 7.3.1
           * Most modern mobile touch slider and framework with hardware accelerated transitions
           * https://swiperjs.com
           *
           * Copyright 2014-2021 Vladimir Kharlampidi
           *
           * Released under the MIT License
           *
           * Released on: November 24, 2021
           */
@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(0px, 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, .15)
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(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, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(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, .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: #DB0007;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: .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: .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(.33);
  position: relative
}

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: 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, #264F36);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

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

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

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

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #264F36
}

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

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

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  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: .2s transform, .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: .2s transform, .2s left
}

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

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

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

.swiper-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, .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, .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: 0px;
  width: 100%;
  height: 100%;
  opacity: .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
}

.pause-text,
#playButton {
  display: none;
}

.start-autoplay.active .pause-text,
.start-autoplay.active #playButton {
  display: block;
}

.start-autoplay.active .play-text,
.start-autoplay.active #pauseButton {
  display: none;
}

/*! 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
}

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

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

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-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 !important
}

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

template,
[hidden] {
  display: none
}

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

address {
  font-style: inherit
}

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

b,
strong {
  font-weight: 700
}

a {
  text-decoration: none
}

a svg {
  pointer-events: none
}

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

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

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

a,
area,
button,
input,
label,
select,
textarea,
[tabindex] {
  -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 #CCCCCC
}

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

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

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

img[width],
img[height],
svg[width],
svg[height] {
  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: none;
  color: inherit
}

textarea {
  overflow: auto;
  resize: vertical
}

button,
.o-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
}

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

.l-layout__content-sub {
  font-size: .75rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: .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: .625rem;
  background-color: #DB0007;
  display: block;
  width: 5.625rem;
  height: 3px
}

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

/* :lang(nl) .l-layout__content-title {
              word-break: break-all;
          } */

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

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

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

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

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

[data-page="overview"] .l-layout__content-title--wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.714285rem;
}

.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 .-period,
.l-layout__content-title .-highlight {
  color: #DB0007
}

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

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

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

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

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

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

.green-box__wrapper {
  display: flex;
  padding: 1.1428rem;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #264F36;
  color: #fff;
}

@media (min-width: 1000px) {
  .green-box__wrapper {
    padding: 1rem;
  }
}

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

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

.l-layout__content-text a {
  font-weight: bold;
  color: #DB0007
}

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

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

@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
}

#job-detail .c-header-navigation,
[data-page-name="Find jobs by location"] .c-header-navigation,
#location-description .c-header-navigation,
.page-jobs .c-header-navigation,
.page-corporate-search .c-header-navigation,
.page-corporate-jobs .c-header-navigation,
.page-restaurant-jobs .c-header-navigation {
  position: relative
}

#job-detail [data-component="main-hero"] .c-main-hero,
[data-page-name="Find jobs by location"] [data-component="main-hero"] .c-main-hero,
#location-description [data-component="main-hero"] .c-main-hero,
.page-jobs [data-component="main-hero"] .c-main-hero,
.page-corporate-search [data-component="main-hero"] .c-main-hero,
.page-corporate-jobs [data-component="main-hero"] .c-main-hero,
.page-restaurant-jobs [data-component="main-hero"] .c-main-hero {
  background-color: #F9F9F9
}

#job-detail [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,
[data-page-name="Find jobs by location"] [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,
#location-description [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,
.page-jobs [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-corporate-search [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-jobs [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-restaurant-jobs [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 {
  color: #333
}

.o-wrap {
  overflow-x: hidden
}

main {
  height: 100%
}

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

.o-scroll {
  overflow-x: 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
  }
}

[data-page="mission-values"] .o-reveal .o-background {
  top: 0 !important;
  bottom: 0 !important;
}


@media (min-width: 700px) {
  /* [data-page="mission-values"] .o-reveal .o-background {
              top: 0 !important;
              bottom: 0 !important;
            } */

  [data-page="mission-values"] .c-image-box-main__background {
    height: 39.1428rem;
  }

  /* [data-page="mission-values"] .c-education-benefits__main-content {
              padding-top: 8rem !impor;
            } */
}

@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.-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: 1.14285rem;
  padding-left: 0
}

@media (min-width: 1000px) {
  .o-layout__item {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    font-size: 1rem;
    padding-left: 0
  }

  [data-page="mission-values"] .c-image-box-main__content {
    top: -2.4rem;
  }
}

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

.c-blurb-image--custom .o-layout.-gutter>.o-layout__item {
  padding-left: 0 !important;
  padding-right: 4.571428rem;
}


.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.-right>.o-layout__item,
.o-layout.-reverse>.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: white;
  text-transform: uppercase;
  z-index: 2;
  font-size: 7vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: bold;
  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
}

.academy-logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* .academy-logo {
            background-position: center 25%;
          } */

@media screen and (min-width: 1000px) {
  .academy-logo {
    background-size: 25vw;
    background-position: center 28%;
  }
}

@media screen and (min-width: 1536px) {
  .academy-logo {
    background-size: 20vw;
    background-position: center 12%;
  }
}

.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
}

.o-background__image-full.cross-fade {
  background-size: cover;
  /* background: url("https://d2i2zd9axwkr7h.cloudfront.net/company/sites/158194/assets/images/values/cross/img-1.jpg") no-repeat center center; */
  opacity: 1;
  -webkit-transition: 3s;
  transition: 3s
}

@-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: #264F36;
              color: #fff;
              border-color: transparent;
              border-radius: 42.8571rem;
          } */
.o-button.-fill {
  background-color: #264F36;
  color: #fff;
  border-color: transparent;
  border-radius: .625rem;
  /* border: 1px solid #000; */
}

.o-button.-yellow {
  background-color: #FFBC0D;
  color: #222;
  border-color: transparent;
  border-radius: 42.8571rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.571428rem 1.1428rem !important;
  max-height: 60px;
}

.o-button.-yellow .o-button__label {
  font-size: 1.2857rem !important;
  letter-spacing: -0.18px;
}

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

  .o-button.-yellow {
    padding: 0.5rem 2.5rem;
  }
}

.o-button.-fill .o-button__icon {}

.c-footer__external-links .o-button__icon {
  width: 1.5625rem;
  height: 1.5625rem;
}

.c-footer__external-links .o-button__icon {
  /* margin-right: .3125rem; */
  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);
}

.c-footer__external-links .o-button__icon svg {
  fill: #fff;
}

@media (min-width: 1000px) {
  .c-footer__copy-right ul li {
    width: calc(100% / 4) !important;
    justify-content: flex-start;
  }

  .c-footer__copy-right ul {
    justify-content: flex-start !important;
    margin-bottom: 0.5rem;
  }
}

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

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

@media (min-width: 699px) {

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

@media (min-width: 699px) {

  .is-chrome .o-button.-fill::before,
  .is-chrome .o-button.-fill::after {
    width: 4rem;
    height: 2.95em;
    position: absolute;
    content: "";
    display: inline-block;
    background: #264F36;
    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: .625rem 1.875rem
}

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

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

.btn-custom .o-button:hover .o-button__icon {
  background-color: #FFF
}

.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: bold;
  font-size: .875rem
}

.o-button__icon {
  margin: 3px 3px 3px 1rem;
  background-color: #fff;
  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)
}

.c-header-navigation__link.-cta-btn .o-button__icon {
  background-color: #DB0007 !important;
}

.menu-dropdown .o-button__icon {
  background-color: transparent !important;
  margin-left: 1rem;
}

.c-header-navigation__link.-cta-btn .o-button__icon:hover {
  background-color: #264F36 !important;
}

.o-button__icon svg {
  width: .9375rem;
  height: .9375rem;
  fill: #222;
}

@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-safari .o-button>svg,
  .is-firefox .o-button>svg,
  .is-edge-chromium .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: #ffffff;
  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-scrolling .c-scrollbar,
.has-scroll-dragging .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_label,
.c-form_checkboxLabel,
.c-form_radioLabel {
  display: block;
  margin-bottom: .625rem
}

.c-form_input,
.c-form_select_input,
.c-form_textarea {
  padding: .625rem;
  border: 1px solid lightgray;
  background-color: white
}

.c-form_input:hover,
.c-form_select_input:hover,
.c-form_textarea:hover {
  border-color: darkgray
}

.c-form_input:focus,
.c-form_select_input:focus,
.c-form_textarea:focus {
  border-color: dimgray
}

.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: .625rem;
  margin-bottom: 0;
  padding-left: 1.75rem;
  cursor: pointer
}

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

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

.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: .75rem;
  background-repeat: no-repeat;
  opacity: 0
}

.c-form_checkboxLabel:hover::before,
.c-form_radioLabel:hover::before {
  border-color: darkgray
}

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

.c-form_checkbox:checked+.c-form_checkboxLabel::after,
.c-form_radio:checked+.c-form_checkboxLabel::after,
.c-form_checkbox:checked+.c-form_radioLabel::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::before,
.c-form_radioLabel::after {
  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: .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: .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"] .c-main-hero::before {
  display: none
}

.is-loaded [data-namespace="home-video"] .c-main-hero::before {
  opacity: 1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s
}

@media (min-width: 1000px) {
  [data-namespace="home-video"] .c-main-hero::before {
    content: '';
    display: block;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/JZQ9M_McDGoldenArchescropped/McDGoldenArchescropped.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left 20px;
    bottom: 0;
    width: 65%;
    position: absolute;
    height: 50%;
    left: 0;
    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
  }

  [data-page="corportate"] .working-wrapper {
    padding-right: 0;
  }
}

@media (min-width: 1400px) {
  [data-namespace="home-video"] .c-main-hero::before {
    background-size: contain;
    background-position: left bottom
  }
}

[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: 40rem
  }
}

[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__title,
[data-namespace="home-video"] .c-main-hero__subtitle-content {
  color: #292929
}

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

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

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

@media (max-width: 700px) {
  [data-namespace="home-video"] .c-main-hero__container {
    margin: 5rem 0px;
    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: 50vh;
  min-height: 500px;
  /* margin-bottom: 5.71428rem; */
}

/* [data-page="mission-values"] .c-main-hero {
              border-bottom: none;
              background-color: #fff;
              height: 50vh;
              min-height: 500px;
              margin-bottom: 5.71428rem;
          } */

@media (min-width: 700px) {
  [data-namespace="interior"] .c-main-hero {
    border-bottom: 5px solid #DB0007;
    background-color: #fff;
    /* height: 23.9285vh; */
    height: 67.1714vh;
    min-height: 335px;
    margin-bottom: 0;
  }

  [data-page="corportate"] .c-main-hero {
    border-bottom: none;
  }

  [data-page="mission-values"] .c-main-hero {
    /* border-bottom: none; */
    background-color: #fff;
    /* height: 23.9285vh; */
    height: 67.1714vh;
    min-height: 335px;
    margin-bottom: 5.71428rem;
  }
}

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

  /* [data-namespace="interior"] .c-main-hero {
    height: auto;
    min-height: 57rem;
  } */

  [data-page="corportate"] .c-main-hero {
    height: auto;
    min-height: max-content;
    padding-bottom: 50px;
  }

  /* [data-page="mission-values"] .c-main-hero {
                  height: auto;
                  min-height: 41.8rem;
              } */

}

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

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

  [data-namespace="interior"] .c-main-hero {
    margin-bottom: 0 !important;
  }
}

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

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

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

@media (min-width: 1000px) {
  .c-main-hero__inner {
    padding-top: 6rem;
    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
}

[data-namespace="interior"] .c-main-hero__background-wrap .o-background.hero-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover
}

@media (min-width: 700px) {
  [data-namespace="interior"] .c-main-hero__background-wrap .o-background.hero-img {
    background-position: center 27%;
  }
}


.c-main-hero__video {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  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: 50%;
    width: auto !important
  }
}

[data-page="overview"] .c-main-hero__title {
  margin-bottom: 1.714rem;
}

[data-page="mission-values"] .c-main-hero__content {
  text-align: left;
  position: relative;
  width: 100%;
  will-change: transform
}

[data-page="mission-values"] .o-layout.-flex.-middle {
  -webkit-box-align: center;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

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

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

  [data-page="mission-values"] .o-layout.-flex.-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.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: bold;
  text-transform: none;
  opacity: 0;
  line-height: normal;
  font-size: 8.5836909871vw
}


[data-page="mission-values"] .c-main-hero__subtitle-message {
  text-align: center;
}

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

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

@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: bold;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: normal;
  color: #DB0007;
  display: block;
  margin-bottom: .9375rem
}

.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 .-period,
.c-main-hero__title-inner .-highlight {
  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
}

[data-page="overview"] .c-main-hero__subtitle-message {
  font-size: 1.285rem;
  font-weight: bold;
}


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

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

  [data-page="overview"] .c-main-hero__subtitle-message {
    font-size: 1.125rem;
  }
}

@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: .625rem 0;
  width: 4.375rem;
  background-color: #DB0007;
  height: .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.-x:hover svg {
  fill: #000
}

.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
}

@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: 0px;
  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
}

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

.capitalize {
  text-transform: capitalize;
}

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

@media (min-width: 700px) {
  [data-namespace="interior"] .c-hero-big__background-image {
    height: 36.8571rem;
  }
}

.blurb-image-pt {
  padding: 5.625rem 0;
}

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

[data-page="overview"] .c-accordion {
  margin-bottom: 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; */
  background-color: #264f36;
  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(0deg);
  transform: rotate(0deg);
  width: .9375rem;
  height: .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(0deg);
  transform: rotate(0deg);
  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(0deg);
  transform: rotate(0deg);
  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(0deg);
  transform: rotate(0deg);
  width: .9375rem;
  height: .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(0deg);
  transform: rotate(0deg);
  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(0deg);
  transform: rotate(0deg);
  stroke: #fff;
  z-index: 1
}

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

.page-restaurant-jobs .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-jobs .c-header-navigation.-dark .c-header-navigation__link,
#job-detail .c-header-navigation.-dark .c-header-navigation__link,
[data-page-name="Find jobs by location"] .c-header-navigation.-dark .c-header-navigation__link,
#location-description .c-header-navigation.-dark .c-header-navigation__link {
  color: #333
}

.page-restaurant-jobs .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-jobs .c-header-navigation.-dark .c-header-navigation__link:hover,
#job-detail .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,
#location-description .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) {
  .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: 0rem 0rem 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: inline-block;
  position: absolute;
  height: 6rem;
  right: 7rem
}

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

@media (min-width: 700px) {
  .c-header-navigation__search-btn .search-btn {
    display: flex !important;
  }
}

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

.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__nav .c-header-navigation__link {
    text-align: center;
  }
}

.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: bold;
  font-size: 16px;
  padding: 10px 15px;
  text-align: left;
  border-bottom: solid 3px transparent;
  text-shadow: 0px -1px 0px 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: bold;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0 1vw;
  font-size: clamp(0.75rem, 0.4vw + 0.4rem, 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: 35px;
  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)
}

@media (min-width: 1000px) {
  .c-header-navigation__link.-cta-btn {
    height: auto !important;
  }
}

.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: .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: 44px;
  height: 44px;
  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 0px
}

.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.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
}

.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
}

.has-nav-open .global-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.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;
  opacity: 0;
  visibility: hidden;

  transition: 0.5s opacity ease-in-out, 0.5s visibility ease-in-out;
}



@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: bold;
  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: 0.05s;
  transition-delay: 0.05s
}

.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: #000000 */
  fill: #264F36;
}

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

.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: 0px 1px 20px 16px rgba(0, 0, 0, 0.05098);
  box-shadow: 0px 1px 20px 16px rgba(0, 0, 0, 0.05098)
}

@media (min-width: 1000px) {
  .c-olivia-cta {
    margin-top: -7.5rem;
    width: 60%;
    border-radius: 30px;
    position: absolute;
    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: 3px solid #FFBC0D;
  border-radius: 50%;
  z-index: 1
}

@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 .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 0rem
}

.-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: 4rem
}

@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: .625rem
}

.c-job-combo .swiper-control-options a,
.c-job-combo .swiper-control-options button {
  display: block;
  margin: 0 .625rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: .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
  }
}

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

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

.c-golden-arches__content::before {
  content: '';
  display: block;
  background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1149/image/2025/7/DZ5UP_left-mcD/left-mcD.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  bottom: 0;
  width: 12.5rem;
  position: absolute;
  height: 18.75rem;
  opacity: 0.2;
  left: 0;
  z-index: -1;
}

@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__gallery {
  position: relative;
  height: 31.25rem;
  overflow: hidden;
  border-top: .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-benefits {
  position: relative;
  z-index: 1;
}

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

.c-benefits-content-container {
  background-color: #FFB71B;
  height: 100%;
  width: 100%;
  padding: 1rem;
}

@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;
  max-width: 1179px;
  margin-inline: auto;
}

.c-benefits__banner.-full {
  max-width: 100%;
  width: 100%;
  margin-top: 0;
  border-radius: 0;
}

@media (min-width: 1000px) {
  .c-benefits__banner::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1669/image/2025/10/G4W1P_seeds/seeds.jpg);
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: -1;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center
  }
}

.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: bold;
  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: bold
}

@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: bold;
  margin-bottom: .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
}

@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-img {
  background-color: #fff;
  border-radius: 10px;
  padding: .625rem;
  border: #FFBC0D solid 3px;
  margin-right: 1.25rem;
  position: relative
}

@media (min-width: 1000px) {
  .active .c-benefits-list-scroll__item-img::before {
    content: '';
    display: block;
    top: -11px;
    right: -8px;
    /* background-color: #DB0007; */
    background-color: #264F36;
    width: .9375rem;
    position: absolute;
    border-radius: 50%;
    height: .9375rem
  }
}

.c-benefits-list-scroll__item-img svg,
.c-benefits-list-scroll__item-img img {
  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 h4 {
  font-size: 1.714285rem;
}

.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-content h4 {
    font-size: 1.5rem;
  }
}

.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: 400ms;
  animation-duration: 400ms;
  -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-color: #264F36 #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%
}

.c-benefits-carousel {

  margin: 0 auto;
  /* padding: 0 3rem 2.5rem; */
  position: relative;
  padding-top: 2rem;

}

.c-benefits-carousel::before {
  content: '';
  display: block;
  background-color: #264F36;
  width: 100%;
  height: 10rem;
  left: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

.c-benefits-carousel__viewport {
  overflow: hidden;
  border-radius: 12px;

  padding: 1rem 0;
}

.c-benefits-carousel__track {
  padding: 0;
  box-sizing: border-box;
}

.c-benefits-carousel__card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  min-height: 245px;
  padding: 1.25rem 1.1rem;
  text-align: center;
}

.c-benefits-carousel .swiper-slide {
  height: auto;
}

.c-benefits-carousel__icon {
  color: #264f36;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.c-benefits-carousel__card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
  font-weight: 700;
  color: #111;
}

.c-benefits-carousel__card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #222;
}

.c-benefits-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.c-benefits-carousel__button {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #264f36;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.c-benefits-carousel__button[aria-disabled="true"] {
  cursor: not-allowed !important;
}
.c-benefits-carousel__button[aria-disabled="false"] {
  cursor: pointer;
}

.c-benefits-carousel__button:disabled {
  opacity: 0.45;
  cursor: default;
}

@media (max-width: 767px) {
  .c-benefits-carousel {
    padding: 2rem 1rem 2rem;
  }

  .c-benefits-carousel__viewport {
    border-radius: 0;
    border: 0;
    padding: 0.5rem 0;
  }

  .c-benefits-carousel__card {
    min-height: 255px;
    padding: 1.25rem 0.9rem;
  }
}

@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/1157/image/2025/4/OOTR0_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
  }
}

[data-namespace="interior"] .c-bubbles {
  visibility: hidden;
}

@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
  }

  [data-namespace="interior"] .c-bubbles {
    visibility: visible;
  }
}

.c-image-info__background-wrap {
  position: relative;
  display: block
}

.c-image-info__background-wrap::after {
  content: '';
  display: block;
  background-color: #DB0007;
  width: 50%;
  height: .625rem;
  position: absolute;
  bottom: -.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: bold;
  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: bold;
  margin-bottom: .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: -.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: -.625rem;
  left: auto;
  left: initial;
  right: -.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: -.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: -.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:before,
.c-image-info__video-btn:after {
  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
  }
}

@media (min-width: 700px) {
  .c-education-benefits__list-item:last-of-type::after {
    content: '';
    display: block;
    position: absolute;
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1670/image/2025/9/DJFC9_Final/Final.svg);
    opacity: 1;
    width: 100%;
    max-width: 200px;
    height: 100%;
    max-height: 146px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    top: 35%;
    left: 75px;
    z-index: -1;
  }
}

@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
}

.c-education-benefits__main-content.-has-bg {
  background: #ffbc0e;
  padding-bottom: 4rem;
  z-index: auto;
  margin-top: -5rem;
}

@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 2rem;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  z-index: 1;
}

.rmhc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1000px) {
  .rmhc {
    flex-direction: row-reverse;
  }
}

[data-page="mission-values"] .c-education-benefits__main-inner {
  padding: 3rem;
  background-color: #264F36;
  color: #fff;
  position: relative;
  border-radius: 0 !important;
  z-index: 1;
}


[data-page="mission-values"] .c-education-benefits__main-content .o-container {
  padding: 0;
}



[data-page="mission-values"] .c-education-benefits__main-inner .l-layout__content-title {
  color: #fff;
}

@media (min-width: 1000px) {

  .c-education-benefits__list-item:not(:last-child)::after,
  .c-education-benefits__list-item:not(:last-child):not(:nth-of-type(2))::after {
    content: "";
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1670/image/2025/9/OT8UX_green-arrow/green-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    top: 40%;
    right: -40%;
    width: 40%;
    height: 15px;
    background-color: transparent;
  }
}

@media (min-width: 700px) {
  .c-education-benefits__main-inner {
    padding: 3rem
  }

  [data-page="mission-values"] .c-education-benefits__main-inner {
    border-radius: 10px !important;
  }

  [data-page="mission-values"] .c-education-benefits__main-content .o-container {
    padding-right: 9rem;
    padding-left: 9rem;
  }
}

.c-education-benefits__main-inner::after {
  /* content: '';
              display: block;
              position: absolute;
              background-image: url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/I544R_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
}

[data-page="mission-values"] .c-education-benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -ms-flex-pack: distribute;
  margin: 3.75rem 0;
}

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

@media screen and (min-width: 700px) {
  .c-education-benefits__list {
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
  }
}

@media (min-width: 1000px) {
  .c-education-benefits__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    max-width: 1152px;
    margin-inline: auto;
  }

  [data-page="mission-values"] .c-education-benefits__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -ms-flex-pack: distribute;
    margin: 3.75rem 0;
  }
}

.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: 700px) {
  .c-education-benefits__list-item {
    position: relative;
  }

  .c-education-benefits__list-item:not(:last-child):not(:nth-of-type(2))::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -40% !important;
    width: 6vw !important;
    height: 2px;
    background-color: #FFDE86;
  }

  .c-education-benefits__main-inner::after {
    right: -4vw;
  }
}

@media (min-width: 500px) {
  .c-education-benefits__list-item {
    width: 35%
  }

  [data-page="mission-values"] .c-education-benefits__list-item {
    width: 100%;
    margin: 0;
  }
}

@media (min-width: 1000px) {
  .c-education-benefits__list-item {
    position: relative;
  }

  .c-education-benefits__list-item:not(:last-child)::after,
  .c-education-benefits__list-item:not(:last-child):not(:nth-of-type(2))::after {
    content: "";
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1670/image/2025/9/OT8UX_green-arrow/green-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    top: 40%;
    right: -40%;
    width: 40%;
    height: 15px;
    background-color: transparent;
  }
}

@media (min-width: 1536px) {
  .c-education-benefits__main-inner::after {
    right: 0vw !important;
  }
}

.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;
  align-items: center;
}

/* .c-education-benefits__list-content {
              font-weight: bold;
              text-align: center;
              position: relative;
              
          } */
.c-education-benefits__list-content {
  font-weight: bold;
  text-align: center;
  background-color: #264F36;
  padding: 16px;
  border-radius: 5px;
  color: #fff;
}

@media screen and (min-width: 700px) {
  .c-education-benefits__list-content {
    background-color: #fff;
    padding: 0;
    color: #000;
  }
}

.c-education-benefits__list-header {
  padding-top: 1.875rem
}

.c-education-benefits__list-header h3 {
  font-weight: bold;
  color: #DB0007
}

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

.c-blurb__inner {
  padding: 3rem 0;
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  z-index: 1;
}



.c-blurb__list {
  display: flex;
  justify-content: space-around;
  margin: 3.75rem 0;
  flex-flow: wrap
}

@media (max-width: 375px) {
  .c-blurb__list {
    flex-flow: column
  }
}

@media screen and (min-width: 700px) {
  .c-blurb__list {
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
  }
}

@media (min-width: 1000px) {
  .c-blurb__list {
    flex-flow: row;
    max-width: 1152px;
    margin-inline: auto;
  }
}

.c-blurb__list-item {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin: 0 1.875rem
}

@media (min-width: 700px) {
  .c-blurb__list-item {
    position: relative;
  }

  .c-blurb__list-item:not(:last-child):not(:nth-of-type(2))::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -40% !important;
    width: 6vw !important;
    height: 2px;
    background-color: #FFDE86;
  }
}

@media (min-width: 500px) {
  .c-blurb__list-item {
    width: 35%
  }
}

@media (min-width: 1000px) {
  .c-blurb__list-item {
    position: relative;
  }

  .c-blurb__list-item:not(:last-child)::after,
  .c-blurb__list-item:not(:last-child):not(:nth-of-type(2))::after {
    content: "";
    background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1670/image/2025/9/OT8UX_green-arrow/green-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    position: absolute;
    top: 40%;
    right: -40%;
    width: 40%;
    height: 15px;
    background-color: transparent;
  }
}

.c-blurb__list-icon {
  width: 5.625rem;
  height: 11.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-blurb__list-content {
  font-weight: bold;
  text-align: center;
  background-color: #264F36;
  padding: 16px;
  border-radius: 5px;
  color: #fff;
}

@media screen and (min-width: 700px) {
  .c-blurb__list-content {
    background-color: #fff;
    padding: 0;
    color: #000;
  }
}

.c-blurb {
  position: relative;
  display: block;
  margin-top: 7.5rem
}

.c-blurb.-bg-green {
  background-color: #264F36;
  color: #fff;
}

.c-blurb.-bg-green * {
  color: #fff;
}

.c-blurb.-bg-green .c-bubbles {
  left: 0;
  bottom: -11rem;
  top: initial;
}


.c-blurb.-bg-green .c-blurb__inner {
  background-color: transparent;
}

.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: -19.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--custom {
  position: relative;
  margin-top: 7.5rem
}

@media (min-width: 700px) {
  .c-blurb-image--custom {
    display: flex;
  }


}

.c-blurb-image__background {
  width: 100%;
  height: 18.75rem;
  position: relative;
  border-radius: 0;
  overflow: hidden
}

.c-blurb-image__background--custom {
  width: 100%;
  height: 35.142rem;
  position: relative;
  border-radius: 0;
  overflow: hidden
}


@media (min-width: 700px) {
  .c-blurb-image__background--custom {
    height: 36.949vh;
  }
}

@media (min-width: 1000px) {
  .c-blurb-image__background--custom {
    height: 100%;
    max-height: 460px;
  }

  .c-blurb-image--custom {
    min-height: 40.350vh;
    max-width: 1440px;
    margin: 0 auto;
    gap: 20px;
  }

}

.c-blurb-image__background-wrapper {
  position: relative
}

@media (max-width: 999px) {
  .c-blurb-image__background-wrapper {
    width: calc(100% + 18rem);
    left: -9rem;
    margin-top: 7.5rem
  }
}

.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: 12.5rem;
  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
}

@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) {
  .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 h3 {
  margin-bottom: 0
}

.c-blurb-slider__content-text p {
  font-weight: bold
}

#corpjobs {
  margin-top: 7.5rem;
  position: relative
}

[data-component="mission"] {
  position: relative;
  z-index: 1
}

.c-mission {
  position: relative;
  margin: 3.125rem 0
}

@media (min-width: 1000px) {
  .c-mission {
    margin: 5rem 0
  }
}

.c-mission:before {
  content: '';
  display: block;
  position: absolute;
  bottom: -10rem;
  left: 0;
  /* background-image: url("https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/XDBCI_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; */
  background-color: #264F36;
  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; */
  background-color: #264F36;
  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; */
  background-color: #264F36;
  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
}

[data-namespace="interior"] .c-mission__grid-image {
  height: 37.5vh;
}

@media (min-width: 700px) {
  [data-namespace="interior"] .c-mission__grid-image {
    height: 21.1864vh;
  }
}

[data-page="mission-values"] .c-values {
  position: relative;
  /* padding-top: 1rem; */
  padding-top: 0;
  overflow: hidden;
}

/* [data-page="mission-values"] .c-education-benefits__main-content {
            padding-top: 3.71rem;
          } */

.c-values {
  position: relative;
  padding-top: 12.5rem
}

@media (max-width: 699px) {
  .c-values {
    padding-top: 0
  }
}

/* .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/1157/image/2025/4/GD1OW_long/long.svg);
              background-size: cover
          } */

@media (min-width: 1800px) {
  .c-values::before {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right -100px
  }
}

@media (max-width: 700px) {
  .c-values::before {
    display: none
  }
}

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

.c-values__banner.-full {
  right: 0;
  width: auto;
  border-radius: 0;
}

@media (min-width: 1000px) {
  .c-values__banner {
    border-radius: 5px 0 0 5px;
    right: -9rem;
    width: calc(100% - 9rem)
  }

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

  [data-namespace="interior"] .c-mission__grid-image {
    height: 35.1963vh;
    max-height: 235px;
    min-height: 20rem;
  }

  [data-namespace="interior"] .c-mission__grid-image.extra-height {
    max-height: 275px;
  }
}

.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
  }
}

@media (min-width: 1000px) {
  .c-values__banner-content {
    margin-left: 5.625rem
  }
}

.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: .3s;
    transition-delay: .3s
  }
}

.c-values__list-content {
  width: 100%
}

@media (min-width: 1000px) {
  .c-values__list-content {
    width: 60%
  }
}

.c-values__list-content--header {
  font-weight: bold;
  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: white;
    text-shadow: 1px 1px black, -1px -1px black
  }

  @supports (-webkit-text-stroke: 1px black) {
    .c-values__list-content--header {
      color: transparent;
      -webkit-text-stroke: 1px black;
      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.-video,
.c-values .c-image__background-wrap.-small {
  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
}

[data-page="mission-values"] .c-image-box.-stripe {
  margin-top: 5rem
}

@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
  }

  [data-page="mission-values"] .c-image-box-main__background {
    height: 30rem;
    width: 100%;
    border-radius: 0 10px 0 0
  }
}

.c-image-box-main__content {
  background-color: #264F36;
  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
  }

  [data-page="mission-values"] .c-image-box-main__content {
    padding: 3rem;
    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;
  /* gap: 5rem; */
  -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: bold
}

.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: 0rem
}

@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 0rem
  }
}

@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: 44px;
  height: 44px
}

.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-link.-x:hover svg {
  fill: #000
}

.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: .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: 0rem
}

@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 svg,
.c-footer__copy-right--reserved img {
  width: 1.875rem;
  height: 1.875rem;
  margin-right: .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 .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: .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: .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: .625rem;
  background-color: #DB0007;
  color: #fff;
  border-radius: 0 5px 0 0;
  font-size: .75rem
}

.c-language a {
  color: #fff;
  font-weight: bold
}

.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
  }

  [data-namespace="interior"] .c-main-hero__background {
    width: 100%;
    height: 100%;
    top: initial !important;
    bottom: 0;

  }

  [data-namespace="interior"] .c-main-hero__background {
    height: 23.9285vh !important;
  }

  [data-page="mission-values"] .c-main-hero__background {
    height: 29.7vh !important;
  }
}

@media (min-width: 1000px) {
  [data-namespace="interior"][data-page="corportate"] .c-main-hero__background .o-background {
    background-size: cover
  }
}

[data-namespace="interior"] .c-main-hero__background {
  width: 100%;
  height: 100%;
  /* top: calc(100% + 5.5714rem); */
  bottom: 0;
}

@media (min-width: 1000px) {
  [data-namespace="interior"] .c-main-hero__background {
    width: 53%;
    right: 0;
    left: auto;
    left: initial;
    height: calc(100% - 6rem) !important;
  }
}

@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 27%;
  background-size: cover;
}

@media (min-width: 1000px) {
  [data-namespace="interior"] .c-main-hero__background .o-background {
    background-size: 60%
  }

  [data-page="mission-values"] .c-main-hero__background .o-background {
    background-size: cover;
  }
}

[data-page="mission-values"] .c-main-hero__background {

  height: 13.7vh;
  top: initial;
}

/* 
          [data-page="mission-values"] .c-main-hero__background .o-background {
              background-size: cover !important;
          }
          
          [data-page="mission-values"] .c-main-hero__content{
              text-align: left;
          }
          
          [data-page="mission-values"] .c-main-hero {
              height: auto;
              min-height: 41rem;
          } */




[data-namespace="interior"] .c-main-hero__title {
  color: #222
}

[data-page="overview"] .c-main-hero__title {
  margin-bottom: 0 !important;
}

[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;

}

@media(min-width: 1000px) {
  [data-namespace="interior"] .c-main-hero__subtitle {
    width: max-content;
    padding: 0 2rem;
  }
}

[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: .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;
  font-weight: bold;
  text-transform: capitalize;
}

:lang(nl) [data-namespace="interior"] .c-main-hero__subtitle-content p {
  text-transform: initial;
}

[language-code="/nl"] .c-main-hero__subtitle-content p {
  text-transform: none;
}

[data-page="corportate"] .c-main-hero__subtitle-content p {
  text-transform: none;
}

[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
}

.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\/3\@large {
    width: calc(100% / 3) !important
  }

  .u-1\/2\@large {
    width: calc(100% / 2) !important
  }
}

@media (min-width: 1536px) {
  .u-1\/3\@xl {
    width: calc(100% / 3) !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
  }
}

@media only screen and (min-width: 1836px) {
  .u-1\/3\@xl {
    width: 33.33333% !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 .c-header-navigation__nav,
.is-loaded.has-scrolled .c-header-navigation__logo,
.is-loaded.has-scrolled .c-main-hero__social,
.is-loaded.has-scrolled .c-header-navigation__search-btn,
.is-loaded.has-scrolled .__scroll {
  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
}

.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,
.__back-to {
  opacity: 1;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px)
}

.is-loaded.has-scrolled-bottom .o-line {
  opacity: 0.5
}

.is-loaded .c-header-navigation__logo,
.is-loaded .c-header-navigation__nav,
.is-loaded .c-header-navigation__content,
.is-loaded .c-header-navigation__menu,
.is-loaded .c-header-navigation__search-btn,
.is-loaded .__back-to,
.is-loaded .c-main-hero__social,
.is-loaded .__scroll {
  -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
}

.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
}

.wrapper-center {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*# sourceMappingURL=app.bundle.css.map*/

.article-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  background: #264F36;
  padding: 4rem 0 0 0;
  gap: 4rem;
}

.article-section__content {
  color: #fff;
}

.article-image__wrapper {
  width: 100%;
  height: 37.2857rem;
}

.article-image__wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.o-container--custom {
  margin-right: auto;
  max-width: 2560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin: 0 auto;
}

#work-for-you {
  padding: 4.285rem 0;
  background-color: #F9F9F9;
}

#work-for-you .work-for-you__wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1.7142rem;
}

#work-for-you .work-for-you__description {
  display: flex;
  padding: 1.714rem;
  justify-content: center;
  align-items: center;
  gap: 0.714rem;
  align-self: stretch;
  border-radius: 5px;
  border: 1px solid #000;
  background: #FFF;
}

#work-for-you .grid-card-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2.571rem;
}

#work-for-you .grid-card-wrapper .card {
  display: flex;
  flex-direction: column;
  gap: 1.7142rem;
}

#work-for-you .grid-card-wrapper .card-img-wrapper img {
  mix-blend-mode: darken;
}

#work-for-you .grid-card-wrapper .card .card-content {
  padding: 1.7142rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  border-radius: 5px;
  border: 2px solid #000;
  background: #FFBC0D;
}

#work-for-you .o-button.-fill {
  width: fit-content;
}

#work-for-you .work-for-you__wrapper__right {
  display: none;
}

#work-for-you .work-for-you__wrapper__left {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 2.571rem;
}


@media (min-width: 700px) {
  .article-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    padding: 0 !important;
  }

  .o-container--custom {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .article-image__wrapper {
    width: 39.88vw;
  }

  .article-section__content {
    flex: 1;
    gap: 2.57142rem;
    display: flex;
    flex-direction: column;
    padding-block: 4rem;
  }

  .article-image__wrapper {
    height: auto;
    align-self: stretch;
    flex: 1;
  }

  .article-section__content.o-container {
    padding-right: 4.571428rem;
  }

  #work-for-you .grid-card-wrapper .card {
    display: flex;
    flex-direction: row;
    gap: 1.7142rem;
    align-items: stretch;
  }

  #work-for-you .grid-card-wrapper .card .card-content {
    background: #FFBC0D;
    flex: 1;
    width: 100%;
  }
}

.article-img-2 {
  display: none;
}

#article-grid-image {
  padding: 2.57142rem 0;
}

#article-grid-image .grid-img-1 {
  display: none;
}

#article-grid-image .grid-img-3 {
  display: none;
}

.grid-img-1,
.grid-img-2,
.grid-img-3 {
  border-radius: 5px;
}

#article-grid-image .grid-image {
  display: grid;
  grid-template-columns: 1fr;
}

#making-different {
  padding: 4rem 0;
}

#making-different .making-different-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.5714rem;
}

#making-different .wrapper-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#making-different hr {
  border-top: 1px solid #000;
  height: 1px;
}

/* #siifc .c-values::before {
              content: '';
              top: 4rem;
              z-index: -1;
              right: 0;
              display: block;
              width: 100%;
              position: absolute;
              height: 100%;
              background-image: url(https://d21jvwj1c73d2e.cloudfront.net/oms/1157/image/2025/4/GD1OW_long/long.svg);
              background-size: cover
          } */

#learning-working {
  display: flex;
  padding: 3.7142rem 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6.285714rem;
  align-self: stretch;
  background: #FFBC0D;
  margin-top: 2.571rem;
}

@media screen and (max-width: 999px) {
  #learning-working>canvas {
    display: none;
  }
}

#learning-working .learning-working-wrapper {
  display: flex;
  padding: 3.43rem 1.86rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  align-self: stretch;
  border-radius: 5px;
  background: #FFB71B;
  color: #000;
  box-shadow: 10px 6px 20px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

#learning-working .learning-working-wrapper h2 {
  color: #000;
}

#learning-working .learning-working-content {
  display: flex;
  flex-direction: column;
}

#learning-working .learning-working-content-list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .625rem;
}

#learning-working .learning-working-wrapper .btn-wrapper {
  display: flex;
  width: 100%;
  justify-content: center;
  /* position: absolute; */
  /* bottom: -1.415rem; */
}

[data-page="mission-values"] #grid-image-custom {
  display: none;
}


@media (min-width: 700px) {
  #article-grid-image {
    padding-inline: 3.4285rem;
  }

  #article-grid-image .grid-img-1 {
    display: block;
    width: 26.6vw;
    height: 21.4rem;
    object-fit: cover;
  }

  #article-grid-image .grid-img-3 {
    display: block;
    width: 26.6vw;
    height: 21.4rem;
    object-fit: cover;
  }

  #article-grid-image .grid-img-2 {
    width: 26.6vw;
    height: 21.4rem;
    object-fit: cover;
    object-position: 35%;
  }

  #article-grid-image .grid-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.57142rem;
  }

  #learning-working {
    padding: 9rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 0;
  }
}

@media (min-width: 1000px) {
  .article-image__wrapper {
    width: 100%;
    height: 34.25rem;
    position: relative;
  }

  .article-image__wrapper .article-img-1 {
    width: 22.7083vw;
    height: 29.875rem;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
  }

  .article-image__wrapper .article-img-2 {
    display: block;
    width: 35.9722vw;
    height: 19rem;
    object-fit: cover;
    object-position: center bottom;
    position: absolute;
    right: 10vw;
    bottom: 0;
    z-index: 20;
  }

  [data-page="mission-values"] #intro .c-mission__grid {
    margin-bottom: 5rem;
  }

  #article-grid-image .c-mission__grid-image {
    height: 18.75rem;
    max-height: 300px;
  }

  #article-grid-image .grid-img-1 {
    display: block;
    width: 29.4444vw;
    height: 20.84vw;
    object-fit: cover;
    object-position: top;
    max-height: 300px;
  }

  #article-grid-image .grid-img-3 {
    display: block;
    width: 29.4444vw;
    height: 20.84vw;
    object-fit: cover;
    max-height: 300px;
  }

  #article-grid-image .grid-img-2 {
    width: 29.4444vw;
    height: 20.84vw;
    object-fit: cover;
    object-position: 35%;
    max-height: 300px;
  }

  #article-grid-image .grid-image {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.57142rem;
  }

  #making-different {
    padding: 5rem 0;
  }

  #making-different .making-different-wrapper {
    display: flex;
    flex-direction: row;
    gap: 4.5714rem;
  }

  #siifc .c-values::before {
    top: 28rem;
    height: 100%;
  }

  #work-for-you .work-for-you__wrapper__left {
    display: flex;
    width: 50%;
  }

  #work-for-you .work-for-you__wrapper__right {
    display: flex;
    flex-direction: column;
    width: 33.6111vw;
    position: relative;
  }

  #work-for-you .work-for-you__wrapper {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }

  #work-for-you .work-for-you__wrapper__right .img-wrapper {
    position: relative;
    width: 20.83vw;
    height: 14.0625rem;
    min-width: 300px;
    min-height: 255px;
    border-radius: 5px;
    overflow: hidden;
  }

  #work-for-you .work-for-you__wrapper__right .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 5px;
    display: block;
  }

  #work-for-you .work-for-you__wrapper__right .img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
  }

  .work-for-you__wrapper__right .grid-right-img-3 {
    position: absolute !important;
    bottom: 0;
    left: 0;
    z-index: 30;
    max-width: 500px;
    object-fit: cover;
    object-position: center top;
  }

  .work-for-you__wrapper__right .grid-right-img-2 {
    position: absolute !important;
    bottom: 11rem;
    left: 5.5vw;
    z-index: 20;
    max-width: 500px;
    object-fit: cover;
    object-position: center top;
  }

  .work-for-you__wrapper__right .grid-right-img-1 {
    position: absolute !important;
    bottom: 21rem;
    left: 15.5rem;
    z-index: 10;
    max-width: 500px;
    object-fit: cover;
    object-position: center top;
  }

  #learning-working {
    padding: 5rem 9rem;
    background-color: transparent;
    position: relative;
  }

  #learning-working canvas {
    position: absolute;
    z-index: -1;
  }

  #learning-working .learning-working-wrapper {
    padding: 3rem;
  }

  [data-page="mission-values"] #grid-image-custom {
    margin: 5rem 0;
    display: block;
  }

  /* .work-for-you__wrapper__right .grid-right-img-1 {
              position: absolute;
              bottom: 0;
              left: 0;
              z-index: 20;
            }
          
            .grid-right-img-2 {
              position: absolute;
              bottom: 0;
              left: 0;
              z-index: 10;
            }
          
            .grid-right-img-3 {
              position: absolute;
              bottom: 5rem;
              left: 10vw;
              z-index: 5;
            } */
}

@media (min-width: 1200px) {
  .article-image__wrapper .article-img-1 {
    max-width: 400px;
  }

  .article-image__wrapper .article-img-2 {
    max-width: 800px;
    right: 4.75vw !important;
  }

  #article-grid-image .grid-img-1 {
    display: block;
    width: 29.4444vw;
    height: 24.311vh;
    object-fit: cover;
    object-position: top;
    max-height: 300px;
  }

  #article-grid-image .grid-img-3 {
    display: block;
    width: 29.4444vw;
    height: 24.311vh;
    object-fit: cover;
    object-position: center top;
    max-height: 300px;
  }

  #article-grid-image .grid-img-2 {
    width: 29.4444vw;
    height: 24.311vh;
    object-fit: cover;
    max-height: 300px;
  }

  .work-for-you__wrapper__right .grid-right-img-3 {
    position: absolute !important;
    bottom: 0;
    left: 0;
    z-index: 30;
    max-width: 500px;
  }

  .work-for-you__wrapper__right .grid-right-img-2 {
    position: absolute !important;
    bottom: 13rem;
    left: 6.5vw;
    z-index: 20;
    max-width: 500px;
  }

  .work-for-you__wrapper__right .grid-right-img-1 {
    position: absolute !important;
    bottom: 23rem;
    left: 18.5rem;
    z-index: 10;
    max-width: 500px;
  }
}

.language_selector {
  position: relative;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-left: 1rem;
  height: 100%;
}

.c-lang-main {
    position: relative;
}

.language_selector .selected-lang,
.c-lang-main .selected-lang {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
}

.language_selector .selected-lang svg,
.c-lang-main .selected-lang svg {
  border-radius: 50%;
}

.language_selector .language_selector-dropdown,
 .language_selector-dropdown{


position: absolute;
    top: 100%;
    z-index: 10;
    display: block;
    width: 100%;
    padding: 0 0 0 1.5625rem;
}

@media screen and (min-width: 1000px) {
  .language_selector .language_selector-dropdown,
.language_selector-dropdown {
    position: absolute;
    top: 100%;
    z-index: 10;
  }
}

.language_selector .language_selector-dropdown .lang_sel-list,
.language_selector-dropdown .lang_sel-list {
  /* flex flex-wrap items-start justify-start bg-white shadow-menu w-full */
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
  background-color: #fff;
  border-radius: .5rem;
  border: solid 2px rgba(182, 184, 185, 0.29);
  margin-top: 0.625rem;
}

.language_selector .lang_sel-item,
.c-lang-main .lang_sel-item{
  display: flex;
  align-items: center;
}

.language_selector .lang_sel-item,
.c-lang-main .lang_sel-item {
  display: flex;
  gap: 1rem;
  color: #000;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: .5rem 1rem;
  border-radius: .5rem;
}

.language_selector .lang_sel-item svg,
.c-lang-main .lang_sel-item svg {
  border-radius: 50%;
}

.language-selector .l-layout__content-text,
.c-lang-main .l-layout__content-text {
  margin-bottom: 0 !important;
}


.selected-lang-text {
  color: #292929;
  /* text-transform: uppercase; */
  text-transform: capitalize;
  font-weight: bold;
}

.lang_sel-item:hover {
  background-color: #264F36;
  color: #fff;
  transition: all .3s ease-in-out;
}

[data-page="corportate"] .c-main-hero__background {
  display: none;
}

@media (min-width: 1000px) {
  [data-page="corportate"] .c-main-hero__background {
    width: 45%;
    right: 0px;
    left: initial;
    height: calc(100% - 12rem) !important;
    display: block;
  }

  [data-page="corportate"] .c-main-hero__background.mobile {
    display: none;
  }
}

.contain {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

.font-weight-bold {
  font-weight: 600;
}

[data-component="our-mission"] .l-layout__content-title {
  margin-bottom: .625rem;
}

.background-yellow {
  background-color: #FFB71B;
  display: inline-block;
}

/* [data-page="corportate"] div#apply-widget {
              display: none;
          }
          
          [hide-widget="corp-jobs"] div#apply-widget {
              display: none;
          } */


.corporate-jobs.l-layout__content-title--wrap {
  margin-bottom: 1.71428rem;
}

#corp-role .l-layout__content-title {
  text-align: center;
}

#corp-role .c-jobs-list-only {
  margin-bottom: 0;
  padding: 0rem;
}

#corp-role .results-list__item-apply {
  background: #264F36;
}

#corp-role .results-list__item-apply--label {
  color: #fff;
}

#corp-role .results-list__item-apply--icon {
  background-color: #fff;
}

#corp-role .results-list__item-apply--icon svg path {
  fill: #000 !important;
  color: #000 !important;
}

@media (min-width: 700px) {
  .corporate-jobs.l-layout__content-title--wrap {
    margin-bottom: 1.7142rem;
  }
}

@media (min-width: 1000px) {
  .corporate-jobs.l-layout__content-title--wrap {
    margin-bottom: 1.41176rem;
  }

  #corp-role .c-jobs-list-only {
    margin-bottom: 0;
    padding: 0 2rem;
  }

  #corp-role .l-layout__content-title {
    text-align: left;
  }

  #corp-role .results-list__item-apply {
    background: #264F36;
    width: fit-content !important;
    white-space: nowrap;
  }
}

@media (min-width: 1536px) {
  #corp-role .results-list__item-apply {
    background: #264F36;
    width: fit-content !important;
    white-space: nowrap;
  }
}

.results-container:has(.result-suggestions-title) .results-list li {
  margin-top: 10px;
}

.o-button.-fill:focus-visible {
  -webkit-filter: none;
  filter: none;
}

:lang(nl) #location-modal-title>strong {
  display: none;
}

:lang(nl) #location-modal-desc {
  visibility: hidden;
}

:lang(nl) #location-modal-title::before {
  content: "Oops! We kunnen jouw locatie niet vinden.";
  color: #fff;
  font-weight: bold;
}

:lang(nl) #location-modal-desc::before {
  content: "Schakel locatievoorzieningen in via de instellingen van je browser of zoek op postcod";
  color: #fff;
  display: block;
  visibility: visible;
}

[data-component="video-functions"] {
  padding: 7.5rem 0 4rem;
}

.image-blurb {
  padding: 2rem 0 1rem;
}

.image-blurb__card {

  margin: 0 auto;
}

.image-blurb__media-wrap {
  position: relative;
}

.image-blurb__bubbles {
  position: absolute;
  width: 15rem;
  height: 8rem;
  left: 1.25rem;
  top: -1rem;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 10% 45%, #f4b400 0 12px, transparent 13px),
    radial-gradient(circle at 40% 22%, #f4b400 0 5px, transparent 6px),
    radial-gradient(circle at 68% 28%, #f4b400 0 3px, transparent 4px),
    radial-gradient(circle at 52% 58%, transparent 0 7px, #f4b400 8px 9px, transparent 10px),
    radial-gradient(circle at 86% 70%, transparent 0 5px, #f4b400 6px 7px, transparent 8px),
    radial-gradient(circle at 30% 78%, transparent 0 10px, #f4b400 11px 12px, transparent 13px),
    radial-gradient(circle at 76% 12%, transparent 0 7px, #f4b400 8px 9px, transparent 10px);
}

.image-blurb__media {
  display: block;
  width: 100%;
  height: 18.5rem;
  object-fit: cover;
  border-radius: 0 2rem 0 0;
}

.image-blurb__main {
  padding: 2rem 0 1.2rem 2.2rem;
}

.image-blurb__intro h2 {
  margin: 0 0 1rem;
}

.image-blurb__intro p {
  margin: 0;
}

.image-blurb__panel {
  margin-top: 2rem;
  border: 5px solid #f4b400;
  border-right: 0;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  padding: 1.75rem 1rem;
}

.image-blurb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.image-blurb__item {
  /* display: grid;
  grid-template-columns: 2.2rem 1fr;
  column-gap: 0.9rem;
  align-items: start; */

  display: grid;
  /* grid-template-columns: 2.2rem 1fr; */
  column-gap: 0.9rem;
  align-items: start;
  gap: 1rem;
}

.image-blurb__item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.image-blurb__item strong {
  font-weight: 700;
}

.image-blurb__icon {
  width: 3.2rem;
  height: 3.2rem;
  color: #27553a;
  margin-top: 0.1rem;
}

.image-blurb__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 1000px) {
  .image-blurb {
    padding: 4rem 0 2rem;
  }

  .image-blurb__card {
    display: grid;
    grid-template-columns: minmax(17rem, 41%) 1fr;
    align-items: stretch;
  }

  .image-blurb__bubbles {
    width: 16rem;
    left: -0.5rem;
    top: -2rem;
  }

  .image-blurb__media {
    height: 100%;
    min-height: 32rem;
    border-radius: 0 2rem 0 0;
  }

  .image-blurb__main {
    padding: 5.2rem 0 0 3.4rem;
  }

  .image-blurb__intro h2 {
    max-width: 32rem;
  }

  .image-blurb__panel {
    margin-top: 2.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 2rem;
    padding: 2.8rem 3.4rem 2.8rem 3.2rem;
    border-right-color: transparent;
    margin-left: -6rem;
    z-index: 1;
    position: relative;
    background: #fff;
    margin-bottom: -2rem;
  }

  .image-blurb__list {
    gap: 2.1rem;
  }

  .image-blurb__item {
    grid-template-columns: 2.6rem 1fr;
    column-gap: 1.35rem;
  }

  .image-blurb__icon {
    width: 2.6rem;
    height: 2.6rem;
  }
}

@media (max-width: 699px) {
  .image-blurb__intro h2 {
    max-width: 12ch;
  }
}


.c-video-functions__list {
  margin-top: 4rem;
  overflow: hidden;
}

.c-video-functions__wrapper {
  align-items: stretch;
  box-sizing: border-box;
}

.c-video-functions__item {
  min-height: 26rem;
  height: auto;
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.c-video-functions__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(12 18 24 / 40%) 0%, rgb(10 14 18 / 0%) 70%, rgb(10 14 18) 100%);
  z-index: 0;
}

.c-video-functions__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1rem;
  padding: 2.2rem 1.8rem 1.8rem;
  color: #fff;
}

.c-video-functions__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 2.4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.c-video-functions__text {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 600;

}

.c-video-functions__button {
  width: fit-content;
}

.c-video-functions__controls {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.c-video-functions__controls .swiper-button-prev,
.c-video-functions__controls .swiper-button-next {
  position: static;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: #264F36;
  color: #fff;
}

.c-video-functions__controls .swiper-button-prev::after,
.c-video-functions__controls .swiper-button-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.c-video-functions__controls .swiper-button-disabled {
  opacity: 0.4;
}

@media (min-width: 1001px) {

  .c-video-functions__list.is-desktop-grid,
  .c-video-functions__list.swiper-disabled {
    overflow: visible;
  }

  .c-video-functions__list.is-desktop-grid .c-video-functions__wrapper,
  .c-video-functions__list.swiper-disabled .c-video-functions__wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .c-video-functions__list.is-desktop-grid .c-video-functions__item,
  .c-video-functions__list.swiper-disabled .c-video-functions__item {
    width: 100%;
  }

  .c-video-functions__controls {
    display: none;
  }

  .c-video-functions__item {
    min-height: 30rem;
  }

  .c-video-functions__content {
    padding: 2.2rem 3.8rem 1.8rem;
  }
}

[data-page="mission-values"] .c-team-values {
  margin-top: 6rem;
  position: relative;
}


[data-component="development"] {
  margin-top: 4rem;
    background: #F9F9F9;
}

[data-component="development"] .c-blurb__inner {
  background-color: transparent;
}



[data-page="mission-values"] .c-team-values__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

[data-page="mission-values"] .c-team-values__item {
  display: grid;
  justify-items: start;
  gap: 0.9rem;
}

[data-page="mission-values"] .c-team-values__icon {
  width: 3.15rem;
  height: 3.15rem;
}

[data-page="mission-values"] .c-team-values__badge {
  display: inline-block;
  background: #264F36;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
  padding: 0.9rem 1rem;
  border-radius: 0.15rem;
  max-width: 14.5rem;
  text-align: center;
}

[data-page="mission-values"] .c-development {
  padding-bottom: 6rem;
  padding-left: 2rem;
}
@media(min-width: 1000px) {
  [data-page="mission-values"] .c-development {
  padding-left: 9rem;

  }
}



[data-page="mission-values"] .c-development__cards {
  margin-top: 2rem;
  display: grid;
  gap: 1.05rem;
}

[data-page="mission-values"] .c-development-card {
  display: grid;
  gap: 0.85rem;
}

[data-page="mission-values"] .c-development-card__icon-wrap {
  padding-left: 0.3rem;
  text-align: center;
}

[data-page="mission-values"] .c-development-card__icon {
  width: 6.9rem;
  height: 6.9rem;
  margin: 2rem auto;
}

[data-page="mission-values"] .c-development-card__body {
  background: #264F36;
  color: #fff;
  border-radius: 0.5rem 0 0 0.5rem;
  padding: 1rem 1rem 1.05rem;
}


  [data-page="mission-values"] .c-development-card__title {
    color: #fff;
  }

@media (min-width: 700px) {



  [data-page="mission-values"] .c-team-values__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 2.5rem;
    align-items: start;
    max-width: 45rem;
    margin-left: auto;
  }

  [data-page="mission-values"] .c-team-values__item {
    justify-items: center;
  }

  [data-page="mission-values"] .c-team-values__badge {
    max-width: 16rem;
  }

  [data-page="mission-values"] .c-development__title {
    margin-bottom: 1.5rem;
  }

  [data-page="mission-values"] .c-development__cards {
    margin-top: 2.4rem;
    gap: 2.8rem;
  }

  [data-page="mission-values"] .c-development-card {
    grid-template-columns: 9.5rem minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
  }

  [data-page="mission-values"] .c-development-card__icon-wrap {
    text-align: center;
    padding-left: 0;
  }

  [data-page="mission-values"] .c-development-card__icon {
    width: 6.5rem;
    height: 6.5rem;
  }

  [data-page="mission-values"] .c-development-card__body {
    padding: 1.35rem 1.5rem;
  }
}




@media (min-width: 1000px) {



  [data-page="mission-values"] .c-team-values__inner {
    display: grid;
    grid-template-columns: minmax(0, 23rem) minmax(0, 1fr);
    gap: 1rem 2.5rem;
    align-items: center;
  }

  [data-page="mission-values"] .c-team-values__title {
    margin: 0;
    font-size: 3.45rem;
  }

  [data-page="mission-values"] .c-team-values__items {
    margin-left: 0;
    max-width: none;
  }

  [data-page="mission-values"] .c-team-values__icon {
    width: 4.2rem;
    height: 4.2rem;
  }

  [data-page="mission-values"] .c-team-values__badge {
    font-size: 0.95rem;
    max-width: 17.5rem;
    min-height: 5.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  [data-page="mission-values"] .c-development__inner {
    position: relative;
    overflow: hidden;
  }

  [data-page="mission-values"] .c-development__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }

  [data-page="mission-values"] .c-development__title {
    grid-column: 1;
    font-size: 3.8rem;
    margin: 0;
    max-width: 11ch;
  }

  [data-page="mission-values"] .c-development__text:first-of-type {
    grid-column: 1;
    margin-top: 1rem;
  }

  [data-page="mission-values"] .c-development__text:last-of-type {
    grid-column: 2;
    margin-top: 2rem;
  }

  [data-page="mission-values"] .c-development__cards {
    margin-top: 3.2rem;
  }

  [data-page="mission-values"] .c-development-card {
    grid-template-columns: 12.25rem minmax(0, 1fr);
    gap: 1rem;
  }

  [data-page="mission-values"] .c-development-card__icon {
    width: 6.35rem;
    height: 6.35rem;
  }

  [data-page="mission-values"] .c-development-card__body {
    min-height: 7.6rem;
    padding: 1.55rem 2.05rem;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
  }

  [data-page="mission-values"] .c-development-card__title {
    font-size: 1.85rem;
    margin-bottom: 0.45rem;
    color: #fff;
  }

  [data-page="mission-values"] .c-development-card__text {
    font-size: 1rem;
  }

  [data-page="mission-values"] .c-development__inner::before {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 15rem;
    width: 7rem;
    height: 7rem;
    border: 2px solid rgba(255, 188, 13, 0.75);
    border-radius: 50%;
    pointer-events: none;
  }

  [data-page="mission-values"] .c-development__inner::after {
    content: "";
    position: absolute;
    left: 4.4rem;
    bottom: 7rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 2px solid rgba(255, 188, 13, 0.75);
    border-radius: 50%;
    pointer-events: none;
  }
}

#olivia-event[aria-disabled=true] {
    color: fff;
    cursor: not-allowed;
    box-shadow: none;
    background-color: #525252;
}
#olivia-event[aria-disabled=false] {
    cursor: pointer
}
#olivia-event[aria-disabled=true]:hover::before,
#olivia-event[aria-disabled=true]:hover::after {
    display: none;
}
svg.loading {
    margin-left: 1rem;
}
#olivia-event[data-loading=false] .loading {
    display: none;
}

.location-search__icon-right {
  width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}