


@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .fx-enter:not(.fx-stagger),
    .fx-pop:not(.fx-stagger),
    .fx-slide-from-bottom:not(.fx-stagger),
    .fx-slide-from-left:not(.fx-stagger),
    .fx-slide-from-right:not(.fx-stagger),
    .fx-stagger > * {
      animation-timeline: view();
      animation-range: entry 10% cover 30%;
      animation-fill-mode: both;
      animation-timing-function: cubic-bezier(0.2, 0.7, 0.3, 1);
    }

    .fx-enter:not(.fx-stagger)             { animation-name: fx-enter-fade; }
    .fx-pop:not(.fx-stagger)               { animation-name: fx-pop-in; }
    .fx-slide-from-bottom:not(.fx-stagger) { animation-name: fx-from-bottom; }
    .fx-slide-from-left:not(.fx-stagger)   { animation-name: fx-from-left; }
    .fx-slide-from-right:not(.fx-stagger)  { animation-name: fx-from-right; }

    
    .fx-enter.fx-stagger > *             { animation-name: fx-enter-fade; }
    .fx-pop.fx-stagger > *               { animation-name: fx-pop-in; }
    .fx-slide-from-bottom.fx-stagger > * { animation-name: fx-from-bottom; }
    .fx-slide-from-left.fx-stagger > *   { animation-name: fx-from-left; }
    .fx-slide-from-right.fx-stagger > *  { animation-name: fx-from-right; }

    
    
    .fx-pop:not(.fx-stagger),
    .fx-pop.fx-stagger > * {
      animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .fx-stagger > *:nth-child(2) { animation-range: entry 18% cover 38%; }
    .fx-stagger > *:nth-child(3) { animation-range: entry 26% cover 46%; }
    .fx-stagger > *:nth-child(4) { animation-range: entry 34% cover 54%; }
    .fx-stagger > *:nth-child(5) { animation-range: entry 42% cover 62%; }
  }
}

@keyframes fx-enter-fade {
  from { opacity: 0; transform: translateY(var(--space-m)); }
  to   { opacity: 1; transform: none; }
}



@keyframes fx-pop-in {
  from { opacity: 0; transform: scale(0.9) translateY(6%); }
  to   { opacity: 1; transform: none; }
}

@keyframes fx-from-bottom {
  from { opacity: 0; transform: translateY(45%); }
  to   { opacity: 1; transform: none; }
}
@keyframes fx-from-left {
  from { opacity: 0; transform: translateX(-100%); }
  to   { opacity: 1; transform: none; }
}
@keyframes fx-from-right {
  from { opacity: 0; transform: translateX(100%); }
  to   { opacity: 1; transform: none; }
}


.fx-clip { overflow-x: clip; }


[data-countup] {
  font-variant-numeric: tabular-nums;
}


.js .fx-quote-fade,
.js .p-quote blockquote,
.js .p-testimonial blockquote {
  opacity: 0;
  transition: opacity 700ms ease;
}
.js .fx-quote-fade.is-revealed,
.js .p-quote blockquote.is-revealed,
.js .p-testimonial blockquote.is-revealed {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .js .fx-quote-fade,
  .js .p-quote blockquote,
  .js .p-testimonial blockquote {
    opacity: 1;
    transition: none;
  }
}


.fx-travel-over {
  position: relative;
}

.fx-travel-over__under {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fx-travel-over__over {
  position: relative;
  
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


@media (max-width: 899.98px), (max-height: 949.98px) {
  .fx-travel-over__under,
  .fx-travel-over__over {
    position: static;
    min-height: 0;
  }
}


@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .fx-travel-over--across {
      position: relative;
      
      height: 250svh;
      
      view-timeline-name: --fx-across-timeline;
      view-timeline-axis: block;
    }

    .fx-travel-over--across > .fx-travel-over__under {
      position: sticky;
      top: 0;
      height: 100svh;
      min-height: 0;
    }

    .fx-travel-over--across > .fx-travel-over__over {
      position: sticky;
      top: 0;
      height: 100svh;
      min-height: 0;
      
      margin-top: -100svh;
      z-index: 1;
      clip-path: inset(0 0 0 var(--fx-across-start, 50%));
      animation: fx-across linear both;
      animation-timeline: --fx-across-timeline;
      
      animation-range: contain 0% contain 100%;
    }

    
    .fx-travel-over--across > .fx-travel-over__over .p-quote {
      animation: fx-across-quote linear both;
      animation-timeline: --fx-across-timeline;
      animation-range: contain 35% contain 100%;
    }
  }
}

@keyframes fx-across {
  from { clip-path: inset(0 0 0 var(--fx-across-start, 50%)); }
  to   { clip-path: inset(0 0 0 0); }
}

@keyframes fx-across-quote {
  from { opacity: 0; transform: translateX(18%); }
  to   { opacity: 1; transform: none; }
}


@media (max-width: 899.98px), (max-height: 819.98px) {
  .fx-travel-over--across > .fx-travel-over__under,
  .fx-travel-over--across > .fx-travel-over__over {
    position: static;
    height: auto;
    min-height: 0;
  }
  .fx-travel-over--across > .fx-travel-over__over {
    margin-top: 0;
    clip-path: none;
    animation: none;
  }
  .fx-travel-over--across > .fx-travel-over__over .p-quote {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .fx-travel-over--across {
    height: auto;
  }
}


.fx-draw {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.fx-draw__line {
  fill: none;
  stroke: var(--c-gold);
  stroke-width: 3;
  
  stroke-dasharray: var(--fx-draw-len, none);
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .fx-draw__line {
      animation: fx-draw-line linear both;
      animation-timeline: view();
      
      animation-range: entry 15% cover 35%;
    }
  }
}


@keyframes fx-draw-line {
  from { stroke-dashoffset: var(--fx-draw-len, 0); }
  to   { stroke-dashoffset: 0; }
}



@keyframes fx-nudge {
  0%,  100% { transform: none; }
  12%       { transform: translateX(-6px) rotate(-0.5deg); }
  28%       { transform: translateX(5px)  rotate(0.4deg); }
  44%       { transform: translateX(-4px) rotate(-0.28deg); }
  60%       { transform: translateX(3px)  rotate(0.18deg); }
  78%       { transform: translateX(-2px); }
}
