:root{
  --lr-motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-enabled .reveal-on-scroll{
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 1240ms var(--lr-motion-ease), transform 1240ms var(--lr-motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
  }

  html.motion-enabled .reveal-on-scroll.is-inview{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 560px) and (prefers-reduced-motion: no-preference) {
  html.motion-enabled #S004{
    min-height: 1450px;
    overflow: visible;
  }

  html.motion-enabled #S004 .container{
    height: 1200px;
  }

  html.motion-enabled #S004 .content{
    height: 1096px;
    position: sticky;
    top: clamp(20px, 6vh, 88px);
  }

  html.motion-enabled #S004 .sticky-column-container{
    --s004-shift: 0px;
    --s004-opacity: 1;
    transform: translate3d(0, var(--s004-shift), 0);
    opacity: var(--s004-opacity);
    transition: transform 120ms linear, opacity 240ms var(--lr-motion-ease);
    will-change: transform, opacity;
  }

  html.motion-enabled #S006 .component{
    gap: 24px;
  }

  html.motion-enabled #S006 .flow-card{
    position: sticky;
    top: 88px;
    transition: transform 520ms var(--lr-motion-ease), box-shadow 520ms var(--lr-motion-ease);
    will-change: transform;
  }

  html.motion-enabled #S006 .flow-card:nth-child(2){
    top: 112px;
  }

  html.motion-enabled #S006 .flow-card:nth-child(3){
    top: 136px;
  }

  html.motion-enabled #S006 .flow-card:nth-child(1){
    z-index: 1;
  }

  html.motion-enabled #S006 .flow-card:nth-child(2){
    z-index: 2;
  }

  html.motion-enabled #S006 .flow-card:nth-child(3){
    z-index: 3;
  }

  html.motion-enabled #S006 .flow-card:hover{
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
  }
}

@media (min-width: 560px) and (max-width: 1200px) and (prefers-reduced-motion: no-preference) {
  html.motion-enabled #S005{
    min-height: 2380px;
  }

  html.motion-enabled #S005 .s005-row{
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  html.motion-enabled #S005 .s005-card{
    position: sticky;
    top: 92px;
    transition: transform 380ms var(--lr-motion-ease), box-shadow 380ms var(--lr-motion-ease);
  }

  html.motion-enabled #S005 .s005-card:nth-child(2){
    top: 118px;
  }

  html.motion-enabled #S005 .s005-card:nth-child(3){
    top: 144px;
  }

  html.motion-enabled #S005 .s005-card:hover{
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
  }
}

@media (min-width: 560px) and (max-width: 1100px) and (prefers-reduced-motion: no-preference) {
  html.motion-enabled #S006 .flow-card{
    top: 84px;
  }

  html.motion-enabled #S006 .flow-card:nth-child(2){
    top: 104px;
  }

  html.motion-enabled #S006 .flow-card:nth-child(3){
    top: 124px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #S005 .s005-card,
  #S006 .flow-card{
    transition: none;
  }
}
