.elementor-kit-5{--e-global-color-0ff3fe0:#111111;--e-global-color-4827974:#0B3D2E;--e-global-color-3bcdbaf:#464946;--e-global-color-ab8c13b:#111111;--e-global-color-e7b429d:#0B3D2E;--e-global-color-4df31b3:#FFFFFF;--e-global-color-5056a60:#F5F7F4;--e-global-color-495bd48:#143C2F;--e-global-color-60c0564:#1E1E1E;--e-global-color-d5a7c95:#00000000;--e-global-color-85f26d5:#444444;--e-global-color-04a963c:#000000;--e-global-color-2293243:#F8F9F6;--e-global-color-0f72dfb:#F7F8F6;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-size:56px;--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:1.2em;--e-global-typography-secondary-font-family:"Cormorant Garamond";--e-global-typography-secondary-font-weight:500;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:26px;--e-global-typography-accent-font-family:"Cormorant Garamond";--e-global-typography-accent-font-weight:500;--e-global-typography-2ab3d92-font-family:"Inter";--e-global-typography-2ab3d92-font-size:56px;--e-global-typography-2ab3d92-font-weight:600;--e-global-typography-2ab3d92-line-height:1.2em;--e-global-typography-0829bff-font-family:"Inter";--e-global-typography-0829bff-font-size:18px;--e-global-typography-0829bff-font-weight:400;--e-global-typography-0829bff-line-height:1.6em;font-family:"Inter", Sans-serif;font-size:18px;line-height:24px;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 a{color:#0B3D2E;}.elementor-kit-5 a:hover{color:#144C3A;}.elementor-kit-5 h1{font-family:"Inter", Sans-serif;font-size:56px;font-weight:600;line-height:1em;}.elementor-kit-5 h2{font-family:"Inter", Sans-serif;font-size:32px;font-weight:600;line-height:1.2em;}.elementor-kit-5 h3{font-family:"Inter", Sans-serif;font-size:24px;font-weight:500;line-height:1em;}.elementor-kit-5 h4{font-family:"Inter", Sans-serif;font-size:18px;font-weight:500;line-height:1.2em;}.elementor-kit-5 h5{font-family:"Kanit", Sans-serif;font-size:32px;font-weight:500;line-height:1.4em;}.elementor-kit-5 h6{font-family:"Kanit", Sans-serif;font-size:24px;font-weight:500;line-height:1.4em;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1320px;}.e-con{--container-max-width:1320px;}.elementor-widget:not(:last-child){margin-block-end: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:1366px){.elementor-kit-5 h1{font-size:120px;}.elementor-kit-5 h2{font-size:96px;}.elementor-kit-5 h3{font-size:52px;}.elementor-kit-5 h4{font-size:48px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1080px;}.e-con{--container-max-width:1080px;}}@media(max-width:1200px){.elementor-kit-5 h1{font-size:96px;}.elementor-kit-5 h2{font-size:78px;}.elementor-kit-5 h3{font-size:48px;}.elementor-kit-5 h4{font-size:40px;}.elementor-kit-5 h5{font-size:32px;}.elementor-kit-5 h6{font-size:24px;}}@media(max-width:1024px){.elementor-kit-5 h1{font-size:78px;}.elementor-kit-5 h2{font-size:60px;}.elementor-kit-5 h3{font-size:40px;}.elementor-kit-5 h4{font-size:36px;}.elementor-kit-5 h5{font-size:32px;}.elementor-kit-5 h6{font-size:24px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-5{--e-global-typography-2ab3d92-font-size:55px;--e-global-typography-0829bff-font-size:16px;}.elementor-kit-5 h1{font-size:60px;}.elementor-kit-5 h2{font-size:52px;}.elementor-kit-5 h3{font-size:36px;}.elementor-kit-5 h4{font-size:32px;}.elementor-kit-5 h5{font-size:30px;}.elementor-kit-5 h6{font-size:24px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */document.addEventListener('DOMContentLoaded', function () {
  const link = document.querySelector('a[href="#begins"]');
  const target = document.getElementById('begins');
  const headerOffset = 96; // px, match your sticky header

  function easeInOut(t){ return t<.5 ? 2*t*t : 1 - Math.pow(-2*t+2,2)/2; }

  function smoothScrollTo(targetY, duration = 600){
    const startY = window.scrollY;
    const delta = targetY - startY;
    let start;

    function step(timestamp){
      if (!start) start = timestamp;
      const progress = Math.min((timestamp - start) / duration, 1);
      const eased = easeInOut(progress);
      window.scrollTo(0, startY + delta * eased);
      if (progress < 1) requestAnimationFrame(step);
    }
    requestAnimationFrame(step);
  }

  if (link && target) {
    link.addEventListener('click', function (e) {
      e.preventDefault();
      const y = target.getBoundingClientRect().top + window.pageYOffset - headerOffset;

      // subtle reveal animation
      target.style.opacity = 0;
      target.style.transition = 'opacity 320ms ease';
      smoothScrollTo(y, 600);
      setTimeout(() => { target.style.opacity = 1; }, 400);

      // accessibility: move focus
      target.setAttribute('tabindex','-1');
      setTimeout(() => target.focus({preventScroll:true}), 650);
    });
  }
});
body.single-post .elementor-widget-text-editor hr.aow-divider {
  border: none;
  border-top: 1px solid #DADFD8;
  margin: 60px 0;
  width: 100%;
}/* End custom CSS */