I solved it by inadaptable way, for others:
In shortcodes.js
Line:217
function activate_waypoints(container)
{
//activates simple css animations of the content once the user scrolls to an elements
if($.fn.avia_waypoints)
{
if(typeof container == 'undefined'){ container = 'body';};
$('.avia_animate_when_visible', container).avia_waypoints();
$('.avia_animate_when_almost_visible', container).avia_waypoints({ offset: '100%'});
if(container == 'body') container = '.avia_desktop body';
$('.av-animated-generic', container).avia_waypoints({ offset: '100%'});
}
}
Original values are:
$('.avia_animate_when_almost_visible', container).avia_waypoints({ offset: '80%'});
$('.av-animated-generic', container).avia_waypoints({ offset: '95%'});