@sociallane/elements 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierignore +5 -0
- package/.prettierrc.json +8 -0
- package/.vite-dev +0 -0
- package/README.md +47 -0
- package/admin/js/widget-browser.js +124 -0
- package/admin/views/onboarding.php +62 -0
- package/admin/views/partials/category-tabs.php +39 -0
- package/admin/views/partials/step-complete.php +48 -0
- package/admin/views/partials/step-requirements.php +52 -0
- package/admin/views/partials/step-widgets.php +63 -0
- package/admin/views/partials/widget-card.php +67 -0
- package/admin/views/partials/widget-toolbar.php +28 -0
- package/admin/views/preview-embed.php +78 -0
- package/admin/views/preview-frame.php +183 -0
- package/admin/views/preview-index.php +74 -0
- package/admin/views/settings.php +94 -0
- package/admin/views/setup-widget-catalog-frontend.php +189 -0
- package/admin/views/setup-widget-catalog.php +164 -0
- package/assets/css/lenis.css +18 -0
- package/assets/css/tailwind.css +740 -0
- package/assets/dist/.vite/manifest.json +13 -0
- package/assets/dist/animations-BySooxN8.js +37 -0
- package/assets/dist/tailwind-DzIAfumJ.css +1 -0
- package/assets/js/animations.js +113 -0
- package/assets/js/utilities/hover-reveal.js +88 -0
- package/assets/js/utilities/pin.js +31 -0
- package/assets/js/utilities/reveal.js +59 -0
- package/assets/js/utilities/split-text.js +93 -0
- package/assets/js/utilities/stagger.js +48 -0
- package/assets/previews/.gitkeep +2 -0
- package/assets/previews/README.md +65 -0
- package/assets/svgs/components/accordion.svg +9 -0
- package/assets/svgs/components/alert.svg +6 -0
- package/assets/svgs/components/avatar.svg +4 -0
- package/assets/svgs/components/badge.svg +4 -0
- package/assets/svgs/components/breadcrumbs.svg +7 -0
- package/assets/svgs/components/button.svg +4 -0
- package/assets/svgs/components/calendar.svg +10 -0
- package/assets/svgs/components/card.svg +5 -0
- package/assets/svgs/widgets/bento-grid.svg +8 -0
- package/assets/svgs/widgets/bento-portfolio.svg +8 -0
- package/assets/svgs/widgets/content-block.svg +4 -0
- package/assets/svgs/widgets/faq.svg +11 -0
- package/assets/svgs/widgets/feature-grid.svg +14 -0
- package/assets/svgs/widgets/feature-list-cta.svg +10 -0
- package/assets/svgs/widgets/footer.svg +7 -0
- package/assets/svgs/widgets/grid-posts.svg +11 -0
- package/assets/svgs/widgets/grid-team.svg +8 -0
- package/assets/svgs/widgets/hero.svg +7 -0
- package/assets/svgs/widgets/intro-text.svg +3 -0
- package/assets/svgs/widgets/logo-grid.svg +12 -0
- package/assets/svgs/widgets/navigation.svg +10 -0
- package/assets/svgs/widgets/newsletter.svg +6 -0
- package/assets/svgs/widgets/pricing-table.svg +9 -0
- package/assets/svgs/widgets/social-proof.svg +7 -0
- package/docs/cursor-global-rule.md +24 -0
- package/docs/install-new-instance.md +92 -0
- package/docs/npm-widget-cheatsheet.md +178 -0
- package/docs/package-installation.md +127 -0
- package/docs/widgets/blog-grid.md +31 -0
- package/docs/widgets/card-hover-reveal.md +27 -0
- package/docs/widgets/cta-banner.md +31 -0
- package/docs/widgets/cta-split.md +26 -0
- package/docs/widgets/faq.md +31 -0
- package/docs/widgets/feature-list.md +21 -0
- package/docs/widgets/footer-links-contact.md +24 -0
- package/elements/.gitkeep +0 -0
- package/elements/button/button.php +161 -0
- package/elements/button/templates/render.php +89 -0
- package/elements/cta-group/templates/render.php +61 -0
- package/elements/image/image.php +113 -0
- package/elements/image/templates/render.php +43 -0
- package/elements/section-header/templates/render.php +103 -0
- package/includes/button-presets.php +71 -0
- package/includes/class-admin-settings.php +134 -0
- package/includes/class-disable-reset-css.php +78 -0
- package/includes/class-gravity-forms-styles.php +78 -0
- package/includes/class-onboarding.php +214 -0
- package/includes/class-setup-widget-catalog.php +37 -0
- package/includes/class-widget-manager.php +605 -0
- package/includes/class-widget-preview.php +101 -0
- package/includes/footer-menu-columns.php +85 -0
- package/includes/widget-preview-defaults.php +660 -0
- package/package.json +38 -0
- package/packages/core/assets/css/lenis.css +18 -0
- package/packages/core/assets/css/tailwind.css +704 -0
- package/packages/core/assets/dist/.vite/manifest.json +13 -0
- package/packages/core/assets/dist/animations-BySooxN8.js +37 -0
- package/packages/core/assets/dist/tailwind-BE97TLZW.css +1 -0
- package/packages/core/assets/js/animations.js +113 -0
- package/packages/core/assets/js/utilities/hover-reveal.js +88 -0
- package/packages/core/assets/js/utilities/pin.js +31 -0
- package/packages/core/assets/js/utilities/reveal.js +56 -0
- package/packages/core/assets/js/utilities/split-text.js +74 -0
- package/packages/core/assets/js/utilities/stagger.js +46 -0
- package/packages/core/includes/class-plugin.php +75 -0
- package/packages/core/includes/class-vite-assets.php +357 -0
- package/packages/core/includes/class-widgets-loader.php +195 -0
- package/packages/core/includes/helpers.php +407 -0
- package/packages/core/includes/traits/trait-animation-controls.php +194 -0
- package/packages/core/includes/traits/trait-common-controls.php +239 -0
- package/packages/core/package.json +25 -0
- package/packages/core/vite.config.js +123 -0
- package/packages/widgets/bento-grid/bento-grid.php +761 -0
- package/packages/widgets/bento-grid/data/view.php +327 -0
- package/packages/widgets/bento-grid/package.json +12 -0
- package/packages/widgets/bento-grid/templates/partials/cell1.php +45 -0
- package/packages/widgets/bento-grid/templates/partials/cell2.php +52 -0
- package/packages/widgets/bento-grid/templates/partials/cell3.php +45 -0
- package/packages/widgets/bento-grid/templates/partials/cell4.php +44 -0
- package/packages/widgets/bento-grid/templates/partials/default-grid.php +31 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row1-left.php +68 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row1-right.php +65 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row2-center.php +41 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row2-left.php +38 -0
- package/packages/widgets/bento-grid/templates/partials/tcsr-row2-right.php +38 -0
- package/packages/widgets/bento-grid/templates/partials/two-column-second-row-grid.php +35 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-deploys.php +47 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-grid.php +34 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-integrations.php +40 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-overview.php +67 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-releases.php +29 -0
- package/packages/widgets/bento-grid/templates/partials/two-row-security.php +44 -0
- package/packages/widgets/bento-grid/templates/wrapper.php +72 -0
- package/packages/widgets/bento-grid-4/bento-grid-4.php +524 -0
- package/packages/widgets/bento-grid-4/data/view.php +127 -0
- package/packages/widgets/bento-grid-4/package.json +12 -0
- package/packages/widgets/bento-grid-4/templates/partials/cell1.php +45 -0
- package/packages/widgets/bento-grid-4/templates/partials/cell2.php +52 -0
- package/packages/widgets/bento-grid-4/templates/partials/cell3.php +45 -0
- package/packages/widgets/bento-grid-4/templates/partials/cell4.php +44 -0
- package/packages/widgets/bento-grid-4/templates/partials/default-grid.php +31 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row1-left.php +68 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row1-right.php +65 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row2-center.php +41 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row2-left.php +38 -0
- package/packages/widgets/bento-grid-4/templates/partials/tcsr-row2-right.php +38 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-column-second-row-grid.php +35 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-deploys.php +47 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-grid.php +34 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-integrations.php +40 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-overview.php +67 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-releases.php +29 -0
- package/packages/widgets/bento-grid-4/templates/partials/two-row-security.php +44 -0
- package/packages/widgets/bento-grid-4/templates/wrapper.php +65 -0
- package/packages/widgets/bento-grid-5/bento-grid-5.php +219 -0
- package/packages/widgets/bento-grid-5/data/view.php +136 -0
- package/packages/widgets/bento-grid-5/package.json +12 -0
- package/packages/widgets/bento-grid-5/templates/partials/cell1.php +45 -0
- package/packages/widgets/bento-grid-5/templates/partials/cell2.php +52 -0
- package/packages/widgets/bento-grid-5/templates/partials/cell3.php +45 -0
- package/packages/widgets/bento-grid-5/templates/partials/cell4.php +44 -0
- package/packages/widgets/bento-grid-5/templates/partials/default-grid.php +31 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row1-left.php +68 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row1-right.php +65 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row2-center.php +41 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row2-left.php +38 -0
- package/packages/widgets/bento-grid-5/templates/partials/tcsr-row2-right.php +38 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-column-second-row-grid.php +35 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-deploys.php +47 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-grid.php +34 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-integrations.php +40 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-overview.php +67 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-releases.php +29 -0
- package/packages/widgets/bento-grid-5/templates/partials/two-row-security.php +44 -0
- package/packages/widgets/bento-grid-5/templates/wrapper.php +65 -0
- package/packages/widgets/bento-grid-6/bento-grid-6.php +223 -0
- package/packages/widgets/bento-grid-6/data/view.php +158 -0
- package/packages/widgets/bento-grid-6/package.json +12 -0
- package/packages/widgets/bento-grid-6/templates/partials/cell1.php +45 -0
- package/packages/widgets/bento-grid-6/templates/partials/cell2.php +52 -0
- package/packages/widgets/bento-grid-6/templates/partials/cell3.php +45 -0
- package/packages/widgets/bento-grid-6/templates/partials/cell4.php +44 -0
- package/packages/widgets/bento-grid-6/templates/partials/default-grid.php +31 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row1-left.php +68 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row1-right.php +65 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row2-center.php +41 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row2-left.php +38 -0
- package/packages/widgets/bento-grid-6/templates/partials/tcsr-row2-right.php +38 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-column-second-row-grid.php +35 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-deploys.php +47 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-grid.php +34 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-integrations.php +40 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-overview.php +67 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-releases.php +29 -0
- package/packages/widgets/bento-grid-6/templates/partials/two-row-security.php +44 -0
- package/packages/widgets/bento-grid-6/templates/wrapper.php +65 -0
- package/packages/widgets/bento-portfolio/bento-portfolio.php +399 -0
- package/packages/widgets/bento-portfolio/data/view.php +102 -0
- package/packages/widgets/bento-portfolio/package.json +12 -0
- package/packages/widgets/bento-portfolio/templates/partials/portfolio-card.php +84 -0
- package/packages/widgets/bento-portfolio/templates/partials/portfolio-default-grid.php +35 -0
- package/packages/widgets/bento-portfolio/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/packages/widgets/bento-portfolio/templates/partials/portfolio-two-row-grid.php +35 -0
- package/packages/widgets/bento-portfolio/templates/wrapper.php +88 -0
- package/packages/widgets/bento-portfolio-4/bento-portfolio-4.php +382 -0
- package/packages/widgets/bento-portfolio-4/data/view.php +91 -0
- package/packages/widgets/bento-portfolio-4/package.json +12 -0
- package/packages/widgets/bento-portfolio-4/templates/partials/portfolio-card.php +84 -0
- package/packages/widgets/bento-portfolio-4/templates/partials/portfolio-default-grid.php +35 -0
- package/packages/widgets/bento-portfolio-4/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/packages/widgets/bento-portfolio-4/templates/partials/portfolio-two-row-grid.php +35 -0
- package/packages/widgets/bento-portfolio-4/templates/wrapper.php +78 -0
- package/packages/widgets/bento-portfolio-5/bento-portfolio-5.php +382 -0
- package/packages/widgets/bento-portfolio-5/data/view.php +91 -0
- package/packages/widgets/bento-portfolio-5/package.json +12 -0
- package/packages/widgets/bento-portfolio-5/templates/partials/portfolio-card.php +84 -0
- package/packages/widgets/bento-portfolio-5/templates/partials/portfolio-default-grid.php +35 -0
- package/packages/widgets/bento-portfolio-5/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/packages/widgets/bento-portfolio-5/templates/partials/portfolio-two-row-grid.php +35 -0
- package/packages/widgets/bento-portfolio-5/templates/wrapper.php +78 -0
- package/packages/widgets/bento-portfolio-6/bento-portfolio-6.php +382 -0
- package/packages/widgets/bento-portfolio-6/data/view.php +91 -0
- package/packages/widgets/bento-portfolio-6/package.json +12 -0
- package/packages/widgets/bento-portfolio-6/templates/partials/portfolio-card.php +84 -0
- package/packages/widgets/bento-portfolio-6/templates/partials/portfolio-default-grid.php +35 -0
- package/packages/widgets/bento-portfolio-6/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/packages/widgets/bento-portfolio-6/templates/partials/portfolio-two-row-grid.php +35 -0
- package/packages/widgets/bento-portfolio-6/templates/wrapper.php +78 -0
- package/packages/widgets/blog-grid/blog-grid.php +359 -0
- package/packages/widgets/blog-grid/data/view.php +192 -0
- package/packages/widgets/blog-grid/package.json +12 -0
- package/packages/widgets/blog-grid/templates/partials/card.php +73 -0
- package/packages/widgets/blog-grid/templates/wrapper.php +89 -0
- package/packages/widgets/card-hover-reveal/card-hover-reveal.php +329 -0
- package/packages/widgets/card-hover-reveal/data/view.php +108 -0
- package/packages/widgets/card-hover-reveal/package.json +12 -0
- package/packages/widgets/card-hover-reveal/templates/partials/card.php +86 -0
- package/packages/widgets/card-hover-reveal/templates/wrapper.php +80 -0
- package/packages/widgets/client-logos/client-logos.php +214 -0
- package/packages/widgets/client-logos/data/view.php +88 -0
- package/packages/widgets/client-logos/package.json +12 -0
- package/packages/widgets/client-logos/templates/partials/client-item.php +38 -0
- package/packages/widgets/client-logos/templates/wrapper.php +62 -0
- package/packages/widgets/content-block/content-block.php +280 -0
- package/packages/widgets/content-block/data/view.php +103 -0
- package/packages/widgets/content-block/package.json +12 -0
- package/packages/widgets/content-block/templates/partials/content.php +52 -0
- package/packages/widgets/content-block/templates/wrapper.php +73 -0
- package/packages/widgets/cta-banner/cta-banner.php +300 -0
- package/packages/widgets/cta-banner/data/view.php +96 -0
- package/packages/widgets/cta-banner/package.json +12 -0
- package/packages/widgets/cta-banner/templates/wrapper.php +131 -0
- package/packages/widgets/cta-notify/cta-notify.php +135 -0
- package/packages/widgets/cta-notify/data/view.php +48 -0
- package/packages/widgets/cta-notify/package.json +12 -0
- package/packages/widgets/cta-notify/templates/wrapper.php +69 -0
- package/packages/widgets/cta-split/cta-split.php +246 -0
- package/packages/widgets/cta-split/data/view.php +84 -0
- package/packages/widgets/cta-split/package.json +12 -0
- package/packages/widgets/cta-split/templates/wrapper.php +113 -0
- package/packages/widgets/faq-centered/data/view.php +87 -0
- package/packages/widgets/faq-centered/faq-centered.php +223 -0
- package/packages/widgets/faq-centered/package.json +12 -0
- package/packages/widgets/faq-centered/templates/partials/accordion.php +70 -0
- package/packages/widgets/faq-centered/templates/partials/layout-centered.php +41 -0
- package/packages/widgets/faq-centered/templates/partials/layout-split.php +47 -0
- package/packages/widgets/faq-centered/templates/partials/layout-stacked.php +57 -0
- package/packages/widgets/faq-centered/templates/wrapper.php +70 -0
- package/packages/widgets/faq-split/data/view.php +93 -0
- package/packages/widgets/faq-split/faq-split.php +236 -0
- package/packages/widgets/faq-split/package.json +12 -0
- package/packages/widgets/faq-split/templates/partials/accordion.php +70 -0
- package/packages/widgets/faq-split/templates/partials/layout-centered.php +41 -0
- package/packages/widgets/faq-split/templates/partials/layout-split.php +47 -0
- package/packages/widgets/faq-split/templates/partials/layout-stacked.php +57 -0
- package/packages/widgets/faq-split/templates/wrapper.php +70 -0
- package/packages/widgets/faq-stacked/data/view.php +92 -0
- package/packages/widgets/faq-stacked/faq-stacked.php +223 -0
- package/packages/widgets/faq-stacked/package.json +12 -0
- package/packages/widgets/faq-stacked/templates/partials/accordion.php +70 -0
- package/packages/widgets/faq-stacked/templates/partials/layout-centered.php +41 -0
- package/packages/widgets/faq-stacked/templates/partials/layout-split.php +47 -0
- package/packages/widgets/faq-stacked/templates/partials/layout-stacked.php +57 -0
- package/packages/widgets/faq-stacked/templates/wrapper.php +70 -0
- package/packages/widgets/feature-grid/data/view.php +80 -0
- package/packages/widgets/feature-grid/feature-grid.php +305 -0
- package/packages/widgets/feature-grid/package.json +12 -0
- package/packages/widgets/feature-grid/templates/partials/centered-2x2.php +69 -0
- package/packages/widgets/feature-grid/templates/partials/feature-item.php +54 -0
- package/packages/widgets/feature-grid/templates/wrapper.php +67 -0
- package/packages/widgets/feature-grid-centered/data/view.php +78 -0
- package/packages/widgets/feature-grid-centered/feature-grid-centered.php +278 -0
- package/packages/widgets/feature-grid-centered/package.json +12 -0
- package/packages/widgets/feature-grid-centered/templates/partials/centered-2x2.php +69 -0
- package/packages/widgets/feature-grid-centered/templates/partials/feature-item.php +54 -0
- package/packages/widgets/feature-grid-centered/templates/wrapper.php +35 -0
- package/packages/widgets/feature-list/data/view.php +49 -0
- package/packages/widgets/feature-list/feature-list.php +160 -0
- package/packages/widgets/feature-list/package.json +12 -0
- package/packages/widgets/feature-list/templates/wrapper.php +69 -0
- package/packages/widgets/feature-list-cta/data/view.php +62 -0
- package/packages/widgets/feature-list-cta/feature-list-cta.php +226 -0
- package/packages/widgets/feature-list-cta/package.json +12 -0
- package/packages/widgets/feature-list-cta/templates/partials/feature-item.php +49 -0
- package/packages/widgets/feature-list-cta/templates/wrapper.php +65 -0
- package/packages/widgets/footer/data/view.php +133 -0
- package/packages/widgets/footer/footer.php +389 -0
- package/packages/widgets/footer/package.json +12 -0
- package/packages/widgets/footer/templates/partials/bottom.php +77 -0
- package/packages/widgets/footer/templates/partials/cta.php +47 -0
- package/packages/widgets/footer/templates/partials/link-columns.php +52 -0
- package/packages/widgets/footer/templates/wrapper.php +53 -0
- package/packages/widgets/footer-brand/data/view.php +130 -0
- package/packages/widgets/footer-brand/footer-brand.php +278 -0
- package/packages/widgets/footer-brand/package.json +12 -0
- package/packages/widgets/footer-brand/templates/partials/brand.php +69 -0
- package/packages/widgets/footer-brand/templates/partials/link-columns.php +51 -0
- package/packages/widgets/footer-brand/templates/wrapper.php +59 -0
- package/packages/widgets/footer-links-contact/data/view.php +145 -0
- package/packages/widgets/footer-links-contact/footer-links-contact.php +361 -0
- package/packages/widgets/footer-links-contact/package.json +12 -0
- package/packages/widgets/footer-links-contact/templates/partials/bottom.php +70 -0
- package/packages/widgets/footer-links-contact/templates/partials/contact-column.php +66 -0
- package/packages/widgets/footer-links-contact/templates/partials/link-column.php +39 -0
- package/packages/widgets/footer-links-contact/templates/partials/logo-column.php +46 -0
- package/packages/widgets/footer-links-contact/templates/wrapper.php +68 -0
- package/packages/widgets/form-contact/data/view.php +96 -0
- package/packages/widgets/form-contact/form-contact.php +274 -0
- package/packages/widgets/form-contact/package.json +12 -0
- package/packages/widgets/form-contact/templates/partials/testimonial.php +83 -0
- package/packages/widgets/form-contact/templates/wrapper.php +98 -0
- package/packages/widgets/grid-case-studies/data/view.php +74 -0
- package/packages/widgets/grid-case-studies/grid-case-studies.php +262 -0
- package/packages/widgets/grid-case-studies/package.json +12 -0
- package/packages/widgets/grid-case-studies/templates/partials/card.php +66 -0
- package/packages/widgets/grid-case-studies/templates/wrapper.php +69 -0
- package/packages/widgets/grid-components/data/view.php +107 -0
- package/packages/widgets/grid-components/grid-components.php +323 -0
- package/packages/widgets/grid-components/package.json +12 -0
- package/packages/widgets/grid-components/templates/partials/component-card.php +81 -0
- package/packages/widgets/grid-components/templates/wrapper.php +55 -0
- package/packages/widgets/grid-team/data/view.php +67 -0
- package/packages/widgets/grid-team/grid-team.php +201 -0
- package/packages/widgets/grid-team/package.json +12 -0
- package/packages/widgets/grid-team/templates/partials/team-card.php +52 -0
- package/packages/widgets/grid-team/templates/wrapper.php +67 -0
- package/packages/widgets/hero-announcement/data/view.php +96 -0
- package/packages/widgets/hero-announcement/hero-announcement.php +270 -0
- package/packages/widgets/hero-announcement/package.json +12 -0
- package/packages/widgets/hero-announcement/templates/wrapper.php +111 -0
- package/packages/widgets/hero-centered-image/data/view.php +119 -0
- package/packages/widgets/hero-centered-image/hero-centered-image.php +297 -0
- package/packages/widgets/hero-centered-image/package.json +12 -0
- package/packages/widgets/hero-centered-image/templates/wrapper.php +123 -0
- package/packages/widgets/hero-collage/data/view.php +108 -0
- package/packages/widgets/hero-collage/hero-collage.php +151 -0
- package/packages/widgets/hero-collage/package.json +12 -0
- package/packages/widgets/hero-collage/templates/wrapper.php +102 -0
- package/packages/widgets/hero-overlay/data/view.php +117 -0
- package/packages/widgets/hero-overlay/hero-overlay.php +277 -0
- package/packages/widgets/hero-overlay/package.json +12 -0
- package/packages/widgets/hero-overlay/templates/wrapper.php +225 -0
- package/packages/widgets/hero-overlay-single/data/view.php +118 -0
- package/packages/widgets/hero-overlay-single/hero-overlay-single.php +221 -0
- package/packages/widgets/hero-overlay-single/package.json +12 -0
- package/packages/widgets/hero-overlay-single/templates/wrapper.php +225 -0
- package/packages/widgets/hero-overlay-slider/data/view.php +118 -0
- package/packages/widgets/hero-overlay-slider/hero-overlay-slider.php +262 -0
- package/packages/widgets/hero-overlay-slider/package.json +12 -0
- package/packages/widgets/hero-overlay-slider/templates/wrapper.php +225 -0
- package/packages/widgets/hero-saas-centered/data/view.php +79 -0
- package/packages/widgets/hero-saas-centered/hero-saas-centered.php +145 -0
- package/packages/widgets/hero-saas-centered/package.json +12 -0
- package/packages/widgets/hero-saas-centered/templates/partials/layout-centered.php +70 -0
- package/packages/widgets/hero-saas-centered/templates/partials/layout-split.php +76 -0
- package/packages/widgets/hero-saas-centered/templates/partials/layout-stacked.php +70 -0
- package/packages/widgets/hero-saas-centered/templates/wrapper.php +46 -0
- package/packages/widgets/hero-saas-split/data/view.php +83 -0
- package/packages/widgets/hero-saas-split/hero-saas-split.php +158 -0
- package/packages/widgets/hero-saas-split/package.json +12 -0
- package/packages/widgets/hero-saas-split/templates/partials/layout-centered.php +70 -0
- package/packages/widgets/hero-saas-split/templates/partials/layout-split.php +76 -0
- package/packages/widgets/hero-saas-split/templates/partials/layout-stacked.php +70 -0
- package/packages/widgets/hero-saas-split/templates/wrapper.php +46 -0
- package/packages/widgets/hero-saas-stacked/data/view.php +79 -0
- package/packages/widgets/hero-saas-stacked/hero-saas-stacked.php +145 -0
- package/packages/widgets/hero-saas-stacked/package.json +12 -0
- package/packages/widgets/hero-saas-stacked/templates/partials/layout-centered.php +70 -0
- package/packages/widgets/hero-saas-stacked/templates/partials/layout-split.php +76 -0
- package/packages/widgets/hero-saas-stacked/templates/partials/layout-stacked.php +70 -0
- package/packages/widgets/hero-saas-stacked/templates/wrapper.php +46 -0
- package/packages/widgets/hero-split/data/view.php +84 -0
- package/packages/widgets/hero-split/hero-split.php +127 -0
- package/packages/widgets/hero-split/package.json +12 -0
- package/packages/widgets/hero-split/templates/wrapper.php +86 -0
- package/packages/widgets/hero-stacked-image/data/view.php +137 -0
- package/packages/widgets/hero-stacked-image/hero-stacked-image.php +248 -0
- package/packages/widgets/hero-stacked-image/package.json +12 -0
- package/packages/widgets/hero-stacked-image/templates/wrapper.php +176 -0
- package/packages/widgets/intro-pattern/data/view.php +64 -0
- package/packages/widgets/intro-pattern/intro-pattern.php +161 -0
- package/packages/widgets/intro-pattern/package.json +12 -0
- package/packages/widgets/intro-pattern/templates/wrapper.php +61 -0
- package/packages/widgets/intro-text/data/view.php +79 -0
- package/packages/widgets/intro-text/intro-text.php +252 -0
- package/packages/widgets/intro-text/package.json +12 -0
- package/packages/widgets/intro-text/templates/wrapper.php +75 -0
- package/packages/widgets/logo-grid-centered/data/view.php +79 -0
- package/packages/widgets/logo-grid-centered/logo-grid-centered.php +254 -0
- package/packages/widgets/logo-grid-centered/package.json +12 -0
- package/packages/widgets/logo-grid-centered/templates/wrapper.php +95 -0
- package/packages/widgets/logo-grid-row/data/view.php +79 -0
- package/packages/widgets/logo-grid-row/logo-grid-row.php +254 -0
- package/packages/widgets/logo-grid-row/package.json +12 -0
- package/packages/widgets/logo-grid-row/templates/wrapper.php +108 -0
- package/packages/widgets/logo-grid-split/data/view.php +79 -0
- package/packages/widgets/logo-grid-split/logo-grid-split.php +254 -0
- package/packages/widgets/logo-grid-split/package.json +12 -0
- package/packages/widgets/logo-grid-split/templates/wrapper.php +97 -0
- package/packages/widgets/nav-centered/data/view.php +253 -0
- package/packages/widgets/nav-centered/nav-centered.php +350 -0
- package/packages/widgets/nav-centered/package.json +12 -0
- package/packages/widgets/nav-centered/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-centered/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-centered/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-centered/templates/wrapper.php +401 -0
- package/packages/widgets/nav-compact/data/view.php +253 -0
- package/packages/widgets/nav-compact/nav-compact.php +350 -0
- package/packages/widgets/nav-compact/package.json +12 -0
- package/packages/widgets/nav-compact/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-compact/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-compact/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-compact/templates/wrapper.php +401 -0
- package/packages/widgets/nav-default/data/view.php +254 -0
- package/packages/widgets/nav-default/nav-default.php +350 -0
- package/packages/widgets/nav-default/package.json +12 -0
- package/packages/widgets/nav-default/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-default/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-default/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-default/templates/wrapper.php +401 -0
- package/packages/widgets/nav-floating/data/view.php +253 -0
- package/packages/widgets/nav-floating/nav-floating.php +350 -0
- package/packages/widgets/nav-floating/package.json +12 -0
- package/packages/widgets/nav-floating/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-floating/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-floating/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-floating/templates/wrapper.php +401 -0
- package/packages/widgets/nav-minimal/data/view.php +253 -0
- package/packages/widgets/nav-minimal/nav-minimal.php +350 -0
- package/packages/widgets/nav-minimal/package.json +12 -0
- package/packages/widgets/nav-minimal/templates/partials/desktop-mega-panel.php +109 -0
- package/packages/widgets/nav-minimal/templates/partials/desktop-menu.php +102 -0
- package/packages/widgets/nav-minimal/templates/partials/mobile-menu.php +104 -0
- package/packages/widgets/nav-minimal/templates/wrapper.php +401 -0
- package/packages/widgets/newsletter/data/view.php +56 -0
- package/packages/widgets/newsletter/newsletter.php +210 -0
- package/packages/widgets/newsletter/package.json +12 -0
- package/packages/widgets/newsletter/templates/wrapper.php +137 -0
- package/packages/widgets/newsletter-card/data/view.php +55 -0
- package/packages/widgets/newsletter-card/newsletter-card.php +184 -0
- package/packages/widgets/newsletter-card/package.json +12 -0
- package/packages/widgets/newsletter-card/templates/wrapper.php +90 -0
- package/packages/widgets/newsletter-section/data/view.php +55 -0
- package/packages/widgets/newsletter-section/newsletter-section.php +184 -0
- package/packages/widgets/newsletter-section/package.json +12 -0
- package/packages/widgets/newsletter-section/templates/wrapper.php +87 -0
- package/packages/widgets/outreach-dashboard/data/view.php +176 -0
- package/packages/widgets/outreach-dashboard/outreach-dashboard.php +504 -0
- package/packages/widgets/outreach-dashboard/package.json +12 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-chat.php +69 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-engagement.php +60 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-integrations.php +39 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-meetings.php +43 -0
- package/packages/widgets/outreach-dashboard/templates/partials/card-networking.php +28 -0
- package/packages/widgets/outreach-dashboard/templates/wrapper.php +76 -0
- package/packages/widgets/page-hero-center/data/view.php +43 -0
- package/packages/widgets/page-hero-center/package.json +12 -0
- package/packages/widgets/page-hero-center/page-hero-center.php +120 -0
- package/packages/widgets/page-hero-center/templates/wrapper.php +54 -0
- package/packages/widgets/page-hero-left/data/view.php +43 -0
- package/packages/widgets/page-hero-left/package.json +12 -0
- package/packages/widgets/page-hero-left/page-hero-left.php +120 -0
- package/packages/widgets/page-hero-left/templates/wrapper.php +54 -0
- package/packages/widgets/pipeline-dashboard/data/view.php +131 -0
- package/packages/widgets/pipeline-dashboard/package.json +12 -0
- package/packages/widgets/pipeline-dashboard/pipeline-dashboard.php +407 -0
- package/packages/widgets/pipeline-dashboard/templates/partials/app-bar.php +31 -0
- package/packages/widgets/pipeline-dashboard/templates/partials/kanban.php +56 -0
- package/packages/widgets/pipeline-dashboard/templates/partials/pipeline-header.php +66 -0
- package/packages/widgets/pipeline-dashboard/templates/wrapper.php +64 -0
- package/packages/widgets/posts-grid/data/view.php +144 -0
- package/packages/widgets/posts-grid/package.json +12 -0
- package/packages/widgets/posts-grid/posts-grid.php +282 -0
- package/packages/widgets/posts-grid/templates/partials/card-overlay.php +58 -0
- package/packages/widgets/posts-grid/templates/partials/card.php +49 -0
- package/packages/widgets/posts-grid/templates/wrapper.php +55 -0
- package/packages/widgets/posts-grid-overlay/data/view.php +144 -0
- package/packages/widgets/posts-grid-overlay/package.json +12 -0
- package/packages/widgets/posts-grid-overlay/posts-grid-overlay.php +282 -0
- package/packages/widgets/posts-grid-overlay/templates/partials/card-overlay.php +58 -0
- package/packages/widgets/posts-grid-overlay/templates/partials/card.php +49 -0
- package/packages/widgets/posts-grid-overlay/templates/wrapper.php +55 -0
- package/packages/widgets/pricing-table/data/view.php +96 -0
- package/packages/widgets/pricing-table/package.json +12 -0
- package/packages/widgets/pricing-table/pricing-table.php +376 -0
- package/packages/widgets/pricing-table/templates/partials/pricing-card.php +125 -0
- package/packages/widgets/pricing-table/templates/wrapper.php +164 -0
- package/packages/widgets/sales-dashboard/data/view.php +158 -0
- package/packages/widgets/sales-dashboard/package.json +12 -0
- package/packages/widgets/sales-dashboard/sales-dashboard.php +434 -0
- package/packages/widgets/sales-dashboard/templates/partials/card-competitors.php +78 -0
- package/packages/widgets/sales-dashboard/templates/partials/card-feature.php +58 -0
- package/packages/widgets/sales-dashboard/templates/partials/card-profile.php +76 -0
- package/packages/widgets/sales-dashboard/templates/wrapper.php +74 -0
- package/packages/widgets/section-stats/data/view.php +90 -0
- package/packages/widgets/section-stats/package.json +12 -0
- package/packages/widgets/section-stats/section-stats.php +232 -0
- package/packages/widgets/section-stats/templates/partials/stat-card.php +44 -0
- package/packages/widgets/section-stats/templates/wrapper.php +87 -0
- package/packages/widgets/services/data/view.php +79 -0
- package/packages/widgets/services/package.json +12 -0
- package/packages/widgets/services/services.php +198 -0
- package/packages/widgets/services/templates/partials/service-item.php +35 -0
- package/packages/widgets/services/templates/wrapper.php +92 -0
- package/packages/widgets/simple-page-hero/data/view.php +43 -0
- package/packages/widgets/simple-page-hero/package.json +12 -0
- package/packages/widgets/simple-page-hero/simple-page-hero.php +147 -0
- package/packages/widgets/simple-page-hero/templates/wrapper.php +54 -0
- package/packages/widgets/social-proof/data/view.php +62 -0
- package/packages/widgets/social-proof/package.json +12 -0
- package/packages/widgets/social-proof/social-proof.php +271 -0
- package/packages/widgets/social-proof/templates/partials/layout-trust.php +73 -0
- package/packages/widgets/social-proof/templates/partials/stat-card.php +32 -0
- package/packages/widgets/social-proof/templates/partials/stat-item.php +35 -0
- package/packages/widgets/social-proof/templates/wrapper.php +87 -0
- package/packages/widgets/social-proof-trust/data/view.php +105 -0
- package/packages/widgets/social-proof-trust/package.json +12 -0
- package/packages/widgets/social-proof-trust/social-proof-trust.php +367 -0
- package/packages/widgets/social-proof-trust/templates/partials/layout-trust.php +73 -0
- package/packages/widgets/social-proof-trust/templates/partials/stat-card.php +32 -0
- package/packages/widgets/social-proof-trust/templates/partials/stat-item.php +35 -0
- package/packages/widgets/social-proof-trust/templates/wrapper.php +48 -0
- package/packages/widgets/testimonial-quote/data/view.php +57 -0
- package/packages/widgets/testimonial-quote/package.json +12 -0
- package/packages/widgets/testimonial-quote/templates/wrapper.php +66 -0
- package/packages/widgets/testimonial-quote/testimonial-quote.php +157 -0
- package/packages/widgets/testimonials-bento/data/view.php +110 -0
- package/packages/widgets/testimonials-bento/package.json +12 -0
- package/packages/widgets/testimonials-bento/templates/partials/layout-bento.php +36 -0
- package/packages/widgets/testimonials-bento/templates/partials/layout-masonry.php +74 -0
- package/packages/widgets/testimonials-bento/templates/partials/testimonial-card.php +85 -0
- package/packages/widgets/testimonials-bento/templates/wrapper.php +63 -0
- package/packages/widgets/testimonials-bento/testimonials-bento.php +322 -0
- package/packages/widgets/testimonials-grid/data/view.php +108 -0
- package/packages/widgets/testimonials-grid/package.json +12 -0
- package/packages/widgets/testimonials-grid/templates/partials/layout-bento.php +36 -0
- package/packages/widgets/testimonials-grid/templates/partials/layout-masonry.php +74 -0
- package/packages/widgets/testimonials-grid/templates/partials/testimonial-card.php +85 -0
- package/packages/widgets/testimonials-grid/templates/wrapper.php +74 -0
- package/packages/widgets/testimonials-grid/testimonials-grid.php +336 -0
- package/packages/widgets/testimonials-masonry/data/view.php +108 -0
- package/packages/widgets/testimonials-masonry/package.json +12 -0
- package/packages/widgets/testimonials-masonry/templates/partials/layout-bento.php +36 -0
- package/packages/widgets/testimonials-masonry/templates/partials/layout-masonry.php +74 -0
- package/packages/widgets/testimonials-masonry/templates/partials/testimonial-card.php +85 -0
- package/packages/widgets/testimonials-masonry/templates/wrapper.php +63 -0
- package/packages/widgets/testimonials-masonry/testimonials-masonry.php +336 -0
- package/packages/widgets/widget-filter/data/view.php +527 -0
- package/packages/widgets/widget-filter/package.json +12 -0
- package/packages/widgets/widget-filter/templates/wrapper.php +630 -0
- package/packages/widgets/widget-filter/widget-filter.php +123 -0
- package/scripts/scaffold-widget-packages.js +109 -0
- package/scripts/setup.sh +56 -0
- package/scripts/split-widget.js +176 -0
- package/scripts/sync-widgets.js +69 -0
- package/sociallane-elements.php +104 -0
- package/vite.config.js +129 -0
- package/widgets/.gitkeep +0 -0
- package/widgets/bento-grid/bento-grid.php +761 -0
- package/widgets/bento-grid/data/view.php +334 -0
- package/widgets/bento-grid/templates/partials/cell1.php +45 -0
- package/widgets/bento-grid/templates/partials/cell2.php +52 -0
- package/widgets/bento-grid/templates/partials/cell3.php +45 -0
- package/widgets/bento-grid/templates/partials/cell4.php +44 -0
- package/widgets/bento-grid/templates/partials/default-grid.php +31 -0
- package/widgets/bento-grid/templates/partials/tcsr-row1-left.php +68 -0
- package/widgets/bento-grid/templates/partials/tcsr-row1-right.php +65 -0
- package/widgets/bento-grid/templates/partials/tcsr-row2-center.php +41 -0
- package/widgets/bento-grid/templates/partials/tcsr-row2-left.php +38 -0
- package/widgets/bento-grid/templates/partials/tcsr-row2-right.php +38 -0
- package/widgets/bento-grid/templates/partials/two-column-second-row-grid.php +35 -0
- package/widgets/bento-grid/templates/partials/two-row-deploys.php +47 -0
- package/widgets/bento-grid/templates/partials/two-row-grid.php +34 -0
- package/widgets/bento-grid/templates/partials/two-row-integrations.php +40 -0
- package/widgets/bento-grid/templates/partials/two-row-overview.php +67 -0
- package/widgets/bento-grid/templates/partials/two-row-releases.php +29 -0
- package/widgets/bento-grid/templates/partials/two-row-security.php +44 -0
- package/widgets/bento-grid/templates/wrapper.php +72 -0
- package/widgets/bento-portfolio/bento-portfolio.php +399 -0
- package/widgets/bento-portfolio/data/view.php +124 -0
- package/widgets/bento-portfolio/templates/partials/portfolio-card.php +84 -0
- package/widgets/bento-portfolio/templates/partials/portfolio-default-grid.php +35 -0
- package/widgets/bento-portfolio/templates/partials/portfolio-two-column-second-row-grid.php +39 -0
- package/widgets/bento-portfolio/templates/partials/portfolio-two-row-grid.php +35 -0
- package/widgets/bento-portfolio/templates/wrapper.php +88 -0
- package/widgets/blog-grid/blog-grid.php +359 -0
- package/widgets/blog-grid/data/view.php +209 -0
- package/widgets/blog-grid/templates/partials/card.php +73 -0
- package/widgets/blog-grid/templates/wrapper.php +89 -0
- package/widgets/card-hover-reveal/card-hover-reveal.php +329 -0
- package/widgets/card-hover-reveal/data/view.php +141 -0
- package/widgets/card-hover-reveal/templates/partials/card.php +119 -0
- package/widgets/card-hover-reveal/templates/wrapper.php +80 -0
- package/widgets/client-logos/client-logos.php +214 -0
- package/widgets/client-logos/data/view.php +105 -0
- package/widgets/client-logos/templates/partials/client-item.php +38 -0
- package/widgets/client-logos/templates/wrapper.php +62 -0
- package/widgets/content-block/content-block.php +280 -0
- package/widgets/content-block/data/view.php +120 -0
- package/widgets/content-block/templates/partials/content.php +52 -0
- package/widgets/content-block/templates/wrapper.php +73 -0
- package/widgets/cta-banner/cta-banner.php +300 -0
- package/widgets/cta-banner/data/view.php +101 -0
- package/widgets/cta-banner/templates/wrapper.php +131 -0
- package/widgets/cta-notify/cta-notify.php +135 -0
- package/widgets/cta-notify/data/view.php +55 -0
- package/widgets/cta-notify/templates/wrapper.php +69 -0
- package/widgets/cta-split/cta-split.php +246 -0
- package/widgets/cta-split/data/view.php +86 -0
- package/widgets/cta-split/templates/wrapper.php +113 -0
- package/widgets/faq/data/view.php +105 -0
- package/widgets/faq/faq.php +253 -0
- package/widgets/faq/templates/partials/accordion.php +74 -0
- package/widgets/faq/templates/partials/layout-centered.php +41 -0
- package/widgets/faq/templates/partials/layout-split.php +47 -0
- package/widgets/faq/templates/partials/layout-stacked.php +57 -0
- package/widgets/faq/templates/wrapper.php +76 -0
- package/widgets/feature-grid/data/view.php +121 -0
- package/widgets/feature-grid/feature-grid.php +321 -0
- package/widgets/feature-grid/templates/partials/centered-2x2.php +69 -0
- package/widgets/feature-grid/templates/partials/feature-item.php +54 -0
- package/widgets/feature-grid/templates/wrapper.php +71 -0
- package/widgets/feature-list/data/view.php +56 -0
- package/widgets/feature-list/feature-list.php +160 -0
- package/widgets/feature-list/templates/wrapper.php +69 -0
- package/widgets/feature-list-cta/data/view.php +85 -0
- package/widgets/feature-list-cta/feature-list-cta.php +226 -0
- package/widgets/feature-list-cta/templates/partials/feature-item.php +49 -0
- package/widgets/feature-list-cta/templates/wrapper.php +65 -0
- package/widgets/footer/data/view.php +139 -0
- package/widgets/footer/footer.php +389 -0
- package/widgets/footer/templates/partials/bottom.php +77 -0
- package/widgets/footer/templates/partials/cta.php +47 -0
- package/widgets/footer/templates/partials/link-columns.php +52 -0
- package/widgets/footer/templates/wrapper.php +53 -0
- package/widgets/footer-brand/data/view.php +135 -0
- package/widgets/footer-brand/footer-brand.php +278 -0
- package/widgets/footer-brand/templates/partials/brand.php +69 -0
- package/widgets/footer-brand/templates/partials/link-columns.php +51 -0
- package/widgets/footer-brand/templates/wrapper.php +59 -0
- package/widgets/footer-links-contact/data/view.php +165 -0
- package/widgets/footer-links-contact/footer-links-contact.php +361 -0
- package/widgets/footer-links-contact/templates/partials/bottom.php +70 -0
- package/widgets/footer-links-contact/templates/partials/contact-column.php +66 -0
- package/widgets/footer-links-contact/templates/partials/link-column.php +39 -0
- package/widgets/footer-links-contact/templates/partials/logo-column.php +46 -0
- package/widgets/footer-links-contact/templates/wrapper.php +68 -0
- package/widgets/form-contact/data/view.php +133 -0
- package/widgets/form-contact/form-contact.php +274 -0
- package/widgets/form-contact/templates/partials/testimonial.php +83 -0
- package/widgets/form-contact/templates/wrapper.php +98 -0
- package/widgets/grid-case-studies/data/view.php +88 -0
- package/widgets/grid-case-studies/grid-case-studies.php +262 -0
- package/widgets/grid-case-studies/templates/partials/card.php +66 -0
- package/widgets/grid-case-studies/templates/wrapper.php +69 -0
- package/widgets/grid-components/data/view.php +131 -0
- package/widgets/grid-components/grid-components.php +316 -0
- package/widgets/grid-components/templates/partials/component-card.php +81 -0
- package/widgets/grid-components/templates/wrapper.php +55 -0
- package/widgets/grid-posts/data/view.php +159 -0
- package/widgets/grid-posts/grid-posts.php +295 -0
- package/widgets/grid-posts/templates/partials/card-overlay.php +58 -0
- package/widgets/grid-posts/templates/partials/card.php +49 -0
- package/widgets/grid-posts/templates/wrapper.php +59 -0
- package/widgets/grid-team/data/view.php +80 -0
- package/widgets/grid-team/grid-team.php +201 -0
- package/widgets/grid-team/templates/partials/team-card.php +52 -0
- package/widgets/grid-team/templates/wrapper.php +67 -0
- package/widgets/grid-testimonials/data/view.php +179 -0
- package/widgets/grid-testimonials/grid-testimonials.php +370 -0
- package/widgets/grid-testimonials/templates/partials/layout-bento.php +36 -0
- package/widgets/grid-testimonials/templates/partials/layout-masonry.php +74 -0
- package/widgets/grid-testimonials/templates/partials/testimonial-card.php +85 -0
- package/widgets/grid-testimonials/templates/wrapper.php +84 -0
- package/widgets/hero-announcement/data/view.php +98 -0
- package/widgets/hero-announcement/hero-announcement.php +270 -0
- package/widgets/hero-announcement/templates/wrapper.php +111 -0
- package/widgets/hero-centered-image/data/view.php +128 -0
- package/widgets/hero-centered-image/hero-centered-image.php +297 -0
- package/widgets/hero-centered-image/templates/wrapper.php +123 -0
- package/widgets/hero-collage/data/view.php +113 -0
- package/widgets/hero-collage/hero-collage.php +151 -0
- package/widgets/hero-collage/templates/wrapper.php +102 -0
- package/widgets/hero-overlay/data/view.php +121 -0
- package/widgets/hero-overlay/hero-overlay.php +277 -0
- package/widgets/hero-overlay/templates/wrapper.php +225 -0
- package/widgets/hero-saas/data/view.php +106 -0
- package/widgets/hero-saas/hero-saas.php +175 -0
- package/widgets/hero-saas/templates/partials/layout-centered.php +70 -0
- package/widgets/hero-saas/templates/partials/layout-split.php +76 -0
- package/widgets/hero-saas/templates/partials/layout-stacked.php +70 -0
- package/widgets/hero-saas/templates/wrapper.php +54 -0
- package/widgets/hero-split/data/view.php +92 -0
- package/widgets/hero-split/hero-split.php +127 -0
- package/widgets/hero-split/templates/wrapper.php +86 -0
- package/widgets/hero-stacked-image/data/view.php +142 -0
- package/widgets/hero-stacked-image/hero-stacked-image.php +248 -0
- package/widgets/hero-stacked-image/templates/wrapper.php +176 -0
- package/widgets/intro-pattern/data/view.php +73 -0
- package/widgets/intro-pattern/intro-pattern.php +161 -0
- package/widgets/intro-pattern/templates/wrapper.php +61 -0
- package/widgets/intro-text/data/view.php +97 -0
- package/widgets/intro-text/intro-text.php +252 -0
- package/widgets/intro-text/templates/wrapper.php +75 -0
- package/widgets/logo-grid/data/view.php +113 -0
- package/widgets/logo-grid/logo-grid.php +281 -0
- package/widgets/logo-grid/templates/wrapper.php +213 -0
- package/widgets/newsletter/data/view.php +75 -0
- package/widgets/newsletter/newsletter.php +210 -0
- package/widgets/newsletter/templates/wrapper.php +137 -0
- package/widgets/outreach-dashboard/data/view.php +176 -0
- package/widgets/outreach-dashboard/outreach-dashboard.php +504 -0
- package/widgets/outreach-dashboard/templates/partials/card-chat.php +69 -0
- package/widgets/outreach-dashboard/templates/partials/card-engagement.php +60 -0
- package/widgets/outreach-dashboard/templates/partials/card-integrations.php +39 -0
- package/widgets/outreach-dashboard/templates/partials/card-meetings.php +43 -0
- package/widgets/outreach-dashboard/templates/partials/card-networking.php +28 -0
- package/widgets/outreach-dashboard/templates/wrapper.php +76 -0
- package/widgets/pipeline-dashboard/data/view.php +131 -0
- package/widgets/pipeline-dashboard/pipeline-dashboard.php +407 -0
- package/widgets/pipeline-dashboard/templates/partials/app-bar.php +31 -0
- package/widgets/pipeline-dashboard/templates/partials/kanban.php +56 -0
- package/widgets/pipeline-dashboard/templates/partials/pipeline-header.php +66 -0
- package/widgets/pipeline-dashboard/templates/wrapper.php +64 -0
- package/widgets/pricing-table/data/view.php +133 -0
- package/widgets/pricing-table/pricing-table.php +376 -0
- package/widgets/pricing-table/templates/partials/pricing-card.php +125 -0
- package/widgets/pricing-table/templates/wrapper.php +164 -0
- package/widgets/sales-dashboard/data/view.php +158 -0
- package/widgets/sales-dashboard/sales-dashboard.php +434 -0
- package/widgets/sales-dashboard/templates/partials/card-competitors.php +78 -0
- package/widgets/sales-dashboard/templates/partials/card-feature.php +58 -0
- package/widgets/sales-dashboard/templates/partials/card-profile.php +76 -0
- package/widgets/sales-dashboard/templates/wrapper.php +74 -0
- package/widgets/section-stats/data/view.php +105 -0
- package/widgets/section-stats/section-stats.php +232 -0
- package/widgets/section-stats/templates/partials/stat-card.php +44 -0
- package/widgets/section-stats/templates/wrapper.php +87 -0
- package/widgets/services/data/view.php +91 -0
- package/widgets/services/services.php +198 -0
- package/widgets/services/templates/partials/service-item.php +35 -0
- package/widgets/services/templates/wrapper.php +92 -0
- package/widgets/simple-page-hero/data/view.php +52 -0
- package/widgets/simple-page-hero/simple-page-hero.php +147 -0
- package/widgets/simple-page-hero/templates/wrapper.php +54 -0
- package/widgets/social-proof/data/view.php +143 -0
- package/widgets/social-proof/social-proof.php +389 -0
- package/widgets/social-proof/templates/partials/layout-trust.php +73 -0
- package/widgets/social-proof/templates/partials/stat-card.php +32 -0
- package/widgets/social-proof/templates/partials/stat-item.php +35 -0
- package/widgets/social-proof/templates/wrapper.php +93 -0
- package/widgets/testimonial-quote/data/view.php +62 -0
- package/widgets/testimonial-quote/templates/wrapper.php +66 -0
- package/widgets/testimonial-quote/testimonial-quote.php +157 -0
- package/widgets.json +75 -0
- package/widgets.json.minimal +17 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var Ul=Object.defineProperty;var $l=(s,t,i)=>t in s?Ul(s,t,{enumerable:!0,configurable:!0,writable:!0,value:i}):s[t]=i;var z=(s,t,i)=>$l(s,typeof t!="symbol"?t+"":t,i);function ri(s){if(s===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return s}function ga(s,t){s.prototype=Object.create(t.prototype),s.prototype.constructor=s,s.__proto__=t}/*!
|
|
2
|
+
* GSAP 3.14.2
|
|
3
|
+
* https://gsap.com
|
|
4
|
+
*
|
|
5
|
+
* @license Copyright 2008-2025, GreenSock. All rights reserved.
|
|
6
|
+
* Subject to the terms at https://gsap.com/standard-license
|
|
7
|
+
* @author: Jack Doyle, jack@greensock.com
|
|
8
|
+
*/var Ee={autoSleep:120,force3D:"auto",nullTargetWarn:1,units:{lineHeight:""}},yr={duration:.5,overwrite:!1,delay:0},qs,Yt,ft,Re=1e8,at=1/Re,ys=Math.PI*2,ql=ys/4,Gl=0,ma=Math.sqrt,Kl=Math.cos,Ql=Math.sin,Nt=function(t){return typeof t=="string"},mt=function(t){return typeof t=="function"},li=function(t){return typeof t=="number"},Gs=function(t){return typeof t>"u"},Ze=function(t){return typeof t=="object"},fe=function(t){return t!==!1},Ks=function(){return typeof window<"u"},gn=function(t){return mt(t)||Nt(t)},va=typeof ArrayBuffer=="function"&&ArrayBuffer.isView||function(){},Qt=Array.isArray,Zl=/random\([^)]+\)/g,jl=/,\s*/g,xo=/(?:-?\.?\d|\.)+/gi,ya=/[-+=.]*\d+[.e\-+]*\d*[e\-+]*\d*/g,fr=/[-+=.]*\d+[.e-]*\d*[a-z%]*/g,rs=/[-+=.]*\d+\.?\d*(?:e-|e\+)?\d*/gi,wa=/[+-]=-?[.\d]+/,Jl=/[^,'"\[\]\s]+/gi,tu=/^[+\-=e\s\d]*\d+[.\d]*([a-z]*|%)\s*$/i,dt,Ue,ws,Qs,ke={},Yn={},xa,Sa=function(t){return(Yn=wr(t,ke))&&pe},Zs=function(t,i){return console.warn("Invalid property",t,"set to",i,"Missing plugin? gsap.registerPlugin()")},tn=function(t,i){return!i&&console.warn(t)},ba=function(t,i){return t&&(ke[t]=i)&&Yn&&(Yn[t]=i)||ke},en=function(){return 0},eu={suppressEvents:!0,isStart:!0,kill:!1},Dn={suppressEvents:!0,kill:!1},iu={suppressEvents:!0},js={},bi=[],xs={},Ta,we={},ns={},So=30,An=[],Js="",to=function(t){var i=t[0],e,r;if(Ze(i)||mt(i)||(t=[t]),!(e=(i._gsap||{}).harness)){for(r=An.length;r--&&!An[r].targetTest(i););e=An[r]}for(r=t.length;r--;)t[r]&&(t[r]._gsap||(t[r]._gsap=new Ga(t[r],e)))||t.splice(r,1);return t},Hi=function(t){return t._gsap||to(ze(t))[0]._gsap},Ca=function(t,i,e){return(e=t[i])&&mt(e)?t[i]():Gs(e)&&t.getAttribute&&t.getAttribute(i)||e},ce=function(t,i){return(t=t.split(",")).forEach(i)||t},xt=function(t){return Math.round(t*1e5)/1e5||0},ht=function(t){return Math.round(t*1e7)/1e7||0},dr=function(t,i){var e=i.charAt(0),r=parseFloat(i.substr(2));return t=parseFloat(t),e==="+"?t+r:e==="-"?t-r:e==="*"?t*r:t/r},ru=function(t,i){for(var e=i.length,r=0;t.indexOf(i[r])<0&&++r<e;);return r<e},Bn=function(){var t=bi.length,i=bi.slice(0),e,r;for(xs={},bi.length=0,e=0;e<t;e++)r=i[e],r&&r._lazy&&(r.render(r._lazy[0],r._lazy[1],!0)._lazy=0)},eo=function(t){return!!(t._initted||t._startAt||t.add)},Ea=function(t,i,e,r){bi.length&&!Yt&&Bn(),t.render(i,e,!!(Yt&&i<0&&eo(t))),bi.length&&!Yt&&Bn()},ka=function(t){var i=parseFloat(t);return(i||i===0)&&(t+"").match(Jl).length<2?i:Nt(t)?t.trim():t},Pa=function(t){return t},Pe=function(t,i){for(var e in i)e in t||(t[e]=i[e]);return t},nu=function(t){return function(i,e){for(var r in e)r in i||r==="duration"&&t||r==="ease"||(i[r]=e[r])}},wr=function(t,i){for(var e in i)t[e]=i[e];return t},bo=function s(t,i){for(var e in i)e!=="__proto__"&&e!=="constructor"&&e!=="prototype"&&(t[e]=Ze(i[e])?s(t[e]||(t[e]={}),i[e]):i[e]);return t},Xn=function(t,i){var e={},r;for(r in t)r in i||(e[r]=t[r]);return e},Br=function(t){var i=t.parent||dt,e=t.keyframes?nu(Qt(t.keyframes)):Pe;if(fe(t.inherit))for(;i;)e(t,i.vars.defaults),i=i.parent||i._dp;return t},su=function(t,i){for(var e=t.length,r=e===i.length;r&&e--&&t[e]===i[e];);return e<0},Oa=function(t,i,e,r,n){var o=t[r],a;if(n)for(a=i[n];o&&o[n]>a;)o=o._prev;return o?(i._next=o._next,o._next=i):(i._next=t[e],t[e]=i),i._next?i._next._prev=i:t[r]=i,i._prev=o,i.parent=i._dp=t,i},jn=function(t,i,e,r){e===void 0&&(e="_first"),r===void 0&&(r="_last");var n=i._prev,o=i._next;n?n._next=o:t[e]===i&&(t[e]=o),o?o._prev=n:t[r]===i&&(t[r]=n),i._next=i._prev=i.parent=null},Ei=function(t,i){t.parent&&(!i||t.parent.autoRemoveChildren)&&t.parent.remove&&t.parent.remove(t),t._act=0},Vi=function(t,i){if(t&&(!i||i._end>t._dur||i._start<0))for(var e=t;e;)e._dirty=1,e=e.parent;return t},ou=function(t){for(var i=t.parent;i&&i.parent;)i._dirty=1,i.totalDuration(),i=i.parent;return t},Ss=function(t,i,e,r){return t._startAt&&(Yt?t._startAt.revert(Dn):t.vars.immediateRender&&!t.vars.autoRevert||t._startAt.render(i,!0,r))},au=function s(t){return!t||t._ts&&s(t.parent)},To=function(t){return t._repeat?xr(t._tTime,t=t.duration()+t._rDelay)*t:0},xr=function(t,i){var e=Math.floor(t=ht(t/i));return t&&e===t?e-1:e},Hn=function(t,i){return(t-i._start)*i._ts+(i._ts>=0?0:i._dirty?i.totalDuration():i._tDur)},Jn=function(t){return t._end=ht(t._start+(t._tDur/Math.abs(t._ts||t._rts||at)||0))},ts=function(t,i){var e=t._dp;return e&&e.smoothChildTiming&&t._ts&&(t._start=ht(e._time-(t._ts>0?i/t._ts:((t._dirty?t.totalDuration():t._tDur)-i)/-t._ts)),Jn(t),e._dirty||Vi(e,t)),t},Ma=function(t,i){var e;if((i._time||!i._dur&&i._initted||i._start<t._time&&(i._dur||!i.add))&&(e=Hn(t.rawTime(),i),(!i._dur||hn(0,i.totalDuration(),e)-i._tTime>at)&&i.render(e,!0)),Vi(t,i)._dp&&t._initted&&t._time>=t._dur&&t._ts){if(t._dur<t.duration())for(e=t;e._dp;)e.rawTime()>=0&&e.totalTime(e._tTime),e=e._dp;t._zTime=-at}},qe=function(t,i,e,r){return i.parent&&Ei(i),i._start=ht((li(e)?e:e||t!==dt?Me(t,e,i):t._time)+i._delay),i._end=ht(i._start+(i.totalDuration()/Math.abs(i.timeScale())||0)),Oa(t,i,"_first","_last",t._sort?"_start":0),bs(i)||(t._recent=i),r||Ma(t,i),t._ts<0&&ts(t,t._tTime),t},Da=function(t,i){return(ke.ScrollTrigger||Zs("scrollTrigger",i))&&ke.ScrollTrigger.create(i,t)},Aa=function(t,i,e,r,n){if(ro(t,i,n),!t._initted)return 1;if(!e&&t._pt&&!Yt&&(t._dur&&t.vars.lazy!==!1||!t._dur&&t.vars.lazy)&&Ta!==Se.frame)return bi.push(t),t._lazy=[n,r],1},lu=function s(t){var i=t.parent;return i&&i._ts&&i._initted&&!i._lock&&(i.rawTime()<0||s(i))},bs=function(t){var i=t.data;return i==="isFromStart"||i==="isStart"},uu=function(t,i,e,r){var n=t.ratio,o=i<0||!i&&(!t._start&&lu(t)&&!(!t._initted&&bs(t))||(t._ts<0||t._dp._ts<0)&&!bs(t))?0:1,a=t._rDelay,l=0,u,f,h;if(a&&t._repeat&&(l=hn(0,t._tDur,i),f=xr(l,a),t._yoyo&&f&1&&(o=1-o),f!==xr(t._tTime,a)&&(n=1-o,t.vars.repeatRefresh&&t._initted&&t.invalidate())),o!==n||Yt||r||t._zTime===at||!i&&t._zTime){if(!t._initted&&Aa(t,i,r,e,l))return;for(h=t._zTime,t._zTime=i||(e?at:0),e||(e=i&&!h),t.ratio=o,t._from&&(o=1-o),t._time=0,t._tTime=l,u=t._pt;u;)u.r(o,u.d),u=u._next;i<0&&Ss(t,i,e,!0),t._onUpdate&&!e&&Te(t,"onUpdate"),l&&t._repeat&&!e&&t.parent&&Te(t,"onRepeat"),(i>=t._tDur||i<0)&&t.ratio===o&&(o&&Ei(t,1),!e&&!Yt&&(Te(t,o?"onComplete":"onReverseComplete",!0),t._prom&&t._prom()))}else t._zTime||(t._zTime=i)},fu=function(t,i,e){var r;if(e>i)for(r=t._first;r&&r._start<=e;){if(r.data==="isPause"&&r._start>i)return r;r=r._next}else for(r=t._last;r&&r._start>=e;){if(r.data==="isPause"&&r._start<i)return r;r=r._prev}},Sr=function(t,i,e,r){var n=t._repeat,o=ht(i)||0,a=t._tTime/t._tDur;return a&&!r&&(t._time*=o/t._dur),t._dur=o,t._tDur=n?n<0?1e10:ht(o*(n+1)+t._rDelay*n):o,a>0&&!r&&ts(t,t._tTime=t._tDur*a),t.parent&&Jn(t),e||Vi(t.parent,t),t},Co=function(t){return t instanceof se?Vi(t):Sr(t,t._dur)},cu={_start:0,endTime:en,totalDuration:en},Me=function s(t,i,e){var r=t.labels,n=t._recent||cu,o=t.duration()>=Re?n.endTime(!1):t._dur,a,l,u;return Nt(i)&&(isNaN(i)||i in r)?(l=i.charAt(0),u=i.substr(-1)==="%",a=i.indexOf("="),l==="<"||l===">"?(a>=0&&(i=i.replace(/=/,"")),(l==="<"?n._start:n.endTime(n._repeat>=0))+(parseFloat(i.substr(1))||0)*(u?(a<0?n:e).totalDuration()/100:1)):a<0?(i in r||(r[i]=o),r[i]):(l=parseFloat(i.charAt(a-1)+i.substr(a+1)),u&&e&&(l=l/100*(Qt(e)?e[0]:e).totalDuration()),a>1?s(t,i.substr(0,a-1),e)+l:o+l)):i==null?o:+i},Xr=function(t,i,e){var r=li(i[1]),n=(r?2:1)+(t<2?0:1),o=i[n],a,l;if(r&&(o.duration=i[1]),o.parent=e,t){for(a=o,l=e;l&&!("immediateRender"in a);)a=l.vars.defaults||{},l=fe(l.vars.inherit)&&l.parent;o.immediateRender=fe(a.immediateRender),t<2?o.runBackwards=1:o.startAt=i[n-1]}return new kt(i[0],o,i[n+1])},Mi=function(t,i){return t||t===0?i(t):i},hn=function(t,i,e){return e<t?t:e>i?i:e},Gt=function(t,i){return!Nt(t)||!(i=tu.exec(t))?"":i[1]},hu=function(t,i,e){return Mi(e,function(r){return hn(t,i,r)})},Ts=[].slice,Ra=function(t,i){return t&&Ze(t)&&"length"in t&&(!i&&!t.length||t.length-1 in t&&Ze(t[0]))&&!t.nodeType&&t!==Ue},du=function(t,i,e){return e===void 0&&(e=[]),t.forEach(function(r){var n;return Nt(r)&&!i||Ra(r,1)?(n=e).push.apply(n,ze(r)):e.push(r)})||e},ze=function(t,i,e){return ft&&!i&&ft.selector?ft.selector(t):Nt(t)&&!e&&(ws||!br())?Ts.call((i||Qs).querySelectorAll(t),0):Qt(t)?du(t,e):Ra(t)?Ts.call(t,0):t?[t]:[]},Cs=function(t){return t=ze(t)[0]||tn("Invalid scope")||{},function(i){var e=t.current||t.nativeElement||t;return ze(i,e.querySelectorAll?e:e===t?tn("Invalid scope")||Qs.createElement("div"):t)}},za=function(t){return t.sort(function(){return .5-Math.random()})},La=function(t){if(mt(t))return t;var i=Ze(t)?t:{each:t},e=Ui(i.ease),r=i.from||0,n=parseFloat(i.base)||0,o={},a=r>0&&r<1,l=isNaN(r)||a,u=i.axis,f=r,h=r;return Nt(r)?f=h={center:.5,edges:.5,end:1}[r]||0:!a&&l&&(f=r[0],h=r[1]),function(d,c,_){var p=(_||i).length,m=o[p],b,S,E,y,v,T,x,k,C;if(!m){if(C=i.grid==="auto"?0:(i.grid||[1,Re])[1],!C){for(x=-Re;x<(x=_[C++].getBoundingClientRect().left)&&C<p;);C<p&&C--}for(m=o[p]=[],b=l?Math.min(C,p)*f-.5:r%C,S=C===Re?0:l?p*h/C-.5:r/C|0,x=0,k=Re,T=0;T<p;T++)E=T%C-b,y=S-(T/C|0),m[T]=v=u?Math.abs(u==="y"?y:E):ma(E*E+y*y),v>x&&(x=v),v<k&&(k=v);r==="random"&&za(m),m.max=x-k,m.min=k,m.v=p=(parseFloat(i.amount)||parseFloat(i.each)*(C>p?p-1:u?u==="y"?p/C:C:Math.max(C,p/C))||0)*(r==="edges"?-1:1),m.b=p<0?n-p:n,m.u=Gt(i.amount||i.each)||0,e=e&&p<0?Ua(e):e}return p=(m[d]-m.min)/m.max||0,ht(m.b+(e?e(p):p)*m.v)+m.u}},Es=function(t){var i=Math.pow(10,((t+"").split(".")[1]||"").length);return function(e){var r=ht(Math.round(parseFloat(e)/t)*t*i);return(r-r%1)/i+(li(e)?0:Gt(e))}},Na=function(t,i){var e=Qt(t),r,n;return!e&&Ze(t)&&(r=e=t.radius||Re,t.values?(t=ze(t.values),(n=!li(t[0]))&&(r*=r)):t=Es(t.increment)),Mi(i,e?mt(t)?function(o){return n=t(o),Math.abs(n-o)<=r?n:o}:function(o){for(var a=parseFloat(n?o.x:o),l=parseFloat(n?o.y:0),u=Re,f=0,h=t.length,d,c;h--;)n?(d=t[h].x-a,c=t[h].y-l,d=d*d+c*c):d=Math.abs(t[h]-a),d<u&&(u=d,f=h);return f=!r||u<=r?t[f]:o,n||f===o||li(o)?f:f+Gt(o)}:Es(t))},Fa=function(t,i,e,r){return Mi(Qt(t)?!i:e===!0?!!(e=0):!r,function(){return Qt(t)?t[~~(Math.random()*t.length)]:(e=e||1e-5)&&(r=e<1?Math.pow(10,(e+"").length-2):1)&&Math.floor(Math.round((t-e/2+Math.random()*(i-t+e*.99))/e)*e*r)/r})},pu=function(){for(var t=arguments.length,i=new Array(t),e=0;e<t;e++)i[e]=arguments[e];return function(r){return i.reduce(function(n,o){return o(n)},r)}},_u=function(t,i){return function(e){return t(parseFloat(e))+(i||Gt(e))}},gu=function(t,i,e){return Wa(t,i,0,1,e)},Ia=function(t,i,e){return Mi(e,function(r){return t[~~i(r)]})},mu=function s(t,i,e){var r=i-t;return Qt(t)?Ia(t,s(0,t.length),i):Mi(e,function(n){return(r+(n-t)%r)%r+t})},vu=function s(t,i,e){var r=i-t,n=r*2;return Qt(t)?Ia(t,s(0,t.length-1),i):Mi(e,function(o){return o=(n+(o-t)%n)%n||0,t+(o>r?n-o:o)})},rn=function(t){return t.replace(Zl,function(i){var e=i.indexOf("[")+1,r=i.substring(e||7,e?i.indexOf("]"):i.length-1).split(jl);return Fa(e?r:+r[0],e?0:+r[1],+r[2]||1e-5)})},Wa=function(t,i,e,r,n){var o=i-t,a=r-e;return Mi(n,function(l){return e+((l-t)/o*a||0)})},yu=function s(t,i,e,r){var n=isNaN(t+i)?0:function(c){return(1-c)*t+c*i};if(!n){var o=Nt(t),a={},l,u,f,h,d;if(e===!0&&(r=1)&&(e=null),o)t={p:t},i={p:i};else if(Qt(t)&&!Qt(i)){for(f=[],h=t.length,d=h-2,u=1;u<h;u++)f.push(s(t[u-1],t[u]));h--,n=function(_){_*=h;var p=Math.min(d,~~_);return f[p](_-p)},e=i}else r||(t=wr(Qt(t)?[]:{},t));if(!f){for(l in i)io.call(a,t,l,"get",i[l]);n=function(_){return oo(_,a)||(o?t.p:t)}}}return Mi(e,n)},Eo=function(t,i,e){var r=t.labels,n=Re,o,a,l;for(o in r)a=r[o]-i,a<0==!!e&&a&&n>(a=Math.abs(a))&&(l=o,n=a);return l},Te=function(t,i,e){var r=t.vars,n=r[i],o=ft,a=t._ctx,l,u,f;if(n)return l=r[i+"Params"],u=r.callbackScope||t,e&&bi.length&&Bn(),a&&(ft=a),f=l?n.apply(u,l):n.call(u),ft=o,f},zr=function(t){return Ei(t),t.scrollTrigger&&t.scrollTrigger.kill(!!Yt),t.progress()<1&&Te(t,"onInterrupt"),t},cr,Ya=[],Ba=function(t){if(t)if(t=!t.name&&t.default||t,Ks()||t.headless){var i=t.name,e=mt(t),r=i&&!e&&t.init?function(){this._props=[]}:t,n={init:en,render:oo,add:io,kill:Lu,modifier:zu,rawVars:0},o={targetTest:0,get:0,getSetter:so,aliases:{},register:0};if(br(),t!==r){if(we[i])return;Pe(r,Pe(Xn(t,n),o)),wr(r.prototype,wr(n,Xn(t,o))),we[r.prop=i]=r,t.targetTest&&(An.push(r),js[i]=1),i=(i==="css"?"CSS":i.charAt(0).toUpperCase()+i.substr(1))+"Plugin"}ba(i,r),t.register&&t.register(pe,r,he)}else Ya.push(t)},ot=255,Lr={aqua:[0,ot,ot],lime:[0,ot,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,ot],navy:[0,0,128],white:[ot,ot,ot],olive:[128,128,0],yellow:[ot,ot,0],orange:[ot,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[ot,0,0],pink:[ot,192,203],cyan:[0,ot,ot],transparent:[ot,ot,ot,0]},ss=function(t,i,e){return t+=t<0?1:t>1?-1:0,(t*6<1?i+(e-i)*t*6:t<.5?e:t*3<2?i+(e-i)*(2/3-t)*6:i)*ot+.5|0},Xa=function(t,i,e){var r=t?li(t)?[t>>16,t>>8&ot,t&ot]:0:Lr.black,n,o,a,l,u,f,h,d,c,_;if(!r){if(t.substr(-1)===","&&(t=t.substr(0,t.length-1)),Lr[t])r=Lr[t];else if(t.charAt(0)==="#"){if(t.length<6&&(n=t.charAt(1),o=t.charAt(2),a=t.charAt(3),t="#"+n+n+o+o+a+a+(t.length===5?t.charAt(4)+t.charAt(4):"")),t.length===9)return r=parseInt(t.substr(1,6),16),[r>>16,r>>8&ot,r&ot,parseInt(t.substr(7),16)/255];t=parseInt(t.substr(1),16),r=[t>>16,t>>8&ot,t&ot]}else if(t.substr(0,3)==="hsl"){if(r=_=t.match(xo),!i)l=+r[0]%360/360,u=+r[1]/100,f=+r[2]/100,o=f<=.5?f*(u+1):f+u-f*u,n=f*2-o,r.length>3&&(r[3]*=1),r[0]=ss(l+1/3,n,o),r[1]=ss(l,n,o),r[2]=ss(l-1/3,n,o);else if(~t.indexOf("="))return r=t.match(ya),e&&r.length<4&&(r[3]=1),r}else r=t.match(xo)||Lr.transparent;r=r.map(Number)}return i&&!_&&(n=r[0]/ot,o=r[1]/ot,a=r[2]/ot,h=Math.max(n,o,a),d=Math.min(n,o,a),f=(h+d)/2,h===d?l=u=0:(c=h-d,u=f>.5?c/(2-h-d):c/(h+d),l=h===n?(o-a)/c+(o<a?6:0):h===o?(a-n)/c+2:(n-o)/c+4,l*=60),r[0]=~~(l+.5),r[1]=~~(u*100+.5),r[2]=~~(f*100+.5)),e&&r.length<4&&(r[3]=1),r},Ha=function(t){var i=[],e=[],r=-1;return t.split(Ti).forEach(function(n){var o=n.match(fr)||[];i.push.apply(i,o),e.push(r+=o.length+1)}),i.c=e,i},ko=function(t,i,e){var r="",n=(t+r).match(Ti),o=i?"hsla(":"rgba(",a=0,l,u,f,h;if(!n)return t;if(n=n.map(function(d){return(d=Xa(d,i,1))&&o+(i?d[0]+","+d[1]+"%,"+d[2]+"%,"+d[3]:d.join(","))+")"}),e&&(f=Ha(t),l=e.c,l.join(r)!==f.c.join(r)))for(u=t.replace(Ti,"1").split(fr),h=u.length-1;a<h;a++)r+=u[a]+(~l.indexOf(a)?n.shift()||o+"0,0,0,0)":(f.length?f:n.length?n:e).shift());if(!u)for(u=t.split(Ti),h=u.length-1;a<h;a++)r+=u[a]+n[a];return r+u[h]},Ti=function(){var s="(?:\\b(?:(?:rgb|rgba|hsl|hsla)\\(.+?\\))|\\B#(?:[0-9a-f]{3,4}){1,2}\\b",t;for(t in Lr)s+="|"+t+"\\b";return new RegExp(s+")","gi")}(),wu=/hsl[a]?\(/,Va=function(t){var i=t.join(" "),e;if(Ti.lastIndex=0,Ti.test(i))return e=wu.test(i),t[1]=ko(t[1],e),t[0]=ko(t[0],e,Ha(t[1])),!0},nn,Se=function(){var s=Date.now,t=500,i=33,e=s(),r=e,n=1e3/240,o=n,a=[],l,u,f,h,d,c,_=function p(m){var b=s()-r,S=m===!0,E,y,v,T;if((b>t||b<0)&&(e+=b-i),r+=b,v=r-e,E=v-o,(E>0||S)&&(T=++h.frame,d=v-h.time*1e3,h.time=v=v/1e3,o+=E+(E>=n?4:n-E),y=1),S||(l=u(p)),y)for(c=0;c<a.length;c++)a[c](v,d,T,m)};return h={time:0,frame:0,tick:function(){_(!0)},deltaRatio:function(m){return d/(1e3/(m||60))},wake:function(){xa&&(!ws&&Ks()&&(Ue=ws=window,Qs=Ue.document||{},ke.gsap=pe,(Ue.gsapVersions||(Ue.gsapVersions=[])).push(pe.version),Sa(Yn||Ue.GreenSockGlobals||!Ue.gsap&&Ue||{}),Ya.forEach(Ba)),f=typeof requestAnimationFrame<"u"&&requestAnimationFrame,l&&h.sleep(),u=f||function(m){return setTimeout(m,o-h.time*1e3+1|0)},nn=1,_(2))},sleep:function(){(f?cancelAnimationFrame:clearTimeout)(l),nn=0,u=en},lagSmoothing:function(m,b){t=m||1/0,i=Math.min(b||33,t)},fps:function(m){n=1e3/(m||240),o=h.time*1e3+n},add:function(m,b,S){var E=b?function(y,v,T,x){m(y,v,T,x),h.remove(E)}:m;return h.remove(m),a[S?"unshift":"push"](E),br(),E},remove:function(m,b){~(b=a.indexOf(m))&&a.splice(b,1)&&c>=b&&c--},_listeners:a},h}(),br=function(){return!nn&&Se.wake()},j={},xu=/^[\d.\-M][\d.\-,\s]/,Su=/["']/g,bu=function(t){for(var i={},e=t.substr(1,t.length-3).split(":"),r=e[0],n=1,o=e.length,a,l,u;n<o;n++)l=e[n],a=n!==o-1?l.lastIndexOf(","):l.length,u=l.substr(0,a),i[r]=isNaN(u)?u.replace(Su,"").trim():+u,r=l.substr(a+1).trim();return i},Tu=function(t){var i=t.indexOf("(")+1,e=t.indexOf(")"),r=t.indexOf("(",i);return t.substring(i,~r&&r<e?t.indexOf(")",e+1):e)},Cu=function(t){var i=(t+"").split("("),e=j[i[0]];return e&&i.length>1&&e.config?e.config.apply(null,~t.indexOf("{")?[bu(i[1])]:Tu(t).split(",").map(ka)):j._CE&&xu.test(t)?j._CE("",t):e},Ua=function(t){return function(i){return 1-t(1-i)}},$a=function s(t,i){for(var e=t._first,r;e;)e instanceof se?s(e,i):e.vars.yoyoEase&&(!e._yoyo||!e._repeat)&&e._yoyo!==i&&(e.timeline?s(e.timeline,i):(r=e._ease,e._ease=e._yEase,e._yEase=r,e._yoyo=i)),e=e._next},Ui=function(t,i){return t&&(mt(t)?t:j[t]||Cu(t))||i},Ji=function(t,i,e,r){e===void 0&&(e=function(l){return 1-i(1-l)}),r===void 0&&(r=function(l){return l<.5?i(l*2)/2:1-i((1-l)*2)/2});var n={easeIn:i,easeOut:e,easeInOut:r},o;return ce(t,function(a){j[a]=ke[a]=n,j[o=a.toLowerCase()]=e;for(var l in n)j[o+(l==="easeIn"?".in":l==="easeOut"?".out":".inOut")]=j[a+"."+l]=n[l]}),n},qa=function(t){return function(i){return i<.5?(1-t(1-i*2))/2:.5+t((i-.5)*2)/2}},os=function s(t,i,e){var r=i>=1?i:1,n=(e||(t?.3:.45))/(i<1?i:1),o=n/ys*(Math.asin(1/r)||0),a=function(f){return f===1?1:r*Math.pow(2,-10*f)*Ql((f-o)*n)+1},l=t==="out"?a:t==="in"?function(u){return 1-a(1-u)}:qa(a);return n=ys/n,l.config=function(u,f){return s(t,u,f)},l},as=function s(t,i){i===void 0&&(i=1.70158);var e=function(o){return o?--o*o*((i+1)*o+i)+1:0},r=t==="out"?e:t==="in"?function(n){return 1-e(1-n)}:qa(e);return r.config=function(n){return s(t,n)},r};ce("Linear,Quad,Cubic,Quart,Quint,Strong",function(s,t){var i=t<5?t+1:t;Ji(s+",Power"+(i-1),t?function(e){return Math.pow(e,i)}:function(e){return e},function(e){return 1-Math.pow(1-e,i)},function(e){return e<.5?Math.pow(e*2,i)/2:1-Math.pow((1-e)*2,i)/2})});j.Linear.easeNone=j.none=j.Linear.easeIn;Ji("Elastic",os("in"),os("out"),os());(function(s,t){var i=1/t,e=2*i,r=2.5*i,n=function(a){return a<i?s*a*a:a<e?s*Math.pow(a-1.5/t,2)+.75:a<r?s*(a-=2.25/t)*a+.9375:s*Math.pow(a-2.625/t,2)+.984375};Ji("Bounce",function(o){return 1-n(1-o)},n)})(7.5625,2.75);Ji("Expo",function(s){return Math.pow(2,10*(s-1))*s+s*s*s*s*s*s*(1-s)});Ji("Circ",function(s){return-(ma(1-s*s)-1)});Ji("Sine",function(s){return s===1?1:-Kl(s*ql)+1});Ji("Back",as("in"),as("out"),as());j.SteppedEase=j.steps=ke.SteppedEase={config:function(t,i){t===void 0&&(t=1);var e=1/t,r=t+(i?0:1),n=i?1:0,o=1-at;return function(a){return((r*hn(0,o,a)|0)+n)*e}}};yr.ease=j["quad.out"];ce("onComplete,onUpdate,onStart,onRepeat,onReverseComplete,onInterrupt",function(s){return Js+=s+","+s+"Params,"});var Ga=function(t,i){this.id=Gl++,t._gsap=this,this.target=t,this.harness=i,this.get=i?i.get:Ca,this.set=i?i.getSetter:so},sn=function(){function s(i){this.vars=i,this._delay=+i.delay||0,(this._repeat=i.repeat===1/0?-2:i.repeat||0)&&(this._rDelay=i.repeatDelay||0,this._yoyo=!!i.yoyo||!!i.yoyoEase),this._ts=1,Sr(this,+i.duration,1,1),this.data=i.data,ft&&(this._ctx=ft,ft.data.push(this)),nn||Se.wake()}var t=s.prototype;return t.delay=function(e){return e||e===0?(this.parent&&this.parent.smoothChildTiming&&this.startTime(this._start+e-this._delay),this._delay=e,this):this._delay},t.duration=function(e){return arguments.length?this.totalDuration(this._repeat>0?e+(e+this._rDelay)*this._repeat:e):this.totalDuration()&&this._dur},t.totalDuration=function(e){return arguments.length?(this._dirty=0,Sr(this,this._repeat<0?e:(e-this._repeat*this._rDelay)/(this._repeat+1))):this._tDur},t.totalTime=function(e,r){if(br(),!arguments.length)return this._tTime;var n=this._dp;if(n&&n.smoothChildTiming&&this._ts){for(ts(this,e),!n._dp||n.parent||Ma(n,this);n&&n.parent;)n.parent._time!==n._start+(n._ts>=0?n._tTime/n._ts:(n.totalDuration()-n._tTime)/-n._ts)&&n.totalTime(n._tTime,!0),n=n.parent;!this.parent&&this._dp.autoRemoveChildren&&(this._ts>0&&e<this._tDur||this._ts<0&&e>0||!this._tDur&&!e)&&qe(this._dp,this,this._start-this._delay)}return(this._tTime!==e||!this._dur&&!r||this._initted&&Math.abs(this._zTime)===at||!this._initted&&this._dur&&e||!e&&!this._initted&&(this.add||this._ptLookup))&&(this._ts||(this._pTime=e),Ea(this,e,r)),this},t.time=function(e,r){return arguments.length?this.totalTime(Math.min(this.totalDuration(),e+To(this))%(this._dur+this._rDelay)||(e?this._dur:0),r):this._time},t.totalProgress=function(e,r){return arguments.length?this.totalTime(this.totalDuration()*e,r):this.totalDuration()?Math.min(1,this._tTime/this._tDur):this.rawTime()>=0&&this._initted?1:0},t.progress=function(e,r){return arguments.length?this.totalTime(this.duration()*(this._yoyo&&!(this.iteration()&1)?1-e:e)+To(this),r):this.duration()?Math.min(1,this._time/this._dur):this.rawTime()>0?1:0},t.iteration=function(e,r){var n=this.duration()+this._rDelay;return arguments.length?this.totalTime(this._time+(e-1)*n,r):this._repeat?xr(this._tTime,n)+1:1},t.timeScale=function(e,r){if(!arguments.length)return this._rts===-at?0:this._rts;if(this._rts===e)return this;var n=this.parent&&this._ts?Hn(this.parent._time,this):this._tTime;return this._rts=+e||0,this._ts=this._ps||e===-at?0:this._rts,this.totalTime(hn(-Math.abs(this._delay),this.totalDuration(),n),r!==!1),Jn(this),ou(this)},t.paused=function(e){return arguments.length?(this._ps!==e&&(this._ps=e,e?(this._pTime=this._tTime||Math.max(-this._delay,this.rawTime()),this._ts=this._act=0):(br(),this._ts=this._rts,this.totalTime(this.parent&&!this.parent.smoothChildTiming?this.rawTime():this._tTime||this._pTime,this.progress()===1&&Math.abs(this._zTime)!==at&&(this._tTime-=at)))),this):this._ps},t.startTime=function(e){if(arguments.length){this._start=ht(e);var r=this.parent||this._dp;return r&&(r._sort||!this.parent)&&qe(r,this,this._start-this._delay),this}return this._start},t.endTime=function(e){return this._start+(fe(e)?this.totalDuration():this.duration())/Math.abs(this._ts||1)},t.rawTime=function(e){var r=this.parent||this._dp;return r?e&&(!this._ts||this._repeat&&this._time&&this.totalProgress()<1)?this._tTime%(this._dur+this._rDelay):this._ts?Hn(r.rawTime(e),this):this._tTime:this._tTime},t.revert=function(e){e===void 0&&(e=iu);var r=Yt;return Yt=e,eo(this)&&(this.timeline&&this.timeline.revert(e),this.totalTime(-.01,e.suppressEvents)),this.data!=="nested"&&e.kill!==!1&&this.kill(),Yt=r,this},t.globalTime=function(e){for(var r=this,n=arguments.length?e:r.rawTime();r;)n=r._start+n/(Math.abs(r._ts)||1),r=r._dp;return!this.parent&&this._sat?this._sat.globalTime(e):n},t.repeat=function(e){return arguments.length?(this._repeat=e===1/0?-2:e,Co(this)):this._repeat===-2?1/0:this._repeat},t.repeatDelay=function(e){if(arguments.length){var r=this._time;return this._rDelay=e,Co(this),r?this.time(r):this}return this._rDelay},t.yoyo=function(e){return arguments.length?(this._yoyo=e,this):this._yoyo},t.seek=function(e,r){return this.totalTime(Me(this,e),fe(r))},t.restart=function(e,r){return this.play().totalTime(e?-this._delay:0,fe(r)),this._dur||(this._zTime=-at),this},t.play=function(e,r){return e!=null&&this.seek(e,r),this.reversed(!1).paused(!1)},t.reverse=function(e,r){return e!=null&&this.seek(e||this.totalDuration(),r),this.reversed(!0).paused(!1)},t.pause=function(e,r){return e!=null&&this.seek(e,r),this.paused(!0)},t.resume=function(){return this.paused(!1)},t.reversed=function(e){return arguments.length?(!!e!==this.reversed()&&this.timeScale(-this._rts||(e?-at:0)),this):this._rts<0},t.invalidate=function(){return this._initted=this._act=0,this._zTime=-at,this},t.isActive=function(){var e=this.parent||this._dp,r=this._start,n;return!!(!e||this._ts&&this._initted&&e.isActive()&&(n=e.rawTime(!0))>=r&&n<this.endTime(!0)-at)},t.eventCallback=function(e,r,n){var o=this.vars;return arguments.length>1?(r?(o[e]=r,n&&(o[e+"Params"]=n),e==="onUpdate"&&(this._onUpdate=r)):delete o[e],this):o[e]},t.then=function(e){var r=this,n=r._prom;return new Promise(function(o){var a=mt(e)?e:Pa,l=function(){var f=r.then;r.then=null,n&&n(),mt(a)&&(a=a(r))&&(a.then||a===r)&&(r.then=f),o(a),r.then=f};r._initted&&r.totalProgress()===1&&r._ts>=0||!r._tTime&&r._ts<0?l():r._prom=l})},t.kill=function(){zr(this)},s}();Pe(sn.prototype,{_time:0,_start:0,_end:0,_tTime:0,_tDur:0,_dirty:0,_repeat:0,_yoyo:!1,parent:null,_initted:!1,_rDelay:0,_ts:1,_dp:0,ratio:0,_zTime:-at,_prom:0,_ps:!1,_rts:1});var se=function(s){ga(t,s);function t(e,r){var n;return e===void 0&&(e={}),n=s.call(this,e)||this,n.labels={},n.smoothChildTiming=!!e.smoothChildTiming,n.autoRemoveChildren=!!e.autoRemoveChildren,n._sort=fe(e.sortChildren),dt&&qe(e.parent||dt,ri(n),r),e.reversed&&n.reverse(),e.paused&&n.paused(!0),e.scrollTrigger&&Da(ri(n),e.scrollTrigger),n}var i=t.prototype;return i.to=function(r,n,o){return Xr(0,arguments,this),this},i.from=function(r,n,o){return Xr(1,arguments,this),this},i.fromTo=function(r,n,o,a){return Xr(2,arguments,this),this},i.set=function(r,n,o){return n.duration=0,n.parent=this,Br(n).repeatDelay||(n.repeat=0),n.immediateRender=!!n.immediateRender,new kt(r,n,Me(this,o),1),this},i.call=function(r,n,o){return qe(this,kt.delayedCall(0,r,n),o)},i.staggerTo=function(r,n,o,a,l,u,f){return o.duration=n,o.stagger=o.stagger||a,o.onComplete=u,o.onCompleteParams=f,o.parent=this,new kt(r,o,Me(this,l)),this},i.staggerFrom=function(r,n,o,a,l,u,f){return o.runBackwards=1,Br(o).immediateRender=fe(o.immediateRender),this.staggerTo(r,n,o,a,l,u,f)},i.staggerFromTo=function(r,n,o,a,l,u,f,h){return a.startAt=o,Br(a).immediateRender=fe(a.immediateRender),this.staggerTo(r,n,a,l,u,f,h)},i.render=function(r,n,o){var a=this._time,l=this._dirty?this.totalDuration():this._tDur,u=this._dur,f=r<=0?0:ht(r),h=this._zTime<0!=r<0&&(this._initted||!u),d,c,_,p,m,b,S,E,y,v,T,x;if(this!==dt&&f>l&&r>=0&&(f=l),f!==this._tTime||o||h){if(a!==this._time&&u&&(f+=this._time-a,r+=this._time-a),d=f,y=this._start,E=this._ts,b=!E,h&&(u||(a=this._zTime),(r||!n)&&(this._zTime=r)),this._repeat){if(T=this._yoyo,m=u+this._rDelay,this._repeat<-1&&r<0)return this.totalTime(m*100+r,n,o);if(d=ht(f%m),f===l?(p=this._repeat,d=u):(v=ht(f/m),p=~~v,p&&p===v&&(d=u,p--),d>u&&(d=u)),v=xr(this._tTime,m),!a&&this._tTime&&v!==p&&this._tTime-v*m-this._dur<=0&&(v=p),T&&p&1&&(d=u-d,x=1),p!==v&&!this._lock){var k=T&&v&1,C=k===(T&&p&1);if(p<v&&(k=!k),a=k?0:f%u?u:f,this._lock=1,this.render(a||(x?0:ht(p*m)),n,!u)._lock=0,this._tTime=f,!n&&this.parent&&Te(this,"onRepeat"),this.vars.repeatRefresh&&!x&&(this.invalidate()._lock=1,v=p),a&&a!==this._time||b!==!this._ts||this.vars.onRepeat&&!this.parent&&!this._act)return this;if(u=this._dur,l=this._tDur,C&&(this._lock=2,a=k?u:-1e-4,this.render(a,!0),this.vars.repeatRefresh&&!x&&this.invalidate()),this._lock=0,!this._ts&&!b)return this;$a(this,x)}}if(this._hasPause&&!this._forcing&&this._lock<2&&(S=fu(this,ht(a),ht(d)),S&&(f-=d-(d=S._start))),this._tTime=f,this._time=d,this._act=!E,this._initted||(this._onUpdate=this.vars.onUpdate,this._initted=1,this._zTime=r,a=0),!a&&f&&u&&!n&&!v&&(Te(this,"onStart"),this._tTime!==f))return this;if(d>=a&&r>=0)for(c=this._first;c;){if(_=c._next,(c._act||d>=c._start)&&c._ts&&S!==c){if(c.parent!==this)return this.render(r,n,o);if(c.render(c._ts>0?(d-c._start)*c._ts:(c._dirty?c.totalDuration():c._tDur)+(d-c._start)*c._ts,n,o),d!==this._time||!this._ts&&!b){S=0,_&&(f+=this._zTime=-at);break}}c=_}else{c=this._last;for(var P=r<0?r:d;c;){if(_=c._prev,(c._act||P<=c._end)&&c._ts&&S!==c){if(c.parent!==this)return this.render(r,n,o);if(c.render(c._ts>0?(P-c._start)*c._ts:(c._dirty?c.totalDuration():c._tDur)+(P-c._start)*c._ts,n,o||Yt&&eo(c)),d!==this._time||!this._ts&&!b){S=0,_&&(f+=this._zTime=P?-at:at);break}}c=_}}if(S&&!n&&(this.pause(),S.render(d>=a?0:-at)._zTime=d>=a?1:-1,this._ts))return this._start=y,Jn(this),this.render(r,n,o);this._onUpdate&&!n&&Te(this,"onUpdate",!0),(f===l&&this._tTime>=this.totalDuration()||!f&&a)&&(y===this._start||Math.abs(E)!==Math.abs(this._ts))&&(this._lock||((r||!u)&&(f===l&&this._ts>0||!f&&this._ts<0)&&Ei(this,1),!n&&!(r<0&&!a)&&(f||a||!l)&&(Te(this,f===l&&r>=0?"onComplete":"onReverseComplete",!0),this._prom&&!(f<l&&this.timeScale()>0)&&this._prom())))}return this},i.add=function(r,n){var o=this;if(li(n)||(n=Me(this,n,r)),!(r instanceof sn)){if(Qt(r))return r.forEach(function(a){return o.add(a,n)}),this;if(Nt(r))return this.addLabel(r,n);if(mt(r))r=kt.delayedCall(0,r);else return this}return this!==r?qe(this,r,n):this},i.getChildren=function(r,n,o,a){r===void 0&&(r=!0),n===void 0&&(n=!0),o===void 0&&(o=!0),a===void 0&&(a=-Re);for(var l=[],u=this._first;u;)u._start>=a&&(u instanceof kt?n&&l.push(u):(o&&l.push(u),r&&l.push.apply(l,u.getChildren(!0,n,o)))),u=u._next;return l},i.getById=function(r){for(var n=this.getChildren(1,1,1),o=n.length;o--;)if(n[o].vars.id===r)return n[o]},i.remove=function(r){return Nt(r)?this.removeLabel(r):mt(r)?this.killTweensOf(r):(r.parent===this&&jn(this,r),r===this._recent&&(this._recent=this._last),Vi(this))},i.totalTime=function(r,n){return arguments.length?(this._forcing=1,!this._dp&&this._ts&&(this._start=ht(Se.time-(this._ts>0?r/this._ts:(this.totalDuration()-r)/-this._ts))),s.prototype.totalTime.call(this,r,n),this._forcing=0,this):this._tTime},i.addLabel=function(r,n){return this.labels[r]=Me(this,n),this},i.removeLabel=function(r){return delete this.labels[r],this},i.addPause=function(r,n,o){var a=kt.delayedCall(0,n||en,o);return a.data="isPause",this._hasPause=1,qe(this,a,Me(this,r))},i.removePause=function(r){var n=this._first;for(r=Me(this,r);n;)n._start===r&&n.data==="isPause"&&Ei(n),n=n._next},i.killTweensOf=function(r,n,o){for(var a=this.getTweensOf(r,o),l=a.length;l--;)vi!==a[l]&&a[l].kill(r,n);return this},i.getTweensOf=function(r,n){for(var o=[],a=ze(r),l=this._first,u=li(n),f;l;)l instanceof kt?ru(l._targets,a)&&(u?(!vi||l._initted&&l._ts)&&l.globalTime(0)<=n&&l.globalTime(l.totalDuration())>n:!n||l.isActive())&&o.push(l):(f=l.getTweensOf(a,n)).length&&o.push.apply(o,f),l=l._next;return o},i.tweenTo=function(r,n){n=n||{};var o=this,a=Me(o,r),l=n,u=l.startAt,f=l.onStart,h=l.onStartParams,d=l.immediateRender,c,_=kt.to(o,Pe({ease:n.ease||"none",lazy:!1,immediateRender:!1,time:a,overwrite:"auto",duration:n.duration||Math.abs((a-(u&&"time"in u?u.time:o._time))/o.timeScale())||at,onStart:function(){if(o.pause(),!c){var m=n.duration||Math.abs((a-(u&&"time"in u?u.time:o._time))/o.timeScale());_._dur!==m&&Sr(_,m,0,1).render(_._time,!0,!0),c=1}f&&f.apply(_,h||[])}},n));return d?_.render(0):_},i.tweenFromTo=function(r,n,o){return this.tweenTo(n,Pe({startAt:{time:Me(this,r)}},o))},i.recent=function(){return this._recent},i.nextLabel=function(r){return r===void 0&&(r=this._time),Eo(this,Me(this,r))},i.previousLabel=function(r){return r===void 0&&(r=this._time),Eo(this,Me(this,r),1)},i.currentLabel=function(r){return arguments.length?this.seek(r,!0):this.previousLabel(this._time+at)},i.shiftChildren=function(r,n,o){o===void 0&&(o=0);var a=this._first,l=this.labels,u;for(r=ht(r);a;)a._start>=o&&(a._start+=r,a._end+=r),a=a._next;if(n)for(u in l)l[u]>=o&&(l[u]+=r);return Vi(this)},i.invalidate=function(r){var n=this._first;for(this._lock=0;n;)n.invalidate(r),n=n._next;return s.prototype.invalidate.call(this,r)},i.clear=function(r){r===void 0&&(r=!0);for(var n=this._first,o;n;)o=n._next,this.remove(n),n=o;return this._dp&&(this._time=this._tTime=this._pTime=0),r&&(this.labels={}),Vi(this)},i.totalDuration=function(r){var n=0,o=this,a=o._last,l=Re,u,f,h;if(arguments.length)return o.timeScale((o._repeat<0?o.duration():o.totalDuration())/(o.reversed()?-r:r));if(o._dirty){for(h=o.parent;a;)u=a._prev,a._dirty&&a.totalDuration(),f=a._start,f>l&&o._sort&&a._ts&&!o._lock?(o._lock=1,qe(o,a,f-a._delay,1)._lock=0):l=f,f<0&&a._ts&&(n-=f,(!h&&!o._dp||h&&h.smoothChildTiming)&&(o._start+=ht(f/o._ts),o._time-=f,o._tTime-=f),o.shiftChildren(-f,!1,-1/0),l=0),a._end>n&&a._ts&&(n=a._end),a=u;Sr(o,o===dt&&o._time>n?o._time:n,1,1),o._dirty=0}return o._tDur},t.updateRoot=function(r){if(dt._ts&&(Ea(dt,Hn(r,dt)),Ta=Se.frame),Se.frame>=So){So+=Ee.autoSleep||120;var n=dt._first;if((!n||!n._ts)&&Ee.autoSleep&&Se._listeners.length<2){for(;n&&!n._ts;)n=n._next;n||Se.sleep()}}},t}(sn);Pe(se.prototype,{_lock:0,_hasPause:0,_forcing:0});var Eu=function(t,i,e,r,n,o,a){var l=new he(this._pt,t,i,0,1,tl,null,n),u=0,f=0,h,d,c,_,p,m,b,S;for(l.b=e,l.e=r,e+="",r+="",(b=~r.indexOf("random("))&&(r=rn(r)),o&&(S=[e,r],o(S,t,i),e=S[0],r=S[1]),d=e.match(rs)||[];h=rs.exec(r);)_=h[0],p=r.substring(u,h.index),c?c=(c+1)%5:p.substr(-5)==="rgba("&&(c=1),_!==d[f++]&&(m=parseFloat(d[f-1])||0,l._pt={_next:l._pt,p:p||f===1?p:",",s:m,c:_.charAt(1)==="="?dr(m,_)-m:parseFloat(_)-m,m:c&&c<4?Math.round:0},u=rs.lastIndex);return l.c=u<r.length?r.substring(u,r.length):"",l.fp=a,(wa.test(r)||b)&&(l.e=0),this._pt=l,l},io=function(t,i,e,r,n,o,a,l,u,f){mt(r)&&(r=r(n||0,t,o));var h=t[i],d=e!=="get"?e:mt(h)?u?t[i.indexOf("set")||!mt(t["get"+i.substr(3)])?i:"get"+i.substr(3)](u):t[i]():h,c=mt(h)?u?Du:ja:no,_;if(Nt(r)&&(~r.indexOf("random(")&&(r=rn(r)),r.charAt(1)==="="&&(_=dr(d,r)+(Gt(d)||0),(_||_===0)&&(r=_))),!f||d!==r||ks)return!isNaN(d*r)&&r!==""?(_=new he(this._pt,t,i,+d||0,r-(d||0),typeof h=="boolean"?Ru:Ja,0,c),u&&(_.fp=u),a&&_.modifier(a,this,t),this._pt=_):(!h&&!(i in t)&&Zs(i,r),Eu.call(this,t,i,d,r,c,l||Ee.stringFilter,u))},ku=function(t,i,e,r,n){if(mt(t)&&(t=Hr(t,n,i,e,r)),!Ze(t)||t.style&&t.nodeType||Qt(t)||va(t))return Nt(t)?Hr(t,n,i,e,r):t;var o={},a;for(a in t)o[a]=Hr(t[a],n,i,e,r);return o},Ka=function(t,i,e,r,n,o){var a,l,u,f;if(we[t]&&(a=new we[t]).init(n,a.rawVars?i[t]:ku(i[t],r,n,o,e),e,r,o)!==!1&&(e._pt=l=new he(e._pt,n,t,0,1,a.render,a,0,a.priority),e!==cr))for(u=e._ptLookup[e._targets.indexOf(n)],f=a._props.length;f--;)u[a._props[f]]=l;return a},vi,ks,ro=function s(t,i,e){var r=t.vars,n=r.ease,o=r.startAt,a=r.immediateRender,l=r.lazy,u=r.onUpdate,f=r.runBackwards,h=r.yoyoEase,d=r.keyframes,c=r.autoRevert,_=t._dur,p=t._startAt,m=t._targets,b=t.parent,S=b&&b.data==="nested"?b.vars.targets:m,E=t._overwrite==="auto"&&!qs,y=t.timeline,v,T,x,k,C,P,N,O,A,I,Y,W,R;if(y&&(!d||!n)&&(n="none"),t._ease=Ui(n,yr.ease),t._yEase=h?Ua(Ui(h===!0?n:h,yr.ease)):0,h&&t._yoyo&&!t._repeat&&(h=t._yEase,t._yEase=t._ease,t._ease=h),t._from=!y&&!!r.runBackwards,!y||d&&!r.stagger){if(O=m[0]?Hi(m[0]).harness:0,W=O&&r[O.prop],v=Xn(r,js),p&&(p._zTime<0&&p.progress(1),i<0&&f&&a&&!c?p.render(-1,!0):p.revert(f&&_?Dn:eu),p._lazy=0),o){if(Ei(t._startAt=kt.set(m,Pe({data:"isStart",overwrite:!1,parent:b,immediateRender:!0,lazy:!p&&fe(l),startAt:null,delay:0,onUpdate:u&&function(){return Te(t,"onUpdate")},stagger:0},o))),t._startAt._dp=0,t._startAt._sat=t,i<0&&(Yt||!a&&!c)&&t._startAt.revert(Dn),a&&_&&i<=0&&e<=0){i&&(t._zTime=i);return}}else if(f&&_&&!p){if(i&&(a=!1),x=Pe({overwrite:!1,data:"isFromStart",lazy:a&&!p&&fe(l),immediateRender:a,stagger:0,parent:b},v),W&&(x[O.prop]=W),Ei(t._startAt=kt.set(m,x)),t._startAt._dp=0,t._startAt._sat=t,i<0&&(Yt?t._startAt.revert(Dn):t._startAt.render(-1,!0)),t._zTime=i,!a)s(t._startAt,at,at);else if(!i)return}for(t._pt=t._ptCache=0,l=_&&fe(l)||l&&!_,T=0;T<m.length;T++){if(C=m[T],N=C._gsap||to(m)[T]._gsap,t._ptLookup[T]=I={},xs[N.id]&&bi.length&&Bn(),Y=S===m?T:S.indexOf(C),O&&(A=new O).init(C,W||v,t,Y,S)!==!1&&(t._pt=k=new he(t._pt,C,A.name,0,1,A.render,A,0,A.priority),A._props.forEach(function($){I[$]=k}),A.priority&&(P=1)),!O||W)for(x in v)we[x]&&(A=Ka(x,v,t,Y,C,S))?A.priority&&(P=1):I[x]=k=io.call(t,C,x,"get",v[x],Y,S,0,r.stringFilter);t._op&&t._op[T]&&t.kill(C,t._op[T]),E&&t._pt&&(vi=t,dt.killTweensOf(C,I,t.globalTime(i)),R=!t.parent,vi=0),t._pt&&l&&(xs[N.id]=1)}P&&el(t),t._onInit&&t._onInit(t)}t._onUpdate=u,t._initted=(!t._op||t._pt)&&!R,d&&i<=0&&y.render(Re,!0,!0)},Pu=function(t,i,e,r,n,o,a,l){var u=(t._pt&&t._ptCache||(t._ptCache={}))[i],f,h,d,c;if(!u)for(u=t._ptCache[i]=[],d=t._ptLookup,c=t._targets.length;c--;){if(f=d[c][i],f&&f.d&&f.d._pt)for(f=f.d._pt;f&&f.p!==i&&f.fp!==i;)f=f._next;if(!f)return ks=1,t.vars[i]="+=0",ro(t,a),ks=0,l?tn(i+" not eligible for reset"):1;u.push(f)}for(c=u.length;c--;)h=u[c],f=h._pt||h,f.s=(r||r===0)&&!n?r:f.s+(r||0)+o*f.c,f.c=e-f.s,h.e&&(h.e=xt(e)+Gt(h.e)),h.b&&(h.b=f.s+Gt(h.b))},Ou=function(t,i){var e=t[0]?Hi(t[0]).harness:0,r=e&&e.aliases,n,o,a,l;if(!r)return i;n=wr({},i);for(o in r)if(o in n)for(l=r[o].split(","),a=l.length;a--;)n[l[a]]=n[o];return n},Mu=function(t,i,e,r){var n=i.ease||r||"power1.inOut",o,a;if(Qt(i))a=e[t]||(e[t]=[]),i.forEach(function(l,u){return a.push({t:u/(i.length-1)*100,v:l,e:n})});else for(o in i)a=e[o]||(e[o]=[]),o==="ease"||a.push({t:parseFloat(t),v:i[o],e:n})},Hr=function(t,i,e,r,n){return mt(t)?t.call(i,e,r,n):Nt(t)&&~t.indexOf("random(")?rn(t):t},Qa=Js+"repeat,repeatDelay,yoyo,repeatRefresh,yoyoEase,autoRevert",Za={};ce(Qa+",id,stagger,delay,duration,paused,scrollTrigger",function(s){return Za[s]=1});var kt=function(s){ga(t,s);function t(e,r,n,o){var a;typeof r=="number"&&(n.duration=r,r=n,n=null),a=s.call(this,o?r:Br(r))||this;var l=a.vars,u=l.duration,f=l.delay,h=l.immediateRender,d=l.stagger,c=l.overwrite,_=l.keyframes,p=l.defaults,m=l.scrollTrigger,b=l.yoyoEase,S=r.parent||dt,E=(Qt(e)||va(e)?li(e[0]):"length"in r)?[e]:ze(e),y,v,T,x,k,C,P,N;if(a._targets=E.length?to(E):tn("GSAP target "+e+" not found. https://gsap.com",!Ee.nullTargetWarn)||[],a._ptLookup=[],a._overwrite=c,_||d||gn(u)||gn(f)){if(r=a.vars,y=a.timeline=new se({data:"nested",defaults:p||{},targets:S&&S.data==="nested"?S.vars.targets:E}),y.kill(),y.parent=y._dp=ri(a),y._start=0,d||gn(u)||gn(f)){if(x=E.length,P=d&&La(d),Ze(d))for(k in d)~Qa.indexOf(k)&&(N||(N={}),N[k]=d[k]);for(v=0;v<x;v++)T=Xn(r,Za),T.stagger=0,b&&(T.yoyoEase=b),N&&wr(T,N),C=E[v],T.duration=+Hr(u,ri(a),v,C,E),T.delay=(+Hr(f,ri(a),v,C,E)||0)-a._delay,!d&&x===1&&T.delay&&(a._delay=f=T.delay,a._start+=f,T.delay=0),y.to(C,T,P?P(v,C,E):0),y._ease=j.none;y.duration()?u=f=0:a.timeline=0}else if(_){Br(Pe(y.vars.defaults,{ease:"none"})),y._ease=Ui(_.ease||r.ease||"none");var O=0,A,I,Y;if(Qt(_))_.forEach(function(W){return y.to(E,W,">")}),y.duration();else{T={};for(k in _)k==="ease"||k==="easeEach"||Mu(k,_[k],T,_.easeEach);for(k in T)for(A=T[k].sort(function(W,R){return W.t-R.t}),O=0,v=0;v<A.length;v++)I=A[v],Y={ease:I.e,duration:(I.t-(v?A[v-1].t:0))/100*u},Y[k]=I.v,y.to(E,Y,O),O+=Y.duration;y.duration()<u&&y.to({},{duration:u-y.duration()})}}u||a.duration(u=y.duration())}else a.timeline=0;return c===!0&&!qs&&(vi=ri(a),dt.killTweensOf(E),vi=0),qe(S,ri(a),n),r.reversed&&a.reverse(),r.paused&&a.paused(!0),(h||!u&&!_&&a._start===ht(S._time)&&fe(h)&&au(ri(a))&&S.data!=="nested")&&(a._tTime=-at,a.render(Math.max(0,-f)||0)),m&&Da(ri(a),m),a}var i=t.prototype;return i.render=function(r,n,o){var a=this._time,l=this._tDur,u=this._dur,f=r<0,h=r>l-at&&!f?l:r<at?0:r,d,c,_,p,m,b,S,E,y;if(!u)uu(this,r,n,o);else if(h!==this._tTime||!r||o||!this._initted&&this._tTime||this._startAt&&this._zTime<0!==f||this._lazy){if(d=h,E=this.timeline,this._repeat){if(p=u+this._rDelay,this._repeat<-1&&f)return this.totalTime(p*100+r,n,o);if(d=ht(h%p),h===l?(_=this._repeat,d=u):(m=ht(h/p),_=~~m,_&&_===m?(d=u,_--):d>u&&(d=u)),b=this._yoyo&&_&1,b&&(y=this._yEase,d=u-d),m=xr(this._tTime,p),d===a&&!o&&this._initted&&_===m)return this._tTime=h,this;_!==m&&(E&&this._yEase&&$a(E,b),this.vars.repeatRefresh&&!b&&!this._lock&&d!==p&&this._initted&&(this._lock=o=1,this.render(ht(p*_),!0).invalidate()._lock=0))}if(!this._initted){if(Aa(this,f?r:d,o,n,h))return this._tTime=0,this;if(a!==this._time&&!(o&&this.vars.repeatRefresh&&_!==m))return this;if(u!==this._dur)return this.render(r,n,o)}if(this._tTime=h,this._time=d,!this._act&&this._ts&&(this._act=1,this._lazy=0),this.ratio=S=(y||this._ease)(d/u),this._from&&(this.ratio=S=1-S),!a&&h&&!n&&!m&&(Te(this,"onStart"),this._tTime!==h))return this;for(c=this._pt;c;)c.r(S,c.d),c=c._next;E&&E.render(r<0?r:E._dur*E._ease(d/this._dur),n,o)||this._startAt&&(this._zTime=r),this._onUpdate&&!n&&(f&&Ss(this,r,n,o),Te(this,"onUpdate")),this._repeat&&_!==m&&this.vars.onRepeat&&!n&&this.parent&&Te(this,"onRepeat"),(h===this._tDur||!h)&&this._tTime===h&&(f&&!this._onUpdate&&Ss(this,r,!0,!0),(r||!u)&&(h===this._tDur&&this._ts>0||!h&&this._ts<0)&&Ei(this,1),!n&&!(f&&!a)&&(h||a||b)&&(Te(this,h===l?"onComplete":"onReverseComplete",!0),this._prom&&!(h<l&&this.timeScale()>0)&&this._prom()))}return this},i.targets=function(){return this._targets},i.invalidate=function(r){return(!r||!this.vars.runBackwards)&&(this._startAt=0),this._pt=this._op=this._onUpdate=this._lazy=this.ratio=0,this._ptLookup=[],this.timeline&&this.timeline.invalidate(r),s.prototype.invalidate.call(this,r)},i.resetTo=function(r,n,o,a,l){nn||Se.wake(),this._ts||this.play();var u=Math.min(this._dur,(this._dp._time-this._start)*this._ts),f;return this._initted||ro(this,u),f=this._ease(u/this._dur),Pu(this,r,n,o,a,f,u,l)?this.resetTo(r,n,o,a,1):(ts(this,0),this.parent||Oa(this._dp,this,"_first","_last",this._dp._sort?"_start":0),this.render(0))},i.kill=function(r,n){if(n===void 0&&(n="all"),!r&&(!n||n==="all"))return this._lazy=this._pt=0,this.parent?zr(this):this.scrollTrigger&&this.scrollTrigger.kill(!!Yt),this;if(this.timeline){var o=this.timeline.totalDuration();return this.timeline.killTweensOf(r,n,vi&&vi.vars.overwrite!==!0)._first||zr(this),this.parent&&o!==this.timeline.totalDuration()&&Sr(this,this._dur*this.timeline._tDur/o,0,1),this}var a=this._targets,l=r?ze(r):a,u=this._ptLookup,f=this._pt,h,d,c,_,p,m,b;if((!n||n==="all")&&su(a,l))return n==="all"&&(this._pt=0),zr(this);for(h=this._op=this._op||[],n!=="all"&&(Nt(n)&&(p={},ce(n,function(S){return p[S]=1}),n=p),n=Ou(a,n)),b=a.length;b--;)if(~l.indexOf(a[b])){d=u[b],n==="all"?(h[b]=n,_=d,c={}):(c=h[b]=h[b]||{},_=n);for(p in _)m=d&&d[p],m&&((!("kill"in m.d)||m.d.kill(p)===!0)&&jn(this,m,"_pt"),delete d[p]),c!=="all"&&(c[p]=1)}return this._initted&&!this._pt&&f&&zr(this),this},t.to=function(r,n){return new t(r,n,arguments[2])},t.from=function(r,n){return Xr(1,arguments)},t.delayedCall=function(r,n,o,a){return new t(n,0,{immediateRender:!1,lazy:!1,overwrite:!1,delay:r,onComplete:n,onReverseComplete:n,onCompleteParams:o,onReverseCompleteParams:o,callbackScope:a})},t.fromTo=function(r,n,o){return Xr(2,arguments)},t.set=function(r,n){return n.duration=0,n.repeatDelay||(n.repeat=0),new t(r,n)},t.killTweensOf=function(r,n,o){return dt.killTweensOf(r,n,o)},t}(sn);Pe(kt.prototype,{_targets:[],_lazy:0,_startAt:0,_op:0,_onInit:0});ce("staggerTo,staggerFrom,staggerFromTo",function(s){kt[s]=function(){var t=new se,i=Ts.call(arguments,0);return i.splice(s==="staggerFromTo"?5:4,0,0),t[s].apply(t,i)}});var no=function(t,i,e){return t[i]=e},ja=function(t,i,e){return t[i](e)},Du=function(t,i,e,r){return t[i](r.fp,e)},Au=function(t,i,e){return t.setAttribute(i,e)},so=function(t,i){return mt(t[i])?ja:Gs(t[i])&&t.setAttribute?Au:no},Ja=function(t,i){return i.set(i.t,i.p,Math.round((i.s+i.c*t)*1e6)/1e6,i)},Ru=function(t,i){return i.set(i.t,i.p,!!(i.s+i.c*t),i)},tl=function(t,i){var e=i._pt,r="";if(!t&&i.b)r=i.b;else if(t===1&&i.e)r=i.e;else{for(;e;)r=e.p+(e.m?e.m(e.s+e.c*t):Math.round((e.s+e.c*t)*1e4)/1e4)+r,e=e._next;r+=i.c}i.set(i.t,i.p,r,i)},oo=function(t,i){for(var e=i._pt;e;)e.r(t,e.d),e=e._next},zu=function(t,i,e,r){for(var n=this._pt,o;n;)o=n._next,n.p===r&&n.modifier(t,i,e),n=o},Lu=function(t){for(var i=this._pt,e,r;i;)r=i._next,i.p===t&&!i.op||i.op===t?jn(this,i,"_pt"):i.dep||(e=1),i=r;return!e},Nu=function(t,i,e,r){r.mSet(t,i,r.m.call(r.tween,e,r.mt),r)},el=function(t){for(var i=t._pt,e,r,n,o;i;){for(e=i._next,r=n;r&&r.pr>i.pr;)r=r._next;(i._prev=r?r._prev:o)?i._prev._next=i:n=i,(i._next=r)?r._prev=i:o=i,i=e}t._pt=n},he=function(){function s(i,e,r,n,o,a,l,u,f){this.t=e,this.s=n,this.c=o,this.p=r,this.r=a||Ja,this.d=l||this,this.set=u||no,this.pr=f||0,this._next=i,i&&(i._prev=this)}var t=s.prototype;return t.modifier=function(e,r,n){this.mSet=this.mSet||this.set,this.set=Nu,this.m=e,this.mt=n,this.tween=r},s}();ce(Js+"parent,duration,ease,delay,overwrite,runBackwards,startAt,yoyo,immediateRender,repeat,repeatDelay,data,paused,reversed,lazy,callbackScope,stringFilter,id,yoyoEase,stagger,inherit,repeatRefresh,keyframes,autoRevert,scrollTrigger",function(s){return js[s]=1});ke.TweenMax=ke.TweenLite=kt;ke.TimelineLite=ke.TimelineMax=se;dt=new se({sortChildren:!1,defaults:yr,autoRemoveChildren:!0,id:"root",smoothChildTiming:!0});Ee.stringFilter=Va;var $i=[],Rn={},Fu=[],Po=0,Iu=0,ls=function(t){return(Rn[t]||Fu).map(function(i){return i()})},Ps=function(){var t=Date.now(),i=[];t-Po>2&&(ls("matchMediaInit"),$i.forEach(function(e){var r=e.queries,n=e.conditions,o,a,l,u;for(a in r)o=Ue.matchMedia(r[a]).matches,o&&(l=1),o!==n[a]&&(n[a]=o,u=1);u&&(e.revert(),l&&i.push(e))}),ls("matchMediaRevert"),i.forEach(function(e){return e.onMatch(e,function(r){return e.add(null,r)})}),Po=t,ls("matchMedia"))},il=function(){function s(i,e){this.selector=e&&Cs(e),this.data=[],this._r=[],this.isReverted=!1,this.id=Iu++,i&&this.add(i)}var t=s.prototype;return t.add=function(e,r,n){mt(e)&&(n=r,r=e,e=mt);var o=this,a=function(){var u=ft,f=o.selector,h;return u&&u!==o&&u.data.push(o),n&&(o.selector=Cs(n)),ft=o,h=r.apply(o,arguments),mt(h)&&o._r.push(h),ft=u,o.selector=f,o.isReverted=!1,h};return o.last=a,e===mt?a(o,function(l){return o.add(null,l)}):e?o[e]=a:a},t.ignore=function(e){var r=ft;ft=null,e(this),ft=r},t.getTweens=function(){var e=[];return this.data.forEach(function(r){return r instanceof s?e.push.apply(e,r.getTweens()):r instanceof kt&&!(r.parent&&r.parent.data==="nested")&&e.push(r)}),e},t.clear=function(){this._r.length=this.data.length=0},t.kill=function(e,r){var n=this;if(e?function(){for(var a=n.getTweens(),l=n.data.length,u;l--;)u=n.data[l],u.data==="isFlip"&&(u.revert(),u.getChildren(!0,!0,!1).forEach(function(f){return a.splice(a.indexOf(f),1)}));for(a.map(function(f){return{g:f._dur||f._delay||f._sat&&!f._sat.vars.immediateRender?f.globalTime(0):-1/0,t:f}}).sort(function(f,h){return h.g-f.g||-1/0}).forEach(function(f){return f.t.revert(e)}),l=n.data.length;l--;)u=n.data[l],u instanceof se?u.data!=="nested"&&(u.scrollTrigger&&u.scrollTrigger.revert(),u.kill()):!(u instanceof kt)&&u.revert&&u.revert(e);n._r.forEach(function(f){return f(e,n)}),n.isReverted=!0}():this.data.forEach(function(a){return a.kill&&a.kill()}),this.clear(),r)for(var o=$i.length;o--;)$i[o].id===this.id&&$i.splice(o,1)},t.revert=function(e){this.kill(e||{})},s}(),Wu=function(){function s(i){this.contexts=[],this.scope=i,ft&&ft.data.push(this)}var t=s.prototype;return t.add=function(e,r,n){Ze(e)||(e={matches:e});var o=new il(0,n||this.scope),a=o.conditions={},l,u,f;ft&&!o.selector&&(o.selector=ft.selector),this.contexts.push(o),r=o.add("onMatch",r),o.queries=e;for(u in e)u==="all"?f=1:(l=Ue.matchMedia(e[u]),l&&($i.indexOf(o)<0&&$i.push(o),(a[u]=l.matches)&&(f=1),l.addListener?l.addListener(Ps):l.addEventListener("change",Ps)));return f&&r(o,function(h){return o.add(null,h)}),this},t.revert=function(e){this.kill(e||{})},t.kill=function(e){this.contexts.forEach(function(r){return r.kill(e,!0)})},s}(),Vn={registerPlugin:function(){for(var t=arguments.length,i=new Array(t),e=0;e<t;e++)i[e]=arguments[e];i.forEach(function(r){return Ba(r)})},timeline:function(t){return new se(t)},getTweensOf:function(t,i){return dt.getTweensOf(t,i)},getProperty:function(t,i,e,r){Nt(t)&&(t=ze(t)[0]);var n=Hi(t||{}).get,o=e?Pa:ka;return e==="native"&&(e=""),t&&(i?o((we[i]&&we[i].get||n)(t,i,e,r)):function(a,l,u){return o((we[a]&&we[a].get||n)(t,a,l,u))})},quickSetter:function(t,i,e){if(t=ze(t),t.length>1){var r=t.map(function(f){return pe.quickSetter(f,i,e)}),n=r.length;return function(f){for(var h=n;h--;)r[h](f)}}t=t[0]||{};var o=we[i],a=Hi(t),l=a.harness&&(a.harness.aliases||{})[i]||i,u=o?function(f){var h=new o;cr._pt=0,h.init(t,e?f+e:f,cr,0,[t]),h.render(1,h),cr._pt&&oo(1,cr)}:a.set(t,l);return o?u:function(f){return u(t,l,e?f+e:f,a,1)}},quickTo:function(t,i,e){var r,n=pe.to(t,Pe((r={},r[i]="+=0.1",r.paused=!0,r.stagger=0,r),e||{})),o=function(l,u,f){return n.resetTo(i,l,u,f)};return o.tween=n,o},isTweening:function(t){return dt.getTweensOf(t,!0).length>0},defaults:function(t){return t&&t.ease&&(t.ease=Ui(t.ease,yr.ease)),bo(yr,t||{})},config:function(t){return bo(Ee,t||{})},registerEffect:function(t){var i=t.name,e=t.effect,r=t.plugins,n=t.defaults,o=t.extendTimeline;(r||"").split(",").forEach(function(a){return a&&!we[a]&&!ke[a]&&tn(i+" effect requires "+a+" plugin.")}),ns[i]=function(a,l,u){return e(ze(a),Pe(l||{},n),u)},o&&(se.prototype[i]=function(a,l,u){return this.add(ns[i](a,Ze(l)?l:(u=l)&&{},this),u)})},registerEase:function(t,i){j[t]=Ui(i)},parseEase:function(t,i){return arguments.length?Ui(t,i):j},getById:function(t){return dt.getById(t)},exportRoot:function(t,i){t===void 0&&(t={});var e=new se(t),r,n;for(e.smoothChildTiming=fe(t.smoothChildTiming),dt.remove(e),e._dp=0,e._time=e._tTime=dt._time,r=dt._first;r;)n=r._next,(i||!(!r._dur&&r instanceof kt&&r.vars.onComplete===r._targets[0]))&&qe(e,r,r._start-r._delay),r=n;return qe(dt,e,0),e},context:function(t,i){return t?new il(t,i):ft},matchMedia:function(t){return new Wu(t)},matchMediaRefresh:function(){return $i.forEach(function(t){var i=t.conditions,e,r;for(r in i)i[r]&&(i[r]=!1,e=1);e&&t.revert()})||Ps()},addEventListener:function(t,i){var e=Rn[t]||(Rn[t]=[]);~e.indexOf(i)||e.push(i)},removeEventListener:function(t,i){var e=Rn[t],r=e&&e.indexOf(i);r>=0&&e.splice(r,1)},utils:{wrap:mu,wrapYoyo:vu,distribute:La,random:Fa,snap:Na,normalize:gu,getUnit:Gt,clamp:hu,splitColor:Xa,toArray:ze,selector:Cs,mapRange:Wa,pipe:pu,unitize:_u,interpolate:yu,shuffle:za},install:Sa,effects:ns,ticker:Se,updateRoot:se.updateRoot,plugins:we,globalTimeline:dt,core:{PropTween:he,globals:ba,Tween:kt,Timeline:se,Animation:sn,getCache:Hi,_removeLinkedListItem:jn,reverting:function(){return Yt},context:function(t){return t&&ft&&(ft.data.push(t),t._ctx=ft),ft},suppressOverwrites:function(t){return qs=t}}};ce("to,from,fromTo,delayedCall,set,killTweensOf",function(s){return Vn[s]=kt[s]});Se.add(se.updateRoot);cr=Vn.to({},{duration:0});var Yu=function(t,i){for(var e=t._pt;e&&e.p!==i&&e.op!==i&&e.fp!==i;)e=e._next;return e},Bu=function(t,i){var e=t._targets,r,n,o;for(r in i)for(n=e.length;n--;)o=t._ptLookup[n][r],o&&(o=o.d)&&(o._pt&&(o=Yu(o,r)),o&&o.modifier&&o.modifier(i[r],t,e[n],r))},us=function(t,i){return{name:t,headless:1,rawVars:1,init:function(r,n,o){o._onInit=function(a){var l,u;if(Nt(n)&&(l={},ce(n,function(f){return l[f]=1}),n=l),i){l={};for(u in n)l[u]=i(n[u]);n=l}Bu(a,n)}}}},pe=Vn.registerPlugin({name:"attr",init:function(t,i,e,r,n){var o,a,l;this.tween=e;for(o in i)l=t.getAttribute(o)||"",a=this.add(t,"setAttribute",(l||0)+"",i[o],r,n,0,0,o),a.op=o,a.b=l,this._props.push(o)},render:function(t,i){for(var e=i._pt;e;)Yt?e.set(e.t,e.p,e.b,e):e.r(t,e.d),e=e._next}},{name:"endArray",headless:1,init:function(t,i){for(var e=i.length;e--;)this.add(t,e,t[e]||0,i[e],0,0,0,0,0,1)}},us("roundProps",Es),us("modifiers"),us("snap",Na))||Vn;kt.version=se.version=pe.version="3.14.2";xa=1;Ks()&&br();j.Power0;j.Power1;j.Power2;j.Power3;j.Power4;j.Linear;j.Quad;j.Cubic;j.Quart;j.Quint;j.Strong;j.Elastic;j.Back;j.SteppedEase;j.Bounce;j.Sine;j.Expo;j.Circ;/*!
|
|
9
|
+
* CSSPlugin 3.14.2
|
|
10
|
+
* https://gsap.com
|
|
11
|
+
*
|
|
12
|
+
* Copyright 2008-2025, GreenSock. All rights reserved.
|
|
13
|
+
* Subject to the terms at https://gsap.com/standard-license
|
|
14
|
+
* @author: Jack Doyle, jack@greensock.com
|
|
15
|
+
*/var Oo,yi,pr,ao,Bi,Mo,lo,Xu=function(){return typeof window<"u"},ui={},Ii=180/Math.PI,_r=Math.PI/180,rr=Math.atan2,Do=1e8,uo=/([A-Z])/g,Hu=/(left|right|width|margin|padding|x)/i,Vu=/[\s,\(]\S/,Ge={autoAlpha:"opacity,visibility",scale:"scaleX,scaleY",alpha:"opacity"},Os=function(t,i){return i.set(i.t,i.p,Math.round((i.s+i.c*t)*1e4)/1e4+i.u,i)},Uu=function(t,i){return i.set(i.t,i.p,t===1?i.e:Math.round((i.s+i.c*t)*1e4)/1e4+i.u,i)},$u=function(t,i){return i.set(i.t,i.p,t?Math.round((i.s+i.c*t)*1e4)/1e4+i.u:i.b,i)},qu=function(t,i){return i.set(i.t,i.p,t===1?i.e:t?Math.round((i.s+i.c*t)*1e4)/1e4+i.u:i.b,i)},Gu=function(t,i){var e=i.s+i.c*t;i.set(i.t,i.p,~~(e+(e<0?-.5:.5))+i.u,i)},rl=function(t,i){return i.set(i.t,i.p,t?i.e:i.b,i)},nl=function(t,i){return i.set(i.t,i.p,t!==1?i.b:i.e,i)},Ku=function(t,i,e){return t.style[i]=e},Qu=function(t,i,e){return t.style.setProperty(i,e)},Zu=function(t,i,e){return t._gsap[i]=e},ju=function(t,i,e){return t._gsap.scaleX=t._gsap.scaleY=e},Ju=function(t,i,e,r,n){var o=t._gsap;o.scaleX=o.scaleY=e,o.renderTransform(n,o)},tf=function(t,i,e,r,n){var o=t._gsap;o[i]=e,o.renderTransform(n,o)},pt="transform",de=pt+"Origin",ef=function s(t,i){var e=this,r=this.target,n=r.style,o=r._gsap;if(t in ui&&n){if(this.tfm=this.tfm||{},t!=="transform")t=Ge[t]||t,~t.indexOf(",")?t.split(",").forEach(function(a){return e.tfm[a]=ni(r,a)}):this.tfm[t]=o.x?o[t]:ni(r,t),t===de&&(this.tfm.zOrigin=o.zOrigin);else return Ge.transform.split(",").forEach(function(a){return s.call(e,a,i)});if(this.props.indexOf(pt)>=0)return;o.svg&&(this.svgo=r.getAttribute("data-svg-origin"),this.props.push(de,i,"")),t=pt}(n||i)&&this.props.push(t,i,n[t])},sl=function(t){t.translate&&(t.removeProperty("translate"),t.removeProperty("scale"),t.removeProperty("rotate"))},rf=function(){var t=this.props,i=this.target,e=i.style,r=i._gsap,n,o;for(n=0;n<t.length;n+=3)t[n+1]?t[n+1]===2?i[t[n]](t[n+2]):i[t[n]]=t[n+2]:t[n+2]?e[t[n]]=t[n+2]:e.removeProperty(t[n].substr(0,2)==="--"?t[n]:t[n].replace(uo,"-$1").toLowerCase());if(this.tfm){for(o in this.tfm)r[o]=this.tfm[o];r.svg&&(r.renderTransform(),i.setAttribute("data-svg-origin",this.svgo||"")),n=lo(),(!n||!n.isStart)&&!e[pt]&&(sl(e),r.zOrigin&&e[de]&&(e[de]+=" "+r.zOrigin+"px",r.zOrigin=0,r.renderTransform()),r.uncache=1)}},ol=function(t,i){var e={target:t,props:[],revert:rf,save:ef};return t._gsap||pe.core.getCache(t),i&&t.style&&t.nodeType&&i.split(",").forEach(function(r){return e.save(r)}),e},al,Ms=function(t,i){var e=yi.createElementNS?yi.createElementNS((i||"http://www.w3.org/1999/xhtml").replace(/^https/,"http"),t):yi.createElement(t);return e&&e.style?e:yi.createElement(t)},Ce=function s(t,i,e){var r=getComputedStyle(t);return r[i]||r.getPropertyValue(i.replace(uo,"-$1").toLowerCase())||r.getPropertyValue(i)||!e&&s(t,Tr(i)||i,1)||""},Ao="O,Moz,ms,Ms,Webkit".split(","),Tr=function(t,i,e){var r=i||Bi,n=r.style,o=5;if(t in n&&!e)return t;for(t=t.charAt(0).toUpperCase()+t.substr(1);o--&&!(Ao[o]+t in n););return o<0?null:(o===3?"ms":o>=0?Ao[o]:"")+t},Ds=function(){Xu()&&window.document&&(Oo=window,yi=Oo.document,pr=yi.documentElement,Bi=Ms("div")||{style:{}},Ms("div"),pt=Tr(pt),de=pt+"Origin",Bi.style.cssText="border-width:0;line-height:0;position:absolute;padding:0",al=!!Tr("perspective"),lo=pe.core.reverting,ao=1)},Ro=function(t){var i=t.ownerSVGElement,e=Ms("svg",i&&i.getAttribute("xmlns")||"http://www.w3.org/2000/svg"),r=t.cloneNode(!0),n;r.style.display="block",e.appendChild(r),pr.appendChild(e);try{n=r.getBBox()}catch{}return e.removeChild(r),pr.removeChild(e),n},zo=function(t,i){for(var e=i.length;e--;)if(t.hasAttribute(i[e]))return t.getAttribute(i[e])},ll=function(t){var i,e;try{i=t.getBBox()}catch{i=Ro(t),e=1}return i&&(i.width||i.height)||e||(i=Ro(t)),i&&!i.width&&!i.x&&!i.y?{x:+zo(t,["x","cx","x1"])||0,y:+zo(t,["y","cy","y1"])||0,width:0,height:0}:i},ul=function(t){return!!(t.getCTM&&(!t.parentNode||t.ownerSVGElement)&&ll(t))},ki=function(t,i){if(i){var e=t.style,r;i in ui&&i!==de&&(i=pt),e.removeProperty?(r=i.substr(0,2),(r==="ms"||i.substr(0,6)==="webkit")&&(i="-"+i),e.removeProperty(r==="--"?i:i.replace(uo,"-$1").toLowerCase())):e.removeAttribute(i)}},wi=function(t,i,e,r,n,o){var a=new he(t._pt,i,e,0,1,o?nl:rl);return t._pt=a,a.b=r,a.e=n,t._props.push(e),a},Lo={deg:1,rad:1,turn:1},nf={grid:1,flex:1},Pi=function s(t,i,e,r){var n=parseFloat(e)||0,o=(e+"").trim().substr((n+"").length)||"px",a=Bi.style,l=Hu.test(i),u=t.tagName.toLowerCase()==="svg",f=(u?"client":"offset")+(l?"Width":"Height"),h=100,d=r==="px",c=r==="%",_,p,m,b;if(r===o||!n||Lo[r]||Lo[o])return n;if(o!=="px"&&!d&&(n=s(t,i,e,"px")),b=t.getCTM&&ul(t),(c||o==="%")&&(ui[i]||~i.indexOf("adius")))return _=b?t.getBBox()[l?"width":"height"]:t[f],xt(c?n/_*h:n/100*_);if(a[l?"width":"height"]=h+(d?o:r),p=r!=="rem"&&~i.indexOf("adius")||r==="em"&&t.appendChild&&!u?t:t.parentNode,b&&(p=(t.ownerSVGElement||{}).parentNode),(!p||p===yi||!p.appendChild)&&(p=yi.body),m=p._gsap,m&&c&&m.width&&l&&m.time===Se.time&&!m.uncache)return xt(n/m.width*h);if(c&&(i==="height"||i==="width")){var S=t.style[i];t.style[i]=h+r,_=t[f],S?t.style[i]=S:ki(t,i)}else(c||o==="%")&&!nf[Ce(p,"display")]&&(a.position=Ce(t,"position")),p===t&&(a.position="static"),p.appendChild(Bi),_=Bi[f],p.removeChild(Bi),a.position="absolute";return l&&c&&(m=Hi(p),m.time=Se.time,m.width=p[f]),xt(d?_*n/h:_&&n?h/_*n:0)},ni=function(t,i,e,r){var n;return ao||Ds(),i in Ge&&i!=="transform"&&(i=Ge[i],~i.indexOf(",")&&(i=i.split(",")[0])),ui[i]&&i!=="transform"?(n=an(t,r),n=i!=="transformOrigin"?n[i]:n.svg?n.origin:$n(Ce(t,de))+" "+n.zOrigin+"px"):(n=t.style[i],(!n||n==="auto"||r||~(n+"").indexOf("calc("))&&(n=Un[i]&&Un[i](t,i,e)||Ce(t,i)||Ca(t,i)||(i==="opacity"?1:0))),e&&!~(n+"").trim().indexOf(" ")?Pi(t,i,n,e)+e:n},sf=function(t,i,e,r){if(!e||e==="none"){var n=Tr(i,t,1),o=n&&Ce(t,n,1);o&&o!==e?(i=n,e=o):i==="borderColor"&&(e=Ce(t,"borderTopColor"))}var a=new he(this._pt,t.style,i,0,1,tl),l=0,u=0,f,h,d,c,_,p,m,b,S,E,y,v;if(a.b=e,a.e=r,e+="",r+="",r.substring(0,6)==="var(--"&&(r=Ce(t,r.substring(4,r.indexOf(")")))),r==="auto"&&(p=t.style[i],t.style[i]=r,r=Ce(t,i)||r,p?t.style[i]=p:ki(t,i)),f=[e,r],Va(f),e=f[0],r=f[1],d=e.match(fr)||[],v=r.match(fr)||[],v.length){for(;h=fr.exec(r);)m=h[0],S=r.substring(l,h.index),_?_=(_+1)%5:(S.substr(-5)==="rgba("||S.substr(-5)==="hsla(")&&(_=1),m!==(p=d[u++]||"")&&(c=parseFloat(p)||0,y=p.substr((c+"").length),m.charAt(1)==="="&&(m=dr(c,m)+y),b=parseFloat(m),E=m.substr((b+"").length),l=fr.lastIndex-E.length,E||(E=E||Ee.units[i]||y,l===r.length&&(r+=E,a.e+=E)),y!==E&&(c=Pi(t,i,p,E)||0),a._pt={_next:a._pt,p:S||u===1?S:",",s:c,c:b-c,m:_&&_<4||i==="zIndex"?Math.round:0});a.c=l<r.length?r.substring(l,r.length):""}else a.r=i==="display"&&r==="none"?nl:rl;return wa.test(r)&&(a.e=0),this._pt=a,a},No={top:"0%",bottom:"100%",left:"0%",right:"100%",center:"50%"},of=function(t){var i=t.split(" "),e=i[0],r=i[1]||"50%";return(e==="top"||e==="bottom"||r==="left"||r==="right")&&(t=e,e=r,r=t),i[0]=No[e]||e,i[1]=No[r]||r,i.join(" ")},af=function(t,i){if(i.tween&&i.tween._time===i.tween._dur){var e=i.t,r=e.style,n=i.u,o=e._gsap,a,l,u;if(n==="all"||n===!0)r.cssText="",l=1;else for(n=n.split(","),u=n.length;--u>-1;)a=n[u],ui[a]&&(l=1,a=a==="transformOrigin"?de:pt),ki(e,a);l&&(ki(e,pt),o&&(o.svg&&e.removeAttribute("transform"),r.scale=r.rotate=r.translate="none",an(e,1),o.uncache=1,sl(r)))}},Un={clearProps:function(t,i,e,r,n){if(n.data!=="isFromStart"){var o=t._pt=new he(t._pt,i,e,0,0,af);return o.u=r,o.pr=-10,o.tween=n,t._props.push(e),1}}},on=[1,0,0,1,0,0],fl={},cl=function(t){return t==="matrix(1, 0, 0, 1, 0, 0)"||t==="none"||!t},Fo=function(t){var i=Ce(t,pt);return cl(i)?on:i.substr(7).match(ya).map(xt)},fo=function(t,i){var e=t._gsap||Hi(t),r=t.style,n=Fo(t),o,a,l,u;return e.svg&&t.getAttribute("transform")?(l=t.transform.baseVal.consolidate().matrix,n=[l.a,l.b,l.c,l.d,l.e,l.f],n.join(",")==="1,0,0,1,0,0"?on:n):(n===on&&!t.offsetParent&&t!==pr&&!e.svg&&(l=r.display,r.display="block",o=t.parentNode,(!o||!t.offsetParent&&!t.getBoundingClientRect().width)&&(u=1,a=t.nextElementSibling,pr.appendChild(t)),n=Fo(t),l?r.display=l:ki(t,"display"),u&&(a?o.insertBefore(t,a):o?o.appendChild(t):pr.removeChild(t))),i&&n.length>6?[n[0],n[1],n[4],n[5],n[12],n[13]]:n)},As=function(t,i,e,r,n,o){var a=t._gsap,l=n||fo(t,!0),u=a.xOrigin||0,f=a.yOrigin||0,h=a.xOffset||0,d=a.yOffset||0,c=l[0],_=l[1],p=l[2],m=l[3],b=l[4],S=l[5],E=i.split(" "),y=parseFloat(E[0])||0,v=parseFloat(E[1])||0,T,x,k,C;e?l!==on&&(x=c*m-_*p)&&(k=y*(m/x)+v*(-p/x)+(p*S-m*b)/x,C=y*(-_/x)+v*(c/x)-(c*S-_*b)/x,y=k,v=C):(T=ll(t),y=T.x+(~E[0].indexOf("%")?y/100*T.width:y),v=T.y+(~(E[1]||E[0]).indexOf("%")?v/100*T.height:v)),r||r!==!1&&a.smooth?(b=y-u,S=v-f,a.xOffset=h+(b*c+S*p)-b,a.yOffset=d+(b*_+S*m)-S):a.xOffset=a.yOffset=0,a.xOrigin=y,a.yOrigin=v,a.smooth=!!r,a.origin=i,a.originIsAbsolute=!!e,t.style[de]="0px 0px",o&&(wi(o,a,"xOrigin",u,y),wi(o,a,"yOrigin",f,v),wi(o,a,"xOffset",h,a.xOffset),wi(o,a,"yOffset",d,a.yOffset)),t.setAttribute("data-svg-origin",y+" "+v)},an=function(t,i){var e=t._gsap||new Ga(t);if("x"in e&&!i&&!e.uncache)return e;var r=t.style,n=e.scaleX<0,o="px",a="deg",l=getComputedStyle(t),u=Ce(t,de)||"0",f,h,d,c,_,p,m,b,S,E,y,v,T,x,k,C,P,N,O,A,I,Y,W,R,$,H,g,J,nt,Dt,rt,bt;return f=h=d=p=m=b=S=E=y=0,c=_=1,e.svg=!!(t.getCTM&&ul(t)),l.translate&&((l.translate!=="none"||l.scale!=="none"||l.rotate!=="none")&&(r[pt]=(l.translate!=="none"?"translate3d("+(l.translate+" 0 0").split(" ").slice(0,3).join(", ")+") ":"")+(l.rotate!=="none"?"rotate("+l.rotate+") ":"")+(l.scale!=="none"?"scale("+l.scale.split(" ").join(",")+") ":"")+(l[pt]!=="none"?l[pt]:"")),r.scale=r.rotate=r.translate="none"),x=fo(t,e.svg),e.svg&&(e.uncache?($=t.getBBox(),u=e.xOrigin-$.x+"px "+(e.yOrigin-$.y)+"px",R=""):R=!i&&t.getAttribute("data-svg-origin"),As(t,R||u,!!R||e.originIsAbsolute,e.smooth!==!1,x)),v=e.xOrigin||0,T=e.yOrigin||0,x!==on&&(N=x[0],O=x[1],A=x[2],I=x[3],f=Y=x[4],h=W=x[5],x.length===6?(c=Math.sqrt(N*N+O*O),_=Math.sqrt(I*I+A*A),p=N||O?rr(O,N)*Ii:0,S=A||I?rr(A,I)*Ii+p:0,S&&(_*=Math.abs(Math.cos(S*_r))),e.svg&&(f-=v-(v*N+T*A),h-=T-(v*O+T*I))):(bt=x[6],Dt=x[7],g=x[8],J=x[9],nt=x[10],rt=x[11],f=x[12],h=x[13],d=x[14],k=rr(bt,nt),m=k*Ii,k&&(C=Math.cos(-k),P=Math.sin(-k),R=Y*C+g*P,$=W*C+J*P,H=bt*C+nt*P,g=Y*-P+g*C,J=W*-P+J*C,nt=bt*-P+nt*C,rt=Dt*-P+rt*C,Y=R,W=$,bt=H),k=rr(-A,nt),b=k*Ii,k&&(C=Math.cos(-k),P=Math.sin(-k),R=N*C-g*P,$=O*C-J*P,H=A*C-nt*P,rt=I*P+rt*C,N=R,O=$,A=H),k=rr(O,N),p=k*Ii,k&&(C=Math.cos(k),P=Math.sin(k),R=N*C+O*P,$=Y*C+W*P,O=O*C-N*P,W=W*C-Y*P,N=R,Y=$),m&&Math.abs(m)+Math.abs(p)>359.9&&(m=p=0,b=180-b),c=xt(Math.sqrt(N*N+O*O+A*A)),_=xt(Math.sqrt(W*W+bt*bt)),k=rr(Y,W),S=Math.abs(k)>2e-4?k*Ii:0,y=rt?1/(rt<0?-rt:rt):0),e.svg&&(R=t.getAttribute("transform"),e.forceCSS=t.setAttribute("transform","")||!cl(Ce(t,pt)),R&&t.setAttribute("transform",R))),Math.abs(S)>90&&Math.abs(S)<270&&(n?(c*=-1,S+=p<=0?180:-180,p+=p<=0?180:-180):(_*=-1,S+=S<=0?180:-180)),i=i||e.uncache,e.x=f-((e.xPercent=f&&(!i&&e.xPercent||(Math.round(t.offsetWidth/2)===Math.round(-f)?-50:0)))?t.offsetWidth*e.xPercent/100:0)+o,e.y=h-((e.yPercent=h&&(!i&&e.yPercent||(Math.round(t.offsetHeight/2)===Math.round(-h)?-50:0)))?t.offsetHeight*e.yPercent/100:0)+o,e.z=d+o,e.scaleX=xt(c),e.scaleY=xt(_),e.rotation=xt(p)+a,e.rotationX=xt(m)+a,e.rotationY=xt(b)+a,e.skewX=S+a,e.skewY=E+a,e.transformPerspective=y+o,(e.zOrigin=parseFloat(u.split(" ")[2])||!i&&e.zOrigin||0)&&(r[de]=$n(u)),e.xOffset=e.yOffset=0,e.force3D=Ee.force3D,e.renderTransform=e.svg?uf:al?hl:lf,e.uncache=0,e},$n=function(t){return(t=t.split(" "))[0]+" "+t[1]},fs=function(t,i,e){var r=Gt(i);return xt(parseFloat(i)+parseFloat(Pi(t,"x",e+"px",r)))+r},lf=function(t,i){i.z="0px",i.rotationY=i.rotationX="0deg",i.force3D=0,hl(t,i)},Ni="0deg",Mr="0px",Fi=") ",hl=function(t,i){var e=i||this,r=e.xPercent,n=e.yPercent,o=e.x,a=e.y,l=e.z,u=e.rotation,f=e.rotationY,h=e.rotationX,d=e.skewX,c=e.skewY,_=e.scaleX,p=e.scaleY,m=e.transformPerspective,b=e.force3D,S=e.target,E=e.zOrigin,y="",v=b==="auto"&&t&&t!==1||b===!0;if(E&&(h!==Ni||f!==Ni)){var T=parseFloat(f)*_r,x=Math.sin(T),k=Math.cos(T),C;T=parseFloat(h)*_r,C=Math.cos(T),o=fs(S,o,x*C*-E),a=fs(S,a,-Math.sin(T)*-E),l=fs(S,l,k*C*-E+E)}m!==Mr&&(y+="perspective("+m+Fi),(r||n)&&(y+="translate("+r+"%, "+n+"%) "),(v||o!==Mr||a!==Mr||l!==Mr)&&(y+=l!==Mr||v?"translate3d("+o+", "+a+", "+l+") ":"translate("+o+", "+a+Fi),u!==Ni&&(y+="rotate("+u+Fi),f!==Ni&&(y+="rotateY("+f+Fi),h!==Ni&&(y+="rotateX("+h+Fi),(d!==Ni||c!==Ni)&&(y+="skew("+d+", "+c+Fi),(_!==1||p!==1)&&(y+="scale("+_+", "+p+Fi),S.style[pt]=y||"translate(0, 0)"},uf=function(t,i){var e=i||this,r=e.xPercent,n=e.yPercent,o=e.x,a=e.y,l=e.rotation,u=e.skewX,f=e.skewY,h=e.scaleX,d=e.scaleY,c=e.target,_=e.xOrigin,p=e.yOrigin,m=e.xOffset,b=e.yOffset,S=e.forceCSS,E=parseFloat(o),y=parseFloat(a),v,T,x,k,C;l=parseFloat(l),u=parseFloat(u),f=parseFloat(f),f&&(f=parseFloat(f),u+=f,l+=f),l||u?(l*=_r,u*=_r,v=Math.cos(l)*h,T=Math.sin(l)*h,x=Math.sin(l-u)*-d,k=Math.cos(l-u)*d,u&&(f*=_r,C=Math.tan(u-f),C=Math.sqrt(1+C*C),x*=C,k*=C,f&&(C=Math.tan(f),C=Math.sqrt(1+C*C),v*=C,T*=C)),v=xt(v),T=xt(T),x=xt(x),k=xt(k)):(v=h,k=d,T=x=0),(E&&!~(o+"").indexOf("px")||y&&!~(a+"").indexOf("px"))&&(E=Pi(c,"x",o,"px"),y=Pi(c,"y",a,"px")),(_||p||m||b)&&(E=xt(E+_-(_*v+p*x)+m),y=xt(y+p-(_*T+p*k)+b)),(r||n)&&(C=c.getBBox(),E=xt(E+r/100*C.width),y=xt(y+n/100*C.height)),C="matrix("+v+","+T+","+x+","+k+","+E+","+y+")",c.setAttribute("transform",C),S&&(c.style[pt]=C)},ff=function(t,i,e,r,n){var o=360,a=Nt(n),l=parseFloat(n)*(a&&~n.indexOf("rad")?Ii:1),u=l-r,f=r+u+"deg",h,d;return a&&(h=n.split("_")[1],h==="short"&&(u%=o,u!==u%(o/2)&&(u+=u<0?o:-o)),h==="cw"&&u<0?u=(u+o*Do)%o-~~(u/o)*o:h==="ccw"&&u>0&&(u=(u-o*Do)%o-~~(u/o)*o)),t._pt=d=new he(t._pt,i,e,r,u,Uu),d.e=f,d.u="deg",t._props.push(e),d},Io=function(t,i){for(var e in i)t[e]=i[e];return t},cf=function(t,i,e){var r=Io({},e._gsap),n="perspective,force3D,transformOrigin,svgOrigin",o=e.style,a,l,u,f,h,d,c,_;r.svg?(u=e.getAttribute("transform"),e.setAttribute("transform",""),o[pt]=i,a=an(e,1),ki(e,pt),e.setAttribute("transform",u)):(u=getComputedStyle(e)[pt],o[pt]=i,a=an(e,1),o[pt]=u);for(l in ui)u=r[l],f=a[l],u!==f&&n.indexOf(l)<0&&(c=Gt(u),_=Gt(f),h=c!==_?Pi(e,l,u,_):parseFloat(u),d=parseFloat(f),t._pt=new he(t._pt,a,l,h,d-h,Os),t._pt.u=_||0,t._props.push(l));Io(a,r)};ce("padding,margin,Width,Radius",function(s,t){var i="Top",e="Right",r="Bottom",n="Left",o=(t<3?[i,e,r,n]:[i+n,i+e,r+e,r+n]).map(function(a){return t<2?s+a:"border"+a+s});Un[t>1?"border"+s:s]=function(a,l,u,f,h){var d,c;if(arguments.length<4)return d=o.map(function(_){return ni(a,_,u)}),c=d.join(" "),c.split(d[0]).length===5?d[0]:c;d=(f+"").split(" "),c={},o.forEach(function(_,p){return c[_]=d[p]=d[p]||d[(p-1)/2|0]}),a.init(l,c,h)}});var dl={name:"css",register:Ds,targetTest:function(t){return t.style&&t.nodeType},init:function(t,i,e,r,n){var o=this._props,a=t.style,l=e.vars.startAt,u,f,h,d,c,_,p,m,b,S,E,y,v,T,x,k,C;ao||Ds(),this.styles=this.styles||ol(t),k=this.styles.props,this.tween=e;for(p in i)if(p!=="autoRound"&&(f=i[p],!(we[p]&&Ka(p,i,e,r,t,n)))){if(c=typeof f,_=Un[p],c==="function"&&(f=f.call(e,r,t,n),c=typeof f),c==="string"&&~f.indexOf("random(")&&(f=rn(f)),_)_(this,t,p,f,e)&&(x=1);else if(p.substr(0,2)==="--")u=(getComputedStyle(t).getPropertyValue(p)+"").trim(),f+="",Ti.lastIndex=0,Ti.test(u)||(m=Gt(u),b=Gt(f),b?m!==b&&(u=Pi(t,p,u,b)+b):m&&(f+=m)),this.add(a,"setProperty",u,f,r,n,0,0,p),o.push(p),k.push(p,0,a[p]);else if(c!=="undefined"){if(l&&p in l?(u=typeof l[p]=="function"?l[p].call(e,r,t,n):l[p],Nt(u)&&~u.indexOf("random(")&&(u=rn(u)),Gt(u+"")||u==="auto"||(u+=Ee.units[p]||Gt(ni(t,p))||""),(u+"").charAt(1)==="="&&(u=ni(t,p))):u=ni(t,p),d=parseFloat(u),S=c==="string"&&f.charAt(1)==="="&&f.substr(0,2),S&&(f=f.substr(2)),h=parseFloat(f),p in Ge&&(p==="autoAlpha"&&(d===1&&ni(t,"visibility")==="hidden"&&h&&(d=0),k.push("visibility",0,a.visibility),wi(this,a,"visibility",d?"inherit":"hidden",h?"inherit":"hidden",!h)),p!=="scale"&&p!=="transform"&&(p=Ge[p],~p.indexOf(",")&&(p=p.split(",")[0]))),E=p in ui,E){if(this.styles.save(p),C=f,c==="string"&&f.substring(0,6)==="var(--"){if(f=Ce(t,f.substring(4,f.indexOf(")"))),f.substring(0,5)==="calc("){var P=t.style.perspective;t.style.perspective=f,f=Ce(t,"perspective"),P?t.style.perspective=P:ki(t,"perspective")}h=parseFloat(f)}if(y||(v=t._gsap,v.renderTransform&&!i.parseTransform||an(t,i.parseTransform),T=i.smoothOrigin!==!1&&v.smooth,y=this._pt=new he(this._pt,a,pt,0,1,v.renderTransform,v,0,-1),y.dep=1),p==="scale")this._pt=new he(this._pt,v,"scaleY",v.scaleY,(S?dr(v.scaleY,S+h):h)-v.scaleY||0,Os),this._pt.u=0,o.push("scaleY",p),p+="X";else if(p==="transformOrigin"){k.push(de,0,a[de]),f=of(f),v.svg?As(t,f,0,T,0,this):(b=parseFloat(f.split(" ")[2])||0,b!==v.zOrigin&&wi(this,v,"zOrigin",v.zOrigin,b),wi(this,a,p,$n(u),$n(f)));continue}else if(p==="svgOrigin"){As(t,f,1,T,0,this);continue}else if(p in fl){ff(this,v,p,d,S?dr(d,S+f):f);continue}else if(p==="smoothOrigin"){wi(this,v,"smooth",v.smooth,f);continue}else if(p==="force3D"){v[p]=f;continue}else if(p==="transform"){cf(this,f,t);continue}}else p in a||(p=Tr(p)||p);if(E||(h||h===0)&&(d||d===0)&&!Vu.test(f)&&p in a)m=(u+"").substr((d+"").length),h||(h=0),b=Gt(f)||(p in Ee.units?Ee.units[p]:m),m!==b&&(d=Pi(t,p,u,b)),this._pt=new he(this._pt,E?v:a,p,d,(S?dr(d,S+h):h)-d,!E&&(b==="px"||p==="zIndex")&&i.autoRound!==!1?Gu:Os),this._pt.u=b||0,E&&C!==f?(this._pt.b=u,this._pt.e=C,this._pt.r=qu):m!==b&&b!=="%"&&(this._pt.b=u,this._pt.r=$u);else if(p in a)sf.call(this,t,p,u,S?S+f:f);else if(p in t)this.add(t,p,u||t[p],S?S+f:f,r,n);else if(p!=="parseTransform"){Zs(p,f);continue}E||(p in a?k.push(p,0,a[p]):typeof t[p]=="function"?k.push(p,2,t[p]()):k.push(p,1,u||t[p])),o.push(p)}}x&&el(this)},render:function(t,i){if(i.tween._time||!lo())for(var e=i._pt;e;)e.r(t,e.d),e=e._next;else i.styles.revert()},get:ni,aliases:Ge,getSetter:function(t,i,e){var r=Ge[i];return r&&r.indexOf(",")<0&&(i=r),i in ui&&i!==de&&(t._gsap.x||ni(t,"x"))?e&&Mo===e?i==="scale"?ju:Zu:(Mo=e||{})&&(i==="scale"?Ju:tf):t.style&&!Gs(t.style[i])?Ku:~i.indexOf("-")?Qu:so(t,i)},core:{_removeProperty:ki,_getMatrix:fo}};pe.utils.checkPrefix=Tr;pe.core.getStyleSaver=ol;(function(s,t,i,e){var r=ce(s+","+t+","+i,function(n){ui[n]=1});ce(t,function(n){Ee.units[n]="deg",fl[n]=1}),Ge[r[13]]=s+","+t,ce(e,function(n){var o=n.split(":");Ge[o[1]]=r[o[0]]})})("x,y,z,scale,scaleX,scaleY,xPercent,yPercent","rotation,rotationX,rotationY,skewX,skewY","transform,transformOrigin,svgOrigin,force3D,smoothOrigin,transformPerspective","0:translateX,1:translateY,2:translateZ,8:rotate,8:rotationZ,8:rotateZ,9:rotateX,10:rotateY");ce("x,y,z,top,right,bottom,left,width,height,fontSize,padding,margin,perspective",function(s){Ee.units[s]="px"});pe.registerPlugin(dl);var ae=pe.registerPlugin(dl)||pe;ae.core.Tween;function hf(s,t){for(var i=0;i<t.length;i++){var e=t[i];e.enumerable=e.enumerable||!1,e.configurable=!0,"value"in e&&(e.writable=!0),Object.defineProperty(s,e.key,e)}}function df(s,t,i){return t&&hf(s.prototype,t),s}/*!
|
|
16
|
+
* Observer 3.14.2
|
|
17
|
+
* https://gsap.com
|
|
18
|
+
*
|
|
19
|
+
* @license Copyright 2008-2025, GreenSock. All rights reserved.
|
|
20
|
+
* Subject to the terms at https://gsap.com/standard-license
|
|
21
|
+
* @author: Jack Doyle, jack@greensock.com
|
|
22
|
+
*/var Wt,zn,be,xi,Si,gr,pl,Wi,Vr,_l,oi,Be,gl,ml=function(){return Wt||typeof window<"u"&&(Wt=window.gsap)&&Wt.registerPlugin&&Wt},vl=1,hr=[],K=[],Qe=[],Ur=Date.now,Rs=function(t,i){return i},pf=function(){var t=Vr.core,i=t.bridge||{},e=t._scrollers,r=t._proxies;e.push.apply(e,K),r.push.apply(r,Qe),K=e,Qe=r,Rs=function(o,a){return i[o](a)}},Ci=function(t,i){return~Qe.indexOf(t)&&Qe[Qe.indexOf(t)+1][i]},$r=function(t){return!!~_l.indexOf(t)},ee=function(t,i,e,r,n){return t.addEventListener(i,e,{passive:r!==!1,capture:!!n})},te=function(t,i,e,r){return t.removeEventListener(i,e,!!r)},mn="scrollLeft",vn="scrollTop",zs=function(){return oi&&oi.isPressed||K.cache++},qn=function(t,i){var e=function r(n){if(n||n===0){vl&&(be.history.scrollRestoration="manual");var o=oi&&oi.isPressed;n=r.v=Math.round(n)||(oi&&oi.iOS?1:0),t(n),r.cacheID=K.cache,o&&Rs("ss",n)}else(i||K.cache!==r.cacheID||Rs("ref"))&&(r.cacheID=K.cache,r.v=t());return r.v+r.offset};return e.offset=0,t&&e},oe={s:mn,p:"left",p2:"Left",os:"right",os2:"Right",d:"width",d2:"Width",a:"x",sc:qn(function(s){return arguments.length?be.scrollTo(s,Mt.sc()):be.pageXOffset||xi[mn]||Si[mn]||gr[mn]||0})},Mt={s:vn,p:"top",p2:"Top",os:"bottom",os2:"Bottom",d:"height",d2:"Height",a:"y",op:oe,sc:qn(function(s){return arguments.length?be.scrollTo(oe.sc(),s):be.pageYOffset||xi[vn]||Si[vn]||gr[vn]||0})},ue=function(t,i){return(i&&i._ctx&&i._ctx.selector||Wt.utils.toArray)(t)[0]||(typeof t=="string"&&Wt.config().nullTargetWarn!==!1?console.warn("Element not found:",t):null)},_f=function(t,i){for(var e=i.length;e--;)if(i[e]===t||i[e].contains(t))return!0;return!1},Oi=function(t,i){var e=i.s,r=i.sc;$r(t)&&(t=xi.scrollingElement||Si);var n=K.indexOf(t),o=r===Mt.sc?1:2;!~n&&(n=K.push(t)-1),K[n+o]||ee(t,"scroll",zs);var a=K[n+o],l=a||(K[n+o]=qn(Ci(t,e),!0)||($r(t)?r:qn(function(u){return arguments.length?t[e]=u:t[e]})));return l.target=t,a||(l.smooth=Wt.getProperty(t,"scrollBehavior")==="smooth"),l},Ls=function(t,i,e){var r=t,n=t,o=Ur(),a=o,l=i||50,u=Math.max(500,l*3),f=function(_,p){var m=Ur();p||m-o>l?(n=r,r=_,a=o,o=m):e?r+=_:r=n+(_-n)/(m-a)*(o-a)},h=function(){n=r=e?0:r,a=o=0},d=function(_){var p=a,m=n,b=Ur();return(_||_===0)&&_!==r&&f(_),o===a||b-a>u?0:(r+(e?m:-m))/((e?b:o)-p)*1e3};return{update:f,reset:h,getVelocity:d}},Dr=function(t,i){return i&&!t._gsapAllow&&t.preventDefault(),t.changedTouches?t.changedTouches[0]:t},Wo=function(t){var i=Math.max.apply(Math,t),e=Math.min.apply(Math,t);return Math.abs(i)>=Math.abs(e)?i:e},yl=function(){Vr=Wt.core.globals().ScrollTrigger,Vr&&Vr.core&&pf()},wl=function(t){return Wt=t||ml(),!zn&&Wt&&typeof document<"u"&&document.body&&(be=window,xi=document,Si=xi.documentElement,gr=xi.body,_l=[be,xi,Si,gr],Wt.utils.clamp,gl=Wt.core.context||function(){},Wi="onpointerenter"in gr?"pointer":"mouse",pl=St.isTouch=be.matchMedia&&be.matchMedia("(hover: none), (pointer: coarse)").matches?1:"ontouchstart"in be||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0?2:0,Be=St.eventTypes=("ontouchstart"in Si?"touchstart,touchmove,touchcancel,touchend":"onpointerdown"in Si?"pointerdown,pointermove,pointercancel,pointerup":"mousedown,mousemove,mouseup,mouseup").split(","),setTimeout(function(){return vl=0},500),yl(),zn=1),zn};oe.op=Mt;K.cache=0;var St=function(){function s(i){this.init(i)}var t=s.prototype;return t.init=function(e){zn||wl(Wt)||console.warn("Please gsap.registerPlugin(Observer)"),Vr||yl();var r=e.tolerance,n=e.dragMinimum,o=e.type,a=e.target,l=e.lineHeight,u=e.debounce,f=e.preventDefault,h=e.onStop,d=e.onStopDelay,c=e.ignore,_=e.wheelSpeed,p=e.event,m=e.onDragStart,b=e.onDragEnd,S=e.onDrag,E=e.onPress,y=e.onRelease,v=e.onRight,T=e.onLeft,x=e.onUp,k=e.onDown,C=e.onChangeX,P=e.onChangeY,N=e.onChange,O=e.onToggleX,A=e.onToggleY,I=e.onHover,Y=e.onHoverEnd,W=e.onMove,R=e.ignoreCheck,$=e.isNormalizer,H=e.onGestureStart,g=e.onGestureEnd,J=e.onWheel,nt=e.onEnable,Dt=e.onDisable,rt=e.onClick,bt=e.scrollSpeed,Bt=e.capture,Tt=e.allowClicks,Zt=e.lockAxis,Xt=e.onLockAxis;this.target=a=ue(a)||Si,this.vars=e,c&&(c=Wt.utils.toArray(c)),r=r||1e-9,n=n||0,_=_||1,bt=bt||1,o=o||"wheel,touch,pointer",u=u!==!1,l||(l=parseFloat(be.getComputedStyle(gr).lineHeight)||22);var fi,jt,Jt,tt,vt,le,_e,w=this,ge=0,je=0,ci=e.passive||!f&&e.passive!==!1,_t=Oi(a,oe),Je=Oi(a,Mt),hi=_t(),Di=Je(),At=~o.indexOf("touch")&&!~o.indexOf("pointer")&&Be[0]==="pointerdown",di=$r(a),yt=a.ownerDocument||xi,Ne=[0,0,0],Oe=[0,0,0],ti=0,Er=function(){return ti=Ur()},Ct=function(F,et){return(w.event=F)&&c&&_f(F.target,c)||et&&At&&F.pointerType!=="touch"||R&&R(F,et)},dn=function(){w._vx.reset(),w._vy.reset(),jt.pause(),h&&h(w)},ei=function(){var F=w.deltaX=Wo(Ne),et=w.deltaY=Wo(Oe),M=Math.abs(F)>=r,B=Math.abs(et)>=r;N&&(M||B)&&N(w,F,et,Ne,Oe),M&&(v&&w.deltaX>0&&v(w),T&&w.deltaX<0&&T(w),C&&C(w),O&&w.deltaX<0!=ge<0&&O(w),ge=w.deltaX,Ne[0]=Ne[1]=Ne[2]=0),B&&(k&&w.deltaY>0&&k(w),x&&w.deltaY<0&&x(w),P&&P(w),A&&w.deltaY<0!=je<0&&A(w),je=w.deltaY,Oe[0]=Oe[1]=Oe[2]=0),(tt||Jt)&&(W&&W(w),Jt&&(m&&Jt===1&&m(w),S&&S(w),Jt=0),tt=!1),le&&!(le=!1)&&Xt&&Xt(w),vt&&(J(w),vt=!1),fi=0},tr=function(F,et,M){Ne[M]+=F,Oe[M]+=et,w._vx.update(F),w._vy.update(et),u?fi||(fi=requestAnimationFrame(ei)):ei()},er=function(F,et){Zt&&!_e&&(w.axis=_e=Math.abs(F)>Math.abs(et)?"x":"y",le=!0),_e!=="y"&&(Ne[2]+=F,w._vx.update(F,!0)),_e!=="x"&&(Oe[2]+=et,w._vy.update(et,!0)),u?fi||(fi=requestAnimationFrame(ei)):ei()},pi=function(F){if(!Ct(F,1)){F=Dr(F,f);var et=F.clientX,M=F.clientY,B=et-w.x,L=M-w.y,X=w.isDragging;w.x=et,w.y=M,(X||(B||L)&&(Math.abs(w.startX-et)>=n||Math.abs(w.startY-M)>=n))&&(Jt||(Jt=X?2:1),X||(w.isDragging=!0),er(B,L))}},Ai=w.onPress=function(V){Ct(V,1)||V&&V.button||(w.axis=_e=null,jt.pause(),w.isPressed=!0,V=Dr(V),ge=je=0,w.startX=w.x=V.clientX,w.startY=w.y=V.clientY,w._vx.reset(),w._vy.reset(),ee($?a:yt,Be[1],pi,ci,!0),w.deltaX=w.deltaY=0,E&&E(w))},Q=w.onRelease=function(V){if(!Ct(V,1)){te($?a:yt,Be[1],pi,!0);var F=!isNaN(w.y-w.startY),et=w.isDragging,M=et&&(Math.abs(w.x-w.startX)>3||Math.abs(w.y-w.startY)>3),B=Dr(V);!M&&F&&(w._vx.reset(),w._vy.reset(),f&&Tt&&Wt.delayedCall(.08,function(){if(Ur()-ti>300&&!V.defaultPrevented){if(V.target.click)V.target.click();else if(yt.createEvent){var L=yt.createEvent("MouseEvents");L.initMouseEvent("click",!0,!0,be,1,B.screenX,B.screenY,B.clientX,B.clientY,!1,!1,!1,!1,0,null),V.target.dispatchEvent(L)}}})),w.isDragging=w.isGesturing=w.isPressed=!1,h&&et&&!$&&jt.restart(!0),Jt&&ei(),b&&et&&b(w),y&&y(w,M)}},Ri=function(F){return F.touches&&F.touches.length>1&&(w.isGesturing=!0)&&H(F,w.isDragging)},Fe=function(){return(w.isGesturing=!1)||g(w)},Ie=function(F){if(!Ct(F)){var et=_t(),M=Je();tr((et-hi)*bt,(M-Di)*bt,1),hi=et,Di=M,h&&jt.restart(!0)}},We=function(F){if(!Ct(F)){F=Dr(F,f),J&&(vt=!0);var et=(F.deltaMode===1?l:F.deltaMode===2?be.innerHeight:1)*_;tr(F.deltaX*et,F.deltaY*et,0),h&&!$&&jt.restart(!0)}},zi=function(F){if(!Ct(F)){var et=F.clientX,M=F.clientY,B=et-w.x,L=M-w.y;w.x=et,w.y=M,tt=!0,h&&jt.restart(!0),(B||L)&&er(B,L)}},ir=function(F){w.event=F,I(w)},ii=function(F){w.event=F,Y(w)},kr=function(F){return Ct(F)||Dr(F,f)&&rt(w)};jt=w._dc=Wt.delayedCall(d||.25,dn).pause(),w.deltaX=w.deltaY=0,w._vx=Ls(0,50,!0),w._vy=Ls(0,50,!0),w.scrollX=_t,w.scrollY=Je,w.isDragging=w.isGesturing=w.isPressed=!1,gl(this),w.enable=function(V){return w.isEnabled||(ee(di?yt:a,"scroll",zs),o.indexOf("scroll")>=0&&ee(di?yt:a,"scroll",Ie,ci,Bt),o.indexOf("wheel")>=0&&ee(a,"wheel",We,ci,Bt),(o.indexOf("touch")>=0&&pl||o.indexOf("pointer")>=0)&&(ee(a,Be[0],Ai,ci,Bt),ee(yt,Be[2],Q),ee(yt,Be[3],Q),Tt&&ee(a,"click",Er,!0,!0),rt&&ee(a,"click",kr),H&&ee(yt,"gesturestart",Ri),g&&ee(yt,"gestureend",Fe),I&&ee(a,Wi+"enter",ir),Y&&ee(a,Wi+"leave",ii),W&&ee(a,Wi+"move",zi)),w.isEnabled=!0,w.isDragging=w.isGesturing=w.isPressed=tt=Jt=!1,w._vx.reset(),w._vy.reset(),hi=_t(),Di=Je(),V&&V.type&&Ai(V),nt&&nt(w)),w},w.disable=function(){w.isEnabled&&(hr.filter(function(V){return V!==w&&$r(V.target)}).length||te(di?yt:a,"scroll",zs),w.isPressed&&(w._vx.reset(),w._vy.reset(),te($?a:yt,Be[1],pi,!0)),te(di?yt:a,"scroll",Ie,Bt),te(a,"wheel",We,Bt),te(a,Be[0],Ai,Bt),te(yt,Be[2],Q),te(yt,Be[3],Q),te(a,"click",Er,!0),te(a,"click",kr),te(yt,"gesturestart",Ri),te(yt,"gestureend",Fe),te(a,Wi+"enter",ir),te(a,Wi+"leave",ii),te(a,Wi+"move",zi),w.isEnabled=w.isPressed=w.isDragging=!1,Dt&&Dt(w))},w.kill=w.revert=function(){w.disable();var V=hr.indexOf(w);V>=0&&hr.splice(V,1),oi===w&&(oi=0)},hr.push(w),$&&$r(a)&&(oi=w),w.enable(p)},df(s,[{key:"velocityX",get:function(){return this._vx.getVelocity()}},{key:"velocityY",get:function(){return this._vy.getVelocity()}}]),s}();St.version="3.14.2";St.create=function(s){return new St(s)};St.register=wl;St.getAll=function(){return hr.slice()};St.getById=function(s){return hr.filter(function(t){return t.vars.id===s})[0]};ml()&&Wt.registerPlugin(St);/*!
|
|
23
|
+
* ScrollTrigger 3.14.2
|
|
24
|
+
* https://gsap.com
|
|
25
|
+
*
|
|
26
|
+
* @license Copyright 2008-2025, GreenSock. All rights reserved.
|
|
27
|
+
* Subject to the terms at https://gsap.com/standard-license
|
|
28
|
+
* @author: Jack Doyle, jack@greensock.com
|
|
29
|
+
*/var D,lr,G,lt,xe,it,co,Gn,ln,qr,Nr,yn,$t,es,Ns,re,Yo,Bo,ur,xl,cs,Sl,ie,Fs,bl,Tl,mi,Is,ho,mr,po,Gr,Ws,hs,wn=1,qt=Date.now,ds=qt(),Le=0,Fr=0,Xo=function(t,i,e){var r=ye(t)&&(t.substr(0,6)==="clamp("||t.indexOf("max")>-1);return e["_"+i+"Clamp"]=r,r?t.substr(6,t.length-7):t},Ho=function(t,i){return i&&(!ye(t)||t.substr(0,6)!=="clamp(")?"clamp("+t+")":t},gf=function s(){return Fr&&requestAnimationFrame(s)},Vo=function(){return es=1},Uo=function(){return es=0},$e=function(t){return t},Ir=function(t){return Math.round(t*1e5)/1e5||0},Cl=function(){return typeof window<"u"},El=function(){return D||Cl()&&(D=window.gsap)&&D.registerPlugin&&D},Qi=function(t){return!!~co.indexOf(t)},kl=function(t){return(t==="Height"?po:G["inner"+t])||xe["client"+t]||it["client"+t]},Pl=function(t){return Ci(t,"getBoundingClientRect")||(Qi(t)?function(){return Wn.width=G.innerWidth,Wn.height=po,Wn}:function(){return si(t)})},mf=function(t,i,e){var r=e.d,n=e.d2,o=e.a;return(o=Ci(t,"getBoundingClientRect"))?function(){return o()[r]}:function(){return(i?kl(n):t["client"+n])||0}},vf=function(t,i){return!i||~Qe.indexOf(t)?Pl(t):function(){return Wn}},Ke=function(t,i){var e=i.s,r=i.d2,n=i.d,o=i.a;return Math.max(0,(e="scroll"+r)&&(o=Ci(t,e))?o()-Pl(t)()[n]:Qi(t)?(xe[e]||it[e])-kl(r):t[e]-t["offset"+r])},xn=function(t,i){for(var e=0;e<ur.length;e+=3)(!i||~i.indexOf(ur[e+1]))&&t(ur[e],ur[e+1],ur[e+2])},ye=function(t){return typeof t=="string"},Kt=function(t){return typeof t=="function"},Wr=function(t){return typeof t=="number"},Yi=function(t){return typeof t=="object"},Ar=function(t,i,e){return t&&t.progress(i?0:1)&&e&&t.pause()},ps=function(t,i){if(t.enabled){var e=t._ctx?t._ctx.add(function(){return i(t)}):i(t);e&&e.totalTime&&(t.callbackAnimation=e)}},nr=Math.abs,Ol="left",Ml="top",_o="right",go="bottom",qi="width",Gi="height",Kr="Right",Qr="Left",Zr="Top",jr="Bottom",Et="padding",De="margin",Cr="Width",mo="Height",Ot="px",Ae=function(t){return G.getComputedStyle(t)},yf=function(t){var i=Ae(t).position;t.style.position=i==="absolute"||i==="fixed"?i:"relative"},$o=function(t,i){for(var e in i)e in t||(t[e]=i[e]);return t},si=function(t,i){var e=i&&Ae(t)[Ns]!=="matrix(1, 0, 0, 1, 0, 0)"&&D.to(t,{x:0,y:0,xPercent:0,yPercent:0,rotation:0,rotationX:0,rotationY:0,scale:1,skewX:0,skewY:0}).progress(1),r=t.getBoundingClientRect();return e&&e.progress(0).kill(),r},Kn=function(t,i){var e=i.d2;return t["offset"+e]||t["client"+e]||0},Dl=function(t){var i=[],e=t.labels,r=t.duration(),n;for(n in e)i.push(e[n]/r);return i},wf=function(t){return function(i){return D.utils.snap(Dl(t),i)}},vo=function(t){var i=D.utils.snap(t),e=Array.isArray(t)&&t.slice(0).sort(function(r,n){return r-n});return e?function(r,n,o){o===void 0&&(o=.001);var a;if(!n)return i(r);if(n>0){for(r-=o,a=0;a<e.length;a++)if(e[a]>=r)return e[a];return e[a-1]}else for(a=e.length,r+=o;a--;)if(e[a]<=r)return e[a];return e[0]}:function(r,n,o){o===void 0&&(o=.001);var a=i(r);return!n||Math.abs(a-r)<o||a-r<0==n<0?a:i(n<0?r-t:r+t)}},xf=function(t){return function(i,e){return vo(Dl(t))(i,e.direction)}},Sn=function(t,i,e,r){return e.split(",").forEach(function(n){return t(i,n,r)})},Lt=function(t,i,e,r,n){return t.addEventListener(i,e,{passive:!r,capture:!!n})},zt=function(t,i,e,r){return t.removeEventListener(i,e,!!r)},bn=function(t,i,e){e=e&&e.wheelHandler,e&&(t(i,"wheel",e),t(i,"touchmove",e))},qo={startColor:"green",endColor:"red",indent:0,fontSize:"16px",fontWeight:"normal"},Tn={toggleActions:"play",anticipatePin:0},Qn={top:0,left:0,center:.5,bottom:1,right:1},Ln=function(t,i){if(ye(t)){var e=t.indexOf("="),r=~e?+(t.charAt(e-1)+1)*parseFloat(t.substr(e+1)):0;~e&&(t.indexOf("%")>e&&(r*=i/100),t=t.substr(0,e-1)),t=r+(t in Qn?Qn[t]*i:~t.indexOf("%")?parseFloat(t)*i/100:parseFloat(t)||0)}return t},Cn=function(t,i,e,r,n,o,a,l){var u=n.startColor,f=n.endColor,h=n.fontSize,d=n.indent,c=n.fontWeight,_=lt.createElement("div"),p=Qi(e)||Ci(e,"pinType")==="fixed",m=t.indexOf("scroller")!==-1,b=p?it:e,S=t.indexOf("start")!==-1,E=S?u:f,y="border-color:"+E+";font-size:"+h+";color:"+E+";font-weight:"+c+";pointer-events:none;white-space:nowrap;font-family:sans-serif,Arial;z-index:1000;padding:4px 8px;border-width:0;border-style:solid;";return y+="position:"+((m||l)&&p?"fixed;":"absolute;"),(m||l||!p)&&(y+=(r===Mt?_o:go)+":"+(o+parseFloat(d))+"px;"),a&&(y+="box-sizing:border-box;text-align:left;width:"+a.offsetWidth+"px;"),_._isStart=S,_.setAttribute("class","gsap-marker-"+t+(i?" marker-"+i:"")),_.style.cssText=y,_.innerText=i||i===0?t+"-"+i:t,b.children[0]?b.insertBefore(_,b.children[0]):b.appendChild(_),_._offset=_["offset"+r.op.d2],Nn(_,0,r,S),_},Nn=function(t,i,e,r){var n={display:"block"},o=e[r?"os2":"p2"],a=e[r?"p2":"os2"];t._isFlipped=r,n[e.a+"Percent"]=r?-100:0,n[e.a]=r?"1px":0,n["border"+o+Cr]=1,n["border"+a+Cr]=0,n[e.p]=i+"px",D.set(t,n)},q=[],Ys={},un,Go=function(){return qt()-Le>34&&(un||(un=requestAnimationFrame(ai)))},sr=function(){(!ie||!ie.isPressed||ie.startX>it.clientWidth)&&(K.cache++,ie?un||(un=requestAnimationFrame(ai)):ai(),Le||ji("scrollStart"),Le=qt())},_s=function(){Tl=G.innerWidth,bl=G.innerHeight},Yr=function(t){K.cache++,(t===!0||!$t&&!Sl&&!lt.fullscreenElement&&!lt.webkitFullscreenElement&&(!Fs||Tl!==G.innerWidth||Math.abs(G.innerHeight-bl)>G.innerHeight*.25))&&Gn.restart(!0)},Zi={},Sf=[],Al=function s(){return zt(U,"scrollEnd",s)||Xi(!0)},ji=function(t){return Zi[t]&&Zi[t].map(function(i){return i()})||Sf},ve=[],Rl=function(t){for(var i=0;i<ve.length;i+=5)(!t||ve[i+4]&&ve[i+4].query===t)&&(ve[i].style.cssText=ve[i+1],ve[i].getBBox&&ve[i].setAttribute("transform",ve[i+2]||""),ve[i+3].uncache=1)},zl=function(){return K.forEach(function(t){return Kt(t)&&++t.cacheID&&(t.rec=t())})},yo=function(t,i){var e;for(re=0;re<q.length;re++)e=q[re],e&&(!i||e._ctx===i)&&(t?e.kill(1):e.revert(!0,!0));Gr=!0,i&&Rl(i),i||ji("revert")},Ll=function(t,i){K.cache++,(i||!ne)&&K.forEach(function(e){return Kt(e)&&e.cacheID++&&(e.rec=0)}),ye(t)&&(G.history.scrollRestoration=ho=t)},ne,Ki=0,Ko,bf=function(){if(Ko!==Ki){var t=Ko=Ki;requestAnimationFrame(function(){return t===Ki&&Xi(!0)})}},Nl=function(){it.appendChild(mr),po=!ie&&mr.offsetHeight||G.innerHeight,it.removeChild(mr)},Qo=function(t){return ln(".gsap-marker-start, .gsap-marker-end, .gsap-marker-scroller-start, .gsap-marker-scroller-end").forEach(function(i){return i.style.display=t?"none":"block"})},Xi=function(t,i){if(xe=lt.documentElement,it=lt.body,co=[G,lt,xe,it],Le&&!t&&!Gr){Lt(U,"scrollEnd",Al);return}Nl(),ne=U.isRefreshing=!0,Gr||zl();var e=ji("refreshInit");xl&&U.sort(),i||yo(),K.forEach(function(r){Kt(r)&&(r.smooth&&(r.target.style.scrollBehavior="auto"),r(0))}),q.slice(0).forEach(function(r){return r.refresh()}),Gr=!1,q.forEach(function(r){if(r._subPinOffset&&r.pin){var n=r.vars.horizontal?"offsetWidth":"offsetHeight",o=r.pin[n];r.revert(!0,1),r.adjustPinSpacing(r.pin[n]-o),r.refresh()}}),Ws=1,Qo(!0),q.forEach(function(r){var n=Ke(r.scroller,r._dir),o=r.vars.end==="max"||r._endClamp&&r.end>n,a=r._startClamp&&r.start>=n;(o||a)&&r.setPositions(a?n-1:r.start,o?Math.max(a?n:r.start+1,n):r.end,!0)}),Qo(!1),Ws=0,e.forEach(function(r){return r&&r.render&&r.render(-1)}),K.forEach(function(r){Kt(r)&&(r.smooth&&requestAnimationFrame(function(){return r.target.style.scrollBehavior="smooth"}),r.rec&&r(r.rec))}),Ll(ho,1),Gn.pause(),Ki++,ne=2,ai(2),q.forEach(function(r){return Kt(r.vars.onRefresh)&&r.vars.onRefresh(r)}),ne=U.isRefreshing=!1,ji("refresh")},Bs=0,Fn=1,Jr,ai=function(t){if(t===2||!ne&&!Gr){U.isUpdating=!0,Jr&&Jr.update(0);var i=q.length,e=qt(),r=e-ds>=50,n=i&&q[0].scroll();if(Fn=Bs>n?-1:1,ne||(Bs=n),r&&(Le&&!es&&e-Le>200&&(Le=0,ji("scrollEnd")),Nr=ds,ds=e),Fn<0){for(re=i;re-- >0;)q[re]&&q[re].update(0,r);Fn=1}else for(re=0;re<i;re++)q[re]&&q[re].update(0,r);U.isUpdating=!1}un=0},Xs=[Ol,Ml,go,_o,De+jr,De+Kr,De+Zr,De+Qr,"display","flexShrink","float","zIndex","gridColumnStart","gridColumnEnd","gridRowStart","gridRowEnd","gridArea","justifySelf","alignSelf","placeSelf","order"],In=Xs.concat([qi,Gi,"boxSizing","max"+Cr,"max"+mo,"position",De,Et,Et+Zr,Et+Kr,Et+jr,Et+Qr]),Tf=function(t,i,e){vr(e);var r=t._gsap;if(r.spacerIsNative)vr(r.spacerState);else if(t._gsap.swappedIn){var n=i.parentNode;n&&(n.insertBefore(t,i),n.removeChild(i))}t._gsap.swappedIn=!1},gs=function(t,i,e,r){if(!t._gsap.swappedIn){for(var n=Xs.length,o=i.style,a=t.style,l;n--;)l=Xs[n],o[l]=e[l];o.position=e.position==="absolute"?"absolute":"relative",e.display==="inline"&&(o.display="inline-block"),a[go]=a[_o]="auto",o.flexBasis=e.flexBasis||"auto",o.overflow="visible",o.boxSizing="border-box",o[qi]=Kn(t,oe)+Ot,o[Gi]=Kn(t,Mt)+Ot,o[Et]=a[De]=a[Ml]=a[Ol]="0",vr(r),a[qi]=a["max"+Cr]=e[qi],a[Gi]=a["max"+mo]=e[Gi],a[Et]=e[Et],t.parentNode!==i&&(t.parentNode.insertBefore(i,t),i.appendChild(t)),t._gsap.swappedIn=!0}},Cf=/([A-Z])/g,vr=function(t){if(t){var i=t.t.style,e=t.length,r=0,n,o;for((t.t._gsap||D.core.getCache(t.t)).uncache=1;r<e;r+=2)o=t[r+1],n=t[r],o?i[n]=o:i[n]&&i.removeProperty(n.replace(Cf,"-$1").toLowerCase())}},En=function(t){for(var i=In.length,e=t.style,r=[],n=0;n<i;n++)r.push(In[n],e[In[n]]);return r.t=t,r},Ef=function(t,i,e){for(var r=[],n=t.length,o=e?8:0,a;o<n;o+=2)a=t[o],r.push(a,a in i?i[a]:t[o+1]);return r.t=t.t,r},Wn={left:0,top:0},Zo=function(t,i,e,r,n,o,a,l,u,f,h,d,c,_){Kt(t)&&(t=t(l)),ye(t)&&t.substr(0,3)==="max"&&(t=d+(t.charAt(4)==="="?Ln("0"+t.substr(3),e):0));var p=c?c.time():0,m,b,S;if(c&&c.seek(0),isNaN(t)||(t=+t),Wr(t))c&&(t=D.utils.mapRange(c.scrollTrigger.start,c.scrollTrigger.end,0,d,t)),a&&Nn(a,e,r,!0);else{Kt(i)&&(i=i(l));var E=(t||"0").split(" "),y,v,T,x;S=ue(i,l)||it,y=si(S)||{},(!y||!y.left&&!y.top)&&Ae(S).display==="none"&&(x=S.style.display,S.style.display="block",y=si(S),x?S.style.display=x:S.style.removeProperty("display")),v=Ln(E[0],y[r.d]),T=Ln(E[1]||"0",e),t=y[r.p]-u[r.p]-f+v+n-T,a&&Nn(a,T,r,e-T<20||a._isStart&&T>20),e-=e-T}if(_&&(l[_]=t||-.001,t<0&&(t=0)),o){var k=t+e,C=o._isStart;m="scroll"+r.d2,Nn(o,k,r,C&&k>20||!C&&(h?Math.max(it[m],xe[m]):o.parentNode[m])<=k+1),h&&(u=si(a),h&&(o.style[r.op.p]=u[r.op.p]-r.op.m-o._offset+Ot))}return c&&S&&(m=si(S),c.seek(d),b=si(S),c._caScrollDist=m[r.p]-b[r.p],t=t/c._caScrollDist*d),c&&c.seek(p),c?t:Math.round(t)},kf=/(webkit|moz|length|cssText|inset)/i,jo=function(t,i,e,r){if(t.parentNode!==i){var n=t.style,o,a;if(i===it){t._stOrig=n.cssText,a=Ae(t);for(o in a)!+o&&!kf.test(o)&&a[o]&&typeof n[o]=="string"&&o!=="0"&&(n[o]=a[o]);n.top=e,n.left=r}else n.cssText=t._stOrig;D.core.getCache(t).uncache=1,i.appendChild(t)}},Fl=function(t,i,e){var r=i,n=r;return function(o){var a=Math.round(t());return a!==r&&a!==n&&Math.abs(a-r)>3&&Math.abs(a-n)>3&&(o=a,e&&e()),n=r,r=Math.round(o),r}},kn=function(t,i,e){var r={};r[i.p]="+="+e,D.set(t,r)},Jo=function(t,i){var e=Oi(t,i),r="_scroll"+i.p2,n=function o(a,l,u,f,h){var d=o.tween,c=l.onComplete,_={};u=u||e();var p=Fl(e,u,function(){d.kill(),o.tween=0});return h=f&&h||0,f=f||a-u,d&&d.kill(),l[r]=a,l.inherit=!1,l.modifiers=_,_[r]=function(){return p(u+f*d.ratio+h*d.ratio*d.ratio)},l.onUpdate=function(){K.cache++,o.tween&&ai()},l.onComplete=function(){o.tween=0,c&&c.call(d)},d=o.tween=D.to(t,l),d};return t[r]=e,e.wheelHandler=function(){return n.tween&&n.tween.kill()&&(n.tween=0)},Lt(t,"wheel",e.wheelHandler),U.isTouch&&Lt(t,"touchmove",e.wheelHandler),n},U=function(){function s(i,e){lr||s.register(D)||console.warn("Please gsap.registerPlugin(ScrollTrigger)"),Is(this),this.init(i,e)}var t=s.prototype;return t.init=function(e,r){if(this.progress=this.start=0,this.vars&&this.kill(!0,!0),!Fr){this.update=this.refresh=this.kill=$e;return}e=$o(ye(e)||Wr(e)||e.nodeType?{trigger:e}:e,Tn);var n=e,o=n.onUpdate,a=n.toggleClass,l=n.id,u=n.onToggle,f=n.onRefresh,h=n.scrub,d=n.trigger,c=n.pin,_=n.pinSpacing,p=n.invalidateOnRefresh,m=n.anticipatePin,b=n.onScrubComplete,S=n.onSnapComplete,E=n.once,y=n.snap,v=n.pinReparent,T=n.pinSpacer,x=n.containerAnimation,k=n.fastScrollEnd,C=n.preventOverlaps,P=e.horizontal||e.containerAnimation&&e.horizontal!==!1?oe:Mt,N=!h&&h!==0,O=ue(e.scroller||G),A=D.core.getCache(O),I=Qi(O),Y=("pinType"in e?e.pinType:Ci(O,"pinType")||I&&"fixed")==="fixed",W=[e.onEnter,e.onLeave,e.onEnterBack,e.onLeaveBack],R=N&&e.toggleActions.split(" "),$="markers"in e?e.markers:Tn.markers,H=I?0:parseFloat(Ae(O)["border"+P.p2+Cr])||0,g=this,J=e.onRefreshInit&&function(){return e.onRefreshInit(g)},nt=mf(O,I,P),Dt=vf(O,I),rt=0,bt=0,Bt=0,Tt=Oi(O,P),Zt,Xt,fi,jt,Jt,tt,vt,le,_e,w,ge,je,ci,_t,Je,hi,Di,At,di,yt,Ne,Oe,ti,Er,Ct,dn,ei,tr,er,pi,Ai,Q,Ri,Fe,Ie,We,zi,ir,ii;if(g._startClamp=g._endClamp=!1,g._dir=P,m*=45,g.scroller=O,g.scroll=x?x.time.bind(x):Tt,jt=Tt(),g.vars=e,r=r||e.animation,"refreshPriority"in e&&(xl=1,e.refreshPriority===-9999&&(Jr=g)),A.tweenScroll=A.tweenScroll||{top:Jo(O,Mt),left:Jo(O,oe)},g.tweenTo=Zt=A.tweenScroll[P.p],g.scrubDuration=function(M){Ri=Wr(M)&&M,Ri?Q?Q.duration(M):Q=D.to(r,{ease:"expo",totalProgress:"+=0",inherit:!1,duration:Ri,paused:!0,onComplete:function(){return b&&b(g)}}):(Q&&Q.progress(1).kill(),Q=0)},r&&(r.vars.lazy=!1,r._initted&&!g.isReverted||r.vars.immediateRender!==!1&&e.immediateRender!==!1&&r.duration()&&r.render(0,!0,!0),g.animation=r.pause(),r.scrollTrigger=g,g.scrubDuration(h),pi=0,l||(l=r.vars.id)),y&&((!Yi(y)||y.push)&&(y={snapTo:y}),"scrollBehavior"in it.style&&D.set(I?[it,xe]:O,{scrollBehavior:"auto"}),K.forEach(function(M){return Kt(M)&&M.target===(I?lt.scrollingElement||xe:O)&&(M.smooth=!1)}),fi=Kt(y.snapTo)?y.snapTo:y.snapTo==="labels"?wf(r):y.snapTo==="labelsDirectional"?xf(r):y.directional!==!1?function(M,B){return vo(y.snapTo)(M,qt()-bt<500?0:B.direction)}:D.utils.snap(y.snapTo),Fe=y.duration||{min:.1,max:2},Fe=Yi(Fe)?qr(Fe.min,Fe.max):qr(Fe,Fe),Ie=D.delayedCall(y.delay||Ri/2||.1,function(){var M=Tt(),B=qt()-bt<500,L=Zt.tween;if((B||Math.abs(g.getVelocity())<10)&&!L&&!es&&rt!==M){var X=(M-tt)/_t,Rt=r&&!N?r.totalProgress():X,Z=B?0:(Rt-Ai)/(qt()-Nr)*1e3||0,wt=D.utils.clamp(-X,1-X,nr(Z/2)*Z/.185),Ht=X+(y.inertia===!1?0:wt),gt,ut,st=y,Ye=st.onStart,ct=st.onInterrupt,me=st.onComplete;if(gt=fi(Ht,g),Wr(gt)||(gt=Ht),ut=Math.max(0,Math.round(tt+gt*_t)),M<=vt&&M>=tt&&ut!==M){if(L&&!L._initted&&L.data<=nr(ut-M))return;y.inertia===!1&&(wt=gt-X),Zt(ut,{duration:Fe(nr(Math.max(nr(Ht-Rt),nr(gt-Rt))*.185/Z/.05||0)),ease:y.ease||"power3",data:nr(ut-M),onInterrupt:function(){return Ie.restart(!0)&&ct&&ct(g)},onComplete:function(){g.update(),rt=Tt(),r&&!N&&(Q?Q.resetTo("totalProgress",gt,r._tTime/r._tDur):r.progress(gt)),pi=Ai=r&&!N?r.totalProgress():g.progress,S&&S(g),me&&me(g)}},M,wt*_t,ut-M-wt*_t),Ye&&Ye(g,Zt.tween)}}else g.isActive&&rt!==M&&Ie.restart(!0)}).pause()),l&&(Ys[l]=g),d=g.trigger=ue(d||c!==!0&&c),ii=d&&d._gsap&&d._gsap.stRevert,ii&&(ii=ii(g)),c=c===!0?d:ue(c),ye(a)&&(a={targets:d,className:a}),c&&(_===!1||_===De||(_=!_&&c.parentNode&&c.parentNode.style&&Ae(c.parentNode).display==="flex"?!1:Et),g.pin=c,Xt=D.core.getCache(c),Xt.spacer?Je=Xt.pinState:(T&&(T=ue(T),T&&!T.nodeType&&(T=T.current||T.nativeElement),Xt.spacerIsNative=!!T,T&&(Xt.spacerState=En(T))),Xt.spacer=At=T||lt.createElement("div"),At.classList.add("pin-spacer"),l&&At.classList.add("pin-spacer-"+l),Xt.pinState=Je=En(c)),e.force3D!==!1&&D.set(c,{force3D:!0}),g.spacer=At=Xt.spacer,er=Ae(c),Er=er[_+P.os2],yt=D.getProperty(c),Ne=D.quickSetter(c,P.a,Ot),gs(c,At,er),Di=En(c)),$){je=Yi($)?$o($,qo):qo,w=Cn("scroller-start",l,O,P,je,0),ge=Cn("scroller-end",l,O,P,je,0,w),di=w["offset"+P.op.d2];var kr=ue(Ci(O,"content")||O);le=this.markerStart=Cn("start",l,kr,P,je,di,0,x),_e=this.markerEnd=Cn("end",l,kr,P,je,di,0,x),x&&(ir=D.quickSetter([le,_e],P.a,Ot)),!Y&&!(Qe.length&&Ci(O,"fixedMarkers")===!0)&&(yf(I?it:O),D.set([w,ge],{force3D:!0}),dn=D.quickSetter(w,P.a,Ot),tr=D.quickSetter(ge,P.a,Ot))}if(x){var V=x.vars.onUpdate,F=x.vars.onUpdateParams;x.eventCallback("onUpdate",function(){g.update(0,0,1),V&&V.apply(x,F||[])})}if(g.previous=function(){return q[q.indexOf(g)-1]},g.next=function(){return q[q.indexOf(g)+1]},g.revert=function(M,B){if(!B)return g.kill(!0);var L=M!==!1||!g.enabled,X=$t;L!==g.isReverted&&(L&&(We=Math.max(Tt(),g.scroll.rec||0),Bt=g.progress,zi=r&&r.progress()),le&&[le,_e,w,ge].forEach(function(Rt){return Rt.style.display=L?"none":"block"}),L&&($t=g,g.update(L)),c&&(!v||!g.isActive)&&(L?Tf(c,At,Je):gs(c,At,Ae(c),Ct)),L||g.update(L),$t=X,g.isReverted=L)},g.refresh=function(M,B,L,X){if(!(($t||!g.enabled)&&!B)){if(c&&M&&Le){Lt(s,"scrollEnd",Al);return}!ne&&J&&J(g),$t=g,Zt.tween&&!L&&(Zt.tween.kill(),Zt.tween=0),Q&&Q.pause(),p&&r&&(r.revert({kill:!1}).invalidate(),r.getChildren?r.getChildren(!0,!0,!1).forEach(function(_i){return _i.vars.immediateRender&&_i.render(0,!0,!0)}):r.vars.immediateRender&&r.render(0,!0,!0)),g.isReverted||g.revert(!0,!0),g._subPinOffset=!1;var Rt=nt(),Z=Dt(),wt=x?x.duration():Ke(O,P),Ht=_t<=.01||!_t,gt=0,ut=X||0,st=Yi(L)?L.end:e.end,Ye=e.endTrigger||d,ct=Yi(L)?L.start:e.start||(e.start===0||!d?0:c?"0 0":"0 100%"),me=g.pinnedContainer=e.pinnedContainer&&ue(e.pinnedContainer,g),Xe=d&&Math.max(0,q.indexOf(g))||0,Ft=Xe,It,Vt,Li,pn,Ut,Pt,He,is,wo,Pr,Ve,Or,_n;for($&&Yi(L)&&(Or=D.getProperty(w,P.p),_n=D.getProperty(ge,P.p));Ft-- >0;)Pt=q[Ft],Pt.end||Pt.refresh(0,1)||($t=g),He=Pt.pin,He&&(He===d||He===c||He===me)&&!Pt.isReverted&&(Pr||(Pr=[]),Pr.unshift(Pt),Pt.revert(!0,!0)),Pt!==q[Ft]&&(Xe--,Ft--);for(Kt(ct)&&(ct=ct(g)),ct=Xo(ct,"start",g),tt=Zo(ct,d,Rt,P,Tt(),le,w,g,Z,H,Y,wt,x,g._startClamp&&"_startClamp")||(c?-.001:0),Kt(st)&&(st=st(g)),ye(st)&&!st.indexOf("+=")&&(~st.indexOf(" ")?st=(ye(ct)?ct.split(" ")[0]:"")+st:(gt=Ln(st.substr(2),Rt),st=ye(ct)?ct:(x?D.utils.mapRange(0,x.duration(),x.scrollTrigger.start,x.scrollTrigger.end,tt):tt)+gt,Ye=d)),st=Xo(st,"end",g),vt=Math.max(tt,Zo(st||(Ye?"100% 0":wt),Ye,Rt,P,Tt()+gt,_e,ge,g,Z,H,Y,wt,x,g._endClamp&&"_endClamp"))||-.001,gt=0,Ft=Xe;Ft--;)Pt=q[Ft]||{},He=Pt.pin,He&&Pt.start-Pt._pinPush<=tt&&!x&&Pt.end>0&&(It=Pt.end-(g._startClamp?Math.max(0,Pt.start):Pt.start),(He===d&&Pt.start-Pt._pinPush<tt||He===me)&&isNaN(ct)&&(gt+=It*(1-Pt.progress)),He===c&&(ut+=It));if(tt+=gt,vt+=gt,g._startClamp&&(g._startClamp+=gt),g._endClamp&&!ne&&(g._endClamp=vt||-.001,vt=Math.min(vt,Ke(O,P))),_t=vt-tt||(tt-=.01)&&.001,Ht&&(Bt=D.utils.clamp(0,1,D.utils.normalize(tt,vt,We))),g._pinPush=ut,le&>&&(It={},It[P.a]="+="+gt,me&&(It[P.p]="-="+Tt()),D.set([le,_e],It)),c&&!(Ws&&g.end>=Ke(O,P)))It=Ae(c),pn=P===Mt,Li=Tt(),Oe=parseFloat(yt(P.a))+ut,!wt&&vt>1&&(Ve=(I?lt.scrollingElement||xe:O).style,Ve={style:Ve,value:Ve["overflow"+P.a.toUpperCase()]},I&&Ae(it)["overflow"+P.a.toUpperCase()]!=="scroll"&&(Ve.style["overflow"+P.a.toUpperCase()]="scroll")),gs(c,At,It),Di=En(c),Vt=si(c,!0),is=Y&&Oi(O,pn?oe:Mt)(),_?(Ct=[_+P.os2,_t+ut+Ot],Ct.t=At,Ft=_===Et?Kn(c,P)+_t+ut:0,Ft&&(Ct.push(P.d,Ft+Ot),At.style.flexBasis!=="auto"&&(At.style.flexBasis=Ft+Ot)),vr(Ct),me&&q.forEach(function(_i){_i.pin===me&&_i.vars.pinSpacing!==!1&&(_i._subPinOffset=!0)}),Y&&Tt(We)):(Ft=Kn(c,P),Ft&&At.style.flexBasis!=="auto"&&(At.style.flexBasis=Ft+Ot)),Y&&(Ut={top:Vt.top+(pn?Li-tt:is)+Ot,left:Vt.left+(pn?is:Li-tt)+Ot,boxSizing:"border-box",position:"fixed"},Ut[qi]=Ut["max"+Cr]=Math.ceil(Vt.width)+Ot,Ut[Gi]=Ut["max"+mo]=Math.ceil(Vt.height)+Ot,Ut[De]=Ut[De+Zr]=Ut[De+Kr]=Ut[De+jr]=Ut[De+Qr]="0",Ut[Et]=It[Et],Ut[Et+Zr]=It[Et+Zr],Ut[Et+Kr]=It[Et+Kr],Ut[Et+jr]=It[Et+jr],Ut[Et+Qr]=It[Et+Qr],hi=Ef(Je,Ut,v),ne&&Tt(0)),r?(wo=r._initted,cs(1),r.render(r.duration(),!0,!0),ti=yt(P.a)-Oe+_t+ut,ei=Math.abs(_t-ti)>1,Y&&ei&&hi.splice(hi.length-2,2),r.render(0,!0,!0),wo||r.invalidate(!0),r.parent||r.totalTime(r.totalTime()),cs(0)):ti=_t,Ve&&(Ve.value?Ve.style["overflow"+P.a.toUpperCase()]=Ve.value:Ve.style.removeProperty("overflow-"+P.a));else if(d&&Tt()&&!x)for(Vt=d.parentNode;Vt&&Vt!==it;)Vt._pinOffset&&(tt-=Vt._pinOffset,vt-=Vt._pinOffset),Vt=Vt.parentNode;Pr&&Pr.forEach(function(_i){return _i.revert(!1,!0)}),g.start=tt,g.end=vt,jt=Jt=ne?We:Tt(),!x&&!ne&&(jt<We&&Tt(We),g.scroll.rec=0),g.revert(!1,!0),bt=qt(),Ie&&(rt=-1,Ie.restart(!0)),$t=0,r&&N&&(r._initted||zi)&&r.progress()!==zi&&r.progress(zi||0,!0).render(r.time(),!0,!0),(Ht||Bt!==g.progress||x||p||r&&!r._initted)&&(r&&!N&&(r._initted||Bt||r.vars.immediateRender!==!1)&&r.totalProgress(x&&tt<-.001&&!Bt?D.utils.normalize(tt,vt,0):Bt,!0),g.progress=Ht||(jt-tt)/_t===Bt?0:Bt),c&&_&&(At._pinOffset=Math.round(g.progress*ti)),Q&&Q.invalidate(),isNaN(Or)||(Or-=D.getProperty(w,P.p),_n-=D.getProperty(ge,P.p),kn(w,P,Or),kn(le,P,Or-(X||0)),kn(ge,P,_n),kn(_e,P,_n-(X||0))),Ht&&!ne&&g.update(),f&&!ne&&!ci&&(ci=!0,f(g),ci=!1)}},g.getVelocity=function(){return(Tt()-Jt)/(qt()-Nr)*1e3||0},g.endAnimation=function(){Ar(g.callbackAnimation),r&&(Q?Q.progress(1):r.paused()?N||Ar(r,g.direction<0,1):Ar(r,r.reversed()))},g.labelToScroll=function(M){return r&&r.labels&&(tt||g.refresh()||tt)+r.labels[M]/r.duration()*_t||0},g.getTrailing=function(M){var B=q.indexOf(g),L=g.direction>0?q.slice(0,B).reverse():q.slice(B+1);return(ye(M)?L.filter(function(X){return X.vars.preventOverlaps===M}):L).filter(function(X){return g.direction>0?X.end<=tt:X.start>=vt})},g.update=function(M,B,L){if(!(x&&!L&&!M)){var X=ne===!0?We:g.scroll(),Rt=M?0:(X-tt)/_t,Z=Rt<0?0:Rt>1?1:Rt||0,wt=g.progress,Ht,gt,ut,st,Ye,ct,me,Xe;if(B&&(Jt=jt,jt=x?Tt():X,y&&(Ai=pi,pi=r&&!N?r.totalProgress():Z)),m&&c&&!$t&&!wn&&Le&&(!Z&&tt<X+(X-Jt)/(qt()-Nr)*m?Z=1e-4:Z===1&&vt>X+(X-Jt)/(qt()-Nr)*m&&(Z=.9999)),Z!==wt&&g.enabled){if(Ht=g.isActive=!!Z&&Z<1,gt=!!wt&&wt<1,ct=Ht!==gt,Ye=ct||!!Z!=!!wt,g.direction=Z>wt?1:-1,g.progress=Z,Ye&&!$t&&(ut=Z&&!wt?0:Z===1?1:wt===1?2:3,N&&(st=!ct&&R[ut+1]!=="none"&&R[ut+1]||R[ut],Xe=r&&(st==="complete"||st==="reset"||st in r))),C&&(ct||Xe)&&(Xe||h||!r)&&(Kt(C)?C(g):g.getTrailing(C).forEach(function(Li){return Li.endAnimation()})),N||(Q&&!$t&&!wn?(Q._dp._time-Q._start!==Q._time&&Q.render(Q._dp._time-Q._start),Q.resetTo?Q.resetTo("totalProgress",Z,r._tTime/r._tDur):(Q.vars.totalProgress=Z,Q.invalidate().restart())):r&&r.totalProgress(Z,!!($t&&(bt||M)))),c){if(M&&_&&(At.style[_+P.os2]=Er),!Y)Ne(Ir(Oe+ti*Z));else if(Ye){if(me=!M&&Z>wt&&vt+1>X&&X+1>=Ke(O,P),v)if(!M&&(Ht||me)){var Ft=si(c,!0),It=X-tt;jo(c,it,Ft.top+(P===Mt?It:0)+Ot,Ft.left+(P===Mt?0:It)+Ot)}else jo(c,At);vr(Ht||me?hi:Di),ei&&Z<1&&Ht||Ne(Oe+(Z===1&&!me?ti:0))}}y&&!Zt.tween&&!$t&&!wn&&Ie.restart(!0),a&&(ct||E&&Z&&(Z<1||!hs))&&ln(a.targets).forEach(function(Li){return Li.classList[Ht||E?"add":"remove"](a.className)}),o&&!N&&!M&&o(g),Ye&&!$t?(N&&(Xe&&(st==="complete"?r.pause().totalProgress(1):st==="reset"?r.restart(!0).pause():st==="restart"?r.restart(!0):r[st]()),o&&o(g)),(ct||!hs)&&(u&&ct&&ps(g,u),W[ut]&&ps(g,W[ut]),E&&(Z===1?g.kill(!1,1):W[ut]=0),ct||(ut=Z===1?1:3,W[ut]&&ps(g,W[ut]))),k&&!Ht&&Math.abs(g.getVelocity())>(Wr(k)?k:2500)&&(Ar(g.callbackAnimation),Q?Q.progress(1):Ar(r,st==="reverse"?1:!Z,1))):N&&o&&!$t&&o(g)}if(tr){var Vt=x?X/x.duration()*(x._caScrollDist||0):X;dn(Vt+(w._isFlipped?1:0)),tr(Vt)}ir&&ir(-X/x.duration()*(x._caScrollDist||0))}},g.enable=function(M,B){g.enabled||(g.enabled=!0,Lt(O,"resize",Yr),I||Lt(O,"scroll",sr),J&&Lt(s,"refreshInit",J),M!==!1&&(g.progress=Bt=0,jt=Jt=rt=Tt()),B!==!1&&g.refresh())},g.getTween=function(M){return M&&Zt?Zt.tween:Q},g.setPositions=function(M,B,L,X){if(x){var Rt=x.scrollTrigger,Z=x.duration(),wt=Rt.end-Rt.start;M=Rt.start+wt*M/Z,B=Rt.start+wt*B/Z}g.refresh(!1,!1,{start:Ho(M,L&&!!g._startClamp),end:Ho(B,L&&!!g._endClamp)},X),g.update()},g.adjustPinSpacing=function(M){if(Ct&&M){var B=Ct.indexOf(P.d)+1;Ct[B]=parseFloat(Ct[B])+M+Ot,Ct[1]=parseFloat(Ct[1])+M+Ot,vr(Ct)}},g.disable=function(M,B){if(M!==!1&&g.revert(!0,!0),g.enabled&&(g.enabled=g.isActive=!1,B||Q&&Q.pause(),We=0,Xt&&(Xt.uncache=1),J&&zt(s,"refreshInit",J),Ie&&(Ie.pause(),Zt.tween&&Zt.tween.kill()&&(Zt.tween=0)),!I)){for(var L=q.length;L--;)if(q[L].scroller===O&&q[L]!==g)return;zt(O,"resize",Yr),I||zt(O,"scroll",sr)}},g.kill=function(M,B){g.disable(M,B),Q&&!B&&Q.kill(),l&&delete Ys[l];var L=q.indexOf(g);L>=0&&q.splice(L,1),L===re&&Fn>0&&re--,L=0,q.forEach(function(X){return X.scroller===g.scroller&&(L=1)}),L||ne||(g.scroll.rec=0),r&&(r.scrollTrigger=null,M&&r.revert({kill:!1}),B||r.kill()),le&&[le,_e,w,ge].forEach(function(X){return X.parentNode&&X.parentNode.removeChild(X)}),Jr===g&&(Jr=0),c&&(Xt&&(Xt.uncache=1),L=0,q.forEach(function(X){return X.pin===c&&L++}),L||(Xt.spacer=0)),e.onKill&&e.onKill(g)},q.push(g),g.enable(!1,!1),ii&&ii(g),r&&r.add&&!_t){var et=g.update;g.update=function(){g.update=et,K.cache++,tt||vt||g.refresh()},D.delayedCall(.01,g.update),_t=.01,tt=vt=0}else g.refresh();c&&bf()},s.register=function(e){return lr||(D=e||El(),Cl()&&window.document&&s.enable(),lr=Fr),lr},s.defaults=function(e){if(e)for(var r in e)Tn[r]=e[r];return Tn},s.disable=function(e,r){Fr=0,q.forEach(function(o){return o[r?"kill":"disable"](e)}),zt(G,"wheel",sr),zt(lt,"scroll",sr),clearInterval(yn),zt(lt,"touchcancel",$e),zt(it,"touchstart",$e),Sn(zt,lt,"pointerdown,touchstart,mousedown",Vo),Sn(zt,lt,"pointerup,touchend,mouseup",Uo),Gn.kill(),xn(zt);for(var n=0;n<K.length;n+=3)bn(zt,K[n],K[n+1]),bn(zt,K[n],K[n+2])},s.enable=function(){if(G=window,lt=document,xe=lt.documentElement,it=lt.body,D&&(ln=D.utils.toArray,qr=D.utils.clamp,Is=D.core.context||$e,cs=D.core.suppressOverwrites||$e,ho=G.history.scrollRestoration||"auto",Bs=G.pageYOffset||0,D.core.globals("ScrollTrigger",s),it)){Fr=1,mr=document.createElement("div"),mr.style.height="100vh",mr.style.position="absolute",Nl(),gf(),St.register(D),s.isTouch=St.isTouch,mi=St.isTouch&&/(iPad|iPhone|iPod|Mac)/g.test(navigator.userAgent),Fs=St.isTouch===1,Lt(G,"wheel",sr),co=[G,lt,xe,it],D.matchMedia?(s.matchMedia=function(u){var f=D.matchMedia(),h;for(h in u)f.add(h,u[h]);return f},D.addEventListener("matchMediaInit",function(){zl(),yo()}),D.addEventListener("matchMediaRevert",function(){return Rl()}),D.addEventListener("matchMedia",function(){Xi(0,1),ji("matchMedia")}),D.matchMedia().add("(orientation: portrait)",function(){return _s(),_s})):console.warn("Requires GSAP 3.11.0 or later"),_s(),Lt(lt,"scroll",sr);var e=it.hasAttribute("style"),r=it.style,n=r.borderTopStyle,o=D.core.Animation.prototype,a,l;for(o.revert||Object.defineProperty(o,"revert",{value:function(){return this.time(-.01,!0)}}),r.borderTopStyle="solid",a=si(it),Mt.m=Math.round(a.top+Mt.sc())||0,oe.m=Math.round(a.left+oe.sc())||0,n?r.borderTopStyle=n:r.removeProperty("border-top-style"),e||(it.setAttribute("style",""),it.removeAttribute("style")),yn=setInterval(Go,250),D.delayedCall(.5,function(){return wn=0}),Lt(lt,"touchcancel",$e),Lt(it,"touchstart",$e),Sn(Lt,lt,"pointerdown,touchstart,mousedown",Vo),Sn(Lt,lt,"pointerup,touchend,mouseup",Uo),Ns=D.utils.checkPrefix("transform"),In.push(Ns),lr=qt(),Gn=D.delayedCall(.2,Xi).pause(),ur=[lt,"visibilitychange",function(){var u=G.innerWidth,f=G.innerHeight;lt.hidden?(Yo=u,Bo=f):(Yo!==u||Bo!==f)&&Yr()},lt,"DOMContentLoaded",Xi,G,"load",Xi,G,"resize",Yr],xn(Lt),q.forEach(function(u){return u.enable(0,1)}),l=0;l<K.length;l+=3)bn(zt,K[l],K[l+1]),bn(zt,K[l],K[l+2])}},s.config=function(e){"limitCallbacks"in e&&(hs=!!e.limitCallbacks);var r=e.syncInterval;r&&clearInterval(yn)||(yn=r)&&setInterval(Go,r),"ignoreMobileResize"in e&&(Fs=s.isTouch===1&&e.ignoreMobileResize),"autoRefreshEvents"in e&&(xn(zt)||xn(Lt,e.autoRefreshEvents||"none"),Sl=(e.autoRefreshEvents+"").indexOf("resize")===-1)},s.scrollerProxy=function(e,r){var n=ue(e),o=K.indexOf(n),a=Qi(n);~o&&K.splice(o,a?6:2),r&&(a?Qe.unshift(G,r,it,r,xe,r):Qe.unshift(n,r))},s.clearMatchMedia=function(e){q.forEach(function(r){return r._ctx&&r._ctx.query===e&&r._ctx.kill(!0,!0)})},s.isInViewport=function(e,r,n){var o=(ye(e)?ue(e):e).getBoundingClientRect(),a=o[n?qi:Gi]*r||0;return n?o.right-a>0&&o.left+a<G.innerWidth:o.bottom-a>0&&o.top+a<G.innerHeight},s.positionInViewport=function(e,r,n){ye(e)&&(e=ue(e));var o=e.getBoundingClientRect(),a=o[n?qi:Gi],l=r==null?a/2:r in Qn?Qn[r]*a:~r.indexOf("%")?parseFloat(r)*a/100:parseFloat(r)||0;return n?(o.left+l)/G.innerWidth:(o.top+l)/G.innerHeight},s.killAll=function(e){if(q.slice(0).forEach(function(n){return n.vars.id!=="ScrollSmoother"&&n.kill()}),e!==!0){var r=Zi.killAll||[];Zi={},r.forEach(function(n){return n()})}},s}();U.version="3.14.2";U.saveStyles=function(s){return s?ln(s).forEach(function(t){if(t&&t.style){var i=ve.indexOf(t);i>=0&&ve.splice(i,5),ve.push(t,t.style.cssText,t.getBBox&&t.getAttribute("transform"),D.core.getCache(t),Is())}}):ve};U.revert=function(s,t){return yo(!s,t)};U.create=function(s,t){return new U(s,t)};U.refresh=function(s){return s?Yr(!0):(lr||U.register())&&Xi(!0)};U.update=function(s){return++K.cache&&ai(s===!0?2:0)};U.clearScrollMemory=Ll;U.maxScroll=function(s,t){return Ke(s,t?oe:Mt)};U.getScrollFunc=function(s,t){return Oi(ue(s),t?oe:Mt)};U.getById=function(s){return Ys[s]};U.getAll=function(){return q.filter(function(s){return s.vars.id!=="ScrollSmoother"})};U.isScrolling=function(){return!!Le};U.snapDirectional=vo;U.addEventListener=function(s,t){var i=Zi[s]||(Zi[s]=[]);~i.indexOf(t)||i.push(t)};U.removeEventListener=function(s,t){var i=Zi[s],e=i&&i.indexOf(t);e>=0&&i.splice(e,1)};U.batch=function(s,t){var i=[],e={},r=t.interval||.016,n=t.batchMax||1e9,o=function(u,f){var h=[],d=[],c=D.delayedCall(r,function(){f(h,d),h=[],d=[]}).pause();return function(_){h.length||c.restart(!0),h.push(_.trigger),d.push(_),n<=h.length&&c.progress(1)}},a;for(a in t)e[a]=a.substr(0,2)==="on"&&Kt(t[a])&&a!=="onRefreshInit"?o(a,t[a]):t[a];return Kt(n)&&(n=n(),Lt(U,"refresh",function(){return n=t.batchMax()})),ln(s).forEach(function(l){var u={};for(a in e)u[a]=e[a];u.trigger=l,i.push(U.create(u))}),i};var ta=function(t,i,e,r){return i>r?t(r):i<0&&t(0),e>r?(r-i)/(e-i):e<0?i/(i-e):1},ms=function s(t,i){i===!0?t.style.removeProperty("touch-action"):t.style.touchAction=i===!0?"auto":i?"pan-"+i+(St.isTouch?" pinch-zoom":""):"none",t===xe&&s(it,i)},Pn={auto:1,scroll:1},Pf=function(t){var i=t.event,e=t.target,r=t.axis,n=(i.changedTouches?i.changedTouches[0]:i).target,o=n._gsap||D.core.getCache(n),a=qt(),l;if(!o._isScrollT||a-o._isScrollT>2e3){for(;n&&n!==it&&(n.scrollHeight<=n.clientHeight&&n.scrollWidth<=n.clientWidth||!(Pn[(l=Ae(n)).overflowY]||Pn[l.overflowX]));)n=n.parentNode;o._isScroll=n&&n!==e&&!Qi(n)&&(Pn[(l=Ae(n)).overflowY]||Pn[l.overflowX]),o._isScrollT=a}(o._isScroll||r==="x")&&(i.stopPropagation(),i._gsapAllow=!0)},Il=function(t,i,e,r){return St.create({target:t,capture:!0,debounce:!1,lockAxis:!0,type:i,onWheel:r=r&&Pf,onPress:r,onDrag:r,onScroll:r,onEnable:function(){return e&&Lt(lt,St.eventTypes[0],ia,!1,!0)},onDisable:function(){return zt(lt,St.eventTypes[0],ia,!0)}})},Of=/(input|label|select|textarea)/i,ea,ia=function(t){var i=Of.test(t.target.tagName);(i||ea)&&(t._gsapAllow=!0,ea=i)},Mf=function(t){Yi(t)||(t={}),t.preventDefault=t.isNormalizer=t.allowClicks=!0,t.type||(t.type="wheel,touch"),t.debounce=!!t.debounce,t.id=t.id||"normalizer";var i=t,e=i.normalizeScrollX,r=i.momentum,n=i.allowNestedScroll,o=i.onRelease,a,l,u=ue(t.target)||xe,f=D.core.globals().ScrollSmoother,h=f&&f.get(),d=mi&&(t.content&&ue(t.content)||h&&t.content!==!1&&!h.smooth()&&h.content()),c=Oi(u,Mt),_=Oi(u,oe),p=1,m=(St.isTouch&&G.visualViewport?G.visualViewport.scale*G.visualViewport.width:G.outerWidth)/G.innerWidth,b=0,S=Kt(r)?function(){return r(a)}:function(){return r||2.8},E,y,v=Il(u,t.type,!0,n),T=function(){return y=!1},x=$e,k=$e,C=function(){l=Ke(u,Mt),k=qr(mi?1:0,l),e&&(x=qr(0,Ke(u,oe))),E=Ki},P=function(){d._gsap.y=Ir(parseFloat(d._gsap.y)+c.offset)+"px",d.style.transform="matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, "+parseFloat(d._gsap.y)+", 0, 1)",c.offset=c.cacheID=0},N=function(){if(y){requestAnimationFrame(T);var $=Ir(a.deltaY/2),H=k(c.v-$);if(d&&H!==c.v+c.offset){c.offset=H-c.v;var g=Ir((parseFloat(d&&d._gsap.y)||0)-c.offset);d.style.transform="matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, "+g+", 0, 1)",d._gsap.y=g+"px",c.cacheID=K.cache,ai()}return!0}c.offset&&P(),y=!0},O,A,I,Y,W=function(){C(),O.isActive()&&O.vars.scrollY>l&&(c()>l?O.progress(1)&&c(l):O.resetTo("scrollY",l))};return d&&D.set(d,{y:"+=0"}),t.ignoreCheck=function(R){return mi&&R.type==="touchmove"&&N()||p>1.05&&R.type!=="touchstart"||a.isGesturing||R.touches&&R.touches.length>1},t.onPress=function(){y=!1;var R=p;p=Ir((G.visualViewport&&G.visualViewport.scale||1)/m),O.pause(),R!==p&&ms(u,p>1.01?!0:e?!1:"x"),A=_(),I=c(),C(),E=Ki},t.onRelease=t.onGestureStart=function(R,$){if(c.offset&&P(),!$)Y.restart(!0);else{K.cache++;var H=S(),g,J;e&&(g=_(),J=g+H*.05*-R.velocityX/.227,H*=ta(_,g,J,Ke(u,oe)),O.vars.scrollX=x(J)),g=c(),J=g+H*.05*-R.velocityY/.227,H*=ta(c,g,J,Ke(u,Mt)),O.vars.scrollY=k(J),O.invalidate().duration(H).play(.01),(mi&&O.vars.scrollY>=l||g>=l-1)&&D.to({},{onUpdate:W,duration:H})}o&&o(R)},t.onWheel=function(){O._ts&&O.pause(),qt()-b>1e3&&(E=0,b=qt())},t.onChange=function(R,$,H,g,J){if(Ki!==E&&C(),$&&e&&_(x(g[2]===$?A+(R.startX-R.x):_()+$-g[1])),H){c.offset&&P();var nt=J[2]===H,Dt=nt?I+R.startY-R.y:c()+H-J[1],rt=k(Dt);nt&&Dt!==rt&&(I+=rt-Dt),c(rt)}(H||$)&&ai()},t.onEnable=function(){ms(u,e?!1:"x"),U.addEventListener("refresh",W),Lt(G,"resize",W),c.smooth&&(c.target.style.scrollBehavior="auto",c.smooth=_.smooth=!1),v.enable()},t.onDisable=function(){ms(u,!0),zt(G,"resize",W),U.removeEventListener("refresh",W),v.kill()},t.lockAxis=t.lockAxis!==!1,a=new St(t),a.iOS=mi,mi&&!c()&&c(1),mi&&D.ticker.add($e),Y=a._dc,O=D.to(a,{ease:"power4",paused:!0,inherit:!1,scrollX:e?"+=0.1":"+=0",scrollY:"+=0.1",modifiers:{scrollY:Fl(c,c(),function(){return O.pause()})},onUpdate:ai,onComplete:Y.vars.onComplete}),a};U.sort=function(s){if(Kt(s))return q.sort(s);var t=G.pageYOffset||0;return U.getAll().forEach(function(i){return i._sortY=i.trigger?t+i.trigger.getBoundingClientRect().top:i.start+G.innerHeight}),q.sort(s||function(i,e){return(i.vars.refreshPriority||0)*-1e6+(i.vars.containerAnimation?1e6:i._sortY)-((e.vars.containerAnimation?1e6:e._sortY)+(e.vars.refreshPriority||0)*-1e6)})};U.observe=function(s){return new St(s)};U.normalizeScroll=function(s){if(typeof s>"u")return ie;if(s===!0&&ie)return ie.enable();if(s===!1){ie&&ie.kill(),ie=s;return}var t=s instanceof St?s:Mf(s);return ie&&ie.target===t.target&&ie.kill(),Qi(t.target)&&(ie=t),t};U.core={_getVelocityProp:Ls,_inputObserver:Il,_scrollers:K,_proxies:Qe,bridge:{ss:function(){Le||ji("scrollStart"),Le=qt()},ref:function(){return $t}}};El()&&D.registerPlugin(U);/*!
|
|
30
|
+
* SplitText 3.14.2
|
|
31
|
+
* https://gsap.com
|
|
32
|
+
*
|
|
33
|
+
* @license Copyright 2025, GreenSock. All rights reserved. Subject to the terms at https://gsap.com/standard-license.
|
|
34
|
+
* @author: Jack Doyle
|
|
35
|
+
*/let Rr,or,ra=typeof Symbol=="function"?Symbol():"_split",Hs,Df=()=>Hs||cn.register(window.gsap),na=typeof Intl<"u"&&"Segmenter"in Intl?new Intl.Segmenter:0,fn=s=>typeof s=="string"?fn(document.querySelectorAll(s)):"length"in s?Array.from(s).reduce((t,i)=>(typeof i=="string"?t.push(...fn(i)):t.push(i),t),[]):[s],sa=s=>fn(s).filter(t=>t instanceof HTMLElement),Vs=[],vs=function(){},Af={add:s=>s()},Rf=/\s+/g,oa=new RegExp("\\p{RI}\\p{RI}|\\p{Emoji}(\\p{EMod}|\\u{FE0F}\\u{20E3}?|[\\u{E0020}-\\u{E007E}]+\\u{E007F})?(\\u{200D}\\p{Emoji}(\\p{EMod}|\\u{FE0F}\\u{20E3}?|[\\u{E0020}-\\u{E007E}]+\\u{E007F})?)*|.","gu"),Zn={left:0,top:0,width:0,height:0},zf=(s,t)=>{for(;++t<s.length&&s[t]===Zn;);return s[t]||Zn},aa=({element:s,html:t,ariaL:i,ariaH:e})=>{s.innerHTML=t,i?s.setAttribute("aria-label",i):s.removeAttribute("aria-label"),e?s.setAttribute("aria-hidden",e):s.removeAttribute("aria-hidden")},la=(s,t)=>{if(t){let i=new Set(s.join("").match(t)||Vs),e=s.length,r,n,o,a;if(i.size)for(;--e>-1;){n=s[e];for(o of i)if(o.startsWith(n)&&o.length>n.length){for(r=0,a=n;o.startsWith(a+=s[e+ ++r])&&a.length<o.length;);if(r&&a.length===o.length){s[e]=o,s.splice(e+1,r);break}}}}return s},ua=s=>window.getComputedStyle(s).display==="inline"&&(s.style.display="inline-block"),ar=(s,t,i)=>t.insertBefore(typeof s=="string"?document.createTextNode(s):s,i),Us=(s,t,i)=>{let e=t[s+"sClass"]||"",{tag:r="div",aria:n="auto",propIndex:o=!1}=t,a=s==="line"?"block":"inline-block",l=e.indexOf("++")>-1,u=f=>{let h=document.createElement(r),d=i.length+1;return e&&(h.className=e+(l?" "+e+d:"")),o&&h.style.setProperty("--"+s,d+""),n!=="none"&&h.setAttribute("aria-hidden","true"),r!=="span"&&(h.style.position="relative",h.style.display=a),h.textContent=f,i.push(h),h};return l&&(e=e.replace("++","")),u.collection=i,u},Lf=(s,t,i,e)=>{let r=Us("line",i,e),n=window.getComputedStyle(s).textAlign||"left";return(o,a)=>{let l=r("");for(l.style.textAlign=n,s.insertBefore(l,t[o]);o<a;o++)l.appendChild(t[o]);l.normalize()}},Wl=(s,t,i,e,r,n,o,a,l,u)=>{var f;let h=Array.from(s.childNodes),d=0,{wordDelimiter:c,reduceWhiteSpace:_=!0,prepareText:p}=t,m=s.getBoundingClientRect(),b=m,S=!_&&window.getComputedStyle(s).whiteSpace.substring(0,3)==="pre",E=0,y=i.collection,v,T,x,k,C,P,N,O,A,I,Y,W,R,$,H,g,J,nt;for(typeof c=="object"?(x=c.delimiter||c,T=c.replaceWith||""):T=c===""?"":c||" ",v=T!==" ";d<h.length;d++)if(k=h[d],k.nodeType===3){for(H=k.textContent||"",_?H=H.replace(Rf," "):S&&(H=H.replace(/\n/g,T+`
|
|
36
|
+
`)),p&&(H=p(H,s)),k.textContent=H,C=T||x?H.split(x||T):H.match(a)||Vs,J=C[C.length-1],O=v?J.slice(-1)===" ":!J,J||C.pop(),b=m,N=v?C[0].charAt(0)===" ":!C[0],N&&ar(" ",s,k),C[0]||C.shift(),la(C,l),n&&u||(k.textContent=""),A=1;A<=C.length;A++)if(g=C[A-1],!_&&S&&g.charAt(0)===`
|
|
37
|
+
`&&((f=k.previousSibling)==null||f.remove(),ar(document.createElement("br"),s,k),g=g.slice(1)),!_&&g==="")ar(T,s,k);else if(g===" ")s.insertBefore(document.createTextNode(" "),k);else{if(v&&g.charAt(0)===" "&&ar(" ",s,k),E&&A===1&&!N&&y.indexOf(E.parentNode)>-1?(P=y[y.length-1],P.appendChild(document.createTextNode(e?"":g))):(P=i(e?"":g),ar(P,s,k),E&&A===1&&!N&&P.insertBefore(E,P.firstChild)),e)for(Y=na?la([...na.segment(g)].map(Dt=>Dt.segment),l):g.match(a)||Vs,nt=0;nt<Y.length;nt++)P.appendChild(Y[nt]===" "?document.createTextNode(" "):e(Y[nt]));if(n&&u){if(H=k.textContent=H.substring(g.length+1,H.length),I=P.getBoundingClientRect(),I.top>b.top&&I.left<=b.left){for(W=s.cloneNode(),R=s.childNodes[0];R&&R!==P;)$=R,R=R.nextSibling,W.appendChild($);s.parentNode.insertBefore(W,s),r&&ua(W)}b=I}(A<C.length||O)&&ar(A>=C.length?" ":v&&g.slice(-1)===" "?" "+T:T,s,k)}s.removeChild(k),E=0}else k.nodeType===1&&(o&&o.indexOf(k)>-1?(y.indexOf(k.previousSibling)>-1&&y[y.length-1].appendChild(k),E=k):(Wl(k,t,i,e,r,n,o,a,l,!0),E=0),r&&ua(k))};const Yl=class Bl{constructor(t,i){this.isSplit=!1,Df(),this.elements=sa(t),this.chars=[],this.words=[],this.lines=[],this.masks=[],this.vars=i,this.elements.forEach(o=>{var a;i.overwrite!==!1&&((a=o[ra])==null||a._data.orig.filter(({element:l})=>l===o).forEach(aa)),o[ra]=this}),this._split=()=>this.isSplit&&this.split(this.vars);let e=[],r,n=()=>{let o=e.length,a;for(;o--;){a=e[o];let l=a.element.offsetWidth;if(l!==a.width){a.width=l,this._split();return}}};this._data={orig:e,obs:typeof ResizeObserver<"u"&&new ResizeObserver(()=>{clearTimeout(r),r=setTimeout(n,200)})},vs(this),this.split(i)}split(t){return(this._ctx||Af).add(()=>{this.isSplit&&this.revert(),this.vars=t=t||this.vars||{};let{type:i="chars,words,lines",aria:e="auto",deepSlice:r=!0,smartWrap:n,onSplit:o,autoSplit:a=!1,specialChars:l,mask:u}=this.vars,f=i.indexOf("lines")>-1,h=i.indexOf("chars")>-1,d=i.indexOf("words")>-1,c=h&&!d&&!f,_=l&&("push"in l?new RegExp("(?:"+l.join("|")+")","gu"):l),p=_?new RegExp(_.source+"|"+oa.source,"gu"):oa,m=!!t.ignore&&sa(t.ignore),{orig:b,animTime:S,obs:E}=this._data,y;(h||d||f)&&(this.elements.forEach((v,T)=>{b[T]={element:v,html:v.innerHTML,ariaL:v.getAttribute("aria-label"),ariaH:v.getAttribute("aria-hidden")},e==="auto"?v.setAttribute("aria-label",(v.textContent||"").trim()):e==="hidden"&&v.setAttribute("aria-hidden","true");let x=[],k=[],C=[],P=h?Us("char",t,x):null,N=Us("word",t,k),O,A,I,Y;if(Wl(v,t,N,P,c,r&&(f||c),m,p,_,!1),f){let W=fn(v.childNodes),R=Lf(v,W,t,C),$,H=[],g=0,J=W.map(rt=>rt.nodeType===1?rt.getBoundingClientRect():Zn),nt=Zn,Dt;for(O=0;O<W.length;O++)$=W[O],$.nodeType===1&&($.nodeName==="BR"?((!O||W[O-1].nodeName!=="BR")&&(H.push($),R(g,O+1)),g=O+1,nt=zf(J,O)):(Dt=J[O],O&&Dt.top>nt.top&&Dt.left<nt.left+nt.width-1&&(R(g,O),g=O),nt=Dt));g<O&&R(g,O),H.forEach(rt=>{var bt;return(bt=rt.parentNode)==null?void 0:bt.removeChild(rt)})}if(!d){for(O=0;O<k.length;O++)if(A=k[O],h||!A.nextSibling||A.nextSibling.nodeType!==3)if(n&&!f){for(I=document.createElement("span"),I.style.whiteSpace="nowrap";A.firstChild;)I.appendChild(A.firstChild);A.replaceWith(I)}else A.replaceWith(...A.childNodes);else Y=A.nextSibling,Y&&Y.nodeType===3&&(Y.textContent=(A.textContent||"")+(Y.textContent||""),A.remove());k.length=0,v.normalize()}this.lines.push(...C),this.words.push(...k),this.chars.push(...x)}),u&&this[u]&&this.masks.push(...this[u].map(v=>{let T=v.cloneNode();return v.replaceWith(T),T.appendChild(v),v.className&&(T.className=v.className.trim()+"-mask"),T.style.overflow="clip",T}))),this.isSplit=!0,or&&f&&(a?or.addEventListener("loadingdone",this._split):or.status==="loading"&&console.warn("SplitText called before fonts loaded")),(y=o&&o(this))&&y.totalTime&&(this._data.anim=S?y.totalTime(S):y),f&&a&&this.elements.forEach((v,T)=>{b[T].width=v.offsetWidth,E&&E.observe(v)})}),this}kill(){let{obs:t}=this._data;t&&t.disconnect(),or?.removeEventListener("loadingdone",this._split)}revert(){var t,i;if(this.isSplit){let{orig:e,anim:r}=this._data;this.kill(),e.forEach(aa),this.chars.length=this.words.length=this.lines.length=e.length=this.masks.length=0,this.isSplit=!1,r&&(this._data.animTime=r.totalTime(),r.revert()),(i=(t=this.vars).onRevert)==null||i.call(t,this)}return this}static create(t,i){return new Bl(t,i)}static register(t){Rr=Rr||t||window.gsap,Rr&&(fn=Rr.utils.toArray,vs=Rr.core.context||vs),!Hs&&window.innerWidth>0&&(or=document.fonts,Hs=!0)}};Yl.version="3.14.2";let cn=Yl;var Nf="1.3.17";function Xl(s,t,i){return Math.max(s,Math.min(t,i))}function Ff(s,t,i){return(1-i)*s+i*t}function If(s,t,i,e){return Ff(s,t,1-Math.exp(-i*e))}function Wf(s,t){return(s%t+t)%t}var Yf=class{constructor(){z(this,"isRunning",!1);z(this,"value",0);z(this,"from",0);z(this,"to",0);z(this,"currentTime",0);z(this,"lerp");z(this,"duration");z(this,"easing");z(this,"onUpdate")}advance(s){if(!this.isRunning)return;let t=!1;if(this.duration&&this.easing){this.currentTime+=s;const i=Xl(0,this.currentTime/this.duration,1);t=i>=1;const e=t?1:this.easing(i);this.value=this.from+(this.to-this.from)*e}else this.lerp?(this.value=If(this.value,this.to,this.lerp*60,s),Math.round(this.value)===this.to&&(this.value=this.to,t=!0)):(this.value=this.to,t=!0);t&&this.stop(),this.onUpdate?.(this.value,t)}stop(){this.isRunning=!1}fromTo(s,t,{lerp:i,duration:e,easing:r,onStart:n,onUpdate:o}){this.from=this.value=s,this.to=t,this.lerp=i,this.duration=e,this.easing=r,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=o}};function Bf(s,t){let i;return function(...e){let r=this;clearTimeout(i),i=setTimeout(()=>{i=void 0,s.apply(r,e)},t)}}var Xf=class{constructor(s,t,{autoResize:i=!0,debounce:e=250}={}){z(this,"width",0);z(this,"height",0);z(this,"scrollHeight",0);z(this,"scrollWidth",0);z(this,"debouncedResize");z(this,"wrapperResizeObserver");z(this,"contentResizeObserver");z(this,"resize",()=>{this.onWrapperResize(),this.onContentResize()});z(this,"onWrapperResize",()=>{this.wrapper instanceof Window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)});z(this,"onContentResize",()=>{this.wrapper instanceof Window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)});this.wrapper=s,this.content=t,i&&(this.debouncedResize=Bf(this.resize,e),this.wrapper instanceof Window?window.addEventListener("resize",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),this.wrapper===window&&this.debouncedResize&&window.removeEventListener("resize",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}},Hl=class{constructor(){z(this,"events",{})}emit(s,...t){let i=this.events[s]||[];for(let e=0,r=i.length;e<r;e++)i[e]?.(...t)}on(s,t){return this.events[s]?.push(t)||(this.events[s]=[t]),()=>{this.events[s]=this.events[s]?.filter(i=>t!==i)}}off(s,t){this.events[s]=this.events[s]?.filter(i=>t!==i)}destroy(){this.events={}}},fa=100/6,gi={passive:!1},Hf=class{constructor(s,t={wheelMultiplier:1,touchMultiplier:1}){z(this,"touchStart",{x:0,y:0});z(this,"lastDelta",{x:0,y:0});z(this,"window",{width:0,height:0});z(this,"emitter",new Hl);z(this,"onTouchStart",s=>{const{clientX:t,clientY:i}=s.targetTouches?s.targetTouches[0]:s;this.touchStart.x=t,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit("scroll",{deltaX:0,deltaY:0,event:s})});z(this,"onTouchMove",s=>{const{clientX:t,clientY:i}=s.targetTouches?s.targetTouches[0]:s,e=-(t-this.touchStart.x)*this.options.touchMultiplier,r=-(i-this.touchStart.y)*this.options.touchMultiplier;this.touchStart.x=t,this.touchStart.y=i,this.lastDelta={x:e,y:r},this.emitter.emit("scroll",{deltaX:e,deltaY:r,event:s})});z(this,"onTouchEnd",s=>{this.emitter.emit("scroll",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:s})});z(this,"onWheel",s=>{let{deltaX:t,deltaY:i,deltaMode:e}=s;const r=e===1?fa:e===2?this.window.width:1,n=e===1?fa:e===2?this.window.height:1;t*=r,i*=n,t*=this.options.wheelMultiplier,i*=this.options.wheelMultiplier,this.emitter.emit("scroll",{deltaX:t,deltaY:i,event:s})});z(this,"onWindowResize",()=>{this.window={width:window.innerWidth,height:window.innerHeight}});this.element=s,this.options=t,window.addEventListener("resize",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener("wheel",this.onWheel,gi),this.element.addEventListener("touchstart",this.onTouchStart,gi),this.element.addEventListener("touchmove",this.onTouchMove,gi),this.element.addEventListener("touchend",this.onTouchEnd,gi)}on(s,t){return this.emitter.on(s,t)}destroy(){this.emitter.destroy(),window.removeEventListener("resize",this.onWindowResize,!1),this.element.removeEventListener("wheel",this.onWheel,gi),this.element.removeEventListener("touchstart",this.onTouchStart,gi),this.element.removeEventListener("touchmove",this.onTouchMove,gi),this.element.removeEventListener("touchend",this.onTouchEnd,gi)}},ca=s=>Math.min(1,1.001-Math.pow(2,-10*s)),Vf=class{constructor({wrapper:s=window,content:t=document.documentElement,eventsTarget:i=s,smoothWheel:e=!0,syncTouch:r=!1,syncTouchLerp:n=.075,touchInertiaExponent:o=1.7,duration:a,easing:l,lerp:u=.1,infinite:f=!1,orientation:h="vertical",gestureOrientation:d=h==="horizontal"?"both":"vertical",touchMultiplier:c=1,wheelMultiplier:_=1,autoResize:p=!0,prevent:m,virtualScroll:b,overscroll:S=!0,autoRaf:E=!1,anchors:y=!1,autoToggle:v=!1,allowNestedScroll:T=!1,__experimental__naiveDimensions:x=!1,naiveDimensions:k=x,stopInertiaOnNavigate:C=!1}={}){z(this,"_isScrolling",!1);z(this,"_isStopped",!1);z(this,"_isLocked",!1);z(this,"_preventNextNativeScrollEvent",!1);z(this,"_resetVelocityTimeout",null);z(this,"_rafId",null);z(this,"isTouching");z(this,"time",0);z(this,"userData",{});z(this,"lastVelocity",0);z(this,"velocity",0);z(this,"direction",0);z(this,"options");z(this,"targetScroll");z(this,"animatedScroll");z(this,"animate",new Yf);z(this,"emitter",new Hl);z(this,"dimensions");z(this,"virtualScroll");z(this,"onScrollEnd",s=>{s instanceof CustomEvent||(this.isScrolling==="smooth"||this.isScrolling===!1)&&s.stopPropagation()});z(this,"dispatchScrollendEvent",()=>{this.options.wrapper.dispatchEvent(new CustomEvent("scrollend",{bubbles:this.options.wrapper===window,detail:{lenisScrollEnd:!0}}))});z(this,"onTransitionEnd",s=>{s.propertyName.includes("overflow")&&this.checkOverflow()});z(this,"onClick",s=>{const i=s.composedPath().filter(e=>e instanceof HTMLAnchorElement&&e.getAttribute("href"));if(this.options.anchors){const e=i.find(r=>r.getAttribute("href")?.includes("#"));if(e){const r=e.getAttribute("href");if(r){const n=typeof this.options.anchors=="object"&&this.options.anchors?this.options.anchors:void 0,o=`#${r.split("#")[1]}`;this.scrollTo(o,n)}}}this.options.stopInertiaOnNavigate&&i.find(r=>r.host===window.location.host)&&this.reset()});z(this,"onPointerDown",s=>{s.button===1&&this.reset()});z(this,"onVirtualScroll",s=>{if(typeof this.options.virtualScroll=="function"&&this.options.virtualScroll(s)===!1)return;const{deltaX:t,deltaY:i,event:e}=s;if(this.emitter.emit("virtual-scroll",{deltaX:t,deltaY:i,event:e}),e.ctrlKey||e.lenisStopPropagation)return;const r=e.type.includes("touch"),n=e.type.includes("wheel");this.isTouching=e.type==="touchstart"||e.type==="touchmove";const o=t===0&&i===0;if(this.options.syncTouch&&r&&e.type==="touchstart"&&o&&!this.isStopped&&!this.isLocked){this.reset();return}const l=this.options.gestureOrientation==="vertical"&&i===0||this.options.gestureOrientation==="horizontal"&&t===0;if(o||l)return;let u=e.composedPath();u=u.slice(0,u.indexOf(this.rootElement));const f=this.options.prevent;if(u.find(m=>m instanceof HTMLElement&&(typeof f=="function"&&f?.(m)||m.hasAttribute?.("data-lenis-prevent")||r&&m.hasAttribute?.("data-lenis-prevent-touch")||n&&m.hasAttribute?.("data-lenis-prevent-wheel")||this.options.allowNestedScroll&&this.checkNestedScroll(m,{deltaX:t,deltaY:i}))))return;if(this.isStopped||this.isLocked){e.cancelable&&e.preventDefault();return}if(!(this.options.syncTouch&&r||this.options.smoothWheel&&n)){this.isScrolling="native",this.animate.stop(),e.lenisStopPropagation=!0;return}let d=i;this.options.gestureOrientation==="both"?d=Math.abs(i)>Math.abs(t)?i:t:this.options.gestureOrientation==="horizontal"&&(d=t),(!this.options.overscroll||this.options.infinite||this.options.wrapper!==window&&this.limit>0&&(this.animatedScroll>0&&this.animatedScroll<this.limit||this.animatedScroll===0&&i>0||this.animatedScroll===this.limit&&i<0))&&(e.lenisStopPropagation=!0),e.cancelable&&e.preventDefault();const c=r&&this.options.syncTouch,p=r&&e.type==="touchend";p&&(d=Math.sign(this.velocity)*Math.pow(Math.abs(this.velocity),this.options.touchInertiaExponent)),this.scrollTo(this.targetScroll+d,{programmatic:!1,...c?{lerp:p?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}})});z(this,"onNativeScroll",()=>{if(this._resetVelocityTimeout!==null&&(clearTimeout(this._resetVelocityTimeout),this._resetVelocityTimeout=null),this._preventNextNativeScrollEvent){this._preventNextNativeScrollEvent=!1;return}if(this.isScrolling===!1||this.isScrolling==="native"){const s=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-s,this.direction=Math.sign(this.animatedScroll-s),this.isStopped||(this.isScrolling="native"),this.emit(),this.velocity!==0&&(this._resetVelocityTimeout=setTimeout(()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()},400))}});z(this,"raf",s=>{const t=s-(this.time||s);this.time=s,this.animate.advance(t*.001),this.options.autoRaf&&(this._rafId=requestAnimationFrame(this.raf))});window.lenisVersion=Nf,(!s||s===document.documentElement)&&(s=window),typeof a=="number"&&typeof l!="function"?l=ca:typeof l=="function"&&typeof a!="number"&&(a=1),this.options={wrapper:s,content:t,eventsTarget:i,smoothWheel:e,syncTouch:r,syncTouchLerp:n,touchInertiaExponent:o,duration:a,easing:l,lerp:u,infinite:f,gestureOrientation:d,orientation:h,touchMultiplier:c,wheelMultiplier:_,autoResize:p,prevent:m,virtualScroll:b,overscroll:S,autoRaf:E,anchors:y,autoToggle:v,allowNestedScroll:T,naiveDimensions:k,stopInertiaOnNavigate:C},this.dimensions=new Xf(s,t,{autoResize:p}),this.updateClassName(),this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener("scroll",this.onNativeScroll,!1),this.options.wrapper.addEventListener("scrollend",this.onScrollEnd,{capture:!0}),(this.options.anchors||this.options.stopInertiaOnNavigate)&&this.options.wrapper.addEventListener("click",this.onClick,!1),this.options.wrapper.addEventListener("pointerdown",this.onPointerDown,!1),this.virtualScroll=new Hf(i,{touchMultiplier:c,wheelMultiplier:_}),this.virtualScroll.on("scroll",this.onVirtualScroll),this.options.autoToggle&&(this.checkOverflow(),this.rootElement.addEventListener("transitionend",this.onTransitionEnd,{passive:!0})),this.options.autoRaf&&(this._rafId=requestAnimationFrame(this.raf))}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener("scroll",this.onNativeScroll,!1),this.options.wrapper.removeEventListener("scrollend",this.onScrollEnd,{capture:!0}),this.options.wrapper.removeEventListener("pointerdown",this.onPointerDown,!1),(this.options.anchors||this.options.stopInertiaOnNavigate)&&this.options.wrapper.removeEventListener("click",this.onClick,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName(),this._rafId&&cancelAnimationFrame(this._rafId)}on(s,t){return this.emitter.on(s,t)}off(s,t){return this.emitter.off(s,t)}get overflow(){const s=this.isHorizontal?"overflow-x":"overflow-y";return getComputedStyle(this.rootElement)[s]}checkOverflow(){["hidden","clip"].includes(this.overflow)?this.internalStop():this.internalStart()}setScroll(s){this.isHorizontal?this.options.wrapper.scrollTo({left:s,behavior:"instant"}):this.options.wrapper.scrollTo({top:s,behavior:"instant"})}resize(){this.dimensions.resize(),this.animatedScroll=this.targetScroll=this.actualScroll,this.emit()}emit(){this.emitter.emit("scroll",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){if(this.isStopped){if(this.options.autoToggle){this.rootElement.style.removeProperty("overflow");return}this.internalStart()}}internalStart(){this.isStopped&&(this.reset(),this.isStopped=!1,this.emit())}stop(){if(!this.isStopped){if(this.options.autoToggle){this.rootElement.style.setProperty("overflow","clip");return}this.internalStop()}}internalStop(){this.isStopped||(this.reset(),this.isStopped=!0,this.emit())}scrollTo(s,{offset:t=0,immediate:i=!1,lock:e=!1,programmatic:r=!0,lerp:n=r?this.options.lerp:void 0,duration:o=r?this.options.duration:void 0,easing:a=r?this.options.easing:void 0,onStart:l,onComplete:u,force:f=!1,userData:h}={}){if(!((this.isStopped||this.isLocked)&&!f)){if(typeof s=="string"&&["top","left","start","#"].includes(s))s=0;else if(typeof s=="string"&&["bottom","right","end"].includes(s))s=this.limit;else{let d;if(typeof s=="string"?(d=document.querySelector(s),d||(s==="#top"?s=0:console.warn("Lenis: Target not found",s))):s instanceof HTMLElement&&s?.nodeType&&(d=s),d){if(this.options.wrapper!==window){const _=this.rootElement.getBoundingClientRect();t-=this.isHorizontal?_.left:_.top}const c=d.getBoundingClientRect();s=(this.isHorizontal?c.left:c.top)+this.animatedScroll}}if(typeof s=="number"){if(s+=t,s=Math.round(s),this.options.infinite){if(r){this.targetScroll=this.animatedScroll=this.scroll;const d=s-this.animatedScroll;d>this.limit/2?s=s-this.limit:d<-this.limit/2&&(s=s+this.limit)}}else s=Xl(0,s,this.limit);if(s===this.targetScroll){l?.(this),u?.(this);return}if(this.userData=h??{},i){this.animatedScroll=this.targetScroll=s,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),u?.(this),this.userData={},requestAnimationFrame(()=>{this.dispatchScrollendEvent()});return}r||(this.targetScroll=s),typeof o=="number"&&typeof a!="function"?a=ca:typeof a=="function"&&typeof o!="number"&&(o=1),this.animate.fromTo(this.animatedScroll,s,{duration:o,easing:a,lerp:n,onStart:()=>{e&&(this.isLocked=!0),this.isScrolling="smooth",l?.(this)},onUpdate:(d,c)=>{this.isScrolling="smooth",this.lastVelocity=this.velocity,this.velocity=d-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=d,this.setScroll(this.scroll),r&&(this.targetScroll=d),c||this.emit(),c&&(this.reset(),this.emit(),u?.(this),this.userData={},requestAnimationFrame(()=>{this.dispatchScrollendEvent()}),this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this._preventNextNativeScrollEvent=!0,requestAnimationFrame(()=>{this._preventNextNativeScrollEvent=!1})}checkNestedScroll(s,{deltaX:t,deltaY:i}){const e=Date.now(),r=s._lenis??(s._lenis={});let n,o,a,l,u,f,h,d;const c=this.options.gestureOrientation;if(e-(r.time??0)>2e3){r.time=Date.now();const v=window.getComputedStyle(s);r.computedStyle=v;const T=v.overflowX,x=v.overflowY;if(n=["auto","overlay","scroll"].includes(T),o=["auto","overlay","scroll"].includes(x),r.hasOverflowX=n,r.hasOverflowY=o,!n&&!o||c==="vertical"&&!o||c==="horizontal"&&!n)return!1;u=s.scrollWidth,f=s.scrollHeight,h=s.clientWidth,d=s.clientHeight,a=u>h,l=f>d,r.isScrollableX=a,r.isScrollableY=l,r.scrollWidth=u,r.scrollHeight=f,r.clientWidth=h,r.clientHeight=d}else a=r.isScrollableX,l=r.isScrollableY,n=r.hasOverflowX,o=r.hasOverflowY,u=r.scrollWidth,f=r.scrollHeight,h=r.clientWidth,d=r.clientHeight;if(!n&&!o||!a&&!l||c==="vertical"&&(!o||!l)||c==="horizontal"&&(!n||!a))return!1;let _;if(c==="horizontal")_="x";else if(c==="vertical")_="y";else{const v=t!==0,T=i!==0;v&&n&&a&&(_="x"),T&&o&&l&&(_="y")}if(!_)return!1;let p,m,b,S,E;if(_==="x")p=s.scrollLeft,m=u-h,b=t,S=n,E=a;else if(_==="y")p=s.scrollTop,m=f-d,b=i,S=o,E=l;else return!1;return(b>0?p<m:p>0)&&S&&E}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?"x":"y"]}get isHorizontal(){return this.options.orientation==="horizontal"}get actualScroll(){const s=this.options.wrapper;return this.isHorizontal?s.scrollX??s.scrollLeft:s.scrollY??s.scrollTop}get scroll(){return this.options.infinite?Wf(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return this.limit===0?1:this.scroll/this.limit}get isScrolling(){return this._isScrolling}set isScrolling(s){this._isScrolling!==s&&(this._isScrolling=s,this.updateClassName())}get isStopped(){return this._isStopped}set isStopped(s){this._isStopped!==s&&(this._isStopped=s,this.updateClassName())}get isLocked(){return this._isLocked}set isLocked(s){this._isLocked!==s&&(this._isLocked=s,this.updateClassName())}get isSmooth(){return this.isScrolling==="smooth"}get className(){let s="lenis";return this.options.autoToggle&&(s+=" lenis-autoToggle"),this.isStopped&&(s+=" lenis-stopped"),this.isLocked&&(s+=" lenis-locked"),this.isScrolling&&(s+=" lenis-scrolling"),this.isScrolling==="smooth"&&(s+=" lenis-smooth"),s}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\w+)?/g,"").trim()}};const ha={"fade-up":{opacity:0,y:30},"fade-down":{opacity:0,y:-30},"fade-left":{opacity:0,x:30},"fade-right":{opacity:0,x:-30},scale:{opacity:0,scale:.95},rotate:{opacity:0,rotation:-5}};function Uf(s=document){s instanceof Document||s.ownerDocument,(s instanceof Document?s.body:s).querySelectorAll("[data-sl-reveal]").forEach(e=>{const r=e.getAttribute("data-sl-reveal")||"fade-up",n=parseFloat(e.getAttribute("data-sl-delay")||0),o=parseFloat(e.getAttribute("data-sl-duration")||.6),a=ha[r]??ha["fade-up"];ae.fromTo(e,a,{opacity:1,x:0,y:0,scale:1,rotation:0,duration:o,delay:n,ease:"power2.out",scrollTrigger:{trigger:e,start:"top 85%",toggleActions:"play none none none"}})})}function $f(s=document){(s instanceof Document?s.body:s).querySelectorAll("[data-sl-stagger]").forEach(e=>{const r=e.getAttribute("data-sl-stagger"),n=r?parseFloat(r):.1,o=Array.from(e.children).filter(a=>!a.hasAttribute("data-sl-stagger-skip"));o.length!==0&&ae.fromTo(o,{opacity:0,y:20},{opacity:1,y:0,duration:.5,stagger:n,ease:"power2.out",scrollTrigger:{trigger:e,start:"top 85%",toggleActions:"play none none none"}})})}const qf=new WeakMap;function Gf(s=document){(s instanceof Document?s.body:s).querySelectorAll("[data-sl-split]").forEach(e=>{const r=e.getAttribute("data-sl-split")||"words",n=parseFloat(e.getAttribute("data-sl-split-stagger")||.02);if(!e.textContent.trim())return;const a={chars:"chars",words:"words",lines:"lines"}[r]||"words",l=new cn(e,{type:a,charsClass:"sl-split-char",wordsClass:"sl-split-word",linesClass:"sl-split-line"});qf.set(e,l);const u=l[a]??l.chars??l.words??l.lines;!u||u.length===0||ae.fromTo(u,{opacity:0,y:15},{opacity:1,y:0,duration:.5,stagger:n,ease:"power2.out",scrollTrigger:{trigger:e,start:"top 85%",toggleActions:"play none none none"}})})}function Kf(s=document){(s instanceof Document?s.body:s).querySelectorAll("[data-sl-pin]").forEach(e=>{const r=e.getAttribute("data-sl-pin-end")||"+=100%";U.create({trigger:e,start:"top top",end:r,pin:!0,pinSpacing:!0})})}const da=.35,pa="power2.out";function Qf(s=document){const t=s instanceof Document?s:s.ownerDocument??document,i=s instanceof Document?t.body:s;if(!i||typeof i.querySelectorAll!="function")return;i.querySelectorAll("[data-sl-hover-reveal]").forEach(r=>{const n=r.querySelectorAll("[data-sl-hover-reveal-collapsible]");if(window.matchMedia("(prefers-reduced-motion: reduce)").matches){n.forEach(h=>{ae.set(h,{height:"auto",opacity:1,transform:"none",overflow:"visible"})});return}n.forEach(h=>{ae.set(h,{height:0,opacity:0,transform:"translateY(10px)",overflow:"hidden"})});let a=null,l=null;const u=()=>{l&&l.kill(),a=ae.timeline({overwrite:!0}),n.forEach((h,d)=>{const c=h.scrollHeight;a.to(h,{height:c,opacity:1,transform:"translateY(0)",overflow:"visible",duration:da,ease:pa},d*.05)})},f=()=>{a&&a.kill(),l=ae.timeline({overwrite:!0}),n.forEach((h,d)=>{l.to(h,{height:0,opacity:0,transform:"translateY(10px)",overflow:"hidden",duration:da*.8,ease:pa},d*.03)})};r.addEventListener("mouseenter",u),r.addEventListener("mouseleave",f),r.addEventListener("focusin",u),r.addEventListener("focusout",f)})}ae.registerPlugin(U,cn);const Vl=window.matchMedia("(prefers-reduced-motion: reduce)").matches,Zf=()=>typeof document<"u"&&document.body&&document.body.classList.contains("elementor-editor-active"),jf=()=>typeof window<"u"&&window.elementorFrontend;let On=null;function $s(s=document){const t=s instanceof Document?s:s?.ownerDocument??document,i=s instanceof Document?t.body:s;i&&(Uf(i),$f(i),Gf(i),Kf(i),Qf(i))}function Jf(s){const t=s instanceof Document?s.body:s;!t||typeof t.contains!="function"||U.getAll().forEach(i=>{i.trigger&&t.contains(i.trigger)&&i.kill()})}function Mn(){if(Vl){const s=document.querySelectorAll("[data-sl-reveal], [data-sl-split], [data-sl-stagger]");ae.set(s,{opacity:1,transform:"none"}),document.querySelectorAll("[data-sl-stagger]").forEach(t=>{ae.set(t.children,{opacity:1,transform:"none"})});return}$s(document)}function _a(){if(Vl){Mn(),window.SocialLaneAnimations={gsap:ae,ScrollTrigger:U,SplitText:cn,lenis:null,init:Mn};return}Zf()||(On=new Vf({lerp:.1,smoothWheel:!0}),On.on("scroll",U.update),ae.ticker.add(s=>On.raf(s*1e3)),ae.ticker.lagSmoothing(0)),Mn(),window.SocialLaneAnimations={gsap:ae,ScrollTrigger:U,SplitText:cn,lenis:On,init:Mn,initInScope:$s},jf()&&window.elementorFrontend?.hooks&&window.elementorFrontend.hooks.addAction("frontend/element_ready/global",s=>{const t=s&&s[0];t&&(Jf(t),$s(t))})}document.readyState==="loading"?document.addEventListener("DOMContentLoaded",_a):_a();
|