/* zoom-section animation */
.zoom-card {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomFadeIn 0.8s ease-out forwards;
}

@keyframes zoomFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* gsgusdhgkdj */
.scroll-animate {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

.scroll-animate.active {
  opacity: 1;
  transform: translateX(1);
}
