/* Animations CSS for RRHH Demo */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

.scroll-animation {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.scroll-animation[data-animation="fadeInUp"] {
    animation-name: fadeInUp;
}

.scroll-animation[data-animation="fadeInLeft"] {
    animation-name: fadeInLeft;
}

.scroll-animation[data-animation="fadeInRight"] {
    animation-name: fadeInRight;
}

.scroll-animation[data-animation="zoomIn"] {
    animation-name: zoomIn;
}
