Disable CSS Animations on Mobile
/* Disable animations on mobile devices */
body.wpex-is-mobile-device .wpb_animate_when_almost_visible {
opacity: 1;
filter: alpha(opacity=100);
-webkit-animation: none;
-moz-animation: none;
-o-animation: none;
animation: none;
}
Learn how to add custom CSS to your site.