const animateArrow = () => {
$(".hero__arrow").addClass("hero__arrow--animate").delay(6000).queue(function () {
$(this).removeClass("hero__arrow--animate").dequeue();
});
}
animateArrow();
let timer = setInterval(
() => {
animateArrow()
}, 10000)