﻿.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hover-zoom:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

.impact {
    animation: impact 0.6s ease-out;
}

@keyframes impact {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.div-impact {
    opacity: 0;
}

.hover-text-dark:hover {
    color: black !important;
}

.hover-text-white:hover {
    color: white !important;
}