:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: #0000001a;
  --f-spinner-color-2: #11181ccc;
  --f-spinner-stroke: 2.75;
}

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

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

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

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

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

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

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

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

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

.f-throwOutUp {
  animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: var(--f-throw-out-duration, .175s) ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

.f-slideIn.from-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, .85s) cubic-bezier(.16, 1, .3, 1) f-slideOutPrev;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

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

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

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

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

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

.fancybox__container::backdrop {
  background-color: #0000;
}

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

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

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

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

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

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

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

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

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

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

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

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block;
}

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

.is-loading .fancybox__content {
  opacity: 0;
}

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

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

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

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

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

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

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

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  will-change: transform, width, height;
}

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

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

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

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

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

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

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

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

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

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

.is-compact .fancybox__footer {
  z-index: 20;
  background: #18181b80;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

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

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

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: #18181b4d;
  --f-button-active-bg: #18181b80;
  --f-button-shadow: none;
  --f-button-transition: all .15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px #18181b80);
  --f-button-svg-disabled-opacity: .65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

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

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

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

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

.fancybox-protected {
  z-index: 40;
  -webkit-user-select: none;
  user-select: none;
  position: absolute;
  inset: 0;
}

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

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

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

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

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop {
  animation: var(--f-backdrop-enter-duration, .35s) ease backwards f-fadeIn;
}

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

.fancybox__container.is-animated[aria-hidden="true"] .fancybox__backdrop {
  animation: var(--f-backdrop-exit-duration, .35s) ease forwards f-fadeOut;
}

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

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

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

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

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  color: #fff;
  background: #18181be6;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: flex;
}

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

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

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

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

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

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

.is-modern.is-resting .f-thumbs__slide {
  transition: transform .33s;
}

.is-modern.is-resting .f-thumbs__slide__button {
  transition: clip-path .33s;
}

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

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

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

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

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

