
  @keyframes fade-bottom {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fade-up {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes zoom-in {
    0% {
      transform: scale(0);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes fade-right {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes fade-left {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  

.animup {
  opacity: 1;
  animation-name: fade-bottom;
  animation-duration: 1s;
  }

  .animdown {
    opacity: 1;
    animation-name: fade-up;
    animation-duration: 1s;
    }

.animin {
    opacity: 1;
    animation: zoom-in 1s ease-in-out;
    animation-duration: 1s;
    }

 .animleft {
    opacity: 1;
    animation: fade-left 1s ease-in-out;
    animation-duration: 1s;
}

.animright {
    opacity: 1;
    animation: fade-right 1s ease-in-out;
    animation-duration: 1s;
}

  .animup.delay {
      animation-delay: 400ms;
  }

  .reveal{
    position: relative;
    opacity: 0;
  }

  .reveal.active{
    opacity: 1;
  }
  
  .active.fade-bottom {
    animation: fade-bottom 0.5s ease-in-out;
  }

  .active.fade-up {
    animation: fade-up 0.5s ease-in-out;
  }

  .active.zoom-in {
    animation: zoom-in 1s ease-in-out;
  }
  .active.zoom-in-2 {
    animation: zoom-in 0.5s ease-in-out;
  }
  .active.fade-right {
    animation: fade-right 1s ease-in-out;
  }

  .active.fade-left {
    animation: fade-left 1s ease-in-out;
  }
