.wpb_animate {
  opacity: 0;
}

.wpb_animate.start {
  opacity: 1;
}

.wpb_animate.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}
@keyframes fadeInDownShort {
  from {
    opacity: 0;
    transform: translateY(-1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpb_fadeDown.start {
  animation-name: fadeInDownShort;
}

@keyframes fadeInUpShort {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wpb_fadeUp.start {
  animation-name: fadeInUpShort;
}

@keyframes lineGrow {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.wpb_line {
  width: 0;
  height: 1px;
}

.wpb_line.start {
  animation: lineGrow 0.8s ease forwards;
}

@keyframes fadeInLeftShort {
  from {
    opacity: 0;
    transform: translateX(-1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wpb_fadeLeft.start {
  animation-name: fadeInLeftShort;
}


@keyframes fadeInRightShort {
  from {
    opacity: 0;
    transform: translateX(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wpb_fadeRight.start {
  animation-name: fadeInRightShort;
}

@keyframes zoomInShort {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wpb_zoomIn.start {
  animation-name: zoomInShort;
}

@keyframes zoomOutShort {
  from {
    opacity: 0;
    transform: scale(1.2);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wpb_zoomOut.start {
  animation-name: zoomOutShort;
}

/* Design folder: "animate fadeUp" etc. — same scroll trigger (.start) as WPB */
.animate.fadeUp,
.animate.fadeDown,
.animate.zoomIn,
.animate.zoomOut,
.animate.line {
  opacity: 0;
}

.animate.line {
  width: 0;
  height: 1px;
}

.animate.fadeUp.start {
  animation-name: fadeInUpShort;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.animate.fadeDown.start {
  animation-name: fadeInDownShort;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.animate.zoomIn.start {
  animation-name: zoomInShort;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.animate.zoomOut.start {
  animation-name: zoomOutShort;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease-out;
}

.animate.line.start {
  opacity: 1;
  animation: lineGrow 0.8s ease forwards;
}

/* -------------------------------------------------------------------------- */
/* About banner: WPB-style charsAnimIn (per-character stagger)                */
/* -------------------------------------------------------------------------- */
:root {
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-short: cubic-bezier(0.16, 1, 0.3, 1);
}

.splitting .word {
  --word-percent: calc(var(--word-index) / var(--word-total));
}

.splitting .word,
.splitting .char {
  display: inline-block;
}

.splitting .char {
  --char-percent: calc(var(--char-index) / var(--char-total));
  position: relative;
}

@media (min-width: 1024px) {
  html:not(.mobile) .wpb_animate_when_almost_visible.charsAnimIn:not(.animated) .char {
    will-change: opacity, transform;
  }
}

.wpb_animate_when_almost_visible.charsAnimIn .char {
  transform-origin: 0 50%;
  transition: transform 0.62s var(--ease-out-short), opacity 0.62s var(--ease-default);
  transition-delay: calc(0.027s * var(--char-index));
}

.wpb_animate_when_almost_visible.charsAnimIn:not(.animated) .char {
  opacity: 0;
  transform: translateY(0.5em) rotate(7deg);
}

.charsAnimIn.animated .char,
.mobile .charsAnimIn .char {
  opacity: 1;
  transform: none;
}

@media (max-width: 1023px) {
  .charsAnimIn .char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .charsAnimIn .char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

