.swiper-wrapper {
  transition-timing-function: linear;
}



.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.rotate-animate {
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.up-down-40 {
  animation: up-down 3s linear infinite backwards;
}

@keyframes up-down {
  from {
    transform: translateY(-40px);
  }
  to {
    transform: translateY(40px);
  }
}

.infinite-text-slider {
  animation: infinite-text-slider 8s linear infinite backwards;
}

@keyframes infinite-text-slider {
  from {
    transform: translateX(-100%);
  }
}
