.elementor-kit-655{--e-global-color-primary:#000000;--e-global-color-secondary:#FFFFFF;--e-global-color-text:#000000;--e-global-color-accent:#000000;--e-global-color-2860209:#0000001F;--e-global-color-0d2ede6:#FFFFFF;--e-global-typography-primary-font-family:"Bebas Neue";--e-global-typography-primary-font-size:60px;--e-global-typography-primary-font-weight:700;--e-global-typography-primary-text-transform:none;--e-global-typography-primary-font-style:normal;--e-global-typography-primary-letter-spacing:1px;--e-global-typography-secondary-font-family:"Bebas Neue";--e-global-typography-secondary-font-size:33px;--e-global-typography-secondary-font-weight:600;--e-global-typography-secondary-letter-spacing:1px;--e-global-typography-text-font-family:"roboto";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:24px;--e-global-typography-text-letter-spacing:2px;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-size:14px;--e-global-typography-accent-font-weight:500;--e-global-typography-accent-text-transform:uppercase;--e-global-typography-accent-letter-spacing:1px;background-color:transparent;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );background-image:linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);}.elementor-kit-655 e-page-transition{background-color:#FFBC7D;}.elementor-kit-655 p{margin-block-end:12px;}.elementor-kit-655 a{font-family:"Inter", Sans-serif;}.elementor-kit-655 h1{color:#000000;}.elementor-kit-655 button,.elementor-kit-655 input[type="button"],.elementor-kit-655 input[type="submit"],.elementor-kit-655 .elementor-button{font-size:1px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1280px;}.e-con{--container-max-width:1280px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}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:1200px){.elementor-kit-655{--e-global-typography-primary-font-size:36px;--e-global-typography-primary-letter-spacing:1px;--e-global-typography-secondary-font-size:24px;--e-global-typography-secondary-letter-spacing:1px;--e-global-typography-text-font-size:15px;--e-global-typography-text-line-height:20px;--e-global-typography-text-letter-spacing:2px;--e-global-typography-accent-font-size:10px;--e-global-typography-accent-letter-spacing:1px;}}@media(max-width:1024px){.elementor-kit-655{--e-global-typography-primary-font-size:45px;--e-global-typography-primary-line-height:1.2em;--e-global-typography-primary-letter-spacing:1px;--e-global-typography-secondary-font-size:24px;--e-global-typography-secondary-letter-spacing:1px;--e-global-typography-text-font-size:15px;--e-global-typography-text-line-height:20px;--e-global-typography-text-letter-spacing:2px;--e-global-typography-accent-font-size:10px;--e-global-typography-accent-letter-spacing:1px;font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:880px){.elementor-kit-655{--e-global-typography-primary-font-size:28px;--e-global-typography-primary-letter-spacing:1px;--e-global-typography-secondary-font-size:18px;--e-global-typography-secondary-letter-spacing:1px;--e-global-typography-text-font-size:14px;--e-global-typography-text-line-height:18px;--e-global-typography-text-letter-spacing:2px;--e-global-typography-accent-font-size:8px;--e-global-typography-accent-letter-spacing:1px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:720px;}.e-con{--container-max-width:720px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}}@media(max-width:480px){.elementor-kit-655{--e-global-typography-primary-font-size:28px;--e-global-typography-primary-letter-spacing:1px;--e-global-typography-secondary-font-size:18px;--e-global-typography-secondary-letter-spacing:1px;--e-global-typography-text-font-size:14px;--e-global-typography-text-line-height:18px;--e-global-typography-text-letter-spacing:2px;--e-global-typography-accent-font-size:8px;--e-global-typography-accent-letter-spacing:1px;font-size:var( --e-global-typography-text-font-size );line-height:var( --e-global-typography-text-line-height );letter-spacing:var( --e-global-typography-text-letter-spacing );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */document.addEventListener("DOMContentLoaded", function () {
  const header = document.querySelector("header.elementor-sticky");
  const desktopHero = document.querySelector("#animation-d");
  const mobileHero = document.querySelector("#hero-mobile");

  const observerCallback = function (entries) {
    let isVisible = entries.some(entry => entry.isIntersecting);
    if (isVisible) {
      header.classList.add("active-sticky");
    } else {
      header.classList.remove("active-sticky");
    }
  };

  const observer = new IntersectionObserver((entries) => {
    observerCallback(entries);
  }, {
    root: null,
    threshold: 0
  });

  if (desktopHero) observer.observe(desktopHero);
  if (mobileHero) observer.observe(mobileHero);
});/* End custom CSS */