// Wait for the DOM (document) to be fully loaded before executing the code
document.addEventListener('DOMContentLoaded', () => {
// Set a timeout to delay the execution of the code by 150 milliseconds
setTimeout(() => {
// Find the video element with the ID 'stop-video' and store it in the 'video' variable
const video = document.querySelector('#video-7125-1');
// Mute the video to ensure it doesn't play with sound
video.muted = true;
// Start playing the video
video.play();
}, 150); // The code inside this setTimeout will run after a 150-millisecond delay
});