/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 07 2025 | 14:39:57 */
/*ANIMATION CHANGES*/
/*Tutorial for how to make changes: https://www.youtube.com/watch?v=ocpROIh3nQo */

/*Duration Changes*/
/*Normal*/
.animated {
    animation-duration:850ms;
}
/*Slow*/
.animated-slow {
    animation-duration:1400ms;
}
/*Fast*/
.animated-fast {
    animation-duration:500ms;
}
/*FadeInUp*/
@keyframes pdsFadeInUp {
    from {
        opacity:0;
        transform: translate3d(0, 1rem, 0);
    }
    to {
        opacity:1;
        transform: none;
    }
}
.elementor-element .animated.fadeInUp {
    animation-name: pdsFadeInUp !important;
}

/*FadeInRight*/
@keyframes pdsFadeInLeft {
    from {
        opacity:0;
        transform: translate3d(-2rem, 0, 0);
    }
    to {
        opacity:1;
        transform: none;
    }
}
.elementor-element .animated.fadeInLeft {
    animation-name: pdsFadeInLeft !important;
}
@keyframes pdsFadeInRight {
    from {
        opacity:0;
        transform: translate3d(2rem, 0, 0);
    }
    to {
        opacity:1;
        transform: none;
    }
}
.elementor-element .animated.fadeInRight {
    animation-name: pdsFadeInRight !important;
}