.fade-in {
    opacity: 0;
    animation: fadeIn .7s ease-in forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft .7s  forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Define the keyframes for the animation */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Class to apply the animation */
.slide-in-right {
  animation: slideInRight 0.5s ease-out forwards;
}








