.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-4191f2c:#000000;--e-global-color-c04edd1:#3C3C3C;--e-global-color-e780829:#61CE70;--e-global-color-d14e1d0:#4391EB;--e-global-color-a44bccc:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-a04c43e-font-family:"Nasalization";--e-global-typography-a04c43e-font-weight:400;--e-global-typography-48e0995-font-family:"Jost";--e-global-typography-48e0995-font-weight:400;--e-global-typography-93eeef7-font-family:"Nasalization";--e-global-typography-93eeef7-font-size:35px;--e-global-typography-93eeef7-font-weight:400;--e-global-typography-f3d0f12-font-family:"Nasalization";--e-global-typography-f3d0f12-font-size:16px;--e-global-typography-f3d0f12-font-weight:500;--e-global-typography-1954262-font-family:"Nasalization";--e-global-typography-1954262-font-size:16px;--e-global-typography-1954262-font-weight:500;--e-global-typography-73478d3-font-family:"Jost";--e-global-typography-73478d3-font-size:16px;--e-global-typography-73478d3-font-weight:400;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-f3d0f12-font-size:14px;--e-global-typography-1954262-font-size:14px;--e-global-typography-73478d3-font-size:14px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-f3d0f12-font-size:15px;--e-global-typography-1954262-font-size:12px;--e-global-typography-73478d3-font-size:10px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */document.addEventListener("DOMContentLoaded", function() {
  const video = document.querySelector(".scroll-video");

  if(video){
    const observer = new IntersectionObserver((entries) => {
      entries.forEach(entry => {
        if(entry.isIntersecting){
          video.play();
        } else {
          video.pause();
        }
      });
    }, { threshold: 0.5 }); // Play when 50% visible

    observer.observe(video);
  }
});/* End custom CSS */