<div id="wm-loading-animation">
<div class="loading-overlay"></div>
<div class="loading-graphic">
<img src="https://static1.squarespace.com/static/684a42bf7b93b02d4ea0bb2d/t/68df6599149f631b093cfa29/1759471001283/JTB-Loading.png">
</div>
</div>
<script>
if (!sessionStorage.getItem('loadingShown')) {
sessionStorage.setItem('loadingShown', 'true');
function hideAnimation(){
document.querySelector("#wm-loading-animation").classList.add("hide-animation");
}
setTimeout(function(){
setTimeout(function(){
hideAnimation()
}, 500);
let checkLoad = setInterval(function(){
if (document.readyState === "complete"){
hideAnimation();
clearInterval(checkLoad)
}
}, 100);
}, 2500);
} else {
document.querySelector("#wm-loading-animation").style.display = "none";
}
</script>