Skip to content
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll('.rimage-background video').forEach(video => {
if (video) {
video.setAttribute('autoplay', 'true');
video.setAttribute('loop', 'true');
video.setAttribute('muted', 'true');
video.play();
}
});
});