<!-- Overlay Loading Effect -->
<script>
var splashOptions = {
loaderType: 'image', /* text or image */
loaderTitle: 'L&L EARTHWORX',
loaderImage: 'https://images.squarespace-cdn.com/content/v1/699e106f86fd7f1ccfca7615/ef646ad5-05f4-4694-95f4-2a692591341a/L%26L+Earthworx+-+white+logo.png?format=1500w',
loaderAdditionalDelay: 1000,
loaderFadeTime: 1000,
showLoaderOnlyOnce: false, /* true or false */
overlayColor: '#000', /* overlay color */
titleColor: '#333333', /* text color */
titleSize: '95px', /* text size */
imageHeight: '55px' /* logo size */
}
</script>
<style>
#splash-page,body{overflow:hidden}#splash-page{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;z-index:10000}#splash-page h1{text-align:center;margin:0}#splash-page img{display:block}body.splash-loaded{overflow:auto}
</style>
<script>
!function(){splashOptions.showLoaderOnlyOnce&&"yes"===localStorage.getItem("splashLoaded")?document.write(""):document.write('<div id="splash-page"><div class="splash-branding"></div></div>'),localStorage.setItem("splashLoaded","yes");var e=document.getElementById("splash-page");if(e){e.style.backgroundColor=splashOptions.overlayColor;var s=e.querySelector(".splash-branding");if("image"===splashOptions.loaderType)s.innerHTML='<img src="'+splashOptions.loaderImage+'">',s.querySelector("img").style.maxHeight=splashOptions.imageHeight;else{s.innerHTML="<h1>"+splashOptions.loaderTitle+"</h1>";var a=s.querySelector("h1");a.style.color=splashOptions.titleColor,a.style.fontSize=splashOptions.titleSize}e.style.transition="opacity "+splashOptions.loaderFadeTime+"ms ease",window.addEventListener("load",(function(){setTimeout((function(){e.style.opacity="0",setTimeout((function(){e&&e.parentNode&&(e.parentNode.removeChild(e),document.body.classList.add("splash-loaded"))}),splashOptions.loaderFadeTime)}),splashOptions.loaderAdditionalDelay)}))}}();
</script>