The SVG animation in the hero section of this webpage appears to be cropped only on Firefox. Despite trying a jQuery solution to force the size of the SVG to match the window dimensions, the issue persists. Further investigation is needed to resolve why this discrepancy is occurring.
jQuery( document ).ready(function() {
jQuery('.hero-animated').attr("width", window.innerWidth).attr("height",window.innerHeight)
});