.is-modern .f-thumbs__slide__button {
  --clip-path: inset(0 calc(((var(--f-thumb-width, 0)  - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * .5) round var(--f-thumb-border-radius, 0));
  clip-path: var(--clip-path);
}

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

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

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

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

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

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

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

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

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

.fancybox__thumbs.is-classic .f-spinner {
  background-image: linear-gradient(#ffffff1a, #ffffff0d);
}

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

.fancybox__thumbs.is-modern .f-spinner {
  background-image: linear-gradient(#ffffff1a, #ffffff0d);
}

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

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

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

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

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

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, #fffffff0);
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: #18181ba6;
  --f-button-hover-bg: #464649a6;
  --f-button-active-bg: #5a5a5da6;
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px #18181b26);
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: .65;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px #00000080);
  pointer-events: none;
  z-index: 20;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI Adjusted, Segoe UI, Liberation Sans, sans-serif;
  display: flex;
}

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

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

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

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

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

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

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

.fancybox__infobar span {
  padding: 0 5px;
}

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

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

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

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

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

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

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

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

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

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

.splide__list {
  backface-visibility: hidden;
  height: 100%;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  pointer-events: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
}

.splide__pagination li {
  pointer-events: auto;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  display: inline-block;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  contain: strict;
  border: 2px solid #999;
  border-left-color: #0000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: auto;
  animation: 1s linear infinite splide-loading;
  display: inline-block;
  position: absolute;
  inset: 0;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  opacity: 0;
  z-index: 0;
  margin: 0 !important;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  padding: 0;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: .9;
}

.splide__arrow:disabled {
  opacity: .3;
}

.splide__arrow:focus-visible {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__pagination {
  z-index: 1;
  padding: 0 1em;
  position: absolute;
  bottom: .5em;
  left: 0;
  right: 0;
}

.splide__pagination__page {
  opacity: .7;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  transition: transform .2s linear;
  display: inline-block;
  position: relative;
}

.splide__pagination__page.is-active {
  z-index: 1;
  background: #fff;
  transform: scale(1.4);
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}

.splide__pagination__page:focus-visible, .splide.is-focus-in .splide__pagination__page:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: #0000;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline-offset: -3px;
    outline: 3px solid #0bf;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible, .splide.is-focus-in .splide__toggle:focus {
  outline-offset: 3px;
  outline: 3px solid #0bf;
}

.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  border: 3px solid #0000;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  flex-direction: column;
  padding: 1em 0;
  display: flex;
  inset: 0 .5em 0 auto;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

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

progress {
  vertical-align: baseline;
}

template, [hidden] {
  display: none;
}

a {
  -webkit-text-decoration-skip: objects;
  background-color: #0000;
  text-decoration: none;
}

a:active, a:hover {
  outline-width: 0;
}

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

b, strong {
  font-weight: inherit;
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  color: #000;
  background-color: #ff0;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

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

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

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  vertical-align: middle;
  margin: 0;
}

button, select {
  text-transform: none;
}

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

button:hover, html [type="button"]:hover, [type="reset"]:hover, [type="submit"]:hover {
  cursor: pointer;
}

button {
  background-color: #0000;
  border: none;
  margin: 0;
  padding: 0;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

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

textarea {
  resize: none;
  vertical-align: top;
  overflow: auto;
}

input, select, textarea {
  outline: 0;
}

[disabled] {
  cursor: default;
}

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

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

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

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

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

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

input::-moz-placeholder {
  color: $ colorPlaceholder;
}

textarea::-moz-placeholder {
  color: $ colorPlaceholder;
}

:is(input:-ms-placeholder-shown, textarea:-ms-placeholder-shown), :is(input:placeholder-shown, textarea:placeholder-shown) {
  color: $ colorPlaceholder;
}

input::-webkit-input-placeholder {
  color: $ colorPlaceholder;
}

textarea::-webkit-input-placeholder {
  color: $ colorPlaceholder;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

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

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

td, th {
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, form, blockquote {
  margin: 0;
}

ul, ol, li, dl, dd {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

:root {
  --black: #000;
  --white: #fff;
  --color-oat-100: #eadecb;
  --color-oat-200: #e1d1b6;
  --color-oat-300: #d8c4a1;
  --color-oat-400: #d4bd97;
  --color-oat-500: #bfaa88;
  --color-oat-600: #94846a;
  --color-oat-700: #6a5f4c;
  --color-earth-100: #b6ada5;
  --color-earth-200: #988c81;
  --color-earth-300: #7b6b5d;
  --color-earth-400: #6c5a4b;
  --color-earth-500: #615144;
  --color-earth-600: #4c3f35;
  --color-earth-700: #362d26;
  --color-grass-100: #d7d5a4;
  --color-grass-200: #c6c480;
  --color-grass-300: #b6b35b;
  --color-grass-400: #aeab49;
  --color-grass-500: #9d9a42;
  --color-grass-600: #7a7833;
  --color-grass-700: #575625;
  --color-bean-0: #c0c2bb;
  --color-bean-100: #969a8d;
  --color-bean-200: #6b715f;
  --color-bean-300: #414832;
  --color-bean-400: #2c341b;
  --color-bean-500: #35391e;
  --color-oat-primary: var(--color-oat-400);
  --color-oat-alt: #ffe9c6;
  --color-earth-primary: var(--color-earth-400);
  --color-grass-primary: var(--color-grass-400);
  --color-bean-primary: var(--color-bean-400);
  --color-bean-alt: #727562;
  --font-regular: "PublicSans-Regular";
  --font-medium: "PublicSans-Medium";
  --font-semibold: "PublicSans-SemiBold";
  --font-bold: "PublicSans-Bold";
  --font-black: "PublicSans-Black";
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-xxl: 32px;
  --radius-full: 9999px;
  --lh-tight: 1.15;
  --lh-small: 1.25;
  --lh-normal: 1.5;
  --lh-loose: 1.75;
  --size-0: 0px;
  --size-4: 4px;
  --size-8: 8px;
  --size-12: 12px;
  --size-16: 16px;
  --size-18: 18px;
  --size-20: 20px;
  --size-24: 24px;
  --size-28: 28px;
  --size-32: 32px;
  --size-40: 40px;
  --size-48: 48px;
  --size-56: 56px;
  --size-64: 64px;
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 500;
  --z-modal: 1000;
  --z-toast: 1100;
}

@font-face {
  font-family: PublicSans-Bold;
  src: url("subset-PublicSans-Bold.1507b187.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: PublicSans-Medium;
  src: url("subset-PublicSans-Medium.9fc931d0.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: PublicSans-Black;
  src: url("subset-PublicSans-Black.fe0ce1e8.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: PublicSans-SemiBold;
  src: url("subset-PublicSans-SemiBold.b2d16320.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: PublicSans-Regular;
  src: url("subset-PublicSans-Regular.a7cbdec8.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--text-regular);
}

html {
  color: var(--dark);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-bean-primary);
  font-family: var(--font-bold);
}

h1 {
  font-size: var(--size-64);
  line-height: var(--lh-tight);
  font-family: var(--font-black);
  margin-bottom: var(--size-24);
}

@media (width <= 1620px) {
  h1 {
    font-size: var(--size-56);
    margin-bottom: var(--size-20);
  }
}

@media (width <= 1400px) {
  h1 {
    font-size: var(--size-48);
  }
}

@media (width <= 1200px) {
  h1 {
    font-size: var(--size-40);
    margin-bottom: var(--size-16);
  }
}

@media (width <= 1023px) {
  h1 {
    margin-bottom: var(--size-12);
  }
}

@media (width <= 767px) {
  h1 {
    font-size: var(--size-40);
    margin-bottom: var(--size-16);
  }
}

h2 {
  font-size: var(--size-48);
  margin-bottom: var(--size-20);
}

@media (width <= 1480px) {
  h2 {
    font-size: var(--size-40);
    margin-bottom: var(--size-16);
  }
}

@media (width <= 1400px) {
  h2 {
    font-size: var(--size-40);
  }
}

@media (width <= 1200px) {
  h2 {
    font-size: 36px;
  }
}

@media (width <= 1023px) {
  h2 {
    font-size: var(--size-32);
  }
}

@media (width <= 767px) {
  h2 {
    margin-bottom: var(--size-16);
  }
}

h2 strong {
  font-family: var(--font-black);
}

@media (width <= 767px) {
  h2 br {
    display: none;
  }
}

h2 a {
  color: var(--color-bean--400);
}

h2 a:hover {
  color: var(--color-grass-400);
}

h2 small {
  font-size: var(--size-16);
  margin-top: 12px;
  display: block;
  position: relative;
}

h3 {
  font-size: var(--size-32);
  margin-bottom: var(--size-16);
  line-height: var(--lh-small);
}

@media (width <= 1400px) {
  h3 {
    font-size: var(--size-28);
    margin-bottom: var(--size-12);
  }
}

@media (width <= 1023px) {
  h3 {
    font-size: var(--size-24);
  }
}

@media (width <= 767px) {
  h3 {
    font-size: var(--size-28);
    margin-bottom: var(--size-12);
  }

  h3 br {
    display: none;
  }
}

h3 small {
  font-size: var(--size-16);
  position: relative;
  top: -2px;
}

h4 {
  font-size: var(--size-24);
  margin-bottom: var(--size-12);
  line-height: var(--lh-small);
  font-family: var(--font-bold);
  color: var(--color-bean-500);
}

@media (width <= 1480px) {
  h4 {
    font-size: var(--size-24);
  }
}

@media (width <= 1400px) {
  h4 {
    margin-bottom: var(--size-8);
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  h4 {
    font-size: var(--size-20);
  }
}

@media (width <= 767px) {
  h4 br {
    display: none;
  }
}

p {
  font-size: 22px;
  line-height: var(--lh-normal);
  color: var(--color-bean-primary);
}

@media (width <= 1480px) {
  p {
    font-size: var(--size-20);
  }
}

@media (width <= 1200px) {
  p {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  p {
    font-size: var(--size-20);
  }
}

p strong, p b {
  font-weight: var(--weight-bold);
  font-family: var(--font-bold);
}

p a {
  color: var(--color-grass-400);
  font-family: var(--font-semi);
  text-decoration: underline;
}

p a:hover {
  color: var(--color-grass-600);
  text-decoration: none;
}

span {
  color: var(--color-bean-primary);
}

@font-face {
  font-family: icomoon;
  src: url("icomoon.f7aca9a4.eot");
  src: url("icomoon.f7aca9a4.eot#iefix") format("embedded-opentype"), url("icomoon.ad343547.ttf") format("truetype"), url("icomoon.f491d800.woff") format("woff"), url("icomoon.c921f109.svg#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icomoon !important;
}

.icon-tiktok:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-facebook:before {
  content: "";
}

.icon-arrow-next:before {
  content: "";
}

.icon-arrow-down:before {
  content: "";
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  box-sizing: border-box;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width <= 575px) {
  .container {
    max-width: calc(100% - 16px);
  }
}

@media (width >= 576px) {
  .container {
    max-width: 540px;
  }
}

@media (width >= 768px) {
  .container {
    max-width: 720px;
  }
}

@media (width >= 992px) {
  .container {
    max-width: 960px;
  }
}

@media (width >= 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (width >= 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (width >= 1620px) {
  .container {
    max-width: 1430px;
  }
}

@media (width <= 1400px) {
  .container {
    box-sizing: border-box;
  }
}

.row {
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width <= 767.98px) {
  .col {
    flex-basis: 100%;
  }
}

@media (width >= 576px) {
  .col-sm-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.6667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333%;
  }

  .offset-sm-5 {
    margin-left: 41.6667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333%;
  }

  .offset-sm-8 {
    margin-left: 66.6667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333%;
  }

  .offset-sm-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 768px) {
  .col-md-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    box-sizing: border-box;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-md-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-md-6 {
    box-sizing: border-box;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-md-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.6667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333%;
  }

  .offset-md-5 {
    margin-left: 41.6667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333%;
  }

  .offset-md-8 {
    margin-left: 66.6667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333%;
  }

  .offset-md-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 992px) {
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.6667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333%;
  }

  .offset-lg-5 {
    margin-left: 41.6667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333%;
  }

  .offset-lg-8 {
    margin-left: 66.6667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333%;
  }

  .offset-lg-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 1200px) {
  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.6667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333%;
  }

  .offset-xl-5 {
    margin-left: 41.6667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333%;
  }

  .offset-xl-8 {
    margin-left: 66.6667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333%;
  }

  .offset-xl-11 {
    margin-left: 91.6667%;
  }
}

.badge {
  color: var(--color-grass-200);
  border: 1px solid var(--color-grass-200);
  border-radius: var(--radius-full);
  font-size: var(--size-16);
  font-family: var(--font-semi);
  padding: var(--size-8) var(--size-16);
  margin-bottom: var(--size-16);
  display: inline-block;
}

@media (width <= 1400px) {
  .badge {
    font-size: 14px;
  }
}

@media (width <= 767px) {
  .badge {
    font-size: var(--size-12);
    margin-bottom: var(--size-12);
  }
}

.btn {
  background-color: var(--color-grass-400);
  color: var(--color-bean-400);
  text-transform: uppercase;
  padding: 0px var(--size-32);
  border-radius: var(--radius-full);
  height: 52px;
  line-height: 52px;
  font-size: var(--size-16);
  font-family: var(--font-bold);
  align-items: center;
  transition: all .25s ease-in-out;
  display: inline-flex;
}

@media (width <= 1480px) {
  .btn {
    height: 50px;
    padding: 0px var(--size-28);
    font-size: 15px;
    line-height: 50px;
  }
}

@media (width <= 1023px) {
  .btn {
    height: 48px;
    line-height: 48px;
  }
}

.btn span {
  color: var(--color-bean-400);
  margin-left: var(--size-24);
  font-size: 24px;
  font-size: var(--size-20);
  transition: all .25s ease-in-out;
  position: relative;
  left: 0;
}

@media (width <= 1400px) {
  .btn span {
    margin-left: var(--size-20);
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .btn span {
    font-size: var(--size-20);
  }
}

@media (width <= 767px) {
  .btn span {
    font-size: var(--size-16);
    margin-left: var(--size-20);
  }
}

.btn:hover {
  background-color: var(--color-grass-500);
}

.btn:hover span {
  left: 3px;
}

.btn--next {
  padding-right: var(--size-16);
}

.btn--bean {
  background-color: var(--color-bean-500);
  color: var(--color-oat-alt);
}

.btn--bean span {
  color: var(--color-oat-alt);
}

.btn--bean:hover {
  background-color: var(--color-bean-primary);
}

.btn--inverse {
  background-color: var(--color-grass-100);
}

.section-label {
  text-transform: uppercase;
  font-family: var(--font-semibold);
  font-size: var(--size-16);
  letter-spacing: 3px;
  margin-bottom: var(--size-8);
  display: block;
}

@media (width <= 1480px) {
  .section-label {
    letter-spacing: 2px;
  }
}

@media (width <= 1200px) {
  .section-label {
    letter-spacing: 1px;
    font-size: 14px;
  }
}

.section-label--grass {
  color: var(--color-grass-400);
}

.section-label--oat {
  color: var(--color-oat-200);
}

.hero-title--grass, .section-heading--grass {
  color: var(--color-grass-400);
}

.section-heading--oat {
  color: var(--color-oat-400);
}

.intro-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: var(--size-64);
}

@media (width <= 1480px) {
  .intro-header {
    margin-bottom: var(--size-48);
  }
}

@media (width <= 1400px) {
  .intro-header {
    margin-bottom: var(--size-40);
    max-width: 760px;
  }
}

@media (width <= 1200px) {
  .intro-header {
    max-width: 600px;
  }
}

@media (width <= 1023px) {
  .intro-header {
    max-width: 480px;
    margin-bottom: var(--size-32);
  }
}

.intro-header p {
  font-size: var(--size-24);
  font-family: var(--font-medium);
  max-width: 80%;
  margin: 0 auto;
}

@media (width <= 1480px) {
  .intro-header p {
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .intro-header p {
    font-size: var(--size-20);
    max-width: 100%;
  }
}

@media (width <= 1023px) {
  .intro-header p {
    font-size: var(--size-18);
  }
}

@media (width <= 767px) {
  .intro-header p {
    max-width: 95%;
  }
}

.intro-header__icon {
  margin-bottom: var(--size-24);
  max-width: 164px;
}

.intro-header--bottom {
  margin-bottom: var(--size-40);
}

@media (width <= 1480px) {
  .intro-header--bottom {
    margin-bottom: var(--size-32);
  }
}

@media (width <= 1400px) {
  .intro-header--bottom {
    margin-bottom: var(--size-28);
  }
}

.intro-header--nomargin {
  margin-bottom: var(--size-0);
}

.section-header {
  max-width: 65%;
  margin-bottom: var(--size-64);
}

@media (width <= 1480px) {
  .section-header {
    margin-bottom: var(--size-48);
  }
}

@media (width <= 1400px) {
  .section-header {
    margin-bottom: var(--size-40);
    max-width: 60%;
  }
}

@media (width <= 1200px) {
  .section-header {
    margin-bottom: var(--size-32);
    max-width: 65%;
  }
}

@media (width <= 1023px) {
  .section-header {
    max-width: 80%;
  }
}

@media (width <= 767px) {
  .section-header {
    max-width: 100%;
    margin-bottom: var(--size-32);
  }
}

.section-header h2 {
  margin-bottom: var(--size-8);
}

.section-footer {
  text-align: center;
  padding-top: var(--size-48);
}

@media (width <= 1480px) {
  .section-footer {
    padding-top: var(--size-40);
  }
}

@media (width <= 1400px) {
  .section-footer {
    padding-top: var(--size-32);
  }
}

@media (width <= 767px) {
  .section-footer {
    padding-top: var(--size-28);
  }
}

.top-bar {
  width: 100%;
  z-index: var(--z-fixed);
  transition: all .25s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
}

.top-bar .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  transition: all .25s ease-in-out;
  display: flex;
}

@media (width <= 1480px) {
  .top-bar .container {
    height: 90px;
  }
}

@media (width <= 767px) {
  .top-bar .container {
    height: 80px;
  }
}

.top-bar__left {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.top-bar__branding {
  margin-right: var(--size-48);
}

@media (width <= 1400px) {
  .top-bar__branding {
    margin-right: var(--size-32);
  }
}

.top-bar__branding a {
  display: block;
}

.top-bar__branding a img {
  width: 300px;
}

@media (width <= 1480px) {
  .top-bar__branding a img {
    width: 280px;
  }
}

@media (width <= 1400px) {
  .top-bar__branding a img {
    width: 240px;
  }
}

@media (width <= 1200px) {
  .top-bar__branding a img {
    width: 240px;
  }
}

@media screen and (width <= 380px) {
  .top-bar__branding a img {
    width: 220px;
  }
}

@media (width <= 1200px) {
  .top-bar__menu {
    display: none;
  }
}

.top-bar__menu ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.top-bar__menu ul li {
  margin-right: var(--size-32);
}

@media (width <= 1400px) {
  .top-bar__menu ul li {
    margin-right: var(--size-24);
  }
}

@media (width <= 1200px) {
  .top-bar__menu ul li {
    margin-right: var(--size-20);
  }
}

.top-bar__menu ul li a {
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  color: var(--color-grass-400);
  transition: all .25s ease-in-out;
}

@media (width <= 1400px) {
  .top-bar__menu ul li a {
    font-size: 15px;
  }
}

.top-bar__menu ul li a:hover {
  color: var(--color-grass-200);
}

.top-bar__menu ul li a {
  position: relative;
}

.top-bar__menu ul li a:after {
  background-color: var(--color-grass-200);
  content: "";
  opacity: 0;
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.top-bar__menu ul li.current-menu-item a {
  color: var(--color-grass-200);
}

.top-bar__menu ul li.current-menu-item a:after {
  opacity: 1;
}

.top-bar__right {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

@media (width <= 1200px) {
  .top-bar__right {
    display: none;
  }
}

.top-bar__user ul {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.top-bar__user ul li a {
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  color: var(--color-grass-400);
  transition: all .25s ease-in-out;
}

@media (width <= 1400px) {
  .top-bar__user ul li a {
    font-size: 15px;
  }
}

.top-bar__user ul li a:hover {
  color: var(--color-grass-200);
}

.top-bar__user ul li:last-child a {
  background-color: var(--color-grass-400);
  height: 44px;
  color: var(--color-bean-400);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0px var(--size-40);
  line-height: 44px;
  font-size: var(--size-16);
  font-family: var(--font-bold);
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1480px) {
  .top-bar__user ul li:last-child a {
    height: 42px;
    padding: 0px var(--size-32);
    line-height: 42px;
  }
}

@media (width <= 1400px) {
  .top-bar__user ul li:last-child a {
    padding: 0px var(--size-28);
  }
}

@media (width <= 1200px) {
  .top-bar__user ul li:last-child a {
    height: 40px;
    font-size: 15px;
    line-height: 40px;
  }
}

@media (width <= 1023px) {
  .top-bar__user ul li:last-child a {
    font-size: var(--size-14);
  }
}

.top-bar__user ul li:last-child a:hover {
  background-color: var(--color-grass-500);
}

.top-bar__language {
  padding-left: 12px;
}

.top-bar__language .wpml-ls-menu-item > a {
  background-color: var(--color-bean-300);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  height: 44px;
  line-height: 44px;
  font-size: var(--size-16);
  font-family: var(--font-bold);
  color: var(--color-grass-400);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 12px 0 16px;
  transition: all .25s ease-in-out;
  display: flex;
  position: relative;
}

.top-bar__language .wpml-ls-menu-item > a span {
  color: var(--color-grass-400);
}

.top-bar__language .wpml-ls-menu-item > a:hover {
  background-color: var(--color-grass-500);
  color: var(--color-bean-400);
}

.top-bar__language .wpml-ls-menu-item > a:hover span {
  color: var(--color-bean-400);
}

.top-bar__language .wpml-ls-menu-item > a:after {
  content: "▾";
  margin-left: 4px;
  font-size: .75em;
}

.top-bar__language .wpml-ls-flag {
  width: 18px;
  height: auto;
  margin-right: 4px;
}

.top-bar__language .wpml-ls-menu-item {
  position: relative;
}

.top-bar__language .wpml-ls-menu-item .sub-menu, .top-bar__language .wpml-ls-sub-menu {
  z-index: 9999;
  min-width: 80px;
  margin: 0;
  padding: .5rem 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}

.top-bar__language .wpml-ls-menu-item .sub-menu a:after, .top-bar__language .wpml-ls-sub-menu a:after {
  display: none;
}

.top-bar__language .wpml-ls-menu-item:hover > .sub-menu, .top-bar__language .wpml-ls-current-language:hover > .wpml-ls-sub-menu {
  display: block;
}

.top-bar__language .site-header, .top-bar__language .main-navigation, .top-bar__language .menu, .top-bar__language .wp-block-navigation {
  overflow: visible;
}

.top-bar.sticky {
  backdrop-filter: blur(8px);
  background-color: #282f18e6;
}

.top-bar.sticky .container {
  height: 80px;
}

@media (width <= 767px) {
  .top-bar.sticky .container {
    height: 70px;
  }
}

.top-bar__btn-menu {
  width: 40px;
  display: none;
}

@media (width <= 1200px) {
  .top-bar__btn-menu {
    background-color: var(--color-grass-400);
    text-align: center;
    border-radius: 100%;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    transition: all .25s ease-in-out;
    display: flex;
  }
}

.top-bar__btn-menu small {
  width: 20px;
}

.top-bar__btn-menu span {
  background-color: var(--color-bean-400);
  border-radius: 9px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2px;
  margin-bottom: 4px;
  transition: all .25s ease-in-out;
  display: flex;
}

.top-bar__btn-menu span:last-child {
  margin-bottom: var(--size-0);
}

.top-bar__btn-menu:hover {
  cursor: pointer;
}

.top-bar__btn-menu:hover span {
  background-color: var(--orange);
}

.top-bar__btn-menu:hover span:first-child {
  width: 80%;
}

.top-bar__btn-menu:hover span:nth-child(2) {
  width: 90%;
}

.top-bar__btn-menu:hover span:nth-child(3) {
  width: 50%;
}

.top-bar__overlay {
  z-index: 999;
  background-color: #0009;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
}

.top-bar__overlay.is-active {
  display: block;
}

.top-bar__mobnav {
  z-index: 9999;
  background: var(--color-grass-400);
  width: 70vw;
  height: 100vh;
  padding: 85px 35px 25px;
  transition-duration: .52s;
  transition-timing-function: ease-out;
  position: fixed;
  top: 0;
  right: -70vw;
  overflow-y: scroll;
  transform: translateX(650px);
}

@media (width >= 768px) {
  .top-bar__mobnav {
    width: 50vw;
    right: -50vw;
  }
}

.top-bar__mobnav.is-active {
  right: 0;
  transform: translateX(0);
}

.top-bar__mobnav .top-bar__language {
  left: var(--size-0);
  top: var(--size-16);
  position: absolute;
}

.top-bar__mobnav .top-bar__language a {
  background-color: var(--color-grass-500);
  color: var(--color-bean-400);
  border-radius: var(--radius-full);
  height: 24px;
  padding-right: 16px;
  line-height: 24px;
}

.top-bar__mobnav .top-bar__language a span {
  color: var(--color-bean-400);
}

.top-bar__mobnav .top-bar__language ul {
  flex-flow: wrap;
  justify-content: center;
  align-items: start;
  display: flex;
}

.top-bar__mobnav .top-bar__language ul li {
  margin-right: 6px;
}

.top-bar__mobnav .menu-mobile-menu-container ul.menu {
  margin-top: var(--size-32);
}

.top-bar__mobnav .menu-mobile-menu-container ul.menu li {
  margin-bottom: var(--size-12);
  text-align: center;
  margin-bottom: var(--size-28);
  display: block;
}

.top-bar__mobnav .menu-mobile-menu-container ul.menu li a {
  font-size: var(--size-20);
  font-family: var(--font-semibold);
  color: var(--color-bean-400);
  transition: all .25s ease-in-out;
}

.top-bar__mobnav .menu-mobile-menu-container ul.menu li a:hover {
  color: var(--color-grass-500);
}

.top-bar__mobnav ul.sub-menu.is-open {
  max-height: 300px;
}

.top-bar__mobnav ul.sub-menu.active-mobile {
  display: block;
}

.top-bar__mobnav a[href="#"] {
  cursor: auto;
}

.top-bar__mobnav a[href="#"]:hover {
  color: var(--gray);
}

.top-bar__mobnav::-webkit-scrollbar {
  background-color: #0000;
  width: 15px;
}

.top-bar__mobnav::-webkit-scrollbar:horizontal {
  height: 6px;
}

.top-bar__mobnav::-webkit-scrollbar-track {
  border: none;
  border-radius: 3px;
}

.top-bar__mobnav::-webkit-scrollbar-thumb {
  background-color: var(--pale);
  border: 3px solid var(--red);
  border-radius: 0;
}

.top-bar__mobnav {
  scrollbar-color: var(--red) transparent;
  scrollbar-width: thin;
}

.top-bar__close {
  background-color: var(--color-grass-500);
  text-align: center;
  width: 44px;
  height: 44px;
  top: var(--size-16);
  right: var(--size-16);
  cursor: pointer;
  background-image: url("close-menu.e61a6ff5.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px;
  border-radius: 100%;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  transition: all .25s ease-in-out;
  display: flex;
  position: absolute;
}

.top-bar__mobaction {
  text-align: center;
  padding-top: 15px;
}

.top-bar__mobaction a {
  background-color: var(--color-grass-400);
  height: 44px;
  color: var(--color-bean-400);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0px var(--size-40);
  line-height: 44px;
  font-size: var(--size-16);
  font-family: var(--font-bold);
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1480px) {
  .top-bar__mobaction a {
    height: 42px;
    padding: 0px var(--size-32);
    line-height: 42px;
  }
}

@media (width <= 1400px) {
  .top-bar__mobaction a {
    padding: 0px var(--size-28);
  }
}

@media (width <= 1200px) {
  .top-bar__mobaction a {
    height: 40px;
    font-size: 15px;
    line-height: 40px;
  }
}

@media (width <= 1023px) {
  .top-bar__mobaction a {
    font-size: var(--size-14);
  }
}

.top-bar__mobaction a:hover {
  background-color: var(--color-grass-500);
}

.top-bar__mobaction a {
  background-color: var(--color-bean-400);
  box-sizing: border-box;
  width: 240px;
  margin-bottom: var(--size-12);
  color: var(--color-oat-alt);
  height: 48px;
  line-height: 48px;
  font-size: var(--size-16);
}

.top-bar__mobaction li:first-child a {
  background-color: var(--color-grass-500);
  color: var(--color-bean-400);
}

.cta {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .cta {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .cta {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .cta {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .cta {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .cta {
    padding: 50px 0;
  }
}

.cta {
  padding-top: var(--size-32);
  background-color: var(--color-oat-100);
}

.cta .container {
  max-width: 1170px;
}

@media (width <= 1480px) {
  .cta .container {
    max-width: 1070px;
  }
}

@media (width <= 1400px) {
  .cta .container {
    max-width: 960px;
  }
}

@media (width <= 1200px) {
  .cta .container {
    max-width: 800px;
  }
}

.cta__wrapper {
  padding: var(--size-64);
  padding-bottom: var(--size-0);
  border-radius: var(--radius-xxl);
  background-color: var(--color-grass-400);
  background: linear-gradient(274deg, var(--color-bean-400), var(--color-bean-500), var(--color-bean-300));
  background-size: 600% 600%;
  animation: 5s infinite AnimationName;
}

@media (width <= 1400px) {
  .cta__wrapper {
    min-height: 300px;
    padding: var(--size-48);
    padding-bottom: var(--size-0);
  }
}

@media (width <= 767px) {
  .cta__wrapper {
    padding: var(--size-32);
    padding-bottom: var(--size-0);
  }
}

.cta__wrapper header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta__wrapper header h2 {
  color: var(--color-grass-400);
  background: linear-gradient(45deg, var(--color-grass-200) 0, var(--color-grass-400) 24%, var(--color-grass-300) 50%, var(--color-grass-200) 79%, var(--color-grass-600) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

@media (width <= 1480px) {
  .cta__wrapper header h2 {
    font-size: var(--size-48);
  }
}

@media (width <= 1200px) {
  .cta__wrapper header h2 {
    font-size: var(--size-40);
    padding: var(--size-0) var(--size-64);
  }
}

@media (width <= 1023px) {
  .cta__wrapper header h2 {
    font-size: var(--size-32);
    padding: 0;
  }
}

@media (width <= 767px) {
  .cta__wrapper header h2 {
    font-size: var(--size-40);
  }
}

.cta__wrapper header p {
  color: var(--color-grass-100);
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: var(--size-24);
}

@media (width <= 767px) {
  .cta__wrapper header p {
    max-width: 100%;
    margin-bottom: var(--size-20);
  }
}

.cta__wrapper header p:last-of-type {
  margin-bottom: var(--size-32);
}

@media (width <= 1023px) {
  .cta__wrapper header p:last-of-type {
    margin-bottom: var(--size-24);
  }
}

.cta__mockup {
  max-width: 640px;
  margin: 0 auto;
  margin-top: var(--size-32);
}

@media (width <= 1400px) {
  .cta__mockup {
    max-width: 540px;
  }
}

@media (width <= 1200px) {
  .cta__mockup {
    max-width: 440px;
  }
}

@media (width <= 1023px) {
  .cta__mockup {
    max-width: 360px;
  }
}

.cta__mockup img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.cta__mockup--short {
  max-width: 330px;
}

@media (width <= 1480px) {
  .cta__mockup--short {
    max-width: 320px;
  }
}

@media (width <= 1200px) {
  .cta__mockup--short {
    max-width: 240px;
  }
}

@media (width <= 767px) {
  .cta__mockup--short {
    max-width: 300px;
  }
}

.cta--inner .cta__wrapper {
  padding: var(--size-48);
  padding-bottom: var(--size-0);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 767px) {
  .cta--inner .cta__wrapper {
    padding: var(--size-32);
    padding-bottom: var(--size-0);
  }
}

.cta--inner .cta__wrapper a.btn {
  margin-bottom: var(--size-64);
}

@media (width <= 1400px) {
  .cta--inner .cta__wrapper a.btn {
    margin-bottom: var(--size-48);
  }
}

@media (width <= 767px) {
  .cta--inner .cta__wrapper a.btn {
    margin-bottom: var(--size-0);
  }
}

@media (width <= 1200px) {
  .cta--inner .container {
    width: 100%;
    max-width: 100%;
  }
}

.cta--inner header {
  text-align: left;
  width: 50%;
}

@media (width <= 767px) {
  .cta--inner header {
    text-align: center;
    width: 100%;
  }
}

@media (width <= 1400px) {
  .cta--inner header h2 {
    font-size: var(--size-40);
  }
}

@media (width <= 1200px) {
  .cta--inner header h2 {
    padding: var(--size-0);
  }
}

@media (width <= 1023px) {
  .cta--inner header h2 {
    font-size: var(--size-32);
  }
}

.cta--inner header p {
  max-width: 90%;
  margin-left: 0;
}

@media (width <= 1023px) {
  .cta--inner header p {
    max-width: 100%;
  }
}

.cta--inner .cta__mockup {
  width: 50%;
  margin-top: var(--size-0);
  align-self: flex-end;
}

@media (width <= 767px) {
  .cta--inner .cta__mockup {
    width: 80%;
    margin-top: var(--size-32);
  }
}

@media (width >= 1460px) {
  .cta--marketplace .cta__wrapper {
    padding-top: 90px;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0;
  }
}

.clients {
  background-color: var(--color-oat-100);
  padding-bottom: var(--size-64);
}

@media (width <= 1480px) {
  .clients {
    padding-bottom: var(--size-48);
  }
}

@media (width <= 1400px) {
  .clients {
    padding-bottom: var(--size-40);
  }
}

.clients .splide {
  position: relative;
}

.clients .splide:before {
  background: linear-gradient(to right, var(--color-oat-100), transparent);
  content: "";
  width: 100px;
  height: 100%;
  z-index: var(--z-sticky);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.clients .splide:after {
  background: linear-gradient(to right, transparent, var(--color-oat-100));
  content: "";
  width: 100px;
  height: 100%;
  z-index: var(--z-sticky);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.clients .splide__slide, .clients .splide__logo {
  height: 100%;
}

.clients .splide__logo a {
  border-radius: var(--radius-md);
  height: 120px;
  padding: var(--size-16);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  transition: all .25s ease-in-out;
  display: flex;
}

@media (width <= 1400px) {
  .clients .splide__logo a {
    height: 100px;
  }
}

@media (width <= 1023px) {
  .clients .splide__logo a {
    height: 90px;
  }
}

@media (width <= 767px) {
  .clients .splide__logo a {
    height: 80px;
  }
}

.clients .splide__logo a:hover {
  background-color: var(--color-oat-200);
}

.clients .splide__logo a img {
  max-width: 75%;
  max-height: 75%;
}

.page-footer {
  padding-top: var(--size-64);
  background-color: var(--color-earth-500);
  min-height: 300px;
}

@media (width <= 1400px) {
  .page-footer {
    padding-top: var(--size-48);
  }
}

@media (width <= 1023px) {
  .page-footer {
    padding-top: var(--size-40);
  }
}

.page-footer__top {
  margin-bottom: var(--size-64);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 1400px) {
  .page-footer__top {
    margin-bottom: var(--size-48);
  }
}

@media (width <= 767px) {
  .page-footer__top {
    margin-bottom: var(--size-32);
    display: block;
  }
}

.page-footer__title {
  font-size: var(--size-28);
  color: var(--color-oat-400);
  font-family: var(--font-bold);
  margin-bottom: var(--size-16);
  display: block;
}

@media (width <= 1400px) {
  .page-footer__title {
    font-size: var(--size-24);
    margin-bottom: var(--size-12);
  }
}

@media (width <= 1200px) {
  .page-footer__title {
    font-size: var(--size-24);
  }
}

@media (width <= 1023px) {
  .page-footer__title {
    font-size: var(--size-20);
  }
}

.page-footer__subtitle {
  text-transform: uppercase;
  font-size: var(--size-16);
  margin-bottom: var(--size-24);
  letter-spacing: 2px;
  font-family: var(--font-bold);
  color: var(--color-oat-400);
  padding-top: var(--size-4);
  display: block;
}

@media (width <= 1200px) {
  .page-footer__subtitle {
    letter-spacing: 1px;
    margin-bottom: var(--size-20);
  }
}

@media (width <= 1023px) {
  .page-footer__subtitle {
    font-size: 14px;
  }
}

.page-footer__left {
  width: 30%;
}

@media (width <= 1200px) {
  .page-footer__left {
    width: 40%;
  }
}

@media (width <= 767px) {
  .page-footer__left {
    width: 100%;
  }
}

.page-footer__right {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  width: 35%;
  display: flex;
}

@media (width <= 1023px) {
  .page-footer__right {
    width: 40%;
  }
}

@media (width <= 767px) {
  .page-footer__right {
    width: 100%;
    margin-top: var(--size-32);
  }
}

.page-footer__newsletter p {
  font-size: var(--size-18);
  color: var(--color-oat-200);
}

@media (width <= 1200px) {
  .page-footer__newsletter p {
    font-size: var(--size-16);
  }
}

.page-footer__form {
  margin-top: var(--size-24);
}

.page-footer__form input[type="email"] {
  background-color: var(--color-earth-300);
  width: 300px;
  height: var(--size-48);
  padding-left: var(--size-24);
  border-radius: var(--radius-full);
  color: var(--color-oat-100);
  box-sizing: border-box;
  border: 1px solid #0000;
}

@media (width <= 1023px) {
  .page-footer__form input[type="email"] {
    width: 100%;
  }
}

.page-footer__form input[type="email"]::placeholder {
  color: var(--color-oat-100);
}

.page-footer__form input[type="email"].wpcf7-not-valid {
  border-color: pink;
}

.page-footer__form input[type="submit"] {
  background-color: var(--color-grass-400);
  height: 44px;
  color: var(--color-bean-400);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0px var(--size-40);
  line-height: 44px;
  font-size: var(--size-16);
  font-family: var(--font-bold);
  border: none;
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1480px) {
  .page-footer__form input[type="submit"] {
    height: 42px;
    padding: 0px var(--size-32);
    line-height: 42px;
  }
}

@media (width <= 1400px) {
  .page-footer__form input[type="submit"] {
    padding: 0px var(--size-28);
  }
}

@media (width <= 1200px) {
  .page-footer__form input[type="submit"] {
    height: 40px;
    font-size: 15px;
    line-height: 40px;
  }
}

@media (width <= 1023px) {
  .page-footer__form input[type="submit"] {
    font-size: var(--size-14);
  }
}

.page-footer__form input[type="submit"]:hover {
  background-color: var(--color-grass-500);
}

.page-footer__form input[type="submit"] {
  margin-top: var(--size-12);
}

.page-footer__form .wpcf7-not-valid-tip {
  font-size: var(--size-16);
  padding-top: var(--size-4);
  color: pink;
  padding-left: var(--size-12);
}

.page-footer__form .wpcf7 form.invalid .wpcf7-response-output, .page-footer__form .wpcf7 form.unaccepted .wpcf7-response-output, .page-footer__form .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 0;
  margin-top: var(--size-16);
  text-align: left;
  padding: var(--size-12);
  border-radius: var(--radius-md);
  background-color: var(--color-grass-200);
  color: var(--color-bean-400);
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  border: none;
}

@media (width <= 767px) {
  .page-footer__form .wpcf7 form.invalid .wpcf7-response-output, .page-footer__form .wpcf7 form.unaccepted .wpcf7-response-output, .page-footer__form .wpcf7 form.payment-required .wpcf7-response-output {
    margin-top: var(--size-0);
    text-align: left;
  }
}

.page-footer__form .wpcf7 form.sent .wpcf7-response-output {
  margin: 0;
  margin-top: var(--size-16);
  text-align: center;
  padding: var(--size-12);
  border-radius: var(--radius-md);
  background-color: var(--color-bean-400);
  color: var(--color-grass-400);
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  border: none;
}

@media (width <= 767px) {
  .page-footer__form .wpcf7 form.sent .wpcf7-response-output {
    margin-top: var(--size-0);
    text-align: left;
  }
}

.page-footer__notice p {
  line-height: var(--lh-normal);
  margin-top: var(--size-12);
  font-size: var(--size-12);
  color: var(--color-earth-100);
  max-width: 80%;
  display: block;
}

@media (width <= 1023px) {
  .page-footer__notice p {
    max-width: 100%;
  }
}

.page-footer__notice p a:hover {
  color: var(--color-oat-alt);
}

.page-footer__nav ul li {
  margin-bottom: var(--size-16);
  display: block;
}

.page-footer__nav ul li a {
  font-size: var(--size-16);
  color: var(--color-oat-100);
  transition: all .25s ease-in-out;
}

.page-footer__nav ul li a:hover {
  color: var(--color-oat-alt);
}

.page-footer__middle {
  padding: var(--size-20) var(--size-0);
  border-bottom: 1px solid var(--color-earth-300);
  border-top: 1px solid var(--color-earth-300);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 1023px) {
  .page-footer__middle {
    text-align: center;
    display: block;
  }
}

.page-footer__copy {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media (width <= 1023px) {
  .page-footer__copy {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media (width <= 767px) {
  .page-footer__copy {
    text-align: center;
    width: 100%;
    display: block;
  }
}

.page-footer__copy small {
  font-size: var(--size-16);
  color: var(--color-oat-300);
}

@media (width <= 767px) {
  .page-footer__copy small {
    margin-bottom: var(--size-12);
    line-height: var(--lh-normal);
    display: block;
  }
}

@media (width >= 768px) {
  .page-footer__copy small br {
    display: none;
  }
}

.page-footer__copy small:after {
  width: var(--size-4);
  height: var(--size-4);
  background-color: var(--color-oat-300);
  content: "";
  margin: 0px var(--size-12);
  border-radius: var(--radius-full);
  display: inline-block;
  position: relative;
  top: -3px;
}

@media (width <= 767px) {
  .page-footer__copy small:after {
    display: none;
  }
}

.page-footer__copy ul {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .page-footer__copy ul {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.page-footer__copy ul li a {
  font-size: var(--size-16);
  color: var(--color-oat-100);
  transition: all .25s ease-in-out;
}

.page-footer__copy ul li a:hover {
  color: var(--color-oat-alt);
}

@media (width <= 767px) {
  .page-footer__socials {
    width: 100%;
    margin-top: var(--size-16);
  }
}

.page-footer__socials ul {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

@media (width <= 1023px) {
  .page-footer__socials ul {
    margin-top: var(--size-24);
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

@media (width <= 767px) {
  .page-footer__socials ul {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.page-footer__socials ul li {
  margin-left: var(--size-12);
}

@media (width <= 1023px) {
  .page-footer__socials ul li {
    margin-left: var(--size-8);
    margin-right: var(--size-8);
  }
}

.page-footer__socials ul li a {
  font-size: var(--size-32);
}

.page-footer__socials ul li a span {
  color: var(--color-grass-400);
  transition: all .25s ease-in-out;
}

.page-footer__socials ul li a:hover span {
  color: var(--color-oat-400);
}

.page-footer__socials ul li a img {
  max-width: var(--size-32);
}

.page-footer__bottom {
  padding: var(--size-48) var(--size-0);
  position: relative;
}

@media (width <= 1400px) {
  .page-footer__bottom {
    padding: var(--size-40) var(--size-0);
  }
}

@media (width <= 1200px) {
  .page-footer__bottom {
    padding: var(--size-32) var(--size-0);
  }
}

.page-footer__about {
  max-width: 40%;
}

@media (width <= 1400px) {
  .page-footer__about {
    max-width: 50%;
  }
}

@media (width <= 1200px) {
  .page-footer__about {
    max-width: 60%;
  }
}

@media (width <= 767px) {
  .page-footer__about {
    max-width: 100%;
  }
}

.page-footer__about p {
  font-size: var(--size-16);
  margin-bottom: var(--size-8);
  color: var(--color-earth-100);
}

.page-footer__brand img {
  max-width: 240px;
  margin-bottom: var(--size-20);
}

@media (width <= 1200px) {
  .page-footer__brand img {
    max-width: 220px;
  }
}

.page-footer__btn {
  right: var(--size-0);
  bottom: var(--size-48);
  background-color: var(--color-oat-400);
  border-radius: 100%;
  width: 48px;
  height: 48px;
  transition: all .25s ease-in-out;
  position: absolute;
}

@media (width <= 767px) {
  .page-footer__btn {
    bottom: var(--size-16);
  }
}

.page-footer__btn img {
  width: var(--size-20);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-footer__btn:hover {
  background-color: var(--color-oat-alt);
}

.stats {
  background-color: var(--color-oat-200);
  padding: var(--size-48) 0px;
}

@media (width <= 1400px) {
  .stats {
    padding: var(--size-40);
  }
}

@media (width <= 1200px) {
  .stats {
    padding: var(--size-32);
  }
}

@media (width <= 1023px) {
  .stats {
    padding: var(--size-28) 0px;
  }
}

.stats .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.stats__intro {
  max-width: 380px;
}

@media (width <= 1400px) {
  .stats__intro {
    max-width: 360px;
  }
}

@media (width <= 1023px) {
  .stats__intro {
    max-width: 35%;
  }
}

@media (width <= 767px) {
  .stats__intro {
    max-width: 100%;
  }
}

.stats__intro p {
  font-size: var(--size-20);
  line-height: var(--lh-normal);
}

@media (width <= 1480px) {
  .stats__intro p {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  .stats__intro p {
    font-size: var(--size-16);
  }
}

.stats__intro p {
  margin-bottom: var(--size-0);
}

.stats__title {
  font-family: var(--font-bold);
  font-size: var(--size-20);
  margin-bottom: var(--size-8);
  display: block;
}

.stats__numbers {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  width: 60%;
  display: flex;
}

@media (width <= 1023px) {
  .stats__numbers {
    width: 60%;
  }
}

@media (width <= 767px) {
  .stats__numbers {
    width: 100%;
    margin-top: var(--size-16);
    text-align: center;
  }
}

.stats .stat {
  color: var(--color-bean-primary);
  flex: 1;
}

@media (width <= 767px) {
  .stats .stat {
    width: 33%;
  }
}

.stats .stat__header {
  margin-bottom: var(--size-12);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

@media (width <= 1200px) {
  .stats .stat__header {
    margin-bottom: var(--size-8);
  }
}

@media (width <= 767px) {
  .stats .stat__header {
    margin-bottom: var(--size-4);
    display: block;
  }
}

.stats .stat__header small {
  margin-right: var(--size-12);
  display: block;
}

@media (width <= 1023px) {
  .stats .stat__header small {
    margin-right: var(--size-8);
  }
}

@media (width <= 767px) {
  .stats .stat__header small {
    margin-bottom: var(--size-8);
    margin-right: var(--size-0);
  }
}

.stats .stat__header small img {
  width: var(--size-40);
}

@media (width <= 1023px) {
  .stats .stat__header small img {
    width: var(--size-32);
  }
}

.stats .stat__header span {
  font-size: var(--size-40);
  font-family: var(--font-bold);
}

@media (width <= 1400px) {
  .stats .stat__header span {
    font-size: var(--size-32);
  }
}

@media (width <= 1200px) {
  .stats .stat__header span {
    font-size: var(--size-28);
  }
}

@media (width <= 767px) {
  .stats .stat__header span {
    font-size: var(--size-32);
    display: block;
  }
}

@media screen and (width <= 400px) {
  .stats .stat__header span {
    font-size: var(--size-28);
  }
}

.stats .stat__description {
  padding-right: var(--size-48);
}

@media (width <= 1400px) {
  .stats .stat__description {
    padding-right: var(--size-24);
  }
}

@media (width <= 1023px) {
  .stats .stat__description {
    padding-right: var(--size-12);
  }
}

@media (width <= 767px) {
  .stats .stat__description {
    padding-right: var(--size-4);
  }
}

.stats .stat__description span {
  line-height: var(--lh-normal);
  font-size: var(--size-18);
  font-family: var(--font-medium);
  display: block;
}

@media (width <= 1400px) {
  .stats .stat__description span {
    font-size: var(--size-16);
    line-height: var(--lh-tight);
  }
}

@media (width <= 767px) {
  .stats .stat__description span {
    font-size: var(--size-16);
  }
}

.content__wrapper {
  margin-bottom: var(--size-64);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 1400px) {
  .content__wrapper {
    margin-bottom: var(--size-48);
  }
}

@media (width <= 767px) {
  .content__wrapper {
    margin-bottom: var(--size-40);
    display: block;
  }
}

.content__wrapper:last-child {
  margin-bottom: var(--size-0);
}

.content__wrapper:nth-child(2n) .content__photo, .content__wrapper:nth-child(2n) .content__video {
  order: 2;
}

.content__wrapper:nth-child(2n) .content__block {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.content__video {
  background: var(--color-oat-200);
  border-radius: var(--radius-xl);
  width: 55%;
  height: 500px;
  position: relative;
}

@media (width <= 1400px) {
  .content__video {
    width: 53%;
    height: 440px;
  }
}

@media (width <= 1200px) {
  .content__video {
    height: 360px;
  }
}

@media (width <= 767px) {
  .content__video {
    width: 100%;
    height: auto;
  }
}

.content__video video, .content__video img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

.content__video #player-overlay {
  height: 100%;
}

.content__video--short {
  width: 50%;
}

.content__mockup {
  position: absolute;
  bottom: -64px;
  left: -124px;
}

.content__photo {
  background: var(--color-oat-200);
  border-radius: var(--radius-xl);
  width: 55%;
  height: 540px;
  position: relative;
}

@media (width <= 1400px) {
  .content__photo {
    width: 53%;
    height: 440px;
  }
}

@media (width <= 1200px) {
  .content__photo {
    height: 360px;
  }
}

@media (width <= 767px) {
  .content__photo {
    width: 100%;
    height: 320px;
  }
}

.content__photo--short {
  width: 50%;
}

@media (width <= 767px) {
  .content__photo--short {
    width: 100%;
  }
}

.content__photo--transparent {
  background: none;
}

.content__photo img.img-responsive, .content__photo video {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

.content__photo img.img-responsive.img-short, .content__photo video.img-short {
  max-width: 93%;
}

@media (width <= 1400px) {
  .content__photo img.img-responsive.img-short, .content__photo video.img-short {
    max-width: 95%;
  }
}

@media (width <= 767px) {
  .content__photo img.img-responsive.img-short, .content__photo video.img-short {
    max-width: 95%;
  }
}

.content__photo--badge {
  max-width: 220px;
  position: absolute;
  bottom: -24px;
  right: -24px;
}

@media (width <= 1400px) {
  .content__photo--badge {
    max-width: 180px;
    bottom: -16px;
    right: -16px;
  }
}

@media (width <= 767px) {
  .content__photo--badge {
    max-width: 140px;
    bottom: -12px;
    right: -16px;
  }
}

.content__stats {
  bottom: var(--size-20);
  right: var(--size-20);
  padding: var(--size-40);
  border-radius: var(--radius-md);
  background-color: var(--color-grass-400);
  position: absolute;
}

@media (width <= 1480px) {
  .content__stats {
    bottom: var(--size-16);
    right: var(--size-16);
    padding: var(--size-32);
  }
}

@media (width <= 1023px) {
  .content__stats {
    bottom: var(--size-12);
    right: var(--size-12);
    padding: var(--size-20);
  }
}

.content__stats .stat {
  margin-bottom: var(--size-24);
}

.content__stats .stat:last-child {
  margin-bottom: var(--size-0);
}

.content__stats .stat span {
  display: block;
}

.content__stats .stat__value {
  font-size: var(--size-32);
  font-family: var(--font-bold);
  margin-bottom: var(--size-8);
  line-height: var(--lh-tight);
}

@media (width <= 1480px) {
  .content__stats .stat__value {
    font-size: var(--size-28);
    margin-bottom: var(--size-0);
  }
}

.content__stats .stat__label {
  max-width: 124px;
  line-height: var(--lh-small);
  font-size: var(--size-16);
}

.content__block {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 45%;
  display: flex;
}

@media (width <= 767px) {
  .content__block {
    width: 100%;
    padding-top: var(--size-20);
    display: block;
  }
}

.content__block--long {
  width: 50%;
}

@media (width <= 1400px) {
  .content__block--long {
    width: 40%;
  }
}

@media (width <= 1023px) {
  .content__block--long {
    width: 45%;
  }
}

@media (width <= 767px) {
  .content__block--long {
    width: 100%;
  }
}

.content__text {
  max-width: 460px;
}

@media (width <= 1400px) {
  .content__text {
    max-width: 80%;
  }
}

@media (width <= 1023px) {
  .content__text {
    max-width: 90%;
  }
}

.content__text--long {
  max-width: 560px;
}

.content__text p {
  margin-bottom: var(--size-16);
}

@media (width <= 1023px) {
  .content__text p {
    margin-bottom: var(--size-12);
  }
}

.content__text a.btn {
  margin-top: var(--size-12);
}

.content__text ul {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .content__text ul {
    margin-bottom: var(--size-24);
  }
}

@media (width <= 1200px) {
  .content__text ul {
    margin-bottom: var(--size-20);
  }
}

@media (width <= 1023px) {
  .content__text ul {
    margin-bottom: var(--size-16);
  }
}

.content__text ul li {
  font-size: var(--size-20);
  font-family: var(--font-regular);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin-bottom: var(--size-8);
  padding-left: var(--size-40);
  position: relative;
}

@media (width <= 1200px) {
  .content__text ul li {
    padding-left: var(--size-32);
    font-size: 18px;
  }
}

@media (width <= 1023px) {
  .content__text ul li {
    margin-bottom: var(--size-4);
  }
}

@media (width <= 767px) {
  .content__text ul li {
    font-size: var(--size-20);
    margin-bottom: var(--size-8);
  }
}

.content__text ul li:before {
  content: "";
  width: var(--size-24);
  height: var(--size-24);
  background: url("checkmark.c24d0238.svg") 0 0 / contain;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
}

@media (width <= 1200px) {
  .content__text ul li:before {
    width: var(--size-20);
    height: var(--size-20);
    top: 5px;
  }
}

.content__text ul li {
  color: var(--color-bean-400);
}

.how {
  background-color: var(--color-oat-400);
  background-color: var(--color-grass-500);
  padding: 80px 0;
}

@media (width <= 1023px) {
  .how {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .how {
    padding: 40px 0;
  }
}

.how__steps {
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--size-24);
  flex-flow: wrap;
  display: flex;
}

@media (width <= 767px) {
  .how__steps {
    gap: var(--size-16);
    display: block;
  }
}

.how .step {
  padding: var(--size-32);
  background-color: var(--color-oat-alt);
  background-color: var(--color-grass-100);
  border-radius: var(--radius-lg);
  text-align: center;
  flex-direction: column;
  flex: 1;
  transition: all .25s ease-in-out;
  display: flex;
  position: relative;
}

@media (width <= 1400px) {
  .how .step {
    padding: var(--size-24);
  }
}

@media (width <= 1200px) {
  .how .step {
    padding: var(--size-20);
  }
}

@media (width <= 1023px) {
  .how .step {
    padding: var(--size-16);
  }
}

@media (width <= 767px) {
  .how .step {
    padding: var(--size-24);
    margin-bottom: var(--size-16);
  }

  .how .step:last-child {
    margin-bottom: var(--size-0);
  }
}

.how .step:hover {
  background-color: var(--color-oat-200);
  background-color: var(--color-oat-100);
  box-shadow: 0 7px 29px #64646f33;
}

.how .step__number {
  background-color: var(--color-grass-400);
  border-radius: var(--radius-full);
  width: var(--size-48);
  height: var(--size-48);
  line-height: var(--size-48);
  text-align: center;
  right: var(--size-40);
  top: var(--size-40);
  position: absolute;
}

@media (width <= 1400px) {
  .how .step__number {
    right: var(--size-32);
    top: var(--size-32);
  }
}

@media (width <= 1023px) {
  .how .step__number {
    width: var(--size-32);
    height: var(--size-32);
    top: var(--size-24);
    right: var(--size-24);
    line-height: 32px;
  }
}

@media (width <= 767px) {
  .how .step__number {
    right: var(--size-32);
    top: var(--size-32);
  }
}

.how .step__number span {
  font-size: var(--size-20);
  font-family: var(--font-black);
}

@media (width <= 1023px) {
  .how .step__number span {
    font-size: var(--size-16);
  }
}

.how .step__icon {
  margin-bottom: var(--size-16);
}

.how .step__description {
  padding: var(--size-0) var(--size-16);
  padding-bottom: var(--size-20);
}

@media (width <= 1400px) {
  .how .step__description {
    padding: var(--size-0);
    padding-bottom: var(--size-16);
  }
}

@media (width <= 767px) {
  .how .step__description {
    padding: var(--size-0) var(--size-4) var(--size-16) var(--size-4);
  }
}

.how .step__video {
  height: 230px;
  margin-bottom: var(--size-20);
  border-radius: var(--radius-md);
  background-color: var(--color-oat-300);
}

@media (width <= 1400px) {
  .how .step__video {
    height: 210px;
  }
}

@media (width <= 1200px) {
  .how .step__video {
    height: 180px;
  }
}

@media (width <= 1023px) {
  .how .step__video {
    height: 140px;
  }
}

@media (width <= 767px) {
  .how .step__video {
    height: 200px;
  }
}

.how .step__video video, .how .step__video img {
  object-fit: cover;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

.case-study {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .case-study {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .case-study {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .case-study {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .case-study {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .case-study {
    padding: 50px 0;
  }
}

.case-study {
  background-color: var(--color-oat-100);
}

.case-study .splide__arrows {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: -44px;
  display: flex;
}

@media (width <= 767px) {
  .case-study .splide__arrows {
    margin-top: var(--size-16);
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.case-study .splide__arrow {
  opacity: 1;
  background-color: var(--color-oat-500);
  width: var(--size-48);
  height: var(--size-48);
  transition: all .25s ease-in-out;
  position: relative;
  top: auto;
  transform: none;
}

.case-study .splide__arrow span {
  color: var(--color-bean-400);
  transition: all .25s ease-in-out;
}

.case-study .splide__arrow:hover {
  background-color: var(--color-oat-700);
  opacity: 1;
}

.case-study .splide__arrow:hover span {
  color: var(--color-oat-400);
}

.case-study .splide__arrow--next {
  right: auto;
}

.case-study .splide__arrow--prev {
  margin-right: var(--size-8);
  left: auto;
}

.case-study .splide__arrow--prev span {
  transform: scaleX(-1);
}

.case-study .case {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

@media (width <= 767px) {
  .case-study .case {
    display: block;
  }
}

.case-study .case__photo {
  width: 50%;
  padding-bottom: var(--size-64);
  position: relative;
}

@media (width <= 767px) {
  .case-study .case__photo {
    width: 100%;
    padding-bottom: var(--size-32);
  }
}

.case-study .case__image img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 90%;
  height: auto;
  display: block;
}

@media (width <= 1200px) {
  .case-study .case__image img {
    height: 380px;
  }
}

@media (width <= 767px) {
  .case-study .case__image img {
    height: 300px;
  }
}

.case-study .case__mockup {
  width: 220px;
  position: absolute;
  bottom: 0;
  right: -48px;
}

@media (width <= 1400px) {
  .case-study .case__mockup {
    width: 200px;
    bottom: 12px;
    right: -32px;
  }
}

@media (width <= 767px) {
  .case-study .case__mockup {
    width: 140px;
    right: -12px;
  }
}

.case-study .case__mockup img {
  max-width: 100%;
  display: block;
}

.case-study .case__text {
  width: 560px;
  padding-right: var(--size-64);
}

@media (width <= 1620px) {
  .case-study .case__text {
    width: 500px;
  }
}

@media (width <= 1480px) {
  .case-study .case__text {
    width: 40%;
    padding-right: var(--size-32);
  }
}

@media (width <= 1200px) {
  .case-study .case__text {
    padding-right: var(--size-0);
    width: 45%;
  }
}

@media (width <= 767px) {
  .case-study .case__text {
    padding-right: var(--size-0);
    width: 100%;
  }
}

.case-study .case__text p {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .case-study .case__text p {
    margin-bottom: var(--size-28);
  }
}

@media (width <= 767px) {
  .case-study .case__text p {
    margin-bottom: var(--size-24);
  }
}

.basic {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .basic {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .basic {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .basic {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .basic {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .basic {
    padding: 50px 0;
  }
}

.basic {
  background-color: var(--color-oat-100);
}

.basic__content {
  max-width: 900px;
  margin: 0 auto;
}

@media (width <= 1400px) {
  .basic__content {
    max-width: 760px;
  }
}

@media (width <= 1200px) {
  .basic__content {
    max-width: 640px;
  }
}

@media (width <= 1023px) {
  .basic__content {
    max-width: 560px;
  }
}

.basic__content p {
  font-size: var(--size-20);
  line-height: var(--lh-normal);
}

@media (width <= 1480px) {
  .basic__content p {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  .basic__content p {
    font-size: var(--size-16);
  }
}

.basic__content p {
  margin-bottom: var(--size-24);
}

@media (width <= 1200px) {
  .basic__content p {
    margin-bottom: var(--size-16);
  }
}

.basic__content ul {
  margin-bottom: var(--size-40);
  margin-left: var(--size-24);
  list-style-type: disc;
}

@media (width <= 1200px) {
  .basic__content ul {
    margin-bottom: var(--size-28);
  }
}

.basic__content ul li {
  font-size: var(--size-20);
  line-height: var(--lh-normal);
}

@media (width <= 1480px) {
  .basic__content ul li {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  .basic__content ul li {
    font-size: var(--size-16);
  }
}

.basic__content ul li {
  margin-bottom: var(--size-12);
}

.basic__content ul li a {
  color: var(--color-grass-400);
  font-family: var(--font-semi);
  text-decoration: underline;
}

.basic__content ul li a:hover {
  color: var(--color-grass-600);
  text-decoration: none;
}

.basic__content ol {
  margin-bottom: var(--size-40);
  margin-left: var(--size-24);
  list-style-type: decimal;
}

.basic__content ol li {
  font-size: var(--size-20);
  line-height: var(--lh-normal);
}

@media (width <= 1480px) {
  .basic__content ol li {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  .basic__content ol li {
    font-size: var(--size-16);
  }
}

.basic__content ol li {
  margin-bottom: var(--size-12);
}

.basic__content ol li a {
  color: var(--color-grass-400);
  font-family: var(--font-semi);
  text-decoration: underline;
}

.basic__content ol li a:hover {
  color: var(--color-grass-600);
  text-decoration: none;
}

.faq {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .faq {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .faq {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .faq {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .faq {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .faq {
    padding: 50px 0;
  }
}

.faq {
  background-color: var(--color-oat-300);
}

.faq .accordion {
  max-width: 960px;
  margin: 0 auto;
}

@media (width <= 1400px) {
  .faq .accordion {
    max-width: 760px;
  }
}

@media (width <= 1200px) {
  .faq .accordion {
    max-width: 660px;
  }
}

@media (width <= 1023px) {
  .faq .accordion {
    max-width: 560px;
  }
}

.faq .accordion__item {
  width: 100%;
  overflow: hidden;
}

.faq .accordion__title {
  border-bottom: 1px solid var(--color-bean-400);
  padding: 20px 0;
  position: relative;
}

@media (width <= 767px) {
  .faq .accordion__title {
    padding: 16px 32px 16px 0;
  }
}

.faq .accordion__title:after {
  content: "+";
  text-align: center;
  width: 32px;
  height: 32px;
  color: var(--color-bean-500);
  border-radius: 100%;
  font-size: 28px;
  line-height: 32px;
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
}

@media (width <= 767px) {
  .faq .accordion__title:after {
    top: 12px;
  }
}

.faq .accordion__title h3 {
  font-size: 22px;
  line-height: 1.4;
  font-family: var(--font-semibold);
  margin-bottom: var(--size-0);
  transition: all .25s ease-in-out;
}

@media (width >= 768px) {
  .faq .accordion__title h3 {
    padding-right: 44px;
  }
}

@media (width <= 1480px) {
  .faq .accordion__title h3 {
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .faq .accordion__title h3 {
    font-size: 20px;
  }
}

@media (width <= 1023px) {
  .faq .accordion__title h3 {
    font-size: var(--size-20);
  }
}

.faq .accordion__title:hover {
  cursor: pointer;
}

.faq .accordion__title:hover h3 {
  color: var(--candy-pink);
}

.faq .accordion__content {
  will-change: max-height;
  opacity: 0;
  max-height: 0;
  transition: all .25s ease-out;
  overflow: hidden;
}

.faq .accordion__content p {
  margin-bottom: var(--size-24);
}

@media (width <= 1400px) {
  .faq .accordion__content p {
    margin-bottom: var(--size-20);
  }
}

@media (width <= 767px) {
  .faq .accordion__content p {
    font-size: var(--size-16);
  }
}

.faq .accordion__content p:last-of-type {
  margin-bottom: var(--size-0);
}

.faq .accordion__content ul {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .faq .accordion__content ul {
    margin-bottom: var(--size-24);
  }
}

@media (width <= 1200px) {
  .faq .accordion__content ul {
    margin-bottom: var(--size-20);
  }
}

@media (width <= 1023px) {
  .faq .accordion__content ul {
    margin-bottom: var(--size-16);
  }
}

.faq .accordion__content ul li {
  font-size: var(--size-20);
  font-family: var(--font-regular);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin-bottom: var(--size-8);
  padding-left: var(--size-40);
  position: relative;
}

@media (width <= 1200px) {
  .faq .accordion__content ul li {
    padding-left: var(--size-32);
    font-size: 18px;
  }
}

@media (width <= 1023px) {
  .faq .accordion__content ul li {
    margin-bottom: var(--size-4);
  }
}

@media (width <= 767px) {
  .faq .accordion__content ul li {
    font-size: var(--size-20);
    margin-bottom: var(--size-8);
  }
}

.faq .accordion__content ul li:before {
  content: "";
  width: var(--size-24);
  height: var(--size-24);
  background: url("checkmark.c24d0238.svg") 0 0 / contain;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
}

@media (width <= 1200px) {
  .faq .accordion__content ul li:before {
    width: var(--size-20);
    height: var(--size-20);
    top: 5px;
  }
}

.faq .accordion__text {
  padding: 24px 0;
}

@media (width <= 1400px) {
  .faq .accordion__text {
    padding: var(--size-20) var(--size-0);
  }
}

.faq .accordion--active .accordion__title {
  border-color: var(--color-oat-300);
}

.faq .accordion--active .accordion__title h3 {
  color: var(--color-bean-500);
  font-family: var(--font-bold);
}

.faq .accordion--active .accordion__title:after {
  color: var(--color-bean-300);
  content: "-";
  line-height: 28px;
}

.faq .accordion--active .accordion__content {
  opacity: 1;
  max-height: auto;
  height: auto;
}

.faq footer {
  text-align: center;
  padding-top: var(--size-48);
}

@media (width <= 1023px) {
  .faq footer {
    padding-top: var(--size-32);
  }
}

@media (width <= 767px) {
  .faq footer {
    padding-top: var(--size-32);
  }
}

.faq footer h4 {
  margin-bottom: var(--size-16);
}

@media (width <= 1200px) {
  .faq footer h4 {
    font-size: var(--size-24);
  }
}

.page-template-thanks-template .clients {
  padding-top: 100px;
}

@media (width <= 1480px) {
  .page-template-thanks-template .clients {
    padding-top: 80px;
  }
}

@media (width <= 1400px) {
  .page-template-thanks-template .clients {
    padding-top: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .page-template-thanks-template .clients {
    padding-top: var(--size-56);
  }
}

@media (width <= 1023px) {
  .page-template-thanks-template .clients {
    padding-top: var(--size-48);
  }
}

@media (width <= 767px) {
  .page-template-thanks-template .clients {
    padding-top: 50px;
  }
}

.hero {
  background-color: var(--color-bean-primary);
}

.hero .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: end;
  height: 100%;
  padding-top: 164px;
  display: flex;
  position: relative;
}

@media (width <= 1400px) {
  .hero .container {
    padding-top: 124px;
  }
}

@media (width <= 1023px) {
  .hero .container {
    padding-top: 100px;
  }
}

@media (width <= 767px) {
  .hero .container {
    padding-top: 90px;
  }
}

.hero__caption {
  width: 40%;
  padding-bottom: 100px;
}

@media (width <= 1400px) {
  .hero__caption {
    padding-bottom: var(--size-64);
  }
}

@media (width <= 1200px) {
  .hero__caption {
    width: 45%;
  }
}

@media (width <= 1023px) {
  .hero__caption {
    width: 50%;
    padding-bottom: var(--size-48);
  }
}

@media (width <= 767px) {
  .hero__caption {
    width: 100%;
    padding-bottom: var(--size-32);
  }
}

.hero__caption--long {
  width: 50%;
}

.hero__caption h1 {
  color: var(--color-grass-400);
}

.hero__caption p {
  font-size: var(--size-24);
  font-family: var(--font-medium);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin-bottom: var(--size-32);
}

@media (width <= 1480px) {
  .hero__caption p {
    margin-bottom: var(--size-28);
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .hero__caption p {
    margin-bottom: var(--size-28);
    font-size: var(--size-20);
  }
}

@media (width <= 1023px) {
  .hero__caption p {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  .hero__caption p {
    font-size: var(--size-20);
  }
}

@media (width >= 1366px) {
  .hero__caption p {
    max-width: 90%;
  }
}

.hero__caption p:has( + ul) {
  margin-bottom: var(--size-16);
}

.hero__caption a.btn {
  margin-right: var(--size-16);
}

.hero__caption ul {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .hero__caption ul {
    margin-bottom: var(--size-24);
  }
}

@media (width <= 1200px) {
  .hero__caption ul {
    margin-bottom: var(--size-20);
  }
}

@media (width <= 1023px) {
  .hero__caption ul {
    margin-bottom: var(--size-16);
  }
}

.hero__caption ul li {
  font-size: var(--size-20);
  font-family: var(--font-regular);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin-bottom: var(--size-8);
  padding-left: var(--size-40);
  position: relative;
}

@media (width <= 1200px) {
  .hero__caption ul li {
    padding-left: var(--size-32);
    font-size: 18px;
  }
}

@media (width <= 1023px) {
  .hero__caption ul li {
    margin-bottom: var(--size-4);
  }
}

@media (width <= 767px) {
  .hero__caption ul li {
    font-size: var(--size-20);
    margin-bottom: var(--size-8);
  }
}

.hero__caption ul li:before {
  content: "";
  width: var(--size-24);
  height: var(--size-24);
  background: url("checkmark.c24d0238.svg") 0 0 / contain;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
}

@media (width <= 1200px) {
  .hero__caption ul li:before {
    width: var(--size-20);
    height: var(--size-20);
    top: 5px;
  }
}

.hero__photo {
  width: 55%;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (width <= 1200px) {
  .hero__photo {
    width: 50%;
  }
}

@media (width <= 1023px) {
  .hero__photo {
    width: 45%;
  }
}

@media (width <= 767px) {
  .hero__photo {
    width: 100%;
    position: relative;
    right: auto;
  }
}

.hero__photo--middle {
  width: 47%;
  bottom: 32px;
}

.hero__photo--center {
  width: 65%;
  top: 25%;
  bottom: auto;
  right: -100px;
}

@media (width <= 767px) {
  .hero__photo--center {
    width: 100%;
    margin-bottom: var(--size-24);
    top: auto;
    right: auto;
  }

  .hero__photo--mobile {
    margin-bottom: var(--size-24);
  }
}

.hero__photo img, .hero__photo video {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero__photo video {
  border: none;
  width: 1200px;
  max-width: 1200px;
  position: relative;
  right: 100px;
}

.hero__video {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 55%;
  height: 90%;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (width <= 1023px) {
  .hero__video {
    flex-flow: wrap;
    justify-content: flex-end;
    align-items: end;
    display: flex;
  }
}

@media (width <= 767px) {
  .hero__video {
    width: 100%;
    position: relative;
  }
}

.hero__video video {
  max-width: 100%;
  max-height: 100%;
  display: block;
  position: relative;
}

.hero img.img-home {
  max-width: 110%;
  position: absolute;
  bottom: 0;
  right: -48px;
}

@media (width <= 1620px) {
  .hero img.img-home {
    right: -24px;
  }
}

@media (width <= 1480px) {
  .hero img.img-home {
    max-width: 100%;
    right: 0;
  }
}

@media (width <= 1400px) {
  .hero img.img-home {
    right: 0;
  }
}

@media (width <= 1023px) {
  .hero img.img-home {
    position: relative;
  }
}

.hero--contact .container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 120px;
  display: flex;
}

@media (width <= 1400px) {
  .hero--contact .container {
    padding-top: 124px;
    padding-bottom: 80px;
  }
}

@media (width <= 767px) {
  .hero--contact .container {
    padding-top: 100px;
    padding-bottom: var(--size-64);
  }
}

.hero--contact .hero__caption {
  padding: var(--size-0);
}

.hero--contact .hero__caption p {
  margin-bottom: var(--size-8);
}

.hero__form {
  width: 40%;
  padding: var(--size-64);
  border-radius: var(--radius-xxl);
  background-color: var(--color-oat-alt);
  background-color: var(--color-grass-200);
  min-height: 400px;
}

@media (width <= 1400px) {
  .hero__form {
    padding: var(--size-48);
  }
}

@media (width <= 1200px) {
  .hero__form {
    padding: var(--size-40);
  }
}

@media (width <= 767px) {
  .hero__form {
    width: 100%;
    margin-top: var(--size-32);
  }
}

.hero__form .form-row {
  justify-content: space-between;
  align-items: start;
  gap: var(--size-24);
  margin-bottom: var(--size-24);
  flex-flow: wrap;
  display: flex;
}

@media (width <= 767px) {
  .hero__form .form-row {
    margin-bottom: var(--size-0);
    display: block;
  }
}

.hero__form small {
  margin-bottom: var(--size-16);
  color: var(--color-bean-500);
  display: block;
}

.hero__form .form-col {
  box-sizing: border-box;
  width: calc(50% - 24px);
}

@media (width <= 767px) {
  .hero__form .form-col {
    width: 100%;
    margin-bottom: var(--size-20);
  }
}

.hero__form .form-col input, .hero__form .form-col textarea {
  border: none;
  border-bottom: 1px solid var(--color-bean-400);
  width: 100%;
  height: 40px;
  font-size: var(--size-16);
  color: var(--color-bean-400);
  background-color: #0000;
}

.hero__form .form-col input.wpcf7-not-valid, .hero__form .form-col textarea.wpcf7-not-valid {
  border-color: red;
}

.hero__form .form-col textarea {
  height: 100px;
}

.hero__form .form-col--full {
  width: 100%;
}

.hero__form label {
  text-transform: uppercase;
  font-family: var(--font-bold);
  color: var(--color-bean-400);
  font-size: var(--size-18);
  transition: all .25s ease-in-out;
  display: block;
}

@media (width <= 1400px) {
  .hero__form label {
    font-size: var(--size-16);
  }
}

@media (width <= 1200px) {
  .hero__form label {
    font-size: 14px;
  }
}

.hero__form footer input {
  background-color: var(--color-bean-500);
  height: 52px;
  color: var(--color-oat-alt);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0px var(--size-40);
  line-height: 52px;
  font-size: var(--size-16);
  font-family: var(--font-bold);
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1200px) {
  .hero__form footer input {
    height: 50px;
    padding: 0px var(--size-32);
    font-size: 15px;
    line-height: 50px;
  }
}

.hero__form footer input:hover {
  background-color: var(--color-bean-400);
}

.hero__form footer input {
  border: none;
}

.hero__form .wpcf7-not-valid-tip {
  font-size: var(--size-16);
  padding-top: var(--size-4);
}

.hero__form .wpcf7 form.invalid .wpcf7-response-output, .hero__form .wpcf7 form.unaccepted .wpcf7-response-output, .hero__form .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 0;
  margin-top: var(--size-16);
  text-align: left;
  padding: var(--size-12);
  border-radius: var(--radius-md);
  background-color: var(--color-grass-200);
  color: var(--color-bean-400);
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  border: none;
}

@media (width <= 767px) {
  .hero__form .wpcf7 form.invalid .wpcf7-response-output, .hero__form .wpcf7 form.unaccepted .wpcf7-response-output, .hero__form .wpcf7 form.payment-required .wpcf7-response-output {
    margin-top: var(--size-0);
    text-align: left;
  }
}

.hero__form .wpcf7 form.sent .wpcf7-response-output {
  margin: 0;
  margin-top: var(--size-16);
  text-align: center;
  padding: var(--size-12);
  border-radius: var(--radius-md);
  background-color: var(--color-bean-400);
  color: var(--color-grass-400);
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  border: none;
}

@media (width <= 767px) {
  .hero__form .wpcf7 form.sent .wpcf7-response-output {
    margin-top: var(--size-0);
    text-align: left;
  }
}

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

.hero--center .hero__caption {
  margin: 0 auto;
  margin-top: var(--size-32);
}

.hero--inner .hero__caption {
  padding-top: var(--size-20);
  width: 50%;
  padding-bottom: 80px;
}

.hero--inner .hero__caption h1 {
  font-size: 54px;
}

.hero--inner .hero__caption p {
  max-width: 85%;
  font-size: 22px;
}

.hero--inner .hero__caption ul li {
  font-family: 22px;
}

.hero--inner .hero__photo {
  width: 50%;
}

.benefits {
  background-color: var(--color-oat-300);
  padding: 100px 0;
}

@media (width <= 1480px) {
  .benefits {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .benefits {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .benefits {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .benefits {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .benefits {
    padding: 50px 0;
  }
}

.benefits__list {
  gap: var(--size-24);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

@media (width <= 767px) {
  .benefits__list {
    display: block;
  }
}

.benefits .benefit {
  padding: var(--size-24);
  background-color: var(--color-oat-200);
  border-radius: var(--radius-lg);
  flex-direction: column;
  flex: 1;
  transition: all .25s ease-in-out;
  display: flex;
}

@media (width <= 1200px) {
  .benefits .benefit {
    padding: var(--size-20);
  }
}

@media (width <= 767px) {
  .benefits .benefit {
    margin-bottom: var(--size-16);
  }

  .benefits .benefit:last-child {
    margin-bottom: var(--size-0);
  }
}

.benefits .benefit:hover {
  background-color: var(--color-oat-100);
  box-shadow: 0 7px 29px #64646f33;
}

.benefits .benefit__icon {
  width: 84px;
  height: 84px;
  margin-bottom: var(--size-8);
}

@media (width <= 1480px) {
  .benefits .benefit__icon {
    margin-bottom: var(--size-4);
  }
}

@media (width <= 1200px) {
  .benefits .benefit__icon {
    width: 64px;
    height: 64px;
  }
}

.benefits .benefit__icon img {
  max-width: var(--size-64);
}

@media (width <= 1200px) {
  .benefits .benefit__icon img {
    max-width: var(--size-48);
  }
}

@media (width <= 767px) {
  .benefits .benefit__icon img {
    max-width: var(--size-56);
  }
}

.benefits .benefit__body {
  flex-grow: 1;
}

.benefits .benefit__description {
  margin-bottom: var(--size-20);
}

.benefits .benefit__description p {
  font-size: var(--size-20);
  line-height: var(--lh-normal);
}

@media (width <= 1480px) {
  .benefits .benefit__description p {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  .benefits .benefit__description p {
    font-size: var(--size-16);
  }
}

.benefits .benefit__description--short h4 {
  max-width: 360px;
}

.benefits .benefit__photo {
  border-radius: var(--radius-md);
  background-color: var(--color-oat-300);
}

.benefits .benefit__photo video, .benefits .benefit__photo img {
  object-fit: cover;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  height: 235px;
  display: block;
}

@media (width <= 1400px) {
  .benefits .benefit__photo video, .benefits .benefit__photo img {
    height: 190px;
  }
}

@media (width <= 1200px) {
  .benefits .benefit__photo video, .benefits .benefit__photo img {
    height: 170px;
  }
}

@media (width <= 1023px) {
  .benefits .benefit__photo video, .benefits .benefit__photo img {
    height: 140px;
  }
}

@media (width <= 767px) {
  .benefits .benefit__photo video, .benefits .benefit__photo img {
    height: 180px;
  }
}

.benefits .benefit__photo--full img {
  height: auto;
}

.benefits--green {
  background-color: var(--color-grass-500);
}

.benefits--green .benefit {
  background-color: var(--color-grass-100);
}

.about {
  background-color: var(--color-oat-100);
  padding: 100px 0;
}

@media (width <= 1480px) {
  .about {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .about {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .about {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .about {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .about {
    padding: 50px 0;
  }
}

.consumers {
  background-color: var(--color-grass-400);
  overflow: hidden;
}

.consumers .container {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: end;
  display: flex;
  position: relative;
}

@media (width <= 767px) {
  .consumers .container {
    display: block;
  }
}

.consumers__text {
  width: 40%;
  padding: 140px 0;
}

@media (width <= 1480px) {
  .consumers__text {
    padding: 120px 0;
  }
}

@media (width <= 1400px) {
  .consumers__text {
    padding: 100px 0;
  }
}

@media (width <= 1023px) {
  .consumers__text {
    padding: 80px 0;
  }
}

@media (width <= 767px) {
  .consumers__text {
    padding: 50px 0;
  }
}

@media (width <= 1200px) {
  .consumers__text {
    width: 50%;
  }
}

@media (width <= 767px) {
  .consumers__text {
    width: 100%;
    padding-top: var(--size-24);
  }
}

.consumers__text p {
  margin-bottom: var(--size-24);
}

@media (width <= 1400px) {
  .consumers__text p {
    margin-bottom: var(--size-16);
  }
}

.consumers__text p:last-of-type {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .consumers__text p:last-of-type {
    margin-bottom: var(--size-24);
  }
}

.consumers__mockup {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -48px;
}

@media (width <= 1023px) {
  .consumers__mockup {
    object-fit: contain;
    right: 0;
  }
}

@media (width <= 767px) {
  .consumers__mockup {
    width: 100%;
    padding-top: var(--size-40);
    position: relative;
    right: auto;
  }
}

.consumers__mockup img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

@media (width <= 767px) {
  .consumers__mockup img.image-desktop {
    display: none;
  }
}

@media (width <= 1023px) {
  .consumers__mockup img.image-desktop {
    height: auto;
  }
}

@media (width >= 768px) {
  .consumers__mockup img.image-mobile {
    display: none;
  }
}

.showcase {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .showcase {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .showcase {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .showcase {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .showcase {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .showcase {
    padding: 50px 0;
  }
}

.showcase {
  background-color: var(--color-oat-400);
}

.showcase__wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .showcase__wrapper {
    display: block;
  }
}

.showcase__visual {
  width: 50%;
}

@media (width <= 767px) {
  .showcase__visual {
    width: 100%;
  }
}

.showcase__visual img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.showcase__content {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 45%;
  display: flex;
}

@media (width <= 767px) {
  .showcase__content {
    width: 100%;
    padding-top: var(--size-32);
  }
}

.showcase__text {
  max-width: 460px;
}

.showcase__text p {
  margin-bottom: var(--size-16);
}

.showcase__text a.btn {
  margin-top: var(--size-12);
}

.showcase__text ul {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .showcase__text ul {
    margin-bottom: var(--size-24);
  }
}

@media (width <= 1200px) {
  .showcase__text ul {
    margin-bottom: var(--size-20);
  }
}

@media (width <= 1023px) {
  .showcase__text ul {
    margin-bottom: var(--size-16);
  }
}

.showcase__text ul li {
  font-size: var(--size-20);
  font-family: var(--font-regular);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin-bottom: var(--size-8);
  padding-left: var(--size-40);
  position: relative;
}

@media (width <= 1200px) {
  .showcase__text ul li {
    padding-left: var(--size-32);
    font-size: 18px;
  }
}

@media (width <= 1023px) {
  .showcase__text ul li {
    margin-bottom: var(--size-4);
  }
}

@media (width <= 767px) {
  .showcase__text ul li {
    font-size: var(--size-20);
    margin-bottom: var(--size-8);
  }
}

.showcase__text ul li:before {
  content: "";
  width: var(--size-24);
  height: var(--size-24);
  background: url("checkmark.c24d0238.svg") 0 0 / contain;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
}

@media (width <= 1200px) {
  .showcase__text ul li:before {
    width: var(--size-20);
    height: var(--size-20);
    top: 5px;
  }
}

.showcase__text ul li {
  color: var(--color-bean-400);
}

.compare {
  padding: 80px 0;
}

@media (width <= 1023px) {
  .compare {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .compare {
    padding: 40px 0;
  }
}

.compare {
  background-color: var(--color-oat-400);
}

.compare__list {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: -32px;
  display: flex;
}

@media (width <= 767px) {
  .compare__list {
    display: block;
  }
}

.compare .container {
  max-width: 1070px;
}

@media (width <= 1400px) {
  .compare .container {
    max-width: 900px;
  }
}

.compare .item {
  width: calc(50% - 32px);
  padding: var(--size-32);
  box-sizing: border-box;
  background-color: var(--color-oat-300);
  border-radius: var(--radius-xxl);
  transition: all .25s ease-in-out;
  position: relative;
}

@media (width <= 767px) {
  .compare .item {
    width: 100%;
    padding: var(--size-24);
  }
}

.compare .item:last-child {
  background-color: var(--color-oat-200);
}

@media (width <= 767px) {
  .compare .item:last-child {
    margin-top: var(--size-16);
  }
}

.compare .item:hover {
  background-color: var(--color-oat-100);
}

.compare .item__mockup, .compare .item__video {
  width: 100%;
  height: 300px;
  margin: 0 auto;
  margin-bottom: var(--size-32);
  flex-flow: wrap;
  justify-content: center;
  align-items: end;
  display: flex;
  position: relative;
}

@media (width <= 1023px) {
  .compare .item__mockup, .compare .item__video {
    height: 220px;
  }
}

@media (width <= 767px) {
  .compare .item__mockup, .compare .item__video {
    height: 240px;
  }
}

.compare .item__mockup img, .compare .item__video img, .compare .item__mockup video, .compare .item__video video {
  object-fit: cover;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

.compare .item__mockup .zoom-lens, .compare .item__video .zoom-lens {
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 400%;
  border: 2px solid #00000080;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: none;
  position: absolute;
}

.compare .item__description {
  flex: 1;
}

.compare .item__description h4 {
  margin-bottom: var(--size-24);
  text-align: center;
}

.compare .item__description ul, .compare .item__description ol {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .compare .item__description ul, .compare .item__description ol {
    margin-bottom: var(--size-24);
  }
}

@media (width <= 1200px) {
  .compare .item__description ul, .compare .item__description ol {
    margin-bottom: var(--size-20);
  }
}

@media (width <= 1023px) {
  .compare .item__description ul, .compare .item__description ol {
    margin-bottom: var(--size-16);
  }
}

.compare .item__description ul li, .compare .item__description ol li {
  font-size: var(--size-20);
  font-family: var(--font-regular);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin-bottom: var(--size-8);
  padding-left: var(--size-40);
  position: relative;
}

@media (width <= 1200px) {
  .compare .item__description ul li, .compare .item__description ol li {
    padding-left: var(--size-32);
    font-size: 18px;
  }
}

@media (width <= 1023px) {
  .compare .item__description ul li, .compare .item__description ol li {
    margin-bottom: var(--size-4);
  }
}

@media (width <= 767px) {
  .compare .item__description ul li, .compare .item__description ol li {
    font-size: var(--size-20);
    margin-bottom: var(--size-8);
  }
}

.compare .item__description ul li:before, .compare .item__description ol li:before {
  content: "";
  width: var(--size-24);
  height: var(--size-24);
  background: url("checkmark.c24d0238.svg") 0 0 / contain;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
}

@media (width <= 1200px) {
  .compare .item__description ul li:before, .compare .item__description ol li:before {
    width: var(--size-20);
    height: var(--size-20);
    top: 5px;
  }
}

.compare .item__description ul li, .compare .item__description ol li {
  color: var(--color-bean-400);
}

.compare .item__description ol li:before {
  background: url("minus.0efe84a3.svg") 0 0 / contain no-repeat;
}

.hero-ermac {
  background-color: var(--color-bean-400);
  min-height: 600px;
  overflow: hidden;
}

@media (width <= 1480px) {
  .hero-ermac {
    min-height: auto;
  }
}

.hero-ermac .container {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

.hero-ermac__caption {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 164px;
  padding-bottom: 164px;
}

@media (width <= 1480px) {
  .hero-ermac__caption {
    padding: 132px 0;
  }
}

@media (width <= 1200px) {
  .hero-ermac__caption {
    max-width: 560px;
    padding-bottom: 80px;
  }
}

@media (width <= 1023px) {
  .hero-ermac__caption {
    max-width: 480px;
  }
}

@media (width <= 767px) {
  .hero-ermac__caption {
    padding: 100px 0 64px;
  }
}

.hero-ermac__caption {
  flex: 1;
}

.hero-ermac__caption p {
  font-size: var(--size-24);
  font-family: var(--font-medium);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin: 0 auto;
  margin-bottom: var(--size-32);
}

@media (width <= 1480px) {
  .hero-ermac__caption p {
    margin-bottom: var(--size-28);
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .hero-ermac__caption p {
    margin-bottom: var(--size-28);
    font-size: var(--size-20);
  }
}

@media (width <= 1023px) {
  .hero-ermac__caption p {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  .hero-ermac__caption p {
    font-size: var(--size-20);
  }
}

.hero-ermac__caption p {
  max-width: 580px;
  margin-bottom: var(--size-32);
}

@media (width <= 1200px) {
  .hero-ermac__caption p {
    max-width: 440px;
  }
}

@media (width <= 767px) {
  .hero-ermac__caption p {
    margin: var(--size-0) var(--size-24) var(--size-24) var(--size-24);
  }
}

.hero-ermac__caption a {
  margin: 0px var(--size-8);
}

@media (width <= 767px) {
  .hero-ermac__caption a {
    text-align: center;
    width: 200px;
    margin: var(--size-8) var(--size-0);
    justify-content: center;
  }
}

.hero-ermac__illustration {
  align-self: end;
  width: 40%;
  display: block;
  position: absolute;
  bottom: 0;
  left: -100px;
}

@media (width <= 1200px) {
  .hero-ermac__illustration {
    display: none;
  }
}

@media (width <= 767px) {
  .hero-ermac__illustration {
    display: none;
  }
}

.audiences {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .audiences {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .audiences {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .audiences {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .audiences {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .audiences {
    padding: 50px 0;
  }
}

.audiences {
  padding-bottom: var(--size-0);
  background-color: var(--color-oat-100);
}

.audiences--bottom {
  padding-bottom: var(--size-64);
}

@media (width <= 767px) {
  .audiences--bottom {
    margin-bottom: var(--size-40);
  }
}

.audiences .container {
  max-width: 1170px;
}

@media (width <= 1400px) {
  .audiences .container {
    max-width: 1070px;
  }
}

.audiences__wrapper {
  justify-content: flex-start;
  align-items: ;
  gap: var(--size-32);
  flex-flow: wrap;
  display: flex;
}

@media (width <= 767px) {
  .audiences__wrapper {
    gap: var(--size-24);
  }
}

.audiences .audience {
  padding: var(--size-48);
  background-color: var(--color-oat-200);
  border-radius: var(--radius-xxl);
  flex-direction: column;
  flex: 1;
  transition: all .25s ease-in-out;
  display: flex;
  position: relative;
}

@media (width <= 1400px) {
  .audiences .audience {
    padding: var(--size-40);
  }
}

@media (width <= 1200px) {
  .audiences .audience {
    padding: var(--size-32);
  }
}

.audiences .audience small {
  right: var(--size-64);
  bottom: var(--size-64);
  border-radius: var(--radius-full);
  color: var(--color-grass-400);
  width: var(--size-64);
  height: var(--size-64);
  background-color: var(--color-grass-400);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  transition: all .25s ease-in-out;
  display: flex;
  position: absolute;
}

@media (width <= 767px) {
  .audiences .audience small {
    right: var(--size-48);
    bottom: var(--size-48);
    width: var(--size-48);
    height: var(--size-48);
  }
}

.audiences .audience small span {
  font-size: var(--size-24);
  color: var(--color-bean-400);
  transition: all .25s ease-in-out;
}

@media (width <= 767px) {
  .audiences .audience small span {
    font-size: var(--size-20);
  }
}

.audiences .audience:hover {
  background-color: var(--color-oat-300);
  box-shadow: 0 7px 29px #64646f33;
}

.audiences .audience:hover small {
  background-color: var(--color-bean-400);
}

.audiences .audience:hover small span {
  color: var(--color-grass-400);
}

.audiences .audience__body {
  padding-bottom: var(--size-24);
  flex-grow: 1;
}

.audiences .audience__photo {
  border-radius: var(--radius-xl);
  background: var(--color-oat-100);
  height: 360px;
}

@media (width <= 1200px) {
  .audiences .audience__photo {
    height: 300px;
  }
}

@media (width <= 767px) {
  .audiences .audience__photo {
    height: 300px;
  }
}

.audiences .audience__photo img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
}

.hero-about {
  background-color: var(--color-bean-400);
  min-height: 400px;
  padding-bottom: var(--size-64);
  flex-flow: wrap;
  justify-content: center;
  align-items: start;
  display: flex;
  position: relative;
}

@media (width <= 767px) {
  .hero-about {
    padding-bottom: var(--size-40);
  }
}

.hero-about__wrapper {
  text-align: center;
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 154px;
}

@media (width <= 1400px) {
  .hero-about__wrapper {
    max-width: 900px;
    padding-top: 124px;
  }
}

@media (width <= 1200px) {
  .hero-about__wrapper {
    max-width: 600px;
  }
}

@media (width <= 1023px) {
  .hero-about__wrapper {
    max-width: 440px;
    padding-top: 100px;
  }
}

@media (width <= 767px) {
  .hero-about__wrapper {
    padding-top: 100px;
  }
}

.hero-about__wrapper h1 {
  margin-bottom: var(--size-16);
}

@media (width <= 767px) {
  .hero-about__wrapper h1 {
    margin-bottom: var(--size-8);
  }
}

.hero-about__wrapper p {
  font-size: var(--size-24);
  font-family: var(--font-medium);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin: 0 auto;
  margin-bottom: var(--size-32);
}

@media (width <= 1480px) {
  .hero-about__wrapper p {
    margin-bottom: var(--size-28);
    font-size: 22px;
  }
}

@media (width <= 1200px) {
  .hero-about__wrapper p {
    margin-bottom: var(--size-28);
    font-size: var(--size-20);
  }
}

@media (width <= 1023px) {
  .hero-about__wrapper p {
    font-size: 18px;
  }
}

@media (width <= 767px) {
  .hero-about__wrapper p {
    font-size: var(--size-20);
  }
}

.hero-about__wrapper p {
  max-width: 720px;
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .hero-about__wrapper p {
    max-width: 640px;
  }
}

.hero-about__wrapper ul {
  justify-content: center;
  align-items: center;
  gap: var(--size-16);
  font-size: var(--size-18);
  font-family: var(--font-semibold);
  color: var(--color-grass-400);
  margin-bottom: var(--size-32);
  flex-flow: wrap;
  display: flex;
}

@media (width <= 1400px) {
  .hero-about__wrapper ul {
    font-size: var(--size-16);
  }
}

@media (width <= 1200px) {
  .hero-about__wrapper ul {
    gap: var(--size-16);
    font-size: 16px;
  }
}

@media (width <= 767px) {
  .hero-about__wrapper ul {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    display: block;
  }
}

.hero-about__wrapper ul li {
  justify-content: center;
  align-items: center;
  gap: var(--size-8);
  background-color: var(--color-bean-500);
  padding: var(--size-8);
  padding-right: var(--size-16);
  border-radius: var(--radius-full);
  color: var(--color-grass-400);
  border: 1px solid var(--color-grass-300);
  flex-flow: wrap;
  display: flex;
}

@media (width <= 767px) {
  .hero-about__wrapper ul li {
    text-align: left;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    margin-bottom: var(--size-8);
    justify-content: start;
  }
}

.hero-about__wrapper ul li:before {
  content: "";
  width: var(--size-24);
  height: var(--size-24);
  background: url("checkmark.c24d0238.svg") 0 0 / contain;
  display: block;
  top: 3px;
  left: 0;
}

@media (width <= 1200px) {
  .hero-about__wrapper ul li:before {
    width: 16px;
    height: 16px;
  }
}

@media (width <= 767px) {
  .hero-about__wrapper ul li:before {
    width: var(--size-24);
    height: var(--size-24);
  }
}

.hero-about__solutions {
  justify-content: center;
  align-items: start;
  gap: var(--size-24);
  max-width: 1170px;
  padding-top: var(--size-0);
  flex-flow: wrap;
  align-items: stretch;
  margin: 0 auto;
  display: flex;
}

.hero-about__solutions .solution {
  background-color: var(--color-grass-400);
  border-radius: var(--radius-lg);
  flex-direction: column;
  flex: 1;
  transition: all .25s ease-in-out;
  display: flex;
}

.hero-about__solutions .solution:hover {
  background-color: var(--color-grass-200);
}

.hero-about__solutions .solution a {
  padding: var(--size-24);
  height: 100%;
  display: block;
  position: relative;
}

.hero-about__solutions .solution__icon {
  margin-bottom: var(--size-8);
}

.hero-about__solutions .solution__icon img {
  width: var(--size-40);
}

.hero-about__solutions .solution small {
  right: var(--size-16);
  bottom: var(--size-16);
  border-radius: var(--radius-full);
  background-color: var(--color-bean-400);
  color: var(--color-grass-400);
  width: var(--size-28);
  height: var(--size-28);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.hero-about__solutions .solution small span {
  color: var(--color-grass-400);
}

.hero-about__solutions .solution__text {
  position: relative;
}

.hero-about__solutions .solution__text h3 {
  font-size: var(--size-20);
  color: var(--color-bean-400);
}

.hero-about__video {
  width: 1000px;
  margin: 0 auto;
  transition: all .25s ease-in-out;
}

@media (width <= 1400px) {
  .hero-about__video {
    width: 900px;
  }
}

@media (width <= 1200px) {
  .hero-about__video {
    width: 80%;
  }
}

@media (width <= 767px) {
  .hero-about__video {
    width: 100%;
  }
}

.hero-about__video video {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-about__video #player-overlay {
  height: 100%;
}

.hero-about .wide-video {
  width: 100%;
}

.hero-about__bottom {
  padding-bottom: 0;
}

@media (width <= 767px) {
  .hero-about__bottom p {
    margin-bottom: var(--size-12);
  }
}

.hero-about__bottom-image {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

@media (width <= 1200px) {
  .hero-about__bottom-image {
    max-width: 660px;
  }
}

@media (width <= 1023px) {
  .hero-about__bottom-image {
    max-width: 100%;
  }
}

.problem {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .problem {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .problem {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .problem {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .problem {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .problem {
    padding: 50px 0;
  }
}

.problem {
  background-color: var(--color-oat-400);
}

.problem__wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.problem__content {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.problem__content p {
  margin-bottom: var(--size-24);
}

.problem__content--left {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.problem__text {
  max-width: 500px;
}

.problem__photo {
  width: 40%;
  position: relative;
}

.problem__photo img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.problem .splide {
  z-index: var(--z-dropdown);
  background-color: var(--color-oat-400);
}

.problem .splide__pagination__page {
  background-color: var(--color-oat-alt);
  opacity: 1;
  margin: 0 6px;
  transition: all .25s ease-in-out;
}

.problem .splide__pagination__page.is-active {
  background-color: var(--color-grass-400);
  opacity: 1;
  border-radius: 12px;
  width: 24px;
}

.problem .splide__slide {
  border-radius: var(--radius-xl);
}

.problem .splide__slide .slide__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.problem .splide__slide img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 540px;
  display: block;
}

@media (width <= 1400px) {
  .problem .splide__slide img {
    height: 440px;
  }
}

@media (width <= 1200px) {
  .problem .splide__slide img {
    height: 360px;
  }
}

@media (width <= 767px) {
  .problem .splide__slide img {
    height: 320px;
  }
}

.problem--marketplace {
  padding: 80px 0;
}

@media (width <= 1023px) {
  .problem--marketplace {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .problem--marketplace {
    padding: 40px 0;
  }
}

.problem--marketplace .content__text p a {
  color: var(--color-bean-500);
}

.promo {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .promo {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .promo {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .promo {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .promo {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .promo {
    padding: 50px 0;
  }
}

.promo {
  background-color: var(--color-grass-400);
}

.promo .splide {
  z-index: var(--z-dropdown);
}

.promo .splide__pagination__page {
  background-color: var(--color-oat-alt);
  opacity: 1;
  margin: 0 6px;
  transition: all .25s ease-in-out;
}

.promo .splide__pagination__page.is-active {
  background-color: var(--color-grass-400);
  opacity: 1;
  border-radius: 12px;
  width: 24px;
}

.promo .splide__slide img {
  object-fit: cover;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 100%;
  height: 530px;
  display: block;
}

.promo__notice {
  margin-top: var(--size-48);
  border-left: 5px solid var(--color-bean-400);
  max-width: 40%;
  padding-left: var(--size-24);
}

.promo__notice p {
  margin-bottom: var(--size-16);
  font-family: var(--font-semibold);
}

.future {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .future {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .future {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .future {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .future {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .future {
    padding: 50px 0;
  }
}

.future {
  background-color: var(--color-oat-300);
  background: #d6be98;
}

.future__infographic {
  width: 900px;
  margin: 0 auto;
  display: block;
}

.future footer {
  text-align: center;
  padding-top: var(--size-32);
}

.future footer h4 {
  max-width: 680px;
  margin: 0 auto;
  margin-bottom: var(--size-24);
}

.score {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .score {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .score {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .score {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .score {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .score {
    padding: 50px 0;
  }
}

.score {
  background-color: var(--color-bean-300);
  background-color: var(--color-oat-200);
}

.score--bean {
  background-color: var(--color-bean-400);
}

.score--bean .score__content p {
  color: var(--color-grass-100);
}

.score--oat {
  padding-bottom: var(--size-64);
}

@media (width <= 767px) {
  .score--oat {
    padding-bottom: var(--size-40);
  }
}

.score header h2 strong {
  display: block;
}

.score__content {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .score__content {
    display: block;
  }
}

.score__text {
  box-sizing: border-box;
  width: 50%;
  padding: 0 7.5%;
}

@media (width <= 1200px) {
  .score__text {
    padding: 0 5%;
  }
}

@media (width <= 1023px) {
  .score__text {
    padding: var(--size);
  }
}

@media (width <= 767px) {
  .score__text {
    width: 100%;
    padding: var(--size-0);
  }
}

.score__text--left {
  padding-left: var(--size-0);
  width: 45%;
}

@media (width <= 1400px) {
  .score__text--left {
    width: 50%;
  }
}

@media (width <= 767px) {
  .score__text--left {
    width: 100%;
  }
}

.score__text--left a.btn {
  margin-bottom: var(--size-48);
}

@media (width <= 1023px) {
  .score__text--left a.btn {
    margin-bottom: var(--size-0);
  }
}

.score__text p {
  margin-bottom: var(--size-16);
}

@media (width <= 767px) {
  .score__text p {
    margin-bottom: var(--size-16);
  }
}

.score__text ul {
  margin-bottom: var(--size-32);
}

@media (width <= 1400px) {
  .score__text ul {
    margin-bottom: var(--size-24);
  }
}

@media (width <= 1200px) {
  .score__text ul {
    margin-bottom: var(--size-20);
  }
}

@media (width <= 1023px) {
  .score__text ul {
    margin-bottom: var(--size-16);
  }
}

.score__text ul li {
  font-size: var(--size-20);
  font-family: var(--font-regular);
  color: var(--color-grass-100);
  line-height: var(--lh-normal);
  margin-bottom: var(--size-8);
  padding-left: var(--size-40);
  position: relative;
}

@media (width <= 1200px) {
  .score__text ul li {
    padding-left: var(--size-32);
    font-size: 18px;
  }
}

@media (width <= 1023px) {
  .score__text ul li {
    margin-bottom: var(--size-4);
  }
}

@media (width <= 767px) {
  .score__text ul li {
    font-size: var(--size-20);
    margin-bottom: var(--size-8);
  }
}

.score__text ul li:before {
  content: "";
  width: var(--size-24);
  height: var(--size-24);
  background: url("checkmark.c24d0238.svg") 0 0 / contain;
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
}

@media (width <= 1200px) {
  .score__text ul li:before {
    width: var(--size-20);
    height: var(--size-20);
    top: 5px;
  }
}

.score__text ul li {
  color: var(--color-bean-400);
}

.score__photo {
  width: 45%;
}

@media (width <= 1200px) {
  .score__photo {
    width: 40%;
  }
}

@media (width <= 767px) {
  .score__photo {
    width: 100%;
  }
}

.score__photo--long {
  width: 55%;
}

@media (width <= 1400px) {
  .score__photo--long {
    width: 50%;
  }
}

@media (width <= 767px) {
  .score__photo--long {
    width: 100%;
  }
}

.score__photo img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.score__photo--image {
  background: var(--color-bean-300);
  border-radius: var(--radius-xl);
  flex-flow: wrap;
  justify-content: center;
  align-items: end;
  width: 50%;
  height: 500px;
  display: flex;
  overflow: hidden;
}

@media (width <= 1200px) {
  .score__photo--image {
    height: 400px;
  }
}

@media (width <= 767px) {
  .score__photo--image {
    width: 100%;
    height: 350px;
    margin-bottom: var(--size-20);
  }
}

.score__photo--image img {
  object-fit: cover;
  width: 80%;
  max-width: 100%;
  height: auto;
  display: block;
}

.score__how {
  margin-top: var(--size-48);
  padding-top: var(--size-32);
  border-top: 1px solid var(--color-bean-300);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 1400px) {
  .score__how {
    margin-top: var(--size-40);
    padding-top: var(--size-28);
  }
}

@media (width <= 1200px) {
  .score__how {
    display: block;
  }
}

@media (width <= 767px) {
  .score__how {
    margin-top: var(--size-32);
    padding-top: var(--size-24);
  }
}

.score__how h4 {
  color: var(--color-grass-200);
  max-width: 400px;
  padding-right: var(--size-32);
  margin-bottom: var(--size-0);
}

@media (width <= 1620px) {
  .score__how h4 {
    max-width: 360px;
  }
}

@media (width <= 1400px) {
  .score__how h4 {
    padding-right: var(--size-24);
    max-width: 320px;
  }
}

@media (width <= 1200px) {
  .score__how h4 {
    margin-bottom: var(--size-24);
  }
}

@media (width <= 767px) {
  .score__how h4 {
    margin-bottom: var(--size-24);
    font-size: var(--size-24);
  }
}

.score__list {
  flex-flow: wrap;
  flex: 1;
  justify-content: space-between;
  align-items: start;
  display: flex;
}

@media (width <= 767px) {
  .score__list {
    display: block;
  }
}

.score__list .rating {
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: start;
  display: flex;
}

@media (width <= 767px) {
  .score__list .rating {
    margin-bottom: var(--size-24);
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .score__list .rating:last-child {
    margin-bottom: var(--size-0);
  }
}

.score__list .rating__icon {
  width: 80px;
  margin-right: var(--size-24);
}

@media (width <= 1620px) {
  .score__list .rating__icon {
    margin-right: var(--size-20);
  }
}

@media (width <= 1400px) {
  .score__list .rating__icon {
    width: var(--size-64);
  }
}

@media (width <= 1023px) {
  .score__list .rating__icon {
    width: var(--size-56);
    margin-right: var(--size-16);
  }
}

.score__list .rating__icon img {
  max-width: 100%;
}

.score__list .rating__description {
  flex: 1;
}

.score__list .rating__title {
  color: var(--color-grass-200);
  font-size: var(--size-20);
  font-family: var(--font-semibold);
  margin-bottom: var(--size-8);
  display: block;
}

@media (width <= 1400px) {
  .score__list .rating__title {
    font-size: var(--size-18);
  }
}

@media (width <= 1023px) {
  .score__list .rating__title {
    font-size: var(--size-16);
  }
}

@media (width <= 767px) {
  .score__list .rating__title {
    font-size: var(--size-18);
  }
}

.score__list .rating__explanation {
  color: var(--color-grass-200);
  line-height: var(--lh-normal);
  font-size: var(--size-16);
  padding-right: var(--size-20);
  display: block;
}

@media (width <= 1620px) {
  .score__list .rating__explanation {
    padding-right: var(--size-8);
  }
}

@media (width <= 1400px) {
  .score__list .rating__explanation {
    font-size: var(--size-16);
  }
}

@media (width <= 1023px) {
  .score__list .rating__explanation {
    font-size: var(--size-12);
  }
}

.join {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .join {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .join {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .join {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .join {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .join {
    padding: 50px 0;
  }
}

.join {
  background-color: var(--color-oat-400);
}

.join header h2 {
  margin-bottom: var(--size-32);
}

@media (width <= 767px) {
  .join header h2 {
    font-size: var(--size-28);
  }
}

.join header h2 strong {
  display: block;
}

.join__mockups {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-top: -48px;
  display: flex;
}

@media (width <= 1400px) {
  .join__mockups {
    margin-top: -32px;
  }
}

@media (width <= 767px) {
  .join__mockups {
    margin-top: -24px;
  }
}

.join__mockups .mockup {
  flex: 1;
  position: relative;
}

@media (width <= 767px) {
  .join__mockups .mockup {
    width: 33%;
  }
}

.join__mockups .mockup img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.join__mockups .mockup:first-child {
  left: 64px;
}

@media (width <= 767px) {
  .join__mockups .mockup:first-child {
    left: auto;
  }
}

.join__mockups .mockup:last-child {
  left: -64px;
}

@media (width <= 767px) {
  .join__mockups .mockup:last-child {
    left: auto;
  }
}

.join__mockup img {
  margin: 0 auto;
  display: block;
}

.join footer {
  text-align: center;
  padding-top: var(--size-32);
}

.invite {
  background-color: var(--color-oat-100);
  padding-bottom: var(--size-64);
}

@media (width <= 1400px) {
  .invite {
    padding-bottom: var(--size-24);
  }
}

@media (width <= 767px) {
  .invite {
    padding-bottom: var(--size-32);
  }
}

.invite__wrapper p {
  margin-bottom: var(--size-32);
}

.invite .container {
  margin-bottom: 100px;
}

@media (width <= 1400px) {
  .invite .container {
    margin-bottom: var(--size-64);
  }
}

@media (width <= 767px) {
  .invite .container {
    margin-bottom: var(--size-48);
  }
}

.invite__form {
  text-align: left;
  max-width: 920px;
  margin: 0 auto;
}

@media (width <= 1200px) {
  .invite__form {
    max-width: 800px;
  }
}

@media (width <= 1023px) {
  .invite__form {
    max-width: 100%;
  }
}

.invite__form .wpcf7 form.sent .wpcf7-response-output {
  margin: 0;
  margin-top: var(--size-16);
  text-align: center;
  padding: var(--size-12);
  border-radius: var(--radius-md);
  background-color: var(--color-grass-400);
  color: var(--color-bean-400);
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  border: none;
}

@media (width <= 767px) {
  .invite__form .wpcf7 form.sent .wpcf7-response-output {
    margin-top: var(--size-0);
    text-align: left;
  }
}

.invite__form .form-row {
  justify-content: space-between;
  align-items: start;
  gap: var(--size-24);
  flex-flow: wrap;
  display: flex;
}

@media (width <= 1023px) {
  .invite__form .form-row {
    gap: var(--size-8);
  }
}

@media (width <= 767px) {
  .invite__form .form-row {
    gap: var(--size-20);
    display: block;
  }
}

.invite__form small {
  margin-bottom: var(--size-16);
  color: var(--color-bean-500);
  display: block;
}

.invite__form .form-col {
  box-sizing: border-box;
  width: calc(33% - 24px);
}

@media (width <= 1023px) {
  .invite__form .form-col {
    width: calc(33% - 8px);
  }
}

@media (width <= 767px) {
  .invite__form .form-col {
    width: 100%;
    margin-bottom: var(--size-24);
  }

  .invite__form .form-col:last-child {
    margin-bottom: var(--size-0);
  }
}

.invite__form .form-col input[type="text"], .invite__form .form-col input[type="email"], .invite__form .form-col input[type="tel"], .invite__form .form-col textarea {
  border: none;
  border-bottom: 1px solid var(--color-bean-400);
  width: 100%;
  height: 40px;
  font-size: var(--size-16);
  color: var(--color-bean-400);
  background-color: #0000;
}

.invite__form .form-col input[type="text"].wpcf7-not-valid, .invite__form .form-col input[type="email"].wpcf7-not-valid, .invite__form .form-col input[type="tel"].wpcf7-not-valid, .invite__form .form-col textarea.wpcf7-not-valid {
  border-color: red;
}

.invite__form .form-col textarea {
  height: 100px;
}

.invite__form .form-col--full {
  width: 100%;
}

.invite__form label {
  text-transform: uppercase;
  font-family: var(--font-bold);
  color: var(--color-bean-400);
  top: var(--size-8);
  font-size: var(--size-16);
  transition: all .25s ease-in-out;
  display: block;
  position: relative;
}

@media (width <= 1400px) {
  .invite__form label {
    font-size: var(--size-16);
  }
}

@media (width <= 1200px) {
  .invite__form label {
    font-size: var(--size-12);
  }
}

.invite__form footer input {
  background-color: var(--color-bean-500);
  height: 52px;
  color: var(--color-oat-alt);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0px var(--size-40);
  line-height: 52px;
  font-size: var(--size-16);
  font-family: var(--font-bold);
  transition: all .25s ease-in-out;
  display: inline-block;
}

@media (width <= 1200px) {
  .invite__form footer input {
    height: 50px;
    padding: 0px var(--size-32);
    font-size: 15px;
    line-height: 50px;
  }
}

.invite__form footer input:hover {
  background-color: var(--color-bean-400);
}

.invite__form footer input {
  border: none;
}

@media (width <= 1023px) {
  .invite__form footer input {
    text-align: center;
    width: 100%;
    padding: var(--size-0);
  }
}

.invite__form .wpcf7-not-valid-tip {
  font-size: var(--size-16);
  padding-top: var(--size-4);
}

.invite__form .wpcf7 form.invalid .wpcf7-response-output, .invite__form .wpcf7 form.unaccepted .wpcf7-response-output, .invite__form .wpcf7 form.payment-required .wpcf7-response-output {
  margin: 0;
  margin-top: var(--size-16);
  text-align: center;
  padding: var(--size-12);
  border-radius: var(--radius-md);
  background-color: var(--color-grass-200);
  color: var(--color-bean-400);
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  border: none;
}

@media (width <= 767px) {
  .invite__form .wpcf7 form.invalid .wpcf7-response-output, .invite__form .wpcf7 form.unaccepted .wpcf7-response-output, .invite__form .wpcf7 form.payment-required .wpcf7-response-output {
    margin-top: var(--size-0);
    text-align: left;
  }
}

.invite .wpcf7 form.sent .wpcf7-response-output {
  margin: 0;
  margin-top: var(--size-16);
  text-align: center;
  padding: var(--size-12);
  border-radius: var(--radius-md);
  background-color: var(--color-grass-400);
  color: var(--color-bean-400);
  font-size: var(--size-16);
  font-family: var(--font-semibold);
  border: none;
}

@media (width <= 767px) {
  .invite .wpcf7 form.sent .wpcf7-response-output {
    margin-top: var(--size-0);
    text-align: left;
  }
}

.invite .splide {
  margin-bottom: var(--size-64);
}

@media (width <= 1400px) {
  .invite .splide {
    margin-bottom: var(--size-48);
  }
}

@media (width <= 1200px) {
  .invite .splide {
    margin-bottom: 32px;
  }
}

.invite .splide__logo {
  padding: 12px 0;
}

.invite .splide__logo img {
  opacity: .5;
  filter: blur(9px);
}

@media (width <= 1620px) {
  .invite .splide__logo img {
    max-width: 80%;
  }
}

@media (width <= 1480px) {
  .invite .splide__logo img {
    max-width: 70%;
  }
}

@media (width <= 767px) {
  .invite .splide__logo img {
    max-width: 70%;
  }
}

.example {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .example {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .example {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .example {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .example {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .example {
    padding: 50px 0;
  }
}

.example {
  background-color: var(--color-oat-200);
}

.example .container {
  position: relative;
}

.example__wrapper {
  z-index: var(--z-dropdown);
  flex-flow: wrap;
  justify-content: space-between;
  align-items: start;
  display: flex;
  position: relative;
}

@media (width <= 767px) {
  .example__wrapper {
    display: block;
  }
}

.example__text {
  width: 80%;
}

@media (width <= 1400px) {
  .example__text {
    width: 90%;
  }
}

@media (width <= 1200px) {
  .example__text {
    width: 100%;
  }
}

.example__text p {
  margin-bottom: var(--size-16);
}

.example__photo {
  z-index: 1;
  width: 50%;
  position: absolute;
  top: -24px;
  right: -48px;
}

@media (width <= 767px) {
  .example__photo {
    opacity: .6;
    right: 0;
  }
}

.example__photo img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.example__content p {
  max-width: 55%;
}

@media (width <= 767px) {
  .example__content p {
    max-width: 100%;
  }
}

.example__list {
  margin-top: var(--size-48);
  justify-content: flex-start;
  align-items: start;
  gap: var(--size-24);
  flex-flow: wrap;
  display: flex;
}

@media (width <= 1400px) {
  .example__list {
    margin-top: var(--size-40);
  }
}

@media (width <= 767px) {
  .example__list {
    margin-top: var(--size-32);
    display: block;
  }
}

.example__list .card {
  width: 30%;
  position: relative;
}

@media (width <= 767px) {
  .example__list .card {
    width: 100%;
    margin-bottom: var(--size-24);
  }

  .example__list .card:last-child {
    margin-bottom: var(--size-0);
  }
}

.example__list .card__image {
  margin-bottom: var(--size-16);
}

.example__list .card__image img {
  object-fit: cover;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 100%;
  height: 200px;
  display: block;
}

@media (width <= 1400px) {
  .example__list .card__image img {
    height: 180px;
  }
}

@media (width <= 1023px) {
  .example__list .card__image img {
    height: 140px;
  }
}

.example__list .card__text {
  padding-right: var(--size-24);
  padding-left: var(--size-48);
  position: relative;
}

@media (width <= 1400px) {
  .example__list .card__text {
    padding-right: var(--size-0);
  }
}

@media (width <= 1023px) {
  .example__list .card__text {
    padding-left: var(--size-40);
  }
}

@media (width <= 767px) {
  .example__list .card__text {
    padding-right: var(--size-0);
  }
}

.example__list .card__text small {
  width: var(--size-32);
  height: var(--size-32);
  line-height: var(--size-32);
  background-color: var(--color-bean-400);
  color: var(--color-grass-400);
  text-align: center;
  font-size: var(--size-16);
  border-radius: var(--radius-full);
  display: block;
  position: absolute;
  left: 0;
}

.example__list .card__text p {
  font-size: var(--size-18);
  line-height: var(--lh-small);
}

@media (width <= 1400px) {
  .example__list .card__text p {
    margin-bottom: var(--size-12);
  }
}

.example__list .card__text blockquote p {
  font-size: var(--size-12);
}

.timeline {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .timeline {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .timeline {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .timeline {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .timeline {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .timeline {
    padding: 50px 0;
  }
}

.timeline {
  background-color: var(--color-grass-500);
  padding-bottom: 0;
}

.timeline .steps-list {
  max-width: 1000px;
  margin: 0 auto;
}

@media (width <= 1400px) {
  .timeline .steps-list {
    max-width: 860px;
  }
}

@media (width <= 1200px) {
  .timeline .steps-list {
    max-width: 80%;
  }
}

@media (width <= 767px) {
  .timeline .steps-list {
    max-width: 95%;
  }
}

.timeline .step {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

@media (width <= 767px) {
  .timeline .step {
    border-bottom: 1px solid var(--color-bean-400);
    padding-bottom: 24px;
    display: block;
  }
}

.timeline .step__text {
  border-left: 1px solid var(--color-bean-400);
  box-sizing: border-box;
  width: 50%;
  padding-top: 84px;
  padding-bottom: 84px;
  padding-left: 50px;
  position: relative;
}

@media (width <= 1023px) {
  .timeline .step__text {
    padding-top: 64px;
  }
}

@media (width <= 767px) {
  .timeline .step__text {
    width: 100%;
    padding-bottom: 24px;
    padding-top: var(--size-48);
    border: none;
  }
}

.timeline .step__text h3 {
  max-width: 474px;
  margin-bottom: 12px;
}

.timeline .step__text p {
  max-width: 474px;
  margin-bottom: 24px;
}

.timeline .step__text p:last-child {
  margin-bottom: 0;
}

.timeline .step__illustration {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

@media (width <= 767px) {
  .timeline .step__illustration {
    width: 100%;
  }
}

.timeline .step__illustration img {
  object-fit: cover;
  border-radius: var(--radius-full);
  width: 260px;
  max-width: 100%;
  height: 260px;
  display: block;
}

@media (width <= 1023px) {
  .timeline .step__illustration img {
    width: 200px;
    height: 200px;
  }
}

.timeline .step__number {
  background-color: var(--color-bean-400);
  text-align: center;
  border-radius: 100%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  position: absolute;
  top: 48px;
  left: -24px;
}

@media (width <= 767px) {
  .timeline .step__number {
    border: none;
  }
}

.timeline .step__number span {
  color: var(--color-grass-400);
  font-family: var(--font-bold);
  font-size: 24px;
}

.timeline .step:nth-child(2n) {
  flex-direction: row-reverse;
}

@media (width <= 767px) {
  .timeline .step:nth-child(2n) .step__text {
    padding-left: 0;
    padding-right: 50px;
  }

  .timeline .step:nth-child(2n) .step__number {
    left: auto;
    right: -24px;
  }

  .timeline .step:nth-child(2) {
    border-right: 1px solid var(--color-bean-400);
  }

  .timeline .step:first-child {
    border-left: 1px solid var(--color-bean-400);
  }
}

.timeline .step:first-child .step__text {
  border-bottom: 1px solid var(--color-bean-400);
}

@media (width <= 767px) {
  .timeline .step:first-child .step__text {
    border: none;
  }
}

.timeline .step:first-child .step__number:before {
  content: "";
  background: var(--color-grass-500);
  width: 5px;
  height: 50px;
  display: block;
  position: absolute;
  top: -50px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (width <= 767px) {
  .timeline .step:nth-child(3) {
    border-left: 1px solid var(--color-bean-400);
  }
}

.timeline .step:nth-child(3) .step__text {
  border-top: 1px solid var(--color-bean-400);
  border-bottom: 1px solid vaR(--color-bean-400);
}

@media (width <= 767px) {
  .timeline .step:nth-child(3) .step__text {
    border: none;
  }

  .timeline .step:nth-child(4) {
    border-right: 1px solid var(--color-bean-400);
  }
}

.timeline .step:nth-child(5) .step__text {
  border-bottom: 1px solid var(--color-bean-400);
  border-top: 1px solid var(--color-bean-400);
}

@media (width <= 767px) {
  .timeline .step:nth-child(5) .step__text {
    border: none;
  }

  .timeline .step:nth-child(5) {
    border-left: 1px solid var(--color-bean-400);
  }

  .timeline .step:last-child {
    border-right: 1px solid var(--color-bean-400);
  }
}

.timeline .step:last-child .step__text {
  border: none;
}

.timeline .step:last-child .step__number:before {
  content: "";
  background: var(--color-bean-400);
  width: 1px;
  height: 50px;
  display: block;
  position: absolute;
  top: -49px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}

@media (width <= 767px) {
  .timeline .step:last-child .step__number:before {
    border: none;
  }
}

.timeline footer {
  text-align: center;
  max-width: 800px;
  padding-top: var(--size-48);
  margin: 0 auto;
}

@media (width <= 1400px) {
  .timeline footer {
    padding-top: var(--size-40);
    max-width: 640px;
  }
}

@media (width <= 1023px) {
  .timeline footer {
    max-width: 480px;
  }
}

.timeline__mockup {
  margin-top: var(--size-64);
}

@media (width <= 1400px) {
  .timeline__mockup {
    margin-top: var(--size-48);
  }
}

.timeline__mockup img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.intro-problem {
  padding: 100px 0;
}

@media (width <= 1480px) {
  .intro-problem {
    padding: 80px 0;
  }
}

@media (width <= 1400px) {
  .intro-problem {
    padding: var(--size-64) var(--size-0);
  }
}

@media (width <= 1200px) {
  .intro-problem {
    padding: var(--size-56) 0px;
  }
}

@media (width <= 1023px) {
  .intro-problem {
    padding: var(--size-48) 0px;
  }
}

@media (width <= 767px) {
  .intro-problem {
    padding: 50px 0;
  }
}

.intro-problem {
  background-color: var(--color-oat-300);
}

@media (width <= 767px) {
  .intro-problem {
    padding-top: 30px;
  }
}

.intro-problem__wrapper {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.intro-problem__content {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.intro-problem__content p {
  margin-bottom: var(--size-24);
}

.intro-problem__content--left {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.intro-problem__text {
  max-width: 500px;
}

.intro-problem__photo {
  width: 40%;
  position: relative;
}

.intro-problem__photo img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media (width <= 767px) {
  .intro-problem .content__photo {
    margin-top: 30px;
  }
}

.langs {
  background-color: var(--color-oat-100);
  width: 100%;
  padding: 80px 0;
}

@media (width <= 1023px) {
  .langs {
    padding: 50px 0;
  }
}

@media (width <= 767px) {
  .langs {
    padding: 40px 0;
  }
}

.langs__wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.langs__wrapper img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.langs__wrapper h2 {
  text-align: center;
  font-family: var(--font-black);
  width: 100%;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width <= 767px) {
  .langs__wrapper h2 {
    font-size: var(--size-24);
    margin-top: -10px;
  }
}
/*# sourceMappingURL=main.css.map */
