Slider button form doesn't work

Hello everyone,

I would like to add a slider form to my website, but the slider button (‘weiter’) is not working anymore. Could someone help me figure out how to fix it?

https://solation-gt-new-homepage-lt.webflow.io/test

Thank you very much.

Kind regards,
Sebastian

Found the problem:

<!-- This script lets us use any component for our arrows. This way we can position freely -->
<script>
var Webflow = Webflow || [];
Webflow.push(function() {
 var l = $('#flowbaseSlider .w-slider-arrow-left');
 var r = $('#flowbaseSlider .w-slider-arrow-right');
 $('#flowbaseSlider')
   .on('click', '.slider-left', function() {
     l.trigger('tap');
   })
   .on('click', '.slider-right', function() {
     r.trigger('tap');
   });
});
</script>