/* Define the slide-in animation */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Apply the animation to the feat-cap class */
.feat-cap {
  animation: slideInLeft 1s ease-out forwards;
}