@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-right {
  0% {
    opacity: 0;
    transform: translateX(2rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-left {
  0% {
    opacity: 0;
    transform: translateX(-2rem);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* /right bounce */

/*
*   Add a base delay.
*/
.aos.animate {
  animation-delay: 0.1s;
  --baseDelay: 0.1s;
}

/*
*   Add the default state of each element before it is animated.
*   This should be the same as the 0% keyframes CSS
*/
.aos.fade-up {
  opacity: 0;
  transform: translateY(2rem);
}
.aos.fade-right {
  opacity: 0;
  transform: translateX(-2rem);
}
.aos.fade-left {
  opacity: 0;
  transform: translateX(2rem);
}

/*
*   Trigger the animation
*/
.animate.aos.fade-up {
  animation: fade-up 1s both;
}
.animate.aos.fade-left {
  animation: fade-left 1s both;
}
.animate.aos.fade-right {
  animation: fade-right 1s both;
}

/*
*   Set some delays.  
*/
/*
*   Set some delays.  
*/
.animation-delay-1,
.animation-delay-stagger .aos:nth-child(1) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 0.25s) !important;
}
.animation-delay-2,
.animation-delay-stagger .aos:nth-child(2) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 0.5s) !important;
}
.animation-delay-3,
.animation-delay-stagger .aos:nth-child(3) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 0.75s) !important;
}
.animation-delay-4,
.animation-delay-stagger .aos:nth-child(4) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 1s) !important;
}
.animation-delay-5,
.animation-delay-stagger .aos:nth-child(5) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 1.25s) !important;
}
.animation-delay-6,
.animation-delay-stagger .aos:nth-child(6) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 1.5s) !important;
}
.animation-delay-7,
.animation-delay-stagger .aos:nth-child(7) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 1.75s) !important;
}
.animation-delay-8,
.animation-delay-stagger .aos:nth-child(8) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 2s) !important;
}
.animation-delay-9,
.animation-delay-stagger .aos:nth-child(9) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 2.25s) !important;
}
.animation-delay-10,
.animation-delay-stagger .aos:nth-child(10) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 2.5s) !important;
}
.animation-delay-11,
.animation-delay-stagger .aos:nth-child(11) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 2.75s) !important;
}
.animation-delay-12,
.animation-delay-stagger .aos:nth-child(12) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 3s) !important;
}
.animation-delay-13,
.animation-delay-stagger .aos:nth-child(13) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 3.25s) !important;
}
.animation-delay-14,
.animation-delay-stagger .aos:nth-child(14) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 3.5s) !important;
}
.animation-delay-15,
.animation-delay-stagger .aos:nth-child(15) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 3.75s) !important;
}
.animation-delay-16,
.animation-delay-stagger .aos:nth-child(16) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 4s) !important;
}
.animation-delay-17,
.animation-delay-stagger .aos:nth-child(17) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 4.25s) !important;
}
.animation-delay-18,
.animation-delay-stagger .aos:nth-child(18) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 4.5s) !important;
}
.animation-delay-19,
.animation-delay-stagger .aos:nth-child(19) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 4.75s) !important;
}
.animation-delay-20,
.animation-delay-stagger .aos:nth-child(20) {
  animation-delay: calc(var(--baseDelay, 0.5s) + 5s) !important;
}
