@keyframes bounce-custom {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) !important;
    }
    40% {
        transform: translateY(-12px) !important;
    }
    60% {
        transform: translateY(-6px) !important;
    }
}
.animate-bounce-custom {
    animation: bounce-custom 0.5s ease infinite !important;
}