/* Animations */
[data-animate] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-up"].visible {
    transform: translateY(0);
}

.syndic__card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.syndic__card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.btn:hover, .btn__footer:hover{
    animation: pulse 1.5s infinite;
}



@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(93, 156, 236, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(93, 156, 236, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(93, 156, 236, 0);
    }
}