/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 12 2024 | 13:08:19 */
/*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;
}

/*FadeInLeft*/
@keyframes pdsFadeInLeft {
    from {
        opacity:0;
        transform: translate3d(-2rem, 0, 0);
    }
    to {
        opacity:1;
        transform: none;
    }
}
.elementor-element .animated.fadeInLeft {
    animation-name: pdsFadeInLeft !important;
}
/*FadeInRight*/
@keyframes pdsFadeInRight {
    from {
        opacity:0;
        transform: translate3d(2rem, 0, 0);
    }
    to {
        opacity:1;
        transform: none;
    }
}
.elementor-element .animated.fadeInRight {
    animation-name: pdsFadeInRight !important;
}
/*FadeInDown*/
@keyframes pdsFadeInDown {
    from {
        opacity:0;
        transform: translate3d(0, 2rem, 0);
    }
    to {
        opacity:1;
        transform: none;
    }
}
.elementor-element .animated.fadeInDown {
    animation-name: pdsFadeInDown !important;
}