/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 13 2026 | 03:03:53 */
@keyframes fadeInUpCustom {
from {
opacity: 0;
transform: translate3d(0, 20px, 0);
}
to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
}
.fade.fadeInUp {
animation-name: fadeInUpCustom;
animation-duration: 1s; /* Adjust duration as needed */
animation-fill-mode: both;
}