.anim-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.anim-fade-in-3s {
  opacity: 0;
  animation: fadeIn 3s ease-out forwards;
}

.anim-fade-in-slow {
  opacity: 0;
  animation: fadeIn 1.4s ease-out forwards;
}

.anim-fade-in-up-left {
  opacity: 0;
  animation: fadeInUpLeft 0.7s ease-out forwards;
}

.anim-fade-in-up-right {
  opacity: 0;
  animation: fadeInUpRight 0.7s ease-out forwards;
}

.anim-dividend-in {
  opacity: 0;
  animation: dividendIn 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.anim-withdrawd-in {
  opacity: 0;
  animation: withdrawdIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.anim-scale-in {
  opacity: 0;
  animation: scaleIn 0.5s ease-out forwards;
}

.anim-rise-up-slow {
  opacity: 0;
  animation: riseUp 1s ease-out forwards;
}

.anim-security {
  opacity: 0;
  animation:
    scaleIn 0.5s ease-out 0.2s forwards,
    squareDriftCCW 4s ease-in-out 0.8s infinite;
}

.anim-arrow {
  opacity: 0;
  animation:
    scaleIn 0.5s ease-out 0.4s forwards,
    squareDriftCW 4s ease-in-out 1s infinite;
}

.anim-rotate-180 {
  animation: rotate180 2.5s ease-out forwards;
}
.anim-rotate-180-loop {
  animation: figureTurnLoop 4s ease-in-out infinite;
}

.anim-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.9s ease-out forwards;
}

.anim-fade-in-down {
  opacity: 0;
  animation: fadeInDown 0.9s ease-out forwards;
}

.anim-on-scroll {
  opacity: 0;
}

.anim-on-scroll.is-animated.scroll-fade-in-up {
  animation: fadeInUp 0.1s ease-out forwards;
}

.anim-on-scroll.is-animated.scroll-fade-in-down {
  animation: fadeInDown 0.1s ease-out forwards;
}

.anim-price-reveal {
  display: inline-block;
  white-space: pre;
  visibility: hidden;
}

.anim-price-reveal.is-ready {
  visibility: visible;
}

.anim-price-reveal .anim-char {
  display: inline-block;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

html.has-gsap .anim-price-reveal.is-animated .anim-char {
  animation: none !important;
}

.anim-cards-grow {
  opacity: 0;
  animation: cardGrowFromTopInset 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.icon-cw {
  animation-name: float-square-cw;
}
.icon-ccw {
  animation-name: float-square-ccw;
}
.icon-delay {
  --delay: 1s;
}

.anim-delay-1 {
  animation-delay: 0.2s;
}
.anim-delay-2 {
  animation-delay: 0.2s;
}
.anim-delay-3 {
  animation-delay: 0.6s;
}
.anim-delay-4 {
  animation-delay: 0.8s;
}
.anim-delay-5 {
  animation-delay: 1s;
}
.anim-delay-6 {
  animation-delay: 1.2s;
}
.anim-delay-7 {
  animation-delay: 0.8s;
}
.anim-delay-8 {
  animation-delay: 1.1s;
}
.anim-delay-9 {
  animation-delay: 1.2s;
}
.anim-delay-10 {
  animation-delay: 1.4s;
}
.anim-delay-11 {
  animation-delay: 1.6s;
}
.anim-delay-12 {
  animation-delay: 2s;
}
.anim-delay-13 {
  animation-delay: 2.2s;
}
.anim-delay-14 {
  animation-delay: 2.6s;
}
.anim-delay-15 {
  animation-delay: 3s;
}
.anim-delay-16 {
  animation-delay: 3.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cardGrowFromTopInset {
  from {
    opacity: 0;
    clip-path: inset(20px 0 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes fadeInUpLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 120px, 0) rotate(8deg) scale(0.05);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes fadeInUpRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 120px, 0) rotate(-8deg) scale(0.05);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes dividendIn {
  from {
    opacity: 0;
    right: 42%;
    top: 90%;
    width: 75px;
    transform: rotate3d(0, 4, 5, 52deg);
  }
  to {
    opacity: 1;
    right: 8%;
    top: 22%;
    width: 304px;
    transform: rotate3d(1, 1, 1, 0deg);
  }
}

@keyframes withdrawdIn {
  from {
    opacity: 0;
    left: 43%;
    bottom: -7%;
    width: 130px;
    transform: rotateZ(-18deg);
  }
  to {
    opacity: 1;
    left: 3%;
    bottom: 21%;
    width: 364px;
    transform: rotateZ(0deg);
  }
}

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

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rotate180 {
  from {
    transform: rotate(var(--rotate-start, 0deg));
  }
  to {
    transform: rotate(calc(var(--rotate-start, 0deg) + 180deg));
  }
}

@keyframes squareDriftCW {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, 10px);
  }
  50% {
    transform: translate(5px, 5px);
  }
  75% {
    transform: translate(10px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes squareDriftCCW {
  0% {
    transform: translate(10px, 10px);
  }
  25% {
    transform: translate(10px, 0);
  }
  50% {
    transform: translate(5px, 5px);
  }
  75% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(10px, 10px);
  }
}

@keyframes float-square-cw {
  0% {
    transform: translate(var(--a), 0);
  }
  25% {
    transform: translate(var(--a), var(--a));
  }
  50% {
    transform: translate(calc(-1 * var(--a)), var(--a));
  }
  75% {
    transform: translate(calc(-1 * var(--a)), calc(-1 * var(--a)));
  }
  100% {
    transform: translate(var(--a), 0);
  }
}

@keyframes float-square-ccw {
  0% {
    transform: translate(var(--a), 0);
  }
  25% {
    transform: translate(calc(-1 * var(--a)), calc(-1 * var(--a)));
  }
  50% {
    transform: translate(calc(-1 * var(--a)), var(--a));
  }
  75% {
    transform: translate(var(--a), var(--a));
  }
  100% {
    transform: translate(var(--a), 0);
  }
}

@keyframes lineSweepLoop {
  0%   { background-position: 100% 50%; }
  70%  { background-position: 0% 50%; } 
  100% { background-position: 0% 50%; }  
}

@keyframes figureTurnLoop {
  0%   { transform: rotate(0deg); }
  70%  { transform: rotate(180deg); }
  100% { transform: rotate(180deg); } 
}

@keyframes lineSweepShift {
  from {
    --shift: 0;
  }
  to {
    --shift: -250;
  }
}
