/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

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

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

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

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

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

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

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

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

/* Auto Height */

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

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

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

/* 3D Effects */

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

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

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

/* CSS Mode */

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

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

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

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

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

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

/* Slide styles end */

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

/* ==========================================================================
   SERVICES HERO
   ========================================================================== */

.services-hero {
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {

    .services-hero {
        padding-bottom: 80px;
    }
}

.services-hero__container {
    width: 100%;
}

@media (min-width: 1200px) {

    .services-hero__container {
        max-width: 1200px;
    }
}

.services-hero__container {
    margin-left: auto;
    margin-right: auto;
    padding-top: 104px;
}

@media (min-width: 768px) {

    .services-hero__container {
        padding-top: 128px;
    }
}

.services-hero__content {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
    max-width: 800px;
    text-align: center;
}

.services-hero__badge {
    border-radius: 6px;
    background-color: rgb(171 85 8 / var(--tw-bg-opacity, 1));
    --tw-bg-opacity: .08;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    font-family: Fragment Mono, monospace;
    font-size: 0.75rem;
    line-height: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    --tw-text-opacity: 1;
    color: rgb(136 45 23 / var(--tw-text-opacity, 1));
    opacity: 0;
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.services-hero__title {
    margin-top: 1rem;
    font-family: Tiempos Fine, serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {

    .services-hero__title {
        font-size: 56px;
    }
}

.services-hero__title .split-word {
    --tw-translate-x: 0.75rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    opacity: 0;
}

.services-hero__filestream {
    position: relative;
    margin-top: 60px;
    height: 245px;
}

@media (min-width: 768px) {

    .services-hero__filestream {
        margin-top: 80px;
        height: 300px;
    }
}

.services-hero__mask {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 245px;
    width: 100%;
}

@media (min-width: 768px) {

    .services-hero__mask {
        height: 300px;
    }
}

.services-hero__mask[data-position="left"] {
    clip-path: inset(0 50% 0 0);
}

.services-hero__mask[data-position="right"] {
    clip-path: inset(0 0 0 50%);
}

.services-hero__scroller {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-wrap: nowrap;
    gap: 60px;
    will-change: transform;
}

.services-hero__card {
    aspect-ratio: 480/300;
    height: 245px;
    flex-shrink: 0;
    overflow: hidden;
}

@media (min-width: 768px) {

    .services-hero__card {
        height: 300px;
    }
}

.services-hero__mask[data-position="left"] .services-hero__card {
    font-family: Fragment Mono, monospace;
    font-size: 12px;
    line-height: 120%;
}

.services-hero__mask[data-position="right"] .services-hero__card {
    border-radius: 16px;
}

.services-hero__divider {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    height: 280px;
    width: 3px;
    --tw-translate-x: -50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}

@media (min-width: 768px) {

    .services-hero__divider {
        height: 340px;
    }
}

.service-hero__particle {
    pointer-events: none;
    position: absolute;
    inset: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.service-hero__particle canvas {
    height: 100%;
    width: 100%;
}

.service-hero__gate-particle {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 290px;
    z-index: 4;
}

@media (min-width: 768px) {
    .service-hero__gate-particle {
        height: 360px;
    }
}

.service-hero__gate-particle canvas {
    height: 100%;
    width: 100%;
}

.services-hero__mask {
    z-index: 1;
}

.services-hero__experience {
    width: 100%;
}

@media (min-width: 1200px) {

    .services-hero__experience {
        max-width: 1200px;
    }
}

.services-hero__experience {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

.services-hero__experience-inner {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
    max-width: 792px;
}

.services-hero__experience-title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 115%;
    letter-spacing: -0.02em;
    color: #0000007A;
}

.services-hero__experience-list {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.services-hero__experience-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.services-hero__experience-icon {
    width: 18px;
    height: 18px;
}

.services-hero__experience-icon img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.services-hero__experience-text {
    white-space: nowrap;
    font-size: 15px;
    line-height: 120%;
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */

.services-grid {
    width: 100%;
}

@media (min-width: 1200px) {

    .services-grid {
        max-width: 1200px;
    }
}

.services-grid {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
}

.services-grid > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(80px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(80px * var(--tw-space-y-reverse));
}

.services-grid {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {

    .services-grid > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(160px * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(160px * var(--tw-space-y-reverse));
    }
}

.services-grid__card {
    border-radius: 20px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 0.5rem;
}

.services-grid__card-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {

    .services-grid__card-inner {
        flex-direction: row;
        gap: 99px;
    }
}

.services-grid__card-content {
    display: flex;
    width: 100%;
    max-width: 525px;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.5rem;
    padding-top: 0.25rem;
}

@media (min-width: 768px) {

    .services-grid__card-content {
        gap: 50px;
        padding-left: 2.5rem;
        padding-top: 38px;
        padding-bottom: 48px;
    }
}

.services-grid__card-header {
    width: calc(100% - 45px);
}

.services-grid__card-title {
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

@media (min-width: 768px) {

    .services-grid__card-title {
        font-size: 44px;
    }
}

.services-grid__card-desc {
    margin-top: 0.75rem;
    max-width: 320px;
    font-size: 14px;
    line-height: 140%;
    color: #00000099;
}

@media (min-width: 768px) {

    .services-grid__card-desc {
        margin-top: 1.25rem;
        font-size: 15px;
    }
}

.services-grid__outcomes {
    /* Container for outcomes */
}

.services-grid__outcomes-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 115%;
    color: #04030169;
}

.services-grid__outcomes-list {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-grid__outcome {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border-radius: 9999px;
    border-width: 1px;
    border-color: #0000001A;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 0.375rem;
    padding-right: 1rem;
}

.services-grid__outcome-icon {
    width: 1.75rem;
    height: 1.75rem;
    overflow: hidden;
    border-radius: 9999px;
}

.services-grid__outcome-icon img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.services-grid__outcome-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.02em;
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {

    .services-grid__outcome-text {
        font-size: 15px;
    }
}

.services-grid__card-image {
    position: relative;
    aspect-ratio: 3/2;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
}

@media (min-width: 768px) {

    .services-grid__card-image {
        aspect-ratio: 1 / 1;
        width: 520px;
    }
}

.services-grid__card-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.services-grid__stats {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (min-width: 640px) {

    .services-grid__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {

    .services-grid__stats {
        margin-top: 0.5rem;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.services-grid__stat {
    border-radius: 12px;
    background-color: #00000008;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {

    .services-grid__stat {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.services-grid__stat-value {
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

@media (min-width: 768px) {

    .services-grid__stat-value {
        font-size: 28px;
    }
}

.services-grid__stat-label {
    margin-top: 2px;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #00000099;
}

/* ==========================================================================
   SERVICES PLATFORMS
   ========================================================================== */

.services-platforms {
    padding-top: 0px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {

    .services-platforms {
        padding-top: 80px;
    }
}

.services-platforms__container {
    width: 100%;
}

@media (min-width: 1200px) {

    .services-platforms__container {
        max-width: 1200px;
    }
}

.services-platforms__container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
}

.services-platforms__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services-platforms__title {
    max-width: 411px;
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

@media (min-width: 768px) {

    @media (min-width: 768px) {

        .services-platforms__title {
            max-width: 588px;
        }
    }

    .services-platforms__title {
        font-size: 44px;
    }
}

.services-platforms__title-italic {
    font-style: italic;
}

.services-platforms__cta--desktop {
    display: none;
    align-items: center;
    gap: 1rem;
    border-top-left-radius: 12px;
    border-top-width: 1px;
    border-left-width: 1px;
    border-color: #0000001A;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

@media (min-width: 768px) {

    .services-platforms__cta--desktop {
        display: flex;
    }
}

.services-platforms__cta--mobile {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {

    .services-platforms__cta--mobile {
        flex-direction: row;
    }
}

@media (min-width: 768px) {

    .services-platforms__cta--mobile {
        display: none;
    }
}

.services-platforms__cta-border {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(155deg, rgba(213, 74, 0, 1), rgba(252, 199, 89, 1) 50%, rgba(252, 199, 89, 1) 70%, rgba(225, 24, 36, 1) 110%);
}

.services-platforms__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 14px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 1rem;
}

.services-platforms__cta-text {
    width: 200px;
    font-size: 15px;
    line-height: 140%;
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1));
}

.services-platforms__cta--mobile .services-platforms__cta-text {
    text-align: center;
}

@media (min-width: 768px) {

    .services-platforms__cta--mobile .services-platforms__cta-text {
        text-align: left;
    }
}

.services-platforms__cta-btn {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 56 92 / var(--tw-bg-opacity, 1));
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: 15px;
    font-weight: 600;
    line-height: 100%;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.services-platforms__grid {
    margin-top: 2rem;
}

.services-platforms__list {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    row-gap: 0.75rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
}

@media (min-width: 640px) {

    .services-platforms__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {

    .services-platforms__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 1.25rem;
    }
}

.services-platforms__item {
    display: flex;
    height: 64px;
    align-items: center;
    gap: 0.75rem;
    border-top-left-radius: 28px;
    border-bottom-right-radius: 28px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 8px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}

.services-platforms__item-icon {
    max-height: 28px;
    max-width: 36px;
    -o-object-fit: contain;
       object-fit: contain;
}

.services-platforms__item-name {
    font-size: 17px;
    font-weight: 500;
    line-height: 125%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

/* ==========================================================================
   SERVICES ADVANTAGE
   ========================================================================== */

.services-advantage {
    overflow: hidden;
    padding-top: 0px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {

    .services-advantage {
        padding-top: 80px;
    }
}

.services-advantage__container {
    width: 100%;
}

@media (min-width: 1200px) {

    .services-advantage__container {
        max-width: 1200px;
    }
}

.services-advantage__container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
}

.services-advantage__slider {
    overflow: visible;
}

.services-advantage__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.services-advantage__title {
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

@media (min-width: 768px) {

    .services-advantage__title {
        font-size: 44px;
    }
}

.services-advantage__title-brand {
    font-family: Styrene A, sans-serif;
}

.services-advantage__nav {
    display: flex;
    gap: 0.625rem;
}

.services-advantage__nav-btn {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border-width: 1px;
    border-color: transparent;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.services-advantage__nav-btn path {
    stroke: #882D17;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.services-advantage__nav-btn.swiper-button-disabled {
    border-color: #0000001A;
    background-color: transparent;
}

.services-advantage__nav-btn.swiper-button-disabled path {
    stroke: #000;
    opacity: 0.32;
}

.services-advantage__slides {
    margin-top: 48px;
}

.services-advantage__slide {
    height: auto;
    max-width: 282px;
    border-radius: 16px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    padding: 1.5rem;
}

.services-advantage__slide-title {
    font-size: 19px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

.services-advantage__slide-image {
    height: 209px;
    width: 100%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.services-advantage__slide-image img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.services-advantage__slide-desc {
    font-size: 15px;
    line-height: 140%;
    --tw-text-opacity: 1;
    color: rgb(85 85 85 / var(--tw-text-opacity, 1));
}

/* ==========================================================================
   SERVICES WHY
   ========================================================================== */

.why-us {
    padding-top: 0px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {

    .why-us {
        padding-top: 80px;
    }
}

.why-us__container {
    width: 100%;
}

@media (min-width: 1200px) {

    .why-us__container {
        max-width: 1200px;
    }
}

.why-us__container {
    margin-left: auto;
    margin-right: auto;
}

.why-us__inner-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

@media (min-width: 768px) {

    .why-us__inner-container {
        width: calc(100% - var(--horizontal-edge-space));
    }
}

.why-us__heading {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - var(--horizontal-edge-space));
    max-width: 300px;
    text-align: center;
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
    color: #000000CC;
}

@media (min-width: 768px) {

    .why-us__heading {
        width: 100%;
        max-width: -moz-max-content;
        max-width: max-content;
        font-size: 44px;
    }
}

.why-us__heading-span {
    font-family: Styrene A, sans-serif;
}

.why-us__grid--desktop {
    margin-top: 60px;
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-left-width: 1px;
    border-left-color: #0000001A;
}

@media (min-width: 640px) {

    .why-us__grid--desktop {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {

    .why-us__grid--desktop {
        display: grid;
    }
}

.why-us__grid-item {
    display: flex;
    aspect-ratio: 200/120;
    align-items: center;
    justify-content: center;
    border-right-width: 1px;
    border-right-color: #0000001A;
}

.why-us__grid-item:nth-child(n+6) {
    border-top-width: 1px;
    border-top-color: #0000001A;
}

.why-us__grid-item img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
}

.why-us__marquee--mobile {
    margin-top: 40px;
    overflow: hidden;
}

@media (min-width: 768px) {

    .why-us__marquee--mobile {
        display: none;
    }
}

.why-us__marquee-track {
    display: flex;
    height: 36px;
    align-items: center;
    gap: 1.75rem;
    animation: marquee 20s linear infinite;
}

.why-us__marquee-item {
    height: auto;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.callout {
    overflow: hidden;
    /* Section wrapper */
}

.callout__wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1696px;
}

@media (min-width: 768px) {

    .callout__wrapper {
        height: 691px;
    }
}

.callout__content {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 100%;
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background-size: cover;
}

@media (min-width: 768px) {

    .callout__content {
        flex-direction: row;
    }
}

.callout__inner {
    position: relative;
    z-index: 10;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    max-width: 325px;
}

@media (min-width: 768px) {

    .callout__inner {
        max-width: 424px;
    }
}

.callout__title {
    text-align: center;
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {

    .callout__title {
        font-size: 56px;
    }
}

.callout__title--italic {
    font-style: italic;
}

.callout__list {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    max-width: 362px;
}

.callout__list > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

@media (min-width: 768px) {

    .callout__list {
        margin-top: 1.75rem;
    }

    .callout__list > :not([hidden]) ~ :not([hidden]) {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }
}

.callout__list-item {
    display: flex;
    gap: 5px;
    font-size: 16px;
    line-height: 140%;
    color: #000000CC;
}

@media (min-width: 768px) {

    .callout__list-item {
        font-size: 18px;
    }
}

.callout__list-icon {
    margin-top: 3px;
    display: flex;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(136 45 23 / var(--tw-bg-opacity, 1));
}

.callout__button {
    margin-left: auto;
    margin-right: auto;
    margin-top: 28px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(255 56 92 / var(--tw-bg-opacity, 1));
    padding-left: 52px;
    padding-right: 52px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 125%;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.callout__button:hover {
    background-color: rgb(255 56 92 / 0.9);
}

@media (min-width: 768px) {

    .callout__button {
        margin-top: 48px;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 18.5px;
        padding-bottom: 18.5px;
        font-size: 18px;
    }
}

.callout-animation--left {
    position: absolute;
    left: 123px;
    top: 50%;
    display: none;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 768px) {

    .callout-animation--left {
        display: block;
    }
}

.callout-animation--right {
    position: absolute;
    top: 50%;
    display: none;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@media (min-width: 768px) {

    .callout-animation--right {
        display: block;
    }
}

.callout-animation--right {
    right: 123px;
}

.callout-path--left,
.callout-path--right {
    visibility: hidden;
}

.callout-path__item {
    position: absolute;
    aspect-ratio: 400/282;
    width: 400px;
    border-radius: 16px;
    background-color: #FFFFFF47;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.625rem;
    --tw-backdrop-blur: blur(4px);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    will-change: transform;
}

.callout-path__card {
    aspect-ratio: 384/240;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.callout-path__card-image {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.callout-path__card-label {
    margin-top: 0.625rem;
    display: block;
    padding-left: 0.5rem;
    font-family: Fragment Mono, monospace;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 125%;
    letter-spacing: 0.16em;
    color: #00000099;
}

.callout-marquee--mobile {
    display: block;
    width: 100%;
}

@media (min-width: 768px) {

    .callout-marquee--mobile {
        display: none;
    }
}

.callout-marquee__list {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    align-items: stretch;
    padding-top: 30px;
    padding-bottom: 40px;
    animation: marquee-left 30s linear infinite;
}

.callout-marquee--mobile .callout-path__item {
    position: static;
    margin-right: 1rem;
    width: 280px;
    flex-shrink: 0;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.faq {
    padding-top: 80px;
    padding-bottom: 80px;
}@media (min-width: 768px) {.faq {
        padding-top: 160px;
        padding-bottom: 160px;
    }
}

.faq__container {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    width: calc(100% - 96px);
    max-width: 976px;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {.faq__container {
        flex-direction: row;
        gap: 56px;
    }
}

.faq__title {
    font-family: Tiempos Fine, serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 115%;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {.faq__title {
        font-size: 44px;
    }
}

.dark .faq__title {
    --tw-text-opacity: 1;
    color: rgb(238 238 238 / var(--tw-text-opacity, 1));
}

.faq__title-ampersand {
    font-family: Canela, sans-serif;
}

.faq__grid {
    max-width: 824px;
    -moz-columns: 1;
         columns: 1;
    gap: 56px;
}

@media (min-width: 768px) {.faq__grid {
        -moz-columns: 2;
             columns: 2;
    }
}

.faq__item {
    border-bottom-width: 1px;
    border-color: #0000001F;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
}

.dark .faq__item {
    border-bottom-color: #FFFFFF1F;
}

.faq__button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: left;
}

.faq__question {
    font-size: 17px;
    font-weight: 500;
    line-height: 130%;
}

.dark .faq__question {
    --tw-text-opacity: 1;
    color: rgb(204 204 204 / var(--tw-text-opacity, 1));
}

.faq__icon {
    flex-shrink: 0;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.dark .faq__icon path {
    stroke: #FFFFFF52;
}

.faq__item.is-active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.is-active .faq__answer {
    grid-template-rows: 1fr;
}

.faq__answer > p {
    overflow: hidden;
    padding-bottom: 1rem;
    font-size: 15px;
    line-height: 160%;
    color: rgb(0 0 0 / 0.7);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dark .faq__answer > p {
    color: #CCCCCCB3;
}

.faq__item.is-active .faq__answer > p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.faq__spacer {
    height: 80px;
}

