@charset "UTF-8";
@keyframes scale-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fade-animation {
  from {
    color: var(--main-color);
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    color: #fff;
    transform: scale(1);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes move-left-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes move-left-animation {
  from {
    transform: translateX(100%);
  }
  to {
    opacity: 1;
  }
}
@keyframes move-right-animation {
  from {
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
  }
}
@keyframes title-animation {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes sub-title-animation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-654px); /* Di chuyển đủ để lặp lại */
  }
}
@keyframes rotate-section-2 {
  from {
    transform: scale(1.1) translateY(25%);
  }
  to {
    transform: scale(1) translateY(0);
  }
}
@keyframes rotate-section-5 {
  from {
    transform: rotate3d(0, 1, 0, 20deg);
  }
  to {
    transform: rotate3d(0);
  }
}
@keyframes scale-section-7 {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}/*# sourceMappingURL=animation.css.map */