This is a hack for make the Webflow Slider to go infinite, and do not have blank spaces on the end of it.
The secret here is to have a .div-put where is flex-horizontal, and copy all the elements inside it and use a custom code to put inside the last slide .div-put.
(If you change the .div-put name, don't forget to change on the custom code)
<script>
$(document).ready(function() {
$('.div-put').last().append($('.blue').clone());
})
</script>