/*
CTC Separate Stylesheet
Updated: 2024-07-08 23:16:27
*/

@keyframes customFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 0.5rem, 0);
    }
    
    to {
        opacity: 1;
        transform: none;
    }
}
 .customFadeInUp {
    animation-name: customFadeInUp;
}