var Ad=Object.defineProperty;var Pd=(Le,sr,di)=>sr in Le?Ad(Le,sr,{enumerable:!0,configurable:!0,writable:!0,value:di}):Le[sr]=di;var Dr=(Le,sr,di)=>Pd(Le,typeof sr!="symbol"?sr+"":sr,di);(function(Le){typeof define=="function"&&define.amd?define(["jquery"],Le):Le()})(function(){"use strict";function Le(a,t,e){return Math.max(a,Math.min(t,e))}class sr{advance(t){var s;if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=(r=this.value,i=this.to,n=60*this.lerp,o=t,function(u,l,c){return(1-c)*u+c*l}(r,i,1-Math.exp(-n*o))),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{this.currentTime+=t;const u=Le(0,this.currentTime/this.duration,1);e=u>=1;const l=e?1:this.easing(u);this.value=this.from+(this.to-this.from)*l}var r,i,n,o;(s=this.onUpdate)==null||s.call(this,this.value,e),e&&this.stop()}stop(){this.isRunning=!1}fromTo(t,e,{lerp:r=.1,duration:i=1,easing:n=u=>u,onStart:o,onUpdate:s}){this.from=this.value=t,this.to=e,this.lerp=r,this.duration=i,this.easing=n,this.currentTime=0,this.isRunning=!0,o==null||o(),this.onUpdate=s}}class di{constructor({wrapper:t,content:e,autoResize:r=!0,debounce:i=250}={}){Dr(this,"resize",()=>{this.onWrapperResize(),this.onContentResize()});Dr(this,"onWrapperResize",()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)});Dr(this,"onContentResize",()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)});this.wrapper=t,this.content=e,r&&(this.debouncedResize=function(n,o){let s;return function(){let u=arguments,l=this;clearTimeout(s),s=setTimeout(function(){n.apply(l,u)},o)}}(this.resize,i),this.wrapper===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(){var t,e;(t=this.wrapperResizeObserver)==null||t.disconnect(),(e=this.contentResizeObserver)==null||e.disconnect(),window.removeEventListener("resize",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Bs{constructor(){this.events={}}emit(t,...e){let r=this.events[t]||[];for(let i=0,n=r.length;i{var i;this.events[t]=(i=this.events[t])==null?void 0:i.filter(n=>e!==n)}}off(t,e){var r;this.events[t]=(r=this.events[t])==null?void 0:r.filter(i=>e!==i)}destroy(){this.events={}}}const Ls=100/6;class fl{constructor(t,{wheelMultiplier:e=1,touchMultiplier:r=1}){Dr(this,"onTouchStart",t=>{const{clientX:e,clientY:r}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=r,this.lastDelta={x:0,y:0},this.emitter.emit("scroll",{deltaX:0,deltaY:0,event:t})});Dr(this,"onTouchMove",t=>{const{clientX:e,clientY:r}=t.targetTouches?t.targetTouches[0]:t,i=-(e-this.touchStart.x)*this.touchMultiplier,n=-(r-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=r,this.lastDelta={x:i,y:n},this.emitter.emit("scroll",{deltaX:i,deltaY:n,event:t})});Dr(this,"onTouchEnd",t=>{this.emitter.emit("scroll",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})});Dr(this,"onWheel",t=>{let{deltaX:e,deltaY:r,deltaMode:i}=t;e*=i===1?Ls:i===2?this.windowWidth:1,r*=i===1?Ls:i===2?this.windowHeight:1,e*=this.wheelMultiplier,r*=this.wheelMultiplier,this.emitter.emit("scroll",{deltaX:e,deltaY:r,event:t})});Dr(this,"onWindowResize",()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight});this.element=t,this.wheelMultiplier=e,this.touchMultiplier=r,this.touchStart={x:null,y:null},this.emitter=new Bs,window.addEventListener("resize",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener("wheel",this.onWheel,{passive:!1}),this.element.addEventListener("touchstart",this.onTouchStart,{passive:!1}),this.element.addEventListener("touchmove",this.onTouchMove,{passive:!1}),this.element.addEventListener("touchend",this.onTouchEnd,{passive:!1})}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener("resize",this.onWindowResize,!1),this.element.removeEventListener("wheel",this.onWheel,{passive:!1}),this.element.removeEventListener("touchstart",this.onTouchStart,{passive:!1}),this.element.removeEventListener("touchmove",this.onTouchMove,{passive:!1}),this.element.removeEventListener("touchend",this.onTouchEnd,{passive:!1})}}class hl{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:r=t,eventsTarget:i=r,smoothWheel:n=!0,syncTouch:o=!1,syncTouchLerp:s=.075,touchInertiaMultiplier:u=35,duration:l,easing:c=T=>Math.min(1,1.001-Math.pow(2,-10*T)),lerp:h=!l&&.1,infinite:p=!1,orientation:d="vertical",gestureOrientation:g="vertical",touchMultiplier:f=1,wheelMultiplier:_=1,autoResize:D=!0,__experimental__naiveDimensions:v=!1}={}){this.__isSmooth=!1,this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:T,deltaY:y,event:x})=>{if(x.ctrlKey)return;const S=x.type.includes("touch"),b=x.type.includes("wheel");if(this.options.syncTouch&&S&&x.type==="touchstart"&&!this.isStopped&&!this.isLocked)return void this.reset();const A=T===0&&y===0,F=this.options.gestureOrientation==="vertical"&&y===0||this.options.gestureOrientation==="horizontal"&&T===0;if(A||F)return;let k=x.composedPath();if(k=k.slice(0,k.indexOf(this.rootElement)),k.find(N=>{var G,Y,M,I,E;return((G=N.hasAttribute)===null||G===void 0?void 0:G.call(N,"data-lenis-prevent"))||S&&((Y=N.hasAttribute)===null||Y===void 0?void 0:Y.call(N,"data-lenis-prevent-touch"))||b&&((M=N.hasAttribute)===null||M===void 0?void 0:M.call(N,"data-lenis-prevent-wheel"))||((I=N.classList)===null||I===void 0?void 0:I.contains("lenis"))&&!(!((E=N.classList)===null||E===void 0)&&E.contains("lenis-stopped"))}))return;if(this.isStopped||this.isLocked)return void x.preventDefault();if(this.isSmooth=this.options.syncTouch&&S||this.options.smoothWheel&&b,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();x.preventDefault();let L=y;this.options.gestureOrientation==="both"?L=Math.abs(y)>Math.abs(T)?y:T:this.options.gestureOrientation==="horizontal"&&(L=T);const P=S&&this.options.syncTouch,X=S&&x.type==="touchend"&&Math.abs(L)>5;X&&(L=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+L,Object.assign({programmatic:!1},P?{lerp:X?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(!this.__preventNextScrollEvent&&!this.isScrolling){const T=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-T),this.emit()}},window.lenisVersion="1.0.42",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:r,eventsTarget:i,smoothWheel:n,syncTouch:o,syncTouchLerp:s,touchInertiaMultiplier:u,duration:l,easing:c,lerp:h,infinite:p,gestureOrientation:g,orientation:d,touchMultiplier:f,wheelMultiplier:_,autoResize:D,__experimental__naiveDimensions:v},this.animate=new sr,this.emitter=new Bs,this.dimensions=new di({wrapper:t,content:e,autoResize:D}),this.toggleClassName("lenis",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=o||n,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener("scroll",this.onNativeScroll,!1),this.virtualScroll=new fl(i,{touchMultiplier:f,wheelMultiplier:_}),this.virtualScroll.on("scroll",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener("scroll",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClassName("lenis",!1),this.toggleClassName("lenis-smooth",!1),this.toggleClassName("lenis-scrolling",!1),this.toggleClassName("lenis-stopped",!1),this.toggleClassName("lenis-locked",!1)}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit(){this.emitter.emit("scroll",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:r=!1,lock:i=!1,duration:n=this.options.duration,easing:o=this.options.easing,lerp:s=!n&&this.options.lerp,onComplete:u,force:l=!1,programmatic:c=!0}={}){if(!this.isStopped&&!this.isLocked||l){if(["top","left","start"].includes(t))t=0;else if(["bottom","right","end"].includes(t))t=this.limit;else{let h;if(typeof t=="string"?h=document.querySelector(t):t!=null&&t.nodeType&&(h=t),h){if(this.options.wrapper!==window){const d=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?d.left:d.top}const p=h.getBoundingClientRect();t=(this.isHorizontal?p.left:p.top)+this.animatedScroll}}if(typeof t=="number"){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=Le(0,t,this.limit),r)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(u==null||u(this));if(!c){if(t===this.targetScroll)return;this.targetScroll=t}this.animate.fromTo(this.animatedScroll,t,{duration:n,easing:o,lerp:s,onStart:()=>{i&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(h,p)=>{this.isScrolling=!0,this.velocity=h-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=h,this.setScroll(this.scroll),c&&(this.targetScroll=h),p||this.emit(),p&&(this.reset(),this.emit(),u==null||u(this),this.__preventNextScrollEvent=!0,requestAnimationFrame(()=>{delete this.__preventNextScrollEvent}))}})}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__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(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(t=this.animatedScroll,e=this.limit,(t%e+e)%e):this.animatedScroll;var t,e}get progress(){return this.limit===0?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(t){this.__isSmooth!==t&&(this.__isSmooth=t,this.toggleClassName("lenis-smooth",t))}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.toggleClassName("lenis-scrolling",t))}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.toggleClassName("lenis-stopped",t))}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.toggleClassName("lenis-locked",t))}get className(){let t="lenis";return this.isStopped&&(t+=" lenis-stopped"),this.isLocked&&(t+=" lenis-locked"),this.isScrolling&&(t+=" lenis-scrolling"),this.isSmooth&&(t+=" lenis-smooth"),t}toggleClassName(t,e){this.rootElement.classList.toggle(t,e),this.emitter.emit("className change",this)}}function ar(a){if(a===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return a}function Vs(a,t){a.prototype=Object.create(t.prototype),a.prototype.constructor=a,a.__proto__=t}/*! * GSAP 3.12.5 * https://gsap.com * * @license Copyright 2008-2024, GreenSock. All rights reserved. * Subject to the terms at https://gsap.com/standard-license or for * Club GSAP members, the agreement issued with that membership. * @author: Jack Doyle, jack@greensock.com */var De={autoSleep:120,force3D:"auto",nullTargetWarn:1,units:{lineHeight:""}},fi={duration:.5,overwrite:!1,delay:0},mo,$t,dt,ke=1e8,lt=1/ke,Do=Math.PI*2,pl=Do/4,gl=0,zs=Math.sqrt,_l=Math.cos,ml=Math.sin,Rt=function(t){return typeof t=="string"},bt=function(t){return typeof t=="function"},ur=function(t){return typeof t=="number"},yo=function(t){return typeof t>"u"},He=function(t){return typeof t=="object"},ce=function(t){return t!==!1},bo=function(){return typeof window<"u"},Cn=function(t){return bt(t)||Rt(t)},Ns=typeof ArrayBuffer=="function"&&ArrayBuffer.isView||function(){},Ht=Array.isArray,wo=/(?:-?\.?\d|\.)+/gi,qs=/[-+=.]*\d+[.e\-+]*\d*[e\-+]*\d*/g,hi=/[-+=.]*\d+[.e-]*\d*[a-z%]*/g,vo=/[-+=.]*\d+\.?\d*(?:e-|e\+)?\d*/gi,Is=/[+-]=-?[.\d]+/,Ws=/[^,'"\[\]\s]+/gi,Dl=/^[+\-=e\s\d]*\d+[.\d]*([a-z]*|%)\s*$/i,gt,Ue,Co,xo,ye={},xn={},Xs,$s=function(t){return(xn=zr(t,ye))&&he},To=function(t,e){return console.warn("Invalid property",t,"set to",e,"Missing plugin? gsap.registerPlugin()")},Li=function(t,e){return!e&&console.warn(t)},Hs=function(t,e){return t&&(ye[t]=e)&&xn&&(xn[t]=e)||ye},Vi=function(){return 0},yl={suppressEvents:!0,isStart:!0,kill:!1},Tn={suppressEvents:!0,kill:!1},bl={suppressEvents:!0},So={},yr=[],Eo={},Us,be={},Fo={},Gs=30,Sn=[],ko="",Ao=function(t){var e=t[0],r,i;if(He(e)||bt(e)||(t=[t]),!(r=(e._gsap||{}).harness)){for(i=Sn.length;i--&&!Sn[i].targetTest(e););r=Sn[i]}for(i=t.length;i--;)t[i]&&(t[i]._gsap||(t[i]._gsap=new Ca(t[i],r)))||t.splice(i,1);return t},Vr=function(t){return t._gsap||Ao(Oe(t))[0]._gsap},js=function(t,e,r){return(r=t[e])&&bt(r)?t[e]():yo(r)&&t.getAttribute&&t.getAttribute(e)||r},de=function(t,e){return(t=t.split(",")).forEach(e)||t},vt=function(t){return Math.round(t*1e5)/1e5||0},Bt=function(t){return Math.round(t*1e7)/1e7||0},pi=function(t,e){var r=e.charAt(0),i=parseFloat(e.substr(2));return t=parseFloat(t),r==="+"?t+i:r==="-"?t-i:r==="*"?t*i:t/i},wl=function(t,e){for(var r=e.length,i=0;t.indexOf(e[i])<0&&++is;)o=o._prev;return o?(e._next=o._next,o._next=e):(e._next=t[r],t[r]=e),e._next?e._next._prev=e:t[i]=e,e._prev=o,e.parent=e._dp=t,e},kn=function(t,e,r,i){r===void 0&&(r="_first"),i===void 0&&(i="_last");var n=e._prev,o=e._next;n?n._next=o:t[r]===e&&(t[r]=o),o?o._prev=n:t[i]===e&&(t[i]=n),e._next=e._prev=e.parent=null},br=function(t,e){t.parent&&(!e||t.parent.autoRemoveChildren)&&t.parent.remove&&t.parent.remove(t),t._act=0},Nr=function(t,e){if(t&&(!e||e._end>t._dur||e._start<0))for(var r=t;r;)r._dirty=1,r=r.parent;return t},xl=function(t){for(var e=t.parent;e&&e.parent;)e._dirty=1,e.totalDuration(),e=e.parent;return t},Po=function(t,e,r,i){return t._startAt&&($t?t._startAt.revert(Tn):t.vars.immediateRender&&!t.vars.autoRevert||t._startAt.render(e,!0,i))},Tl=function a(t){return!t||t._ts&&a(t.parent)},ea=function(t){return t._repeat?gi(t._tTime,t=t.duration()+t._rDelay)*t:0},gi=function(t,e){var r=Math.floor(t/=e);return t&&r===t?r-1:r},An=function(t,e){return(t-e._start)*e._ts+(e._ts>=0?0:e._dirty?e.totalDuration():e._tDur)},Pn=function(t){return t._end=Bt(t._start+(t._tDur/Math.abs(t._ts||t._rts||lt)||0))},On=function(t,e){var r=t._dp;return r&&r.smoothChildTiming&&t._ts&&(t._start=Bt(r._time-(t._ts>0?e/t._ts:((t._dirty?t.totalDuration():t._tDur)-e)/-t._ts)),Pn(t),r._dirty||Nr(r,t)),t},ra=function(t,e){var r;if((e._time||!e._dur&&e._initted||e._startlt)&&e.render(r,!0)),Nr(t,e)._dp&&t._initted&&t._time>=t._dur&&t._ts){if(t._dur=0&&r.totalTime(r._tTime),r=r._dp;t._zTime=-lt}},Ge=function(t,e,r,i){return e.parent&&br(e),e._start=Bt((ur(r)?r:r||t!==gt?Pe(t,r,e):t._time)+e._delay),e._end=Bt(e._start+(e.totalDuration()/Math.abs(e.timeScale())||0)),ta(t,e,"_first","_last",t._sort?"_start":0),Oo(e)||(t._recent=e),i||ra(t,e),t._ts<0&&On(t,t._tTime),t},ia=function(t,e){return(ye.ScrollTrigger||To("scrollTrigger",e))&&ye.ScrollTrigger.create(e,t)},na=function(t,e,r,i,n){if(qo(t,e,n),!t._initted)return 1;if(!r&&t._pt&&!$t&&(t._dur&&t.vars.lazy!==!1||!t._dur&&t.vars.lazy)&&Us!==ve.frame)return yr.push(t),t._lazy=[n,i],1},Sl=function a(t){var e=t.parent;return e&&e._ts&&e._initted&&!e._lock&&(e.rawTime()<0||a(e))},Oo=function(t){var e=t.data;return e==="isFromStart"||e==="isStart"},El=function(t,e,r,i){var n=t.ratio,o=e<0||!e&&(!t._start&&Sl(t)&&!(!t._initted&&Oo(t))||(t._ts<0||t._dp._ts<0)&&!Oo(t))?0:1,s=t._rDelay,u=0,l,c,h;if(s&&t._repeat&&(u=qi(0,t._tDur,e),c=gi(u,s),t._yoyo&&c&1&&(o=1-o),c!==gi(t._tTime,s)&&(n=1-o,t.vars.repeatRefresh&&t._initted&&t.invalidate())),o!==n||$t||i||t._zTime===lt||!e&&t._zTime){if(!t._initted&&na(t,e,i,r,u))return;for(h=t._zTime,t._zTime=e||(r?lt:0),r||(r=e&&!h),t.ratio=o,t._from&&(o=1-o),t._time=0,t._tTime=u,l=t._pt;l;)l.r(o,l.d),l=l._next;e<0&&Po(t,e,r,!0),t._onUpdate&&!r&&we(t,"onUpdate"),u&&t._repeat&&!r&&t.parent&&we(t,"onRepeat"),(e>=t._tDur||e<0)&&t.ratio===o&&(o&&br(t,1),!r&&!$t&&(we(t,o?"onComplete":"onReverseComplete",!0),t._prom&&t._prom()))}else t._zTime||(t._zTime=e)},Fl=function(t,e,r){var i;if(r>e)for(i=t._first;i&&i._start<=r;){if(i.data==="isPause"&&i._start>e)return i;i=i._next}else for(i=t._last;i&&i._start>=r;){if(i.data==="isPause"&&i._start0&&!i&&On(t,t._tTime=t._tDur*s),t.parent&&Pn(t),r||Nr(t.parent,t),t},oa=function(t){return t instanceof te?Nr(t):_i(t,t._dur)},kl={_start:0,endTime:Vi,totalDuration:Vi},Pe=function a(t,e,r){var i=t.labels,n=t._recent||kl,o=t.duration()>=ke?n.endTime(!1):t._dur,s,u,l;return Rt(e)&&(isNaN(e)||e in i)?(u=e.charAt(0),l=e.substr(-1)==="%",s=e.indexOf("="),u==="<"||u===">"?(s>=0&&(e=e.replace(/=/,"")),(u==="<"?n._start:n.endTime(n._repeat>=0))+(parseFloat(e.substr(1))||0)*(l?(s<0?n:r).totalDuration()/100:1)):s<0?(e in i||(i[e]=o),i[e]):(u=parseFloat(e.charAt(s-1)+e.substr(s+1)),l&&r&&(u=u/100*(Ht(r)?r[0]:r).totalDuration()),s>1?a(t,e.substr(0,s-1),r)+u:o+u)):e==null?o:+e},Ni=function(t,e,r){var i=ur(e[1]),n=(i?2:1)+(t<2?0:1),o=e[n],s,u;if(i&&(o.duration=e[1]),o.parent=r,t){for(s=o,u=r;u&&!("immediateRender"in s);)s=u.vars.defaults||{},u=ce(u.vars.inherit)&&u.parent;o.immediateRender=ce(s.immediateRender),t<2?o.runBackwards=1:o.startAt=e[n-1]}return new Et(e[0],o,e[n+1])},wr=function(t,e){return t||t===0?e(t):e},qi=function(t,e,r){return re?e:r},Ut=function(t,e){return!Rt(t)||!(e=Dl.exec(t))?"":e[1]},Al=function(t,e,r){return wr(r,function(i){return qi(t,e,i)})},Mo=[].slice,sa=function(t,e){return t&&He(t)&&"length"in t&&(!e&&!t.length||t.length-1 in t&&He(t[0]))&&!t.nodeType&&t!==Ue},Pl=function(t,e,r){return r===void 0&&(r=[]),t.forEach(function(i){var n;return Rt(i)&&!e||sa(i,1)?(n=r).push.apply(n,Oe(i)):r.push(i)})||r},Oe=function(t,e,r){return dt&&!e&&dt.selector?dt.selector(t):Rt(t)&&!r&&(Co||!Di())?Mo.call((e||xo).querySelectorAll(t),0):Ht(t)?Pl(t,r):sa(t)?Mo.call(t,0):t?[t]:[]},Yo=function(t){return t=Oe(t)[0]||Li("Invalid scope")||{},function(e){var r=t.current||t.nativeElement||t;return Oe(e,r.querySelectorAll?r:r===t?Li("Invalid scope")||xo.createElement("div"):t)}},aa=function(t){return t.sort(function(){return .5-Math.random()})},ua=function(t){if(bt(t))return t;var e=He(t)?t:{each:t},r=qr(e.ease),i=e.from||0,n=parseFloat(e.base)||0,o={},s=i>0&&i<1,u=isNaN(i)||s,l=e.axis,c=i,h=i;return Rt(i)?c=h={center:.5,edges:.5,end:1}[i]||0:!s&&u&&(c=i[0],h=i[1]),function(p,d,g){var f=(g||e).length,_=o[f],D,v,T,y,x,S,b,A,F;if(!_){if(F=e.grid==="auto"?0:(e.grid||[1,ke])[1],!F){for(b=-ke;b<(b=g[F++].getBoundingClientRect().left)&&Fb&&(b=x),xf?f-1:l?l==="y"?f/F:F:Math.max(F,f/F))||0)*(i==="edges"?-1:1),_.b=f<0?n-f:n,_.u=Ut(e.amount||e.each)||0,r=r&&f<0?ba(r):r}return f=(_[p]-_.min)/_.max||0,Bt(_.b+(r?r(f):f)*_.v)+_.u}},Ro=function(t){var e=Math.pow(10,((t+"").split(".")[1]||"").length);return function(r){var i=Bt(Math.round(parseFloat(r)/t)*t*e);return(i-i%1)/e+(ur(r)?0:Ut(r))}},la=function(t,e){var r=Ht(t),i,n;return!r&&He(t)&&(i=r=t.radius||ke,t.values?(t=Oe(t.values),(n=!ur(t[0]))&&(i*=i)):t=Ro(t.increment)),wr(e,r?bt(t)?function(o){return n=t(o),Math.abs(n-o)<=i?n:o}:function(o){for(var s=parseFloat(n?o.x:o),u=parseFloat(n?o.y:0),l=ke,c=0,h=t.length,p,d;h--;)n?(p=t[h].x-s,d=t[h].y-u,p=p*p+d*d):p=Math.abs(t[h]-s),pi?n-o:o)})},Ii=function(t){for(var e=0,r="",i,n,o,s;~(i=t.indexOf("random(",e));)o=t.indexOf(")",i),s=t.charAt(i+7)==="[",n=t.substr(i+7,o-i-7).match(s?Ws:wo),r+=t.substr(e,i-e)+ca(s?n:+n[0],s?0:+n[1],+n[2]||1e-5),e=o+1;return r+t.substr(e,t.length-e)},fa=function(t,e,r,i,n){var o=e-t,s=i-r;return wr(n,function(u){return r+((u-t)/o*s||0)})},Ll=function a(t,e,r,i){var n=isNaN(t+e)?0:function(d){return(1-d)*t+d*e};if(!n){var o=Rt(t),s={},u,l,c,h,p;if(r===!0&&(i=1)&&(r=null),o)t={p:t},e={p:e};else if(Ht(t)&&!Ht(e)){for(c=[],h=t.length,p=h-2,l=1;l(s=Math.abs(s))&&(u=o,n=s);return u},we=function(t,e,r){var i=t.vars,n=i[e],o=dt,s=t._ctx,u,l,c;if(n)return u=i[e+"Params"],l=i.callbackScope||t,r&&yr.length&&En(),s&&(dt=s),c=u?n.apply(l,u):n.call(l),dt=o,c},Wi=function(t){return br(t),t.scrollTrigger&&t.scrollTrigger.kill(!!$t),t.progress()<1&&we(t,"onInterrupt"),t},mi,pa=[],ga=function(t){if(t)if(t=!t.name&&t.default||t,bo()||t.headless){var e=t.name,r=bt(t),i=e&&!r&&t.init?function(){this._props=[]}:t,n={init:Vi,render:Xo,add:zo,kill:Jl,modifier:Zl,rawVars:0},o={targetTest:0,get:0,getSetter:Wo,aliases:{},register:0};if(Di(),t!==i){if(be[e])return;Ae(i,Ae(Fn(t,n),o)),zr(i.prototype,zr(n,Fn(t,o))),be[i.prop=e]=i,t.targetTest&&(Sn.push(i),So[e]=1),e=(e==="css"?"CSS":e.charAt(0).toUpperCase()+e.substr(1))+"Plugin"}Hs(e,i),t.register&&t.register(he,i,fe)}else pa.push(t)},at=255,Xi={aqua:[0,at,at],lime:[0,at,0],silver:[192,192,192],black:[0,0,0],maroon:[128,0,0],teal:[0,128,128],blue:[0,0,at],navy:[0,0,128],white:[at,at,at],olive:[128,128,0],yellow:[at,at,0],orange:[at,165,0],gray:[128,128,128],purple:[128,0,128],green:[0,128,0],red:[at,0,0],pink:[at,192,203],cyan:[0,at,at],transparent:[at,at,at,0]},Bo=function(t,e,r){return t+=t<0?1:t>1?-1:0,(t*6<1?e+(r-e)*t*6:t<.5?r:t*3<2?e+(r-e)*(2/3-t)*6:e)*at+.5|0},_a=function(t,e,r){var i=t?ur(t)?[t>>16,t>>8&at,t&at]:0:Xi.black,n,o,s,u,l,c,h,p,d,g;if(!i){if(t.substr(-1)===","&&(t=t.substr(0,t.length-1)),Xi[t])i=Xi[t];else if(t.charAt(0)==="#"){if(t.length<6&&(n=t.charAt(1),o=t.charAt(2),s=t.charAt(3),t="#"+n+n+o+o+s+s+(t.length===5?t.charAt(4)+t.charAt(4):"")),t.length===9)return i=parseInt(t.substr(1,6),16),[i>>16,i>>8&at,i&at,parseInt(t.substr(7),16)/255];t=parseInt(t.substr(1),16),i=[t>>16,t>>8&at,t&at]}else if(t.substr(0,3)==="hsl"){if(i=g=t.match(wo),!e)u=+i[0]%360/360,l=+i[1]/100,c=+i[2]/100,o=c<=.5?c*(l+1):c+l-c*l,n=c*2-o,i.length>3&&(i[3]*=1),i[0]=Bo(u+1/3,n,o),i[1]=Bo(u,n,o),i[2]=Bo(u-1/3,n,o);else if(~t.indexOf("="))return i=t.match(qs),r&&i.length<4&&(i[3]=1),i}else i=t.match(wo)||Xi.transparent;i=i.map(Number)}return e&&!g&&(n=i[0]/at,o=i[1]/at,s=i[2]/at,h=Math.max(n,o,s),p=Math.min(n,o,s),c=(h+p)/2,h===p?u=l=0:(d=h-p,l=c>.5?d/(2-h-p):d/(h+p),u=h===n?(o-s)/d+(ot||D<0)&&(r+=D-e),i+=D,x=i-r,T=x-o,(T>0||v)&&(S=++h.frame,p=x-h.time*1e3,h.time=x=x/1e3,o+=T+(T>=n?4:n-T),y=1),v||(u=l(f)),y)for(d=0;d=D&&d--},_listeners:s},h}(),Di=function(){return!$i&&ve.wake()},J={},zl=/^[\d.\-M][\d.\-,\s]/,Nl=/["']/g,ql=function(t){for(var e={},r=t.substr(1,t.length-3).split(":"),i=r[0],n=1,o=r.length,s,u,l;n1&&r.config?r.config.apply(null,~t.indexOf("{")?[ql(e[1])]:Il(t).split(",").map(Qs)):J._CE&&zl.test(t)?J._CE("",t):r},ba=function(t){return function(e){return 1-t(1-e)}},wa=function a(t,e){for(var r=t._first,i;r;)r instanceof te?a(r,e):r.vars.yoyoEase&&(!r._yoyo||!r._repeat)&&r._yoyo!==e&&(r.timeline?a(r.timeline,e):(i=r._ease,r._ease=r._yEase,r._yEase=i,r._yoyo=e)),r=r._next},qr=function(t,e){return t&&(bt(t)?t:J[t]||Wl(t))||e},Ir=function(t,e,r,i){r===void 0&&(r=function(u){return 1-e(1-u)}),i===void 0&&(i=function(u){return u<.5?e(u*2)/2:1-e((1-u)*2)/2});var n={easeIn:e,easeOut:r,easeInOut:i},o;return de(t,function(s){J[s]=ye[s]=n,J[o=s.toLowerCase()]=r;for(var u in n)J[o+(u==="easeIn"?".in":u==="easeOut"?".out":".inOut")]=J[s+"."+u]=n[u]}),n},va=function(t){return function(e){return e<.5?(1-t(1-e*2))/2:.5+t((e-.5)*2)/2}},Lo=function a(t,e,r){var i=e>=1?e:1,n=(r||(t?.3:.45))/(e<1?e:1),o=n/Do*(Math.asin(1/i)||0),s=function(c){return c===1?1:i*Math.pow(2,-10*c)*ml((c-o)*n)+1},u=t==="out"?s:t==="in"?function(l){return 1-s(1-l)}:va(s);return n=Do/n,u.config=function(l,c){return a(t,l,c)},u},Vo=function a(t,e){e===void 0&&(e=1.70158);var r=function(o){return o?--o*o*((e+1)*o+e)+1:0},i=t==="out"?r:t==="in"?function(n){return 1-r(1-n)}:va(r);return i.config=function(n){return a(t,n)},i};de("Linear,Quad,Cubic,Quart,Quint,Strong",function(a,t){var e=t<5?t+1:t;Ir(a+",Power"+(e-1),t?function(r){return Math.pow(r,e)}:function(r){return r},function(r){return 1-Math.pow(1-r,e)},function(r){return r<.5?Math.pow(r*2,e)/2:1-Math.pow((1-r)*2,e)/2})}),J.Linear.easeNone=J.none=J.Linear.easeIn,Ir("Elastic",Lo("in"),Lo("out"),Lo()),function(a,t){var e=1/t,r=2*e,i=2.5*e,n=function(s){return s0?r+(r+this._rDelay)*this._repeat:r):this.totalDuration()&&this._dur},t.totalDuration=function(r){return arguments.length?(this._dirty=0,_i(this,this._repeat<0?r:(r-this._repeat*this._rDelay)/(this._repeat+1))):this._tDur},t.totalTime=function(r,i){if(Di(),!arguments.length)return this._tTime;var n=this._dp;if(n&&n.smoothChildTiming&&this._ts){for(On(this,r),!n._dp||n.parent||ra(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&&r0||!this._tDur&&!r)&&Ge(this._dp,this,this._start-this._delay)}return(this._tTime!==r||!this._dur&&!i||this._initted&&Math.abs(this._zTime)===lt||!r&&!this._initted&&(this.add||this._ptLookup))&&(this._ts||(this._pTime=r),Ks(this,r,i)),this},t.time=function(r,i){return arguments.length?this.totalTime(Math.min(this.totalDuration(),r+ea(this))%(this._dur+this._rDelay)||(r?this._dur:0),i):this._time},t.totalProgress=function(r,i){return arguments.length?this.totalTime(this.totalDuration()*r,i):this.totalDuration()?Math.min(1,this._tTime/this._tDur):this.rawTime()>0?1:0},t.progress=function(r,i){return arguments.length?this.totalTime(this.duration()*(this._yoyo&&!(this.iteration()&1)?1-r:r)+ea(this),i):this.duration()?Math.min(1,this._time/this._dur):this.rawTime()>0?1:0},t.iteration=function(r,i){var n=this.duration()+this._rDelay;return arguments.length?this.totalTime(this._time+(r-1)*n,i):this._repeat?gi(this._tTime,n)+1:1},t.timeScale=function(r,i){if(!arguments.length)return this._rts===-lt?0:this._rts;if(this._rts===r)return this;var n=this.parent&&this._ts?An(this.parent._time,this):this._tTime;return this._rts=+r||0,this._ts=this._ps||r===-lt?0:this._rts,this.totalTime(qi(-Math.abs(this._delay),this._tDur,n),i!==!1),Pn(this),xl(this)},t.paused=function(r){return arguments.length?(this._ps!==r&&(this._ps=r,r?(this._pTime=this._tTime||Math.max(-this._delay,this.rawTime()),this._ts=this._act=0):(Di(),this._ts=this._rts,this.totalTime(this.parent&&!this.parent.smoothChildTiming?this.rawTime():this._tTime||this._pTime,this.progress()===1&&Math.abs(this._zTime)!==lt&&(this._tTime-=lt)))),this):this._ps},t.startTime=function(r){if(arguments.length){this._start=r;var i=this.parent||this._dp;return i&&(i._sort||!this.parent)&&Ge(i,this,r-this._delay),this}return this._start},t.endTime=function(r){return this._start+(ce(r)?this.totalDuration():this.duration())/Math.abs(this._ts||1)},t.rawTime=function(r){var i=this.parent||this._dp;return i?r&&(!this._ts||this._repeat&&this._time&&this.totalProgress()<1)?this._tTime%(this._dur+this._rDelay):this._ts?An(i.rawTime(r),this):this._tTime:this._tTime},t.revert=function(r){r===void 0&&(r=bl);var i=$t;return $t=r,(this._initted||this._startAt)&&(this.timeline&&this.timeline.revert(r),this.totalTime(-.01,r.suppressEvents)),this.data!=="nested"&&r.kill!==!1&&this.kill(),$t=i,this},t.globalTime=function(r){for(var i=this,n=arguments.length?r:i.rawTime();i;)n=i._start+n/(Math.abs(i._ts)||1),i=i._dp;return!this.parent&&this._sat?this._sat.globalTime(r):n},t.repeat=function(r){return arguments.length?(this._repeat=r===1/0?-2:r,oa(this)):this._repeat===-2?1/0:this._repeat},t.repeatDelay=function(r){if(arguments.length){var i=this._time;return this._rDelay=r,oa(this),i?this.time(i):this}return this._rDelay},t.yoyo=function(r){return arguments.length?(this._yoyo=r,this):this._yoyo},t.seek=function(r,i){return this.totalTime(Pe(this,r),ce(i))},t.restart=function(r,i){return this.play().totalTime(r?-this._delay:0,ce(i))},t.play=function(r,i){return r!=null&&this.seek(r,i),this.reversed(!1).paused(!1)},t.reverse=function(r,i){return r!=null&&this.seek(r||this.totalDuration(),i),this.reversed(!0).paused(!1)},t.pause=function(r,i){return r!=null&&this.seek(r,i),this.paused(!0)},t.resume=function(){return this.paused(!1)},t.reversed=function(r){return arguments.length?(!!r!==this.reversed()&&this.timeScale(-this._rts||(r?-lt:0)),this):this._rts<0},t.invalidate=function(){return this._initted=this._act=0,this._zTime=-lt,this},t.isActive=function(){var r=this.parent||this._dp,i=this._start,n;return!!(!r||this._ts&&this._initted&&r.isActive()&&(n=r.rawTime(!0))>=i&&n1?(i?(o[r]=i,n&&(o[r+"Params"]=n),r==="onUpdate"&&(this._onUpdate=i)):delete o[r],this):o[r]},t.then=function(r){var i=this;return new Promise(function(n){var o=bt(r)?r:Zs,s=function(){var l=i.then;i.then=null,bt(o)&&(o=o(i))&&(o.then||o===i)&&(i.then=l),n(o),i.then=l};i._initted&&i.totalProgress()===1&&i._ts>=0||!i._tTime&&i._ts<0?s():i._prom=s})},t.kill=function(){Wi(this)},a}();Ae(Hi.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:-lt,_prom:0,_ps:!1,_rts:1});var te=function(a){Vs(t,a);function t(r,i){var n;return r===void 0&&(r={}),n=a.call(this,r)||this,n.labels={},n.smoothChildTiming=!!r.smoothChildTiming,n.autoRemoveChildren=!!r.autoRemoveChildren,n._sort=ce(r.sortChildren),gt&&Ge(r.parent||gt,ar(n),i),r.reversed&&n.reverse(),r.paused&&n.paused(!0),r.scrollTrigger&&ia(ar(n),r.scrollTrigger),n}var e=t.prototype;return e.to=function(i,n,o){return Ni(0,arguments,this),this},e.from=function(i,n,o){return Ni(1,arguments,this),this},e.fromTo=function(i,n,o,s){return Ni(2,arguments,this),this},e.set=function(i,n,o){return n.duration=0,n.parent=this,zi(n).repeatDelay||(n.repeat=0),n.immediateRender=!!n.immediateRender,new Et(i,n,Pe(this,o),1),this},e.call=function(i,n,o){return Ge(this,Et.delayedCall(0,i,n),o)},e.staggerTo=function(i,n,o,s,u,l,c){return o.duration=n,o.stagger=o.stagger||s,o.onComplete=l,o.onCompleteParams=c,o.parent=this,new Et(i,o,Pe(this,u)),this},e.staggerFrom=function(i,n,o,s,u,l,c){return o.runBackwards=1,zi(o).immediateRender=ce(o.immediateRender),this.staggerTo(i,n,o,s,u,l,c)},e.staggerFromTo=function(i,n,o,s,u,l,c,h){return s.startAt=o,zi(s).immediateRender=ce(s.immediateRender),this.staggerTo(i,n,s,u,l,c,h)},e.render=function(i,n,o){var s=this._time,u=this._dirty?this.totalDuration():this._tDur,l=this._dur,c=i<=0?0:Bt(i),h=this._zTime<0!=i<0&&(this._initted||!l),p,d,g,f,_,D,v,T,y,x,S,b;if(this!==gt&&c>u&&i>=0&&(c=u),c!==this._tTime||o||h){if(s!==this._time&&l&&(c+=this._time-s,i+=this._time-s),p=c,y=this._start,T=this._ts,D=!T,h&&(l||(s=this._zTime),(i||!n)&&(this._zTime=i)),this._repeat){if(S=this._yoyo,_=l+this._rDelay,this._repeat<-1&&i<0)return this.totalTime(_*100+i,n,o);if(p=Bt(c%_),c===u?(f=this._repeat,p=l):(f=~~(c/_),f&&f===c/_&&(p=l,f--),p>l&&(p=l)),x=gi(this._tTime,_),!s&&this._tTime&&x!==f&&this._tTime-x*_-this._dur<=0&&(x=f),S&&f&1&&(p=l-p,b=1),f!==x&&!this._lock){var A=S&&x&1,F=A===(S&&f&1);if(f=s&&i>=0)for(d=this._first;d;){if(g=d._next,(d._act||p>=d._start)&&d._ts&&v!==d){if(d.parent!==this)return this.render(i,n,o);if(d.render(d._ts>0?(p-d._start)*d._ts:(d._dirty?d.totalDuration():d._tDur)+(p-d._start)*d._ts,n,o),p!==this._time||!this._ts&&!D){v=0,g&&(c+=this._zTime=-lt);break}}d=g}else{d=this._last;for(var k=i<0?i:p;d;){if(g=d._prev,(d._act||k<=d._end)&&d._ts&&v!==d){if(d.parent!==this)return this.render(i,n,o);if(d.render(d._ts>0?(k-d._start)*d._ts:(d._dirty?d.totalDuration():d._tDur)+(k-d._start)*d._ts,n,o||$t&&(d._initted||d._startAt)),p!==this._time||!this._ts&&!D){v=0,g&&(c+=this._zTime=k?-lt:lt);break}}d=g}}if(v&&!n&&(this.pause(),v.render(p>=s?0:-lt)._zTime=p>=s?1:-1,this._ts))return this._start=y,Pn(this),this.render(i,n,o);this._onUpdate&&!n&&we(this,"onUpdate",!0),(c===u&&this._tTime>=this.totalDuration()||!c&&s)&&(y===this._start||Math.abs(T)!==Math.abs(this._ts))&&(this._lock||((i||!l)&&(c===u&&this._ts>0||!c&&this._ts<0)&&br(this,1),!n&&!(i<0&&!s)&&(c||s||!u)&&(we(this,c===u&&i>=0?"onComplete":"onReverseComplete",!0),this._prom&&!(c0)&&this._prom())))}return this},e.add=function(i,n){var o=this;if(ur(n)||(n=Pe(this,n,i)),!(i instanceof Hi)){if(Ht(i))return i.forEach(function(s){return o.add(s,n)}),this;if(Rt(i))return this.addLabel(i,n);if(bt(i))i=Et.delayedCall(0,i);else return this}return this!==i?Ge(this,i,n):this},e.getChildren=function(i,n,o,s){i===void 0&&(i=!0),n===void 0&&(n=!0),o===void 0&&(o=!0),s===void 0&&(s=-ke);for(var u=[],l=this._first;l;)l._start>=s&&(l instanceof Et?n&&u.push(l):(o&&u.push(l),i&&u.push.apply(u,l.getChildren(!0,n,o)))),l=l._next;return u},e.getById=function(i){for(var n=this.getChildren(1,1,1),o=n.length;o--;)if(n[o].vars.id===i)return n[o]},e.remove=function(i){return Rt(i)?this.removeLabel(i):bt(i)?this.killTweensOf(i):(kn(this,i),i===this._recent&&(this._recent=this._last),Nr(this))},e.totalTime=function(i,n){return arguments.length?(this._forcing=1,!this._dp&&this._ts&&(this._start=Bt(ve.time-(this._ts>0?i/this._ts:(this.totalDuration()-i)/-this._ts))),a.prototype.totalTime.call(this,i,n),this._forcing=0,this):this._tTime},e.addLabel=function(i,n){return this.labels[i]=Pe(this,n),this},e.removeLabel=function(i){return delete this.labels[i],this},e.addPause=function(i,n,o){var s=Et.delayedCall(0,n||Vi,o);return s.data="isPause",this._hasPause=1,Ge(this,s,Pe(this,i))},e.removePause=function(i){var n=this._first;for(i=Pe(this,i);n;)n._start===i&&n.data==="isPause"&&br(n),n=n._next},e.killTweensOf=function(i,n,o){for(var s=this.getTweensOf(i,o),u=s.length;u--;)Cr!==s[u]&&s[u].kill(i,n);return this},e.getTweensOf=function(i,n){for(var o=[],s=Oe(i),u=this._first,l=ur(n),c;u;)u instanceof Et?wl(u._targets,s)&&(l?(!Cr||u._initted&&u._ts)&&u.globalTime(0)<=n&&u.globalTime(u.totalDuration())>n:!n||u.isActive())&&o.push(u):(c=u.getTweensOf(s,n)).length&&o.push.apply(o,c),u=u._next;return o},e.tweenTo=function(i,n){n=n||{};var o=this,s=Pe(o,i),u=n,l=u.startAt,c=u.onStart,h=u.onStartParams,p=u.immediateRender,d,g=Et.to(o,Ae({ease:n.ease||"none",lazy:!1,immediateRender:!1,time:s,overwrite:"auto",duration:n.duration||Math.abs((s-(l&&"time"in l?l.time:o._time))/o.timeScale())||lt,onStart:function(){if(o.pause(),!d){var _=n.duration||Math.abs((s-(l&&"time"in l?l.time:o._time))/o.timeScale());g._dur!==_&&_i(g,_,0,1).render(g._time,!0,!0),d=1}c&&c.apply(g,h||[])}},n));return p?g.render(0):g},e.tweenFromTo=function(i,n,o){return this.tweenTo(n,Ae({startAt:{time:Pe(this,i)}},o))},e.recent=function(){return this._recent},e.nextLabel=function(i){return i===void 0&&(i=this._time),ha(this,Pe(this,i))},e.previousLabel=function(i){return i===void 0&&(i=this._time),ha(this,Pe(this,i),1)},e.currentLabel=function(i){return arguments.length?this.seek(i,!0):this.previousLabel(this._time+lt)},e.shiftChildren=function(i,n,o){o===void 0&&(o=0);for(var s=this._first,u=this.labels,l;s;)s._start>=o&&(s._start+=i,s._end+=i),s=s._next;if(n)for(l in u)u[l]>=o&&(u[l]+=i);return Nr(this)},e.invalidate=function(i){var n=this._first;for(this._lock=0;n;)n.invalidate(i),n=n._next;return a.prototype.invalidate.call(this,i)},e.clear=function(i){i===void 0&&(i=!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),i&&(this.labels={}),Nr(this)},e.totalDuration=function(i){var n=0,o=this,s=o._last,u=ke,l,c,h;if(arguments.length)return o.timeScale((o._repeat<0?o.duration():o.totalDuration())/(o.reversed()?-i:i));if(o._dirty){for(h=o.parent;s;)l=s._prev,s._dirty&&s.totalDuration(),c=s._start,c>u&&o._sort&&s._ts&&!o._lock?(o._lock=1,Ge(o,s,c-s._delay,1)._lock=0):u=c,c<0&&s._ts&&(n-=c,(!h&&!o._dp||h&&h.smoothChildTiming)&&(o._start+=c/o._ts,o._time-=c,o._tTime-=c),o.shiftChildren(-c,!1,-1/0),u=0),s._end>n&&s._ts&&(n=s._end),s=l;_i(o,o===gt&&o._time>n?o._time:n,1,1),o._dirty=0}return o._tDur},t.updateRoot=function(i){if(gt._ts&&(Ks(gt,An(i,gt)),Us=ve.frame),ve.frame>=Gs){Gs+=De.autoSleep||120;var n=gt._first;if((!n||!n._ts)&&De.autoSleep&&ve._listeners.length<2){for(;n&&!n._ts;)n=n._next;n||ve.sleep()}}},t}(Hi);Ae(te.prototype,{_lock:0,_hasPause:0,_forcing:0});var Xl=function(t,e,r,i,n,o,s){var u=new fe(this._pt,t,e,0,1,ka,null,n),l=0,c=0,h,p,d,g,f,_,D,v;for(u.b=r,u.e=i,r+="",i+="",(D=~i.indexOf("random("))&&(i=Ii(i)),o&&(v=[r,i],o(v,t,e),r=v[0],i=v[1]),p=r.match(vo)||[];h=vo.exec(i);)g=h[0],f=i.substring(l,h.index),d?d=(d+1)%5:f.substr(-5)==="rgba("&&(d=1),g!==p[c++]&&(_=parseFloat(p[c-1])||0,u._pt={_next:u._pt,p:f||c===1?f:",",s:_,c:g.charAt(1)==="="?pi(_,g)-_:parseFloat(g)-_,m:d&&d<4?Math.round:0},l=vo.lastIndex);return u.c=l")}),y.duration();else{S={};for(A in g)A==="ease"||A==="easeEach"||Gl(A,g[A],S,g.easeEach);for(A in S)for(X=S[A].sort(function(Y,M){return Y.t-M.t}),P=0,x=0;xu-lt&&!c?u:il&&(p=l)),D=this._yoyo&&g&1,D&&(y=this._yEase,p=l-p),_=gi(this._tTime,f),p===s&&!o&&this._initted&&g===_)return this._tTime=h,this;g!==_&&(T&&this._yEase&&wa(T,D),this.vars.repeatRefresh&&!D&&!this._lock&&this._time!==f&&this._initted&&(this._lock=o=1,this.render(Bt(f*g),!0).invalidate()._lock=0))}if(!this._initted){if(na(this,c?i:p,o,n,h))return this._tTime=0,this;if(s!==this._time&&!(o&&this.vars.repeatRefresh&&g!==_))return this;if(l!==this._dur)return this.render(i,n,o)}if(this._tTime=h,this._time=p,!this._act&&this._ts&&(this._act=1,this._lazy=0),this.ratio=v=(y||this._ease)(p/l),this._from&&(this.ratio=v=1-v),p&&!s&&!n&&!g&&(we(this,"onStart"),this._tTime!==h))return this;for(d=this._pt;d;)d.r(v,d.d),d=d._next;T&&T.render(i<0?i:T._dur*T._ease(p/this._dur),n,o)||this._startAt&&(this._zTime=i),this._onUpdate&&!n&&(c&&Po(this,i,n,o),we(this,"onUpdate")),this._repeat&&g!==_&&this.vars.onRepeat&&!n&&this.parent&&we(this,"onRepeat"),(h===this._tDur||!h)&&this._tTime===h&&(c&&!this._onUpdate&&Po(this,i,!0,!0),(i||!l)&&(h===this._tDur&&this._ts>0||!h&&this._ts<0)&&br(this,1),!n&&!(c&&!s)&&(h||s||D)&&(we(this,h===u?"onComplete":"onReverseComplete",!0),this._prom&&!(h0)&&this._prom()))}return this},e.targets=function(){return this._targets},e.invalidate=function(i){return(!i||!this.vars.runBackwards)&&(this._startAt=0),this._pt=this._op=this._onUpdate=this._lazy=this.ratio=0,this._ptLookup=[],this.timeline&&this.timeline.invalidate(i),a.prototype.invalidate.call(this,i)},e.resetTo=function(i,n,o,s,u){$i||ve.wake(),this._ts||this.play();var l=Math.min(this._dur,(this._dp._time-this._start)*this._ts),c;return this._initted||qo(this,l),c=this._ease(l/this._dur),Hl(this,i,n,o,s,c,l,u)?this.resetTo(i,n,o,s,1):(On(this,0),this.parent||ta(this._dp,this,"_first","_last",this._dp._sort?"_start":0),this.render(0))},e.kill=function(i,n){if(n===void 0&&(n="all"),!i&&(!n||n==="all"))return this._lazy=this._pt=0,this.parent?Wi(this):this;if(this.timeline){var o=this.timeline.totalDuration();return this.timeline.killTweensOf(i,n,Cr&&Cr.vars.overwrite!==!0)._first||Wi(this),this.parent&&o!==this.timeline.totalDuration()&&_i(this,this._dur*this.timeline._tDur/o,0,1),this}var s=this._targets,u=i?Oe(i):s,l=this._ptLookup,c=this._pt,h,p,d,g,f,_,D;if((!n||n==="all")&&Cl(s,u))return n==="all"&&(this._pt=0),Wi(this);for(h=this._op=this._op||[],n!=="all"&&(Rt(n)&&(f={},de(n,function(v){return f[v]=1}),n=f),n=Ul(s,n)),D=s.length;D--;)if(~u.indexOf(s[D])){p=l[D],n==="all"?(h[D]=n,g=p,d={}):(d=h[D]=h[D]||{},g=n);for(f in g)_=p&&p[f],_&&((!("kill"in _.d)||_.d.kill(f)===!0)&&kn(this,_,"_pt"),delete p[f]),d!=="all"&&(d[f]=1)}return this._initted&&!this._pt&&c&&Wi(this),this},t.to=function(i,n){return new t(i,n,arguments[2])},t.from=function(i,n){return Ni(1,arguments)},t.delayedCall=function(i,n,o,s){return new t(n,0,{immediateRender:!1,lazy:!1,overwrite:!1,delay:i,onComplete:n,onReverseComplete:n,onCompleteParams:o,onReverseCompleteParams:o,callbackScope:s})},t.fromTo=function(i,n,o){return Ni(2,arguments)},t.set=function(i,n){return n.duration=0,n.repeatDelay||(n.repeat=0),new t(i,n)},t.killTweensOf=function(i,n,o){return gt.killTweensOf(i,n,o)},t}(Hi);Ae(Et.prototype,{_targets:[],_lazy:0,_startAt:0,_op:0,_onInit:0}),de("staggerTo,staggerFrom,staggerFromTo",function(a){Et[a]=function(){var t=new te,e=Mo.call(arguments,0);return e.splice(a==="staggerFromTo"?5:4,0,0),t[a].apply(t,e)}});var Io=function(t,e,r){return t[e]=r},Ea=function(t,e,r){return t[e](r)},jl=function(t,e,r,i){return t[e](i.fp,r)},Kl=function(t,e,r){return t.setAttribute(e,r)},Wo=function(t,e){return bt(t[e])?Ea:yo(t[e])&&t.setAttribute?Kl:Io},Fa=function(t,e){return e.set(e.t,e.p,Math.round((e.s+e.c*t)*1e6)/1e6,e)},Ql=function(t,e){return e.set(e.t,e.p,!!(e.s+e.c*t),e)},ka=function(t,e){var r=e._pt,i="";if(!t&&e.b)i=e.b;else if(t===1&&e.e)i=e.e;else{for(;r;)i=r.p+(r.m?r.m(r.s+r.c*t):Math.round((r.s+r.c*t)*1e4)/1e4)+i,r=r._next;i+=e.c}e.set(e.t,e.p,i,e)},Xo=function(t,e){for(var r=e._pt;r;)r.r(t,r.d),r=r._next},Zl=function(t,e,r,i){for(var n=this._pt,o;n;)o=n._next,n.p===i&&n.modifier(t,e,r),n=o},Jl=function(t){for(var e=this._pt,r,i;e;)i=e._next,e.p===t&&!e.op||e.op===t?kn(this,e,"_pt"):e.dep||(r=1),e=i;return!r},tc=function(t,e,r,i){i.mSet(t,e,i.m.call(i.tween,r,i.mt),i)},Aa=function(t){for(var e=t._pt,r,i,n,o;e;){for(r=e._next,i=n;i&&i.pr>e.pr;)i=i._next;(e._prev=i?i._prev:o)?e._prev._next=e:n=e,(e._next=i)?i._prev=e:o=e,e=r}t._pt=n},fe=function(){function a(e,r,i,n,o,s,u,l,c){this.t=r,this.s=n,this.c=o,this.p=i,this.r=s||Fa,this.d=u||this,this.set=l||Io,this.pr=c||0,this._next=e,e&&(e._prev=this)}var t=a.prototype;return t.modifier=function(r,i,n){this.mSet=this.mSet||this.set,this.set=tc,this.m=r,this.mt=n,this.tween=i},a}();de(ko+"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(a){return So[a]=1}),ye.TweenMax=ye.TweenLite=Et,ye.TimelineLite=ye.TimelineMax=te,gt=new te({sortChildren:!1,defaults:fi,autoRemoveChildren:!0,id:"root",smoothChildTiming:!0}),De.stringFilter=ya;var Wr=[],Mn={},ec=[],Pa=0,rc=0,$o=function(t){return(Mn[t]||ec).map(function(e){return e()})},Ho=function(){var t=Date.now(),e=[];t-Pa>2&&($o("matchMediaInit"),Wr.forEach(function(r){var i=r.queries,n=r.conditions,o,s,u,l;for(s in i)o=Ue.matchMedia(i[s]).matches,o&&(u=1),o!==n[s]&&(n[s]=o,l=1);l&&(r.revert(),u&&e.push(r))}),$o("matchMediaRevert"),e.forEach(function(r){return r.onMatch(r,function(i){return r.add(null,i)})}),Pa=t,$o("matchMedia"))},Oa=function(){function a(e,r){this.selector=r&&Yo(r),this.data=[],this._r=[],this.isReverted=!1,this.id=rc++,e&&this.add(e)}var t=a.prototype;return t.add=function(r,i,n){bt(r)&&(n=i,i=r,r=bt);var o=this,s=function(){var l=dt,c=o.selector,h;return l&&l!==o&&l.data.push(o),n&&(o.selector=Yo(n)),dt=o,h=i.apply(o,arguments),bt(h)&&o._r.push(h),dt=l,o.selector=c,o.isReverted=!1,h};return o.last=s,r===bt?s(o,function(u){return o.add(null,u)}):r?o[r]=s:s},t.ignore=function(r){var i=dt;dt=null,r(this),dt=i},t.getTweens=function(){var r=[];return this.data.forEach(function(i){return i instanceof a?r.push.apply(r,i.getTweens()):i instanceof Et&&!(i.parent&&i.parent.data==="nested")&&r.push(i)}),r},t.clear=function(){this._r.length=this.data.length=0},t.kill=function(r,i){var n=this;if(r?function(){for(var s=n.getTweens(),u=n.data.length,l;u--;)l=n.data[u],l.data==="isFlip"&&(l.revert(),l.getChildren(!0,!0,!1).forEach(function(c){return s.splice(s.indexOf(c),1)}));for(s.map(function(c){return{g:c._dur||c._delay||c._sat&&!c._sat.vars.immediateRender?c.globalTime(0):-1/0,t:c}}).sort(function(c,h){return h.g-c.g||-1/0}).forEach(function(c){return c.t.revert(r)}),u=n.data.length;u--;)l=n.data[u],l instanceof te?l.data!=="nested"&&(l.scrollTrigger&&l.scrollTrigger.revert(),l.kill()):!(l instanceof Et)&&l.revert&&l.revert(r);n._r.forEach(function(c){return c(r,n)}),n.isReverted=!0}():this.data.forEach(function(s){return s.kill&&s.kill()}),this.clear(),i)for(var o=Wr.length;o--;)Wr[o].id===this.id&&Wr.splice(o,1)},t.revert=function(r){this.kill(r||{})},a}(),ic=function(){function a(e){this.contexts=[],this.scope=e,dt&&dt.data.push(this)}var t=a.prototype;return t.add=function(r,i,n){He(r)||(r={matches:r});var o=new Oa(0,n||this.scope),s=o.conditions={},u,l,c;dt&&!o.selector&&(o.selector=dt.selector),this.contexts.push(o),i=o.add("onMatch",i),o.queries=r;for(l in r)l==="all"?c=1:(u=Ue.matchMedia(r[l]),u&&(Wr.indexOf(o)<0&&Wr.push(o),(s[l]=u.matches)&&(c=1),u.addListener?u.addListener(Ho):u.addEventListener("change",Ho)));return c&&i(o,function(h){return o.add(null,h)}),this},t.revert=function(r){this.kill(r||{})},t.kill=function(r){this.contexts.forEach(function(i){return i.kill(r,!0)})},a}(),Yn={registerPlugin:function(){for(var t=arguments.length,e=new Array(t),r=0;r1){var i=t.map(function(c){return he.quickSetter(c,e,r)}),n=i.length;return function(c){for(var h=n;h--;)i[h](c)}}t=t[0]||{};var o=be[e],s=Vr(t),u=s.harness&&(s.harness.aliases||{})[e]||e,l=o?function(c){var h=new o;mi._pt=0,h.init(t,r?c+r:c,mi,0,[t]),h.render(1,h),mi._pt&&Xo(1,mi)}:s.set(t,u);return o?l:function(c){return l(t,u,r?c+r:c,s,1)}},quickTo:function(t,e,r){var i,n=he.to(t,zr((i={},i[e]="+=0.1",i.paused=!0,i),r||{})),o=function(u,l,c){return n.resetTo(e,u,l,c)};return o.tween=n,o},isTweening:function(t){return gt.getTweensOf(t,!0).length>0},defaults:function(t){return t&&t.ease&&(t.ease=qr(t.ease,fi.ease)),Js(fi,t||{})},config:function(t){return Js(De,t||{})},registerEffect:function(t){var e=t.name,r=t.effect,i=t.plugins,n=t.defaults,o=t.extendTimeline;(i||"").split(",").forEach(function(s){return s&&!be[s]&&!ye[s]&&Li(e+" effect requires "+s+" plugin.")}),Fo[e]=function(s,u,l){return r(Oe(s),Ae(u||{},n),l)},o&&(te.prototype[e]=function(s,u,l){return this.add(Fo[e](s,He(u)?u:(l=u)&&{},this),l)})},registerEase:function(t,e){J[t]=qr(e)},parseEase:function(t,e){return arguments.length?qr(t,e):J},getById:function(t){return gt.getById(t)},exportRoot:function(t,e){t===void 0&&(t={});var r=new te(t),i,n;for(r.smoothChildTiming=ce(t.smoothChildTiming),gt.remove(r),r._dp=0,r._time=r._tTime=gt._time,i=gt._first;i;)n=i._next,(e||!(!i._dur&&i instanceof Et&&i.vars.onComplete===i._targets[0]))&&Ge(r,i,i._start-i._delay),i=n;return Ge(gt,r,0),r},context:function(t,e){return t?new Oa(t,e):dt},matchMedia:function(t){return new ic(t)},matchMediaRefresh:function(){return Wr.forEach(function(t){var e=t.conditions,r,i;for(i in e)e[i]&&(e[i]=!1,r=1);r&&t.revert()})||Ho()},addEventListener:function(t,e){var r=Mn[t]||(Mn[t]=[]);~r.indexOf(e)||r.push(e)},removeEventListener:function(t,e){var r=Mn[t],i=r&&r.indexOf(e);i>=0&&r.splice(i,1)},utils:{wrap:Rl,wrapYoyo:Bl,distribute:ua,random:ca,snap:la,normalize:Yl,getUnit:Ut,clamp:Al,splitColor:_a,toArray:Oe,selector:Yo,mapRange:fa,pipe:Ol,unitize:Ml,interpolate:Ll,shuffle:aa},install:$s,effects:Fo,ticker:ve,updateRoot:te.updateRoot,plugins:be,globalTimeline:gt,core:{PropTween:fe,globals:Hs,Tween:Et,Timeline:te,Animation:Hi,getCache:Vr,_removeLinkedListItem:kn,reverting:function(){return $t},context:function(t){return t&&dt&&(dt.data.push(t),t._ctx=dt),dt},suppressOverwrites:function(t){return mo=t}}};de("to,from,fromTo,delayedCall,set,killTweensOf",function(a){return Yn[a]=Et[a]}),ve.add(te.updateRoot),mi=Yn.to({},{duration:0});var nc=function(t,e){for(var r=t._pt;r&&r.p!==e&&r.op!==e&&r.fp!==e;)r=r._next;return r},oc=function(t,e){var r=t._targets,i,n,o;for(i in e)for(n=r.length;n--;)o=t._ptLookup[n][i],o&&(o=o.d)&&(o._pt&&(o=nc(o,i)),o&&o.modifier&&o.modifier(e[i],t,r[n],i))},Uo=function(t,e){return{name:t,rawVars:1,init:function(i,n,o){o._onInit=function(s){var u,l;if(Rt(n)&&(u={},de(n,function(c){return u[c]=1}),n=u),e){u={};for(l in n)u[l]=e(n[l]);n=u}oc(s,n)}}}},he=Yn.registerPlugin({name:"attr",init:function(t,e,r,i,n){var o,s,u;this.tween=r;for(o in e)u=t.getAttribute(o)||"",s=this.add(t,"setAttribute",(u||0)+"",e[o],i,n,0,0,o),s.op=o,s.b=u,this._props.push(o)},render:function(t,e){for(var r=e._pt;r;)$t?r.set(r.t,r.p,r.b,r):r.r(t,r.d),r=r._next}},{name:"endArray",init:function(t,e){for(var r=e.length;r--;)this.add(t,r,t[r]||0,e[r],0,0,0,0,0,1)}},Uo("roundProps",Ro),Uo("modifiers"),Uo("snap",la))||Yn;Et.version=te.version=he.version="3.12.5",Xs=1,bo()&&Di(),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;/*! * CSSPlugin 3.12.5 * https://gsap.com * * Copyright 2008-2024, GreenSock. All rights reserved. * Subject to the terms at https://gsap.com/standard-license or for * Club GSAP members, the agreement issued with that membership. * @author: Jack Doyle, jack@greensock.com */var Ma,xr,yi,Go,Xr,Ya,jo,sc=function(){return typeof window<"u"},lr={},$r=180/Math.PI,bi=Math.PI/180,wi=Math.atan2,Ra=1e8,Ko=/([A-Z])/g,ac=/(left|right|width|margin|padding|x)/i,uc=/[\s,\(]\S/,je={autoAlpha:"opacity,visibility",scale:"scaleX,scaleY",alpha:"opacity"},Qo=function(t,e){return e.set(e.t,e.p,Math.round((e.s+e.c*t)*1e4)/1e4+e.u,e)},lc=function(t,e){return e.set(e.t,e.p,t===1?e.e:Math.round((e.s+e.c*t)*1e4)/1e4+e.u,e)},cc=function(t,e){return e.set(e.t,e.p,t?Math.round((e.s+e.c*t)*1e4)/1e4+e.u:e.b,e)},dc=function(t,e){var r=e.s+e.c*t;e.set(e.t,e.p,~~(r+(r<0?-.5:.5))+e.u,e)},Ba=function(t,e){return e.set(e.t,e.p,t?e.e:e.b,e)},La=function(t,e){return e.set(e.t,e.p,t!==1?e.b:e.e,e)},fc=function(t,e,r){return t.style[e]=r},hc=function(t,e,r){return t.style.setProperty(e,r)},pc=function(t,e,r){return t._gsap[e]=r},gc=function(t,e,r){return t._gsap.scaleX=t._gsap.scaleY=r},_c=function(t,e,r,i,n){var o=t._gsap;o.scaleX=o.scaleY=r,o.renderTransform(n,o)},mc=function(t,e,r,i,n){var o=t._gsap;o[e]=r,o.renderTransform(n,o)},_t="transform",pe=_t+"Origin",Dc=function a(t,e){var r=this,i=this.target,n=i.style,o=i._gsap;if(t in lr&&n){if(this.tfm=this.tfm||{},t!=="transform")t=je[t]||t,~t.indexOf(",")?t.split(",").forEach(function(s){return r.tfm[s]=cr(i,s)}):this.tfm[t]=o.x?o[t]:cr(i,t),t===pe&&(this.tfm.zOrigin=o.zOrigin);else return je.transform.split(",").forEach(function(s){return a.call(r,s,e)});if(this.props.indexOf(_t)>=0)return;o.svg&&(this.svgo=i.getAttribute("data-svg-origin"),this.props.push(pe,e,"")),t=_t}(n||e)&&this.props.push(t,e,n[t])},Va=function(t){t.translate&&(t.removeProperty("translate"),t.removeProperty("scale"),t.removeProperty("rotate"))},yc=function(){var t=this.props,e=this.target,r=e.style,i=e._gsap,n,o;for(n=0;n=0?qa[o]:"")+t},Jo=function(){sc()&&window.document&&(Ma=window,xr=Ma.document,yi=xr.documentElement,Xr=Zo("div")||{style:{}},Zo("div"),_t=vi(_t),pe=_t+"Origin",Xr.style.cssText="border-width:0;line-height:0;position:absolute;padding:0",Na=!!vi("perspective"),jo=he.core.reverting,Go=1)},ts=function a(t){var e=Zo("svg",this.ownerSVGElement&&this.ownerSVGElement.getAttribute("xmlns")||"http://www.w3.org/2000/svg"),r=this.parentNode,i=this.nextSibling,n=this.style.cssText,o;if(yi.appendChild(e),e.appendChild(this),this.style.display="block",t)try{o=this.getBBox(),this._gsapBBox=this.getBBox,this.getBBox=a}catch{}else this._gsapBBox&&(o=this._gsapBBox());return r&&(i?r.insertBefore(this,i):r.appendChild(this)),yi.removeChild(e),this.style.cssText=n,o},Ia=function(t,e){for(var r=e.length;r--;)if(t.hasAttribute(e[r]))return t.getAttribute(e[r])},Wa=function(t){var e;try{e=t.getBBox()}catch{e=ts.call(t,!0)}return e&&(e.width||e.height)||t.getBBox===ts||(e=ts.call(t,!0)),e&&!e.width&&!e.x&&!e.y?{x:+Ia(t,["x","cx","x1"])||0,y:+Ia(t,["y","cy","y1"])||0,width:0,height:0}:e},Xa=function(t){return!!(t.getCTM&&(!t.parentNode||t.ownerSVGElement)&&Wa(t))},Hr=function(t,e){if(e){var r=t.style,i;e in lr&&e!==pe&&(e=_t),r.removeProperty?(i=e.substr(0,2),(i==="ms"||e.substr(0,6)==="webkit")&&(e="-"+e),r.removeProperty(i==="--"?e:e.replace(Ko,"-$1").toLowerCase())):r.removeAttribute(e)}},Tr=function(t,e,r,i,n,o){var s=new fe(t._pt,e,r,0,1,o?La:Ba);return t._pt=s,s.b=i,s.e=n,t._props.push(r),s},$a={deg:1,rad:1,turn:1},bc={grid:1,flex:1},Sr=function a(t,e,r,i){var n=parseFloat(r)||0,o=(r+"").trim().substr((n+"").length)||"px",s=Xr.style,u=ac.test(e),l=t.tagName.toLowerCase()==="svg",c=(l?"client":"offset")+(u?"Width":"Height"),h=100,p=i==="px",d=i==="%",g,f,_,D;if(i===o||!n||$a[i]||$a[o])return n;if(o!=="px"&&!p&&(n=a(t,e,r,"px")),D=t.getCTM&&Xa(t),(d||o==="%")&&(lr[e]||~e.indexOf("adius")))return g=D?t.getBBox()[u?"width":"height"]:t[c],vt(d?n/g*h:n/100*g);if(s[u?"width":"height"]=h+(p?o:i),f=~e.indexOf("adius")||i==="em"&&t.appendChild&&!l?t:t.parentNode,D&&(f=(t.ownerSVGElement||{}).parentNode),(!f||f===xr||!f.appendChild)&&(f=xr.body),_=f._gsap,_&&d&&_.width&&u&&_.time===ve.time&&!_.uncache)return vt(n/_.width*h);if(d&&(e==="height"||e==="width")){var v=t.style[e];t.style[e]=h+i,g=t[c],v?t.style[e]=v:Hr(t,e)}else(d||o==="%")&&!bc[Ke(f,"display")]&&(s.position=Ke(t,"position")),f===t&&(s.position="static"),f.appendChild(Xr),g=Xr[c],f.removeChild(Xr),s.position="absolute";return u&&d&&(_=Vr(f),_.time=ve.time,_.width=f[c]),vt(p?g*n/h:g&&n?h/g*n:0)},cr=function(t,e,r,i){var n;return Go||Jo(),e in je&&e!=="transform"&&(e=je[e],~e.indexOf(",")&&(e=e.split(",")[0])),lr[e]&&e!=="transform"?(n=ji(t,i),n=e!=="transformOrigin"?n[e]:n.svg?n.origin:Bn(Ke(t,pe))+" "+n.zOrigin+"px"):(n=t.style[e],(!n||n==="auto"||i||~(n+"").indexOf("calc("))&&(n=Rn[e]&&Rn[e](t,e,r)||Ke(t,e)||js(t,e)||(e==="opacity"?1:0))),r&&!~(n+"").trim().indexOf(" ")?Sr(t,e,n,r)+r:n},wc=function(t,e,r,i){if(!r||r==="none"){var n=vi(e,t,1),o=n&&Ke(t,n,1);o&&o!==r?(e=n,r=o):e==="borderColor"&&(r=Ke(t,"borderTopColor"))}var s=new fe(this._pt,t.style,e,0,1,ka),u=0,l=0,c,h,p,d,g,f,_,D,v,T,y,x;if(s.b=r,s.e=i,r+="",i+="",i==="auto"&&(f=t.style[e],t.style[e]=i,i=Ke(t,e)||i,f?t.style[e]=f:Hr(t,e)),c=[r,i],ya(c),r=c[0],i=c[1],p=r.match(hi)||[],x=i.match(hi)||[],x.length){for(;h=hi.exec(i);)_=h[0],v=i.substring(u,h.index),g?g=(g+1)%5:(v.substr(-5)==="rgba("||v.substr(-5)==="hsla(")&&(g=1),_!==(f=p[l++]||"")&&(d=parseFloat(f)||0,y=f.substr((d+"").length),_.charAt(1)==="="&&(_=pi(d,_)+y),D=parseFloat(_),T=_.substr((D+"").length),u=hi.lastIndex-T.length,T||(T=T||De.units[e]||y,u===i.length&&(i+=T,s.e+=T)),y!==T&&(d=Sr(t,e,f,T)||0),s._pt={_next:s._pt,p:v||l===1?v:",",s:d,c:D-d,m:g&&g<4||e==="zIndex"?Math.round:0});s.c=u-1;)s=n[l],lr[s]&&(u=1,s=s==="transformOrigin"?pe:_t),Hr(r,s);u&&(Hr(r,_t),o&&(o.svg&&r.removeAttribute("transform"),ji(r,1),o.uncache=1,Va(i)))}},Rn={clearProps:function(t,e,r,i,n){if(n.data!=="isFromStart"){var o=t._pt=new fe(t._pt,e,r,0,0,Cc);return o.u=i,o.pr=-10,o.tween=n,t._props.push(r),1}}},Gi=[1,0,0,1,0,0],Ua={},Ga=function(t){return t==="matrix(1, 0, 0, 1, 0, 0)"||t==="none"||!t},ja=function(t){var e=Ke(t,_t);return Ga(e)?Gi:e.substr(7).match(qs).map(vt)},es=function(t,e){var r=t._gsap||Vr(t),i=t.style,n=ja(t),o,s,u,l;return r.svg&&t.getAttribute("transform")?(u=t.transform.baseVal.consolidate().matrix,n=[u.a,u.b,u.c,u.d,u.e,u.f],n.join(",")==="1,0,0,1,0,0"?Gi:n):(n===Gi&&!t.offsetParent&&t!==yi&&!r.svg&&(u=i.display,i.display="block",o=t.parentNode,(!o||!t.offsetParent)&&(l=1,s=t.nextElementSibling,yi.appendChild(t)),n=ja(t),u?i.display=u:Hr(t,"display"),l&&(s?o.insertBefore(t,s):o?o.appendChild(t):yi.removeChild(t))),e&&n.length>6?[n[0],n[1],n[4],n[5],n[12],n[13]]:n)},rs=function(t,e,r,i,n,o){var s=t._gsap,u=n||es(t,!0),l=s.xOrigin||0,c=s.yOrigin||0,h=s.xOffset||0,p=s.yOffset||0,d=u[0],g=u[1],f=u[2],_=u[3],D=u[4],v=u[5],T=e.split(" "),y=parseFloat(T[0])||0,x=parseFloat(T[1])||0,S,b,A,F;r?u!==Gi&&(b=d*_-g*f)&&(A=y*(_/b)+x*(-f/b)+(f*v-_*D)/b,F=y*(-g/b)+x*(d/b)-(d*v-g*D)/b,y=A,x=F):(S=Wa(t),y=S.x+(~T[0].indexOf("%")?y/100*S.width:y),x=S.y+(~(T[1]||T[0]).indexOf("%")?x/100*S.height:x)),i||i!==!1&&s.smooth?(D=y-l,v=x-c,s.xOffset=h+(D*d+v*f)-D,s.yOffset=p+(D*g+v*_)-v):s.xOffset=s.yOffset=0,s.xOrigin=y,s.yOrigin=x,s.smooth=!!i,s.origin=e,s.originIsAbsolute=!!r,t.style[pe]="0px 0px",o&&(Tr(o,s,"xOrigin",l,y),Tr(o,s,"yOrigin",c,x),Tr(o,s,"xOffset",h,s.xOffset),Tr(o,s,"yOffset",p,s.yOffset)),t.setAttribute("data-svg-origin",y+" "+x)},ji=function(t,e){var r=t._gsap||new Ca(t);if("x"in r&&!e&&!r.uncache)return r;var i=t.style,n=r.scaleX<0,o="px",s="deg",u=getComputedStyle(t),l=Ke(t,pe)||"0",c,h,p,d,g,f,_,D,v,T,y,x,S,b,A,F,k,L,P,X,N,G,Y,M,I,E,m,et,Dt,_e,it,Q;return c=h=p=f=_=D=v=T=y=0,d=g=1,r.svg=!!(t.getCTM&&Xa(t)),u.translate&&((u.translate!=="none"||u.scale!=="none"||u.rotate!=="none")&&(i[_t]=(u.translate!=="none"?"translate3d("+(u.translate+" 0 0").split(" ").slice(0,3).join(", ")+") ":"")+(u.rotate!=="none"?"rotate("+u.rotate+") ":"")+(u.scale!=="none"?"scale("+u.scale.split(" ").join(",")+") ":"")+(u[_t]!=="none"?u[_t]:"")),i.scale=i.rotate=i.translate="none"),b=es(t,r.svg),r.svg&&(r.uncache?(I=t.getBBox(),l=r.xOrigin-I.x+"px "+(r.yOrigin-I.y)+"px",M=""):M=!e&&t.getAttribute("data-svg-origin"),rs(t,M||l,!!M||r.originIsAbsolute,r.smooth!==!1,b)),x=r.xOrigin||0,S=r.yOrigin||0,b!==Gi&&(L=b[0],P=b[1],X=b[2],N=b[3],c=G=b[4],h=Y=b[5],b.length===6?(d=Math.sqrt(L*L+P*P),g=Math.sqrt(N*N+X*X),f=L||P?wi(P,L)*$r:0,v=X||N?wi(X,N)*$r+f:0,v&&(g*=Math.abs(Math.cos(v*bi))),r.svg&&(c-=x-(x*L+S*X),h-=S-(x*P+S*N))):(Q=b[6],_e=b[7],m=b[8],et=b[9],Dt=b[10],it=b[11],c=b[12],h=b[13],p=b[14],A=wi(Q,Dt),_=A*$r,A&&(F=Math.cos(-A),k=Math.sin(-A),M=G*F+m*k,I=Y*F+et*k,E=Q*F+Dt*k,m=G*-k+m*F,et=Y*-k+et*F,Dt=Q*-k+Dt*F,it=_e*-k+it*F,G=M,Y=I,Q=E),A=wi(-X,Dt),D=A*$r,A&&(F=Math.cos(-A),k=Math.sin(-A),M=L*F-m*k,I=P*F-et*k,E=X*F-Dt*k,it=N*k+it*F,L=M,P=I,X=E),A=wi(P,L),f=A*$r,A&&(F=Math.cos(A),k=Math.sin(A),M=L*F+P*k,I=G*F+Y*k,P=P*F-L*k,Y=Y*F-G*k,L=M,G=I),_&&Math.abs(_)+Math.abs(f)>359.9&&(_=f=0,D=180-D),d=vt(Math.sqrt(L*L+P*P+X*X)),g=vt(Math.sqrt(Y*Y+Q*Q)),A=wi(G,Y),v=Math.abs(A)>2e-4?A*$r:0,y=it?1/(it<0?-it:it):0),r.svg&&(M=t.getAttribute("transform"),r.forceCSS=t.setAttribute("transform","")||!Ga(Ke(t,_t)),M&&t.setAttribute("transform",M))),Math.abs(v)>90&&Math.abs(v)<270&&(n?(d*=-1,v+=f<=0?180:-180,f+=f<=0?180:-180):(g*=-1,v+=v<=0?180:-180)),e=e||r.uncache,r.x=c-((r.xPercent=c&&(!e&&r.xPercent||(Math.round(t.offsetWidth/2)===Math.round(-c)?-50:0)))?t.offsetWidth*r.xPercent/100:0)+o,r.y=h-((r.yPercent=h&&(!e&&r.yPercent||(Math.round(t.offsetHeight/2)===Math.round(-h)?-50:0)))?t.offsetHeight*r.yPercent/100:0)+o,r.z=p+o,r.scaleX=vt(d),r.scaleY=vt(g),r.rotation=vt(f)+s,r.rotationX=vt(_)+s,r.rotationY=vt(D)+s,r.skewX=v+s,r.skewY=T+s,r.transformPerspective=y+o,(r.zOrigin=parseFloat(l.split(" ")[2])||!e&&r.zOrigin||0)&&(i[pe]=Bn(l)),r.xOffset=r.yOffset=0,r.force3D=De.force3D,r.renderTransform=r.svg?Tc:Na?Ka:xc,r.uncache=0,r},Bn=function(t){return(t=t.split(" "))[0]+" "+t[1]},is=function(t,e,r){var i=Ut(e);return vt(parseFloat(e)+parseFloat(Sr(t,"x",r+"px",i)))+i},xc=function(t,e){e.z="0px",e.rotationY=e.rotationX="0deg",e.force3D=0,Ka(t,e)},Ur="0deg",Ki="0px",Gr=") ",Ka=function(t,e){var r=e||this,i=r.xPercent,n=r.yPercent,o=r.x,s=r.y,u=r.z,l=r.rotation,c=r.rotationY,h=r.rotationX,p=r.skewX,d=r.skewY,g=r.scaleX,f=r.scaleY,_=r.transformPerspective,D=r.force3D,v=r.target,T=r.zOrigin,y="",x=D==="auto"&&t&&t!==1||D===!0;if(T&&(h!==Ur||c!==Ur)){var S=parseFloat(c)*bi,b=Math.sin(S),A=Math.cos(S),F;S=parseFloat(h)*bi,F=Math.cos(S),o=is(v,o,b*F*-T),s=is(v,s,-Math.sin(S)*-T),u=is(v,u,A*F*-T+T)}_!==Ki&&(y+="perspective("+_+Gr),(i||n)&&(y+="translate("+i+"%, "+n+"%) "),(x||o!==Ki||s!==Ki||u!==Ki)&&(y+=u!==Ki||x?"translate3d("+o+", "+s+", "+u+") ":"translate("+o+", "+s+Gr),l!==Ur&&(y+="rotate("+l+Gr),c!==Ur&&(y+="rotateY("+c+Gr),h!==Ur&&(y+="rotateX("+h+Gr),(p!==Ur||d!==Ur)&&(y+="skew("+p+", "+d+Gr),(g!==1||f!==1)&&(y+="scale("+g+", "+f+Gr),v.style[_t]=y||"translate(0, 0)"},Tc=function(t,e){var r=e||this,i=r.xPercent,n=r.yPercent,o=r.x,s=r.y,u=r.rotation,l=r.skewX,c=r.skewY,h=r.scaleX,p=r.scaleY,d=r.target,g=r.xOrigin,f=r.yOrigin,_=r.xOffset,D=r.yOffset,v=r.forceCSS,T=parseFloat(o),y=parseFloat(s),x,S,b,A,F;u=parseFloat(u),l=parseFloat(l),c=parseFloat(c),c&&(c=parseFloat(c),l+=c,u+=c),u||l?(u*=bi,l*=bi,x=Math.cos(u)*h,S=Math.sin(u)*h,b=Math.sin(u-l)*-p,A=Math.cos(u-l)*p,l&&(c*=bi,F=Math.tan(l-c),F=Math.sqrt(1+F*F),b*=F,A*=F,c&&(F=Math.tan(c),F=Math.sqrt(1+F*F),x*=F,S*=F)),x=vt(x),S=vt(S),b=vt(b),A=vt(A)):(x=h,A=p,S=b=0),(T&&!~(o+"").indexOf("px")||y&&!~(s+"").indexOf("px"))&&(T=Sr(d,"x",o,"px"),y=Sr(d,"y",s,"px")),(g||f||_||D)&&(T=vt(T+g-(g*x+f*b)+_),y=vt(y+f-(g*S+f*A)+D)),(i||n)&&(F=d.getBBox(),T=vt(T+i/100*F.width),y=vt(y+n/100*F.height)),F="matrix("+x+","+S+","+b+","+A+","+T+","+y+")",d.setAttribute("transform",F),v&&(d.style[_t]=F)},Sc=function(t,e,r,i,n){var o=360,s=Rt(n),u=parseFloat(n)*(s&&~n.indexOf("rad")?$r:1),l=u-i,c=i+l+"deg",h,p;return s&&(h=n.split("_")[1],h==="short"&&(l%=o,l!==l%(o/2)&&(l+=l<0?o:-o)),h==="cw"&&l<0?l=(l+o*Ra)%o-~~(l/o)*o:h==="ccw"&&l>0&&(l=(l-o*Ra)%o-~~(l/o)*o)),t._pt=p=new fe(t._pt,e,r,i,l,lc),p.e=c,p.u="deg",t._props.push(r),p},Qa=function(t,e){for(var r in e)t[r]=e[r];return t},Ec=function(t,e,r){var i=Qa({},r._gsap),n="perspective,force3D,transformOrigin,svgOrigin",o=r.style,s,u,l,c,h,p,d,g;i.svg?(l=r.getAttribute("transform"),r.setAttribute("transform",""),o[_t]=e,s=ji(r,1),Hr(r,_t),r.setAttribute("transform",l)):(l=getComputedStyle(r)[_t],o[_t]=e,s=ji(r,1),o[_t]=l);for(u in lr)l=i[u],c=s[u],l!==c&&n.indexOf(u)<0&&(d=Ut(l),g=Ut(c),h=d!==g?Sr(r,u,l,g):parseFloat(l),p=parseFloat(c),t._pt=new fe(t._pt,s,u,h,p-h,Qo),t._pt.u=g||0,t._props.push(u));Qa(s,i)};de("padding,margin,Width,Radius",function(a,t){var e="Top",r="Right",i="Bottom",n="Left",o=(t<3?[e,r,i,n]:[e+n,e+r,i+r,i+n]).map(function(s){return t<2?a+s:"border"+s+a});Rn[t>1?"border"+a:a]=function(s,u,l,c,h){var p,d;if(arguments.length<4)return p=o.map(function(g){return cr(s,g,l)}),d=p.join(" "),d.split(p[0]).length===5?p[0]:d;p=(c+"").split(" "),d={},o.forEach(function(g,f){return d[g]=p[f]=p[f]||p[(f-1)/2|0]}),s.init(u,d,h)}});var Za={name:"css",register:Jo,targetTest:function(t){return t.style&&t.nodeType},init:function(t,e,r,i,n){var o=this._props,s=t.style,u=r.vars.startAt,l,c,h,p,d,g,f,_,D,v,T,y,x,S,b,A;Go||Jo(),this.styles=this.styles||za(t),A=this.styles.props,this.tween=r;for(f in e)if(f!=="autoRound"&&(c=e[f],!(be[f]&&xa(f,e,r,i,t,n)))){if(d=typeof c,g=Rn[f],d==="function"&&(c=c.call(r,i,t,n),d=typeof c),d==="string"&&~c.indexOf("random(")&&(c=Ii(c)),g)g(this,t,f,c,r)&&(b=1);else if(f.substr(0,2)==="--")l=(getComputedStyle(t).getPropertyValue(f)+"").trim(),c+="",vr.lastIndex=0,vr.test(l)||(_=Ut(l),D=Ut(c)),D?_!==D&&(l=Sr(t,f,l,D)+D):_&&(c+=_),this.add(s,"setProperty",l,c,i,n,0,0,f),o.push(f),A.push(f,0,s[f]);else if(d!=="undefined"){if(u&&f in u?(l=typeof u[f]=="function"?u[f].call(r,i,t,n):u[f],Rt(l)&&~l.indexOf("random(")&&(l=Ii(l)),Ut(l+"")||l==="auto"||(l+=De.units[f]||Ut(cr(t,f))||""),(l+"").charAt(1)==="="&&(l=cr(t,f))):l=cr(t,f),p=parseFloat(l),v=d==="string"&&c.charAt(1)==="="&&c.substr(0,2),v&&(c=c.substr(2)),h=parseFloat(c),f in je&&(f==="autoAlpha"&&(p===1&&cr(t,"visibility")==="hidden"&&h&&(p=0),A.push("visibility",0,s.visibility),Tr(this,s,"visibility",p?"inherit":"hidden",h?"inherit":"hidden",!h)),f!=="scale"&&f!=="transform"&&(f=je[f],~f.indexOf(",")&&(f=f.split(",")[0]))),T=f in lr,T){if(this.styles.save(f),y||(x=t._gsap,x.renderTransform&&!e.parseTransform||ji(t,e.parseTransform),S=e.smoothOrigin!==!1&&x.smooth,y=this._pt=new fe(this._pt,s,_t,0,1,x.renderTransform,x,0,-1),y.dep=1),f==="scale")this._pt=new fe(this._pt,x,"scaleY",x.scaleY,(v?pi(x.scaleY,v+h):h)-x.scaleY||0,Qo),this._pt.u=0,o.push("scaleY",f),f+="X";else if(f==="transformOrigin"){A.push(pe,0,s[pe]),c=vc(c),x.svg?rs(t,c,0,S,0,this):(D=parseFloat(c.split(" ")[2])||0,D!==x.zOrigin&&Tr(this,x,"zOrigin",x.zOrigin,D),Tr(this,s,f,Bn(l),Bn(c)));continue}else if(f==="svgOrigin"){rs(t,c,1,S,0,this);continue}else if(f in Ua){Sc(this,x,f,p,v?pi(p,v+c):c);continue}else if(f==="smoothOrigin"){Tr(this,x,"smooth",x.smooth,c);continue}else if(f==="force3D"){x[f]=c;continue}else if(f==="transform"){Ec(this,c,t);continue}}else f in s||(f=vi(f)||f);if(T||(h||h===0)&&(p||p===0)&&!uc.test(c)&&f in s)_=(l+"").substr((p+"").length),h||(h=0),D=Ut(c)||(f in De.units?De.units[f]:_),_!==D&&(p=Sr(t,f,l,D)),this._pt=new fe(this._pt,T?x:s,f,p,(v?pi(p,v+h):h)-p,!T&&(D==="px"||f==="zIndex")&&e.autoRound!==!1?dc:Qo),this._pt.u=D||0,_!==D&&D!=="%"&&(this._pt.b=l,this._pt.r=cc);else if(f in s)wc.call(this,t,f,l,v?v+c:c);else if(f in t)this.add(t,f,l||t[f],v?v+c:c,i,n);else if(f!=="parseTransform"){To(f,c);continue}T||(f in s?A.push(f,0,s[f]):A.push(f,1,l||t[f])),o.push(f)}}b&&Aa(this)},render:function(t,e){if(e.tween._time||!jo())for(var r=e._pt;r;)r.r(t,r.d),r=r._next;else e.styles.revert()},get:cr,aliases:je,getSetter:function(t,e,r){var i=je[e];return i&&i.indexOf(",")<0&&(e=i),e in lr&&e!==pe&&(t._gsap.x||cr(t,"x"))?r&&Ya===r?e==="scale"?gc:pc:(Ya=r||{})&&(e==="scale"?_c:mc):t.style&&!yo(t.style[e])?fc:~e.indexOf("-")?hc:Wo(t,e)},core:{_removeProperty:Hr,_getMatrix:es}};he.utils.checkPrefix=vi,he.core.getStyleSaver=za,function(a,t,e,r){var i=de(a+","+t+","+e,function(n){lr[n]=1});de(t,function(n){De.units[n]="deg",Ua[n]=1}),je[i[13]]=a+","+t,de(r,function(n){var o=n.split(":");je[o[1]]=i[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"),de("x,y,z,top,right,bottom,left,width,height,fontSize,padding,margin,perspective",function(a){De.units[a]="px"}),he.registerPlugin(Za);var z=he.registerPlugin(Za)||he;z.core.Tween;function Fc(a,t){for(var e=0;eu?(n=i,i=g,s=o,o=_):r?i+=g:i=n+(g-n)/(_-s)*(o-s)},h=function(){n=i=r?0:i,s=o=0},p=function(g){var f=s,_=n,D=Zi();return(g||g===0)&&g!==i&&c(g),o===s||D-s>l?0:(i+(r?_:-_))/((r?D:o)-f)*1e3};return{update:c,reset:h,getVelocity:p}},tn=function(t,e){return e&&!t._gsapAllow&&t.preventDefault(),t.changedTouches?t.changedTouches[0]:t},nu=function(t){var e=Math.max.apply(Math,t),r=Math.min.apply(Math,t);return Math.abs(e)>=Math.abs(r)?e:r},ou=function(){Qi=It.core.globals().ScrollTrigger,Qi&&Qi.core&&Ac()},su=function(t){return It=t||ru(),!Ln&&It&&typeof document<"u"&&document.body&&(Ce=window,Er=document,Fr=Er.documentElement,Ci=Er.body,tu=[Ce,Er,Fr,Ci],It.utils.clamp,eu=It.core.context||function(){},jr="onpointerenter"in Ci?"pointer":"mouse",Ja=Ct.isTouch=Ce.matchMedia&&Ce.matchMedia("(hover: none), (pointer: coarse)").matches?1:"ontouchstart"in Ce||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0?2:0,Ve=Ct.eventTypes=("ontouchstart"in Fr?"touchstart,touchmove,touchcancel,touchend":"onpointerdown"in Fr?"pointerdown,pointermove,pointercancel,pointerup":"mousedown,mousemove,mouseup,mouseup").split(","),setTimeout(function(){return iu=0},500),ou(),Ln=1),Ln};ie.op=Pt,K.cache=0;var Ct=function(){function a(e){this.init(e)}var t=a.prototype;return t.init=function(r){Ln||su(It)||console.warn("Please gsap.registerPlugin(Observer)"),Qi||ou();var i=r.tolerance,n=r.dragMinimum,o=r.type,s=r.target,u=r.lineHeight,l=r.debounce,c=r.preventDefault,h=r.onStop,p=r.onStopDelay,d=r.ignore,g=r.wheelSpeed,f=r.event,_=r.onDragStart,D=r.onDragEnd,v=r.onDrag,T=r.onPress,y=r.onRelease,x=r.onRight,S=r.onLeft,b=r.onUp,A=r.onDown,F=r.onChangeX,k=r.onChangeY,L=r.onChange,P=r.onToggleX,X=r.onToggleY,N=r.onHover,G=r.onHoverEnd,Y=r.onMove,M=r.ignoreCheck,I=r.isNormalizer,E=r.onGestureStart,m=r.onGestureEnd,et=r.onWheel,Dt=r.onEnable,_e=r.onDisable,it=r.onClick,Q=r.scrollSpeed,zt=r.capture,ot=r.allowClicks,ue=r.lockAxis,Kt=r.onLockAxis;this.target=s=ge(s)||Fr,this.vars=r,d&&(d=It.utils.toArray(d)),i=i||1e-9,n=n||0,g=g||1,Q=Q||1,o=o||"wheel,touch,pointer",l=l!==!1,u||(u=parseFloat(Ce.getComputedStyle(Ci).lineHeight)||22);var Or,le,Ne,nt,xt,me,Se,C=this,Ee=0,gr=0,Mr=r.passive||!c,kt=Ar(s,ie),Yr=Ar(s,Pt),si=kt(),Mi=Yr(),Nt=~o.indexOf("touch")&&!~o.indexOf("pointer")&&Ve[0]==="pointerdown",Rr=Ji(s),Tt=s.ownerDocument||Er,qe=[0,0,0],Be=[0,0,0],_r=0,Dn=function(){return _r=Zi()},At=function(q,st){return(C.event=q)&&d&&~d.indexOf(q.target)||st&&Nt&&q.pointerType!=="touch"||M&&M(q,st)},po=function(){C._vx.reset(),C._vy.reset(),le.pause(),h&&h(C)},Br=function(){var q=C.deltaX=nu(qe),st=C.deltaY=nu(Be),O=Math.abs(q)>=i,U=Math.abs(st)>=i;L&&(O||U)&&L(C,q,st,qe,Be),O&&(x&&C.deltaX>0&&x(C),S&&C.deltaX<0&&S(C),F&&F(C),P&&C.deltaX<0!=Ee<0&&P(C),Ee=C.deltaX,qe[0]=qe[1]=qe[2]=0),U&&(A&&C.deltaY>0&&A(C),b&&C.deltaY<0&&b(C),k&&k(C),X&&C.deltaY<0!=gr<0&&X(C),gr=C.deltaY,Be[0]=Be[1]=Be[2]=0),(nt||Ne)&&(Y&&Y(C),Ne&&(v(C),Ne=!1),nt=!1),me&&!(me=!1)&&Kt&&Kt(C),xt&&(et(C),xt=!1),Or=0},Yi=function(q,st,O){qe[O]+=q,Be[O]+=st,C._vx.update(q),C._vy.update(st),l?Or||(Or=requestAnimationFrame(Br)):Br()},Ri=function(q,st){ue&&!Se&&(C.axis=Se=Math.abs(q)>Math.abs(st)?"x":"y",me=!0),Se!=="y"&&(qe[2]+=q,C._vx.update(q,!0)),Se!=="x"&&(Be[2]+=st,C._vy.update(st,!0)),l?Or||(Or=requestAnimationFrame(Br)):Br()},Lr=function(q){if(!At(q,1)){q=tn(q,c);var st=q.clientX,O=q.clientY,U=st-C.x,V=O-C.y,$=C.isDragging;C.x=st,C.y=O,($||Math.abs(C.startX-st)>=n||Math.abs(C.startY-O)>=n)&&(v&&(Ne=!0),$||(C.isDragging=!0),Ri(U,V),$||_&&_(C))}},ai=C.onPress=function(H){At(H,1)||H&&H.button||(C.axis=Se=null,le.pause(),C.isPressed=!0,H=tn(H),Ee=gr=0,C.startX=C.x=H.clientX,C.startY=C.y=H.clientY,C._vx.reset(),C._vy.reset(),ee(I?s:Tt,Ve[1],Lr,Mr,!0),C.deltaX=C.deltaY=0,T&&T(C))},Z=C.onRelease=function(H){if(!At(H,1)){re(I?s:Tt,Ve[1],Lr,!0);var q=!isNaN(C.y-C.startY),st=C.isDragging,O=st&&(Math.abs(C.x-C.startX)>3||Math.abs(C.y-C.startY)>3),U=tn(H);!O&&q&&(C._vx.reset(),C._vy.reset(),c&&ot&&It.delayedCall(.08,function(){if(Zi()-_r>300&&!H.defaultPrevented){if(H.target.click)H.target.click();else if(Tt.createEvent){var V=Tt.createEvent("MouseEvents");V.initMouseEvent("click",!0,!0,Ce,1,U.screenX,U.screenY,U.clientX,U.clientY,!1,!1,!1,!1,0,null),H.target.dispatchEvent(V)}}})),C.isDragging=C.isGesturing=C.isPressed=!1,h&&st&&!I&&le.restart(!0),D&&st&&D(C),y&&y(C,O)}},ui=function(q){return q.touches&&q.touches.length>1&&(C.isGesturing=!0)&&E(q,C.isDragging)},Ie=function(){return(C.isGesturing=!1)||m(C)},We=function(q){if(!At(q)){var st=kt(),O=Yr();Yi((st-si)*Q,(O-Mi)*Q,1),si=st,Mi=O,h&&le.restart(!0)}},Xe=function(q){if(!At(q)){q=tn(q,c),et&&(xt=!0);var st=(q.deltaMode===1?u:q.deltaMode===2?Ce.innerHeight:1)*g;Yi(q.deltaX*st,q.deltaY*st,0),h&&!I&&le.restart(!0)}},li=function(q){if(!At(q)){var st=q.clientX,O=q.clientY,U=st-C.x,V=O-C.y;C.x=st,C.y=O,nt=!0,h&&le.restart(!0),(U||V)&&Ri(U,V)}},Bi=function(q){C.event=q,N(C)},mr=function(q){C.event=q,G(C)},yn=function(q){return At(q)||tn(q,c)&&it(C)};le=C._dc=It.delayedCall(p||.25,po).pause(),C.deltaX=C.deltaY=0,C._vx=ss(0,50,!0),C._vy=ss(0,50,!0),C.scrollX=kt,C.scrollY=Yr,C.isDragging=C.isGesturing=C.isPressed=!1,eu(this),C.enable=function(H){return C.isEnabled||(ee(Rr?Tt:s,"scroll",os),o.indexOf("scroll")>=0&&ee(Rr?Tt:s,"scroll",We,Mr,zt),o.indexOf("wheel")>=0&&ee(s,"wheel",Xe,Mr,zt),(o.indexOf("touch")>=0&&Ja||o.indexOf("pointer")>=0)&&(ee(s,Ve[0],ai,Mr,zt),ee(Tt,Ve[2],Z),ee(Tt,Ve[3],Z),ot&&ee(s,"click",Dn,!0,!0),it&&ee(s,"click",yn),E&&ee(Tt,"gesturestart",ui),m&&ee(Tt,"gestureend",Ie),N&&ee(s,jr+"enter",Bi),G&&ee(s,jr+"leave",mr),Y&&ee(s,jr+"move",li)),C.isEnabled=!0,H&&H.type&&ai(H),Dt&&Dt(C)),C},C.disable=function(){C.isEnabled&&(xi.filter(function(H){return H!==C&&Ji(H.target)}).length||re(Rr?Tt:s,"scroll",os),C.isPressed&&(C._vx.reset(),C._vy.reset(),re(I?s:Tt,Ve[1],Lr,!0)),re(Rr?Tt:s,"scroll",We,zt),re(s,"wheel",Xe,zt),re(s,Ve[0],ai,zt),re(Tt,Ve[2],Z),re(Tt,Ve[3],Z),re(s,"click",Dn,!0),re(s,"click",yn),re(Tt,"gesturestart",ui),re(Tt,"gestureend",Ie),re(s,jr+"enter",Bi),re(s,jr+"leave",mr),re(s,jr+"move",li),C.isEnabled=C.isPressed=C.isDragging=!1,_e&&_e(C))},C.kill=C.revert=function(){C.disable();var H=xi.indexOf(C);H>=0&&xi.splice(H,1),dr===C&&(dr=0)},xi.push(C),I&&Ji(s)&&(dr=C),C.enable(f)},kc(a,[{key:"velocityX",get:function(){return this._vx.getVelocity()}},{key:"velocityY",get:function(){return this._vy.getVelocity()}}]),a}();Ct.version="3.12.5",Ct.create=function(a){return new Ct(a)},Ct.register=su,Ct.getAll=function(){return xi.slice()},Ct.getById=function(a){return xi.filter(function(t){return t.vars.id===a})[0]},ru()&&It.registerPlugin(Ct);/*! * ScrollTrigger 3.12.5 * https://gsap.com * * @license Copyright 2008-2024, GreenSock. All rights reserved. * Subject to the terms at https://gsap.com/standard-license or for * Club GSAP members, the agreement issued with that membership. * @author: Jack Doyle, jack@greensock.com */var R,Ti,tt,mt,ze,ct,au,qn,en,rn,nn,In,Gt,Wn,as,ne,uu,lu,Si,cu,us,du,oe,ls,fu,hu,Pr,cs,ds,Ei,fs,Xn,hs,ps,$n=1,jt=Date.now,gs=jt(),Me=0,on=0,pu=function(t,e,r){var i=xe(t)&&(t.substr(0,6)==="clamp("||t.indexOf("max")>-1);return r["_"+e+"Clamp"]=i,i?t.substr(6,t.length-7):t},gu=function(t,e){return e&&(!xe(t)||t.substr(0,6)!=="clamp(")?"clamp("+t+")":t},Pc=function a(){return on&&requestAnimationFrame(a)},_u=function(){return Wn=1},mu=function(){return Wn=0},Ze=function(t){return t},sn=function(t){return Math.round(t*1e5)/1e5||0},Du=function(){return typeof window<"u"},yu=function(){return R||Du()&&(R=window.gsap)&&R.registerPlugin&&R},Kr=function(t){return!!~au.indexOf(t)},bu=function(t){return(t==="Height"?fs:tt["inner"+t])||ze["client"+t]||ct["client"+t]},wu=function(t){return kr(t,"getBoundingClientRect")||(Kr(t)?function(){return no.width=tt.innerWidth,no.height=fs,no}:function(){return fr(t)})},Oc=function(t,e,r){var i=r.d,n=r.d2,o=r.a;return(o=kr(t,"getBoundingClientRect"))?function(){return o()[i]}:function(){return(e?bu(n):t["client"+n])||0}},Mc=function(t,e){return!e||~Qe.indexOf(t)?wu(t):function(){return no}},Je=function(t,e){var r=e.s,i=e.d2,n=e.d,o=e.a;return Math.max(0,(r="scroll"+i)&&(o=kr(t,r))?o()-wu(t)()[n]:Kr(t)?(ze[r]||ct[r])-bu(i):t[r]-t["offset"+i])},Hn=function(t,e){for(var r=0;r0){for(i-=o,s=0;s=i)return r[s];return r[s-1]}else for(s=r.length,i+=o;s--;)if(r[s]<=i)return r[s];return r[0]}:function(i,n,o){o===void 0&&(o=.001);var s=e(i);return!n||Math.abs(s-i)r&&(i*=e/100),t=t.substr(0,r-1)),t=i+(t in Qn?Qn[t]*e:~t.indexOf("%")?parseFloat(t)*e/100:parseFloat(t)||0)}return t},Jn=function(t,e,r,i,n,o,s,u){var l=n.startColor,c=n.endColor,h=n.fontSize,p=n.indent,d=n.fontWeight,g=mt.createElement("div"),f=Kr(r)||kr(r,"pinType")==="fixed",_=t.indexOf("scroller")!==-1,D=f?ct:r,v=t.indexOf("start")!==-1,T=v?l:c,y="border-color:"+T+";font-size:"+h+";color:"+T+";font-weight:"+d+";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:"+((_||u)&&f?"fixed;":"absolute;"),(_||u||!f)&&(y+=(i===Pt?ms:Ds)+":"+(o+parseFloat(p))+"px;"),s&&(y+="box-sizing:border-box;text-align:left;width:"+s.offsetWidth+"px;"),g._isStart=v,g.setAttribute("class","gsap-marker-"+t+(e?" marker-"+e:"")),g.style.cssText=y,g.innerText=e||e===0?t+"-"+e:t,D.children[0]?D.insertBefore(g,D.children[0]):D.appendChild(g),g._offset=g["offset"+i.op.d2],to(g,0,i,v),g},to=function(t,e,r,i){var n={display:"block"},o=r[i?"os2":"p2"],s=r[i?"p2":"os2"];t._isFlipped=i,n[r.a+"Percent"]=i?-100:0,n[r.a]=i?"1px":0,n["border"+o+ki]=1,n["border"+s+ki]=0,n[r.p]=e+"px",R.set(t,n)},j=[],ws={},hn,Eu=function(){return jt()-Me>34&&(hn||(hn=requestAnimationFrame(hr)))},Ai=function(){(!oe||!oe.isPressed||oe.startX>ct.clientWidth)&&(K.cache++,oe?hn||(hn=requestAnimationFrame(hr)):hr(),Me||ei("scrollStart"),Me=jt())},vs=function(){hu=tt.innerWidth,fu=tt.innerHeight},pn=function(){K.cache++,!Gt&&!du&&!mt.fullscreenElement&&!mt.webkitFullscreenElement&&(!ls||hu!==tt.innerWidth||Math.abs(tt.innerHeight-fu)>tt.innerHeight*.25)&&qn.restart(!0)},ti={},Lc=[],Fu=function a(){return Vt(B,"scrollEnd",a)||ii(!0)},ei=function(t){return ti[t]&&ti[t].map(function(e){return e()})||Lc},Te=[],ku=function(t){for(var e=0;en,s=i._startClamp&&i.start>=n;(o||s)&&i.setPositions(s?n-1:i.start,o?Math.max(s?n:i.start+1,n):i.end,!0)}),Mu(!1),hs=0,r.forEach(function(i){return i&&i.render&&i.render(-1)}),K.forEach(function(i){se(i)&&(i.smooth&&requestAnimationFrame(function(){return i.target.style.scrollBehavior="smooth"}),i.rec&&i(i.rec))}),Au(ds,1),qn.pause(),ri++,ae=2,hr(2),j.forEach(function(i){return se(i.vars.onRefresh)&&i.vars.onRefresh(i)}),ae=B.isRefreshing=!1,ei("refresh")},xs=0,eo=1,gn,hr=function(t){if(t===2||!ae&&!Xn){B.isUpdating=!0,gn&&gn.update(0);var e=j.length,r=jt(),i=r-gs>=50,n=e&&j[0].scroll();if(eo=xs>n?-1:1,ae||(xs=n),i&&(Me&&!Wn&&r-Me>200&&(Me=0,ei("scrollEnd")),nn=gs,gs=r),eo<0){for(ne=e;ne-- >0;)j[ne]&&j[ne].update(0,i);eo=1}else for(ne=0;ne20),r-=r-S}if(g&&(u[g]=t||-.001,t<0&&(t=0)),o){var A=t+r,F=o._isStart;_="scroll"+i.d2,to(o,A,i,F&&A>20||!F&&(h?Math.max(ct[_],ze[_]):o.parentNode[_])<=A+1),h&&(l=fr(s),h&&(o.style[i.op.p]=l[i.op.p]-i.op.m-o._offset+Ot))}return d&&v&&(_=fr(v),d.seek(p),D=fr(v),d._caScrollDist=_[i.p]-D[i.p],t=t/d._caScrollDist*p),d&&d.seek(f),d?t:Math.round(t)},Ic=/(webkit|moz|length|cssText|inset)/i,Ru=function(t,e,r,i){if(t.parentNode!==e){var n=t.style,o,s;if(e===ct){t._stOrig=n.cssText,s=Re(t);for(o in s)!+o&&!Ic.test(o)&&s[o]&&typeof n[o]=="string"&&o!=="0"&&(n[o]=s[o]);n.top=r,n.left=i}else n.cssText=t._stOrig;R.core.getCache(t).uncache=1,e.appendChild(t)}},Bu=function(t,e,r){var i=e,n=i;return function(o){var s=Math.round(t());return s!==i&&s!==n&&Math.abs(s-i)>3&&Math.abs(s-n)>3&&(o=s,r&&r()),n=i,i=o,o}},oo=function(t,e,r){var i={};i[e.p]="+="+r,R.set(t,i)},Lu=function(t,e){var r=Ar(t,e),i="_scroll"+e.p2,n=function o(s,u,l,c,h){var p=o.tween,d=u.onComplete,g={};l=l||r();var f=Bu(r,l,function(){p.kill(),o.tween=0});return h=c&&h||0,c=c||s-l,p&&p.kill(),u[i]=s,u.inherit=!1,u.modifiers=g,g[i]=function(){return f(l+c*p.ratio+h*p.ratio*p.ratio)},u.onUpdate=function(){K.cache++,o.tween&&hr()},u.onComplete=function(){o.tween=0,d&&d.call(p)},p=o.tween=R.to(t,u),p};return t[i]=r,r.wheelHandler=function(){return n.tween&&n.tween.kill()&&(n.tween=0)},Lt(t,"wheel",r.wheelHandler),B.isTouch&&Lt(t,"touchmove",r.wheelHandler),n},B=function(){function a(e,r){Ti||a.register(R)||console.warn("Please gsap.registerPlugin(ScrollTrigger)"),cs(this),this.init(e,r)}var t=a.prototype;return t.init=function(r,i){if(this.progress=this.start=0,this.vars&&this.kill(!0,!0),!on){this.update=this.refresh=this.kill=Ze;return}r=xu(xe(r)||an(r)||r.nodeType?{trigger:r}:r,Kn);var n=r,o=n.onUpdate,s=n.toggleClass,u=n.id,l=n.onToggle,c=n.onRefresh,h=n.scrub,p=n.trigger,d=n.pin,g=n.pinSpacing,f=n.invalidateOnRefresh,_=n.anticipatePin,D=n.onScrubComplete,v=n.onSnapComplete,T=n.once,y=n.snap,x=n.pinReparent,S=n.pinSpacer,b=n.containerAnimation,A=n.fastScrollEnd,F=n.preventOverlaps,k=r.horizontal||r.containerAnimation&&r.horizontal!==!1?ie:Pt,L=!h&&h!==0,P=ge(r.scroller||tt),X=R.core.getCache(P),N=Kr(P),G=("pinType"in r?r.pinType:kr(P,"pinType")||N&&"fixed")==="fixed",Y=[r.onEnter,r.onLeave,r.onEnterBack,r.onLeaveBack],M=L&&r.toggleActions.split(" "),I="markers"in r?r.markers:Kn.markers,E=N?0:parseFloat(Re(P)["border"+k.p2+ki])||0,m=this,et=r.onRefreshInit&&function(){return r.onRefreshInit(m)},Dt=Oc(P,N,k),_e=Mc(P,N),it=0,Q=0,zt=0,ot=Ar(P,k),ue,Kt,Or,le,Ne,nt,xt,me,Se,C,Ee,gr,Mr,kt,Yr,si,Mi,Nt,Rr,Tt,qe,Be,_r,Dn,At,po,Br,Yi,Ri,Lr,ai,Z,ui,Ie,We,Xe,li,Bi,mr;if(m._startClamp=m._endClamp=!1,m._dir=k,_*=45,m.scroller=P,m.scroll=b?b.time.bind(b):ot,le=ot(),m.vars=r,i=i||r.animation,"refreshPriority"in r&&(cu=1,r.refreshPriority===-9999&&(gn=m)),X.tweenScroll=X.tweenScroll||{top:Lu(P,Pt),left:Lu(P,ie)},m.tweenTo=ue=X.tweenScroll[k.p],m.scrubDuration=function(O){ui=an(O)&&O,ui?Z?Z.duration(O):Z=R.to(i,{ease:"expo",totalProgress:"+=0",inherit:!1,duration:ui,paused:!0,onComplete:function(){return D&&D(m)}}):(Z&&Z.progress(1).kill(),Z=0)},i&&(i.vars.lazy=!1,i._initted&&!m.isReverted||i.vars.immediateRender!==!1&&r.immediateRender!==!1&&i.duration()&&i.render(0,!0,!0),m.animation=i.pause(),i.scrollTrigger=m,m.scrubDuration(h),Lr=0,u||(u=i.vars.id)),y&&((!Qr(y)||y.push)&&(y={snapTo:y}),"scrollBehavior"in ct.style&&R.set(N?[ct,ze]:P,{scrollBehavior:"auto"}),K.forEach(function(O){return se(O)&&O.target===(N?mt.scrollingElement||ze:P)&&(O.smooth=!1)}),Or=se(y.snapTo)?y.snapTo:y.snapTo==="labels"?Rc(i):y.snapTo==="labelsDirectional"?Bc(i):y.directional!==!1?function(O,U){return bs(y.snapTo)(O,jt()-Q<500?0:U.direction)}:R.utils.snap(y.snapTo),Ie=y.duration||{min:.1,max:2},Ie=Qr(Ie)?rn(Ie.min,Ie.max):rn(Ie,Ie),We=R.delayedCall(y.delay||ui/2||.1,function(){var O=ot(),U=jt()-Q<500,V=ue.tween;if((U||Math.abs(m.getVelocity())<10)&&!V&&!Wn&&it!==O){var $=(O-nt)/kt,qt=i&&!L?i.totalProgress():$,rt=U?0:(qt-ai)/(jt()-nn)*1e3||0,St=R.utils.clamp(-$,1-$,Fi(rt/2)*rt/.185),Qt=$+(y.inertia===!1?0:St),wt,pt,ut=y,$e=ut.onStart,yt=ut.onInterrupt,Fe=ut.onComplete;if(wt=Or(Qt,m),an(wt)||(wt=Qt),pt=Math.round(nt+wt*kt),O<=xt&&O>=nt&&pt!==O){if(V&&!V._initted&&V.data<=Fi(pt-O))return;y.inertia===!1&&(St=wt-$),ue(pt,{duration:Ie(Fi(Math.max(Fi(Qt-qt),Fi(wt-qt))*.185/rt/.05||0)),ease:y.ease||"power3",data:Fi(pt-O),onInterrupt:function(){return We.restart(!0)&&yt&&yt(m)},onComplete:function(){m.update(),it=ot(),i&&(Z?Z.resetTo("totalProgress",wt,i._tTime/i._tDur):i.progress(wt)),Lr=ai=i&&!L?i.totalProgress():m.progress,v&&v(m),Fe&&Fe(m)}},O,St*kt,pt-O-St*kt),$e&&$e(m,ue.tween)}}else m.isActive&&it!==O&&We.restart(!0)}).pause()),u&&(ws[u]=m),p=m.trigger=ge(p||d!==!0&&d),mr=p&&p._gsap&&p._gsap.stRevert,mr&&(mr=mr(m)),d=d===!0?p:ge(d),xe(s)&&(s={targets:p,className:s}),d&&(g===!1||g===Ye||(g=!g&&d.parentNode&&d.parentNode.style&&Re(d.parentNode).display==="flex"?!1:Ft),m.pin=d,Kt=R.core.getCache(d),Kt.spacer?Yr=Kt.pinState:(S&&(S=ge(S),S&&!S.nodeType&&(S=S.current||S.nativeElement),Kt.spacerIsNative=!!S,S&&(Kt.spacerState=io(S))),Kt.spacer=Nt=S||mt.createElement("div"),Nt.classList.add("pin-spacer"),u&&Nt.classList.add("pin-spacer-"+u),Kt.pinState=Yr=io(d)),r.force3D!==!1&&R.set(d,{force3D:!0}),m.spacer=Nt=Kt.spacer,Ri=Re(d),Dn=Ri[g+k.os2],Tt=R.getProperty(d),qe=R.quickSetter(d,k.a,Ot),Ss(d,Nt,Ri),Mi=io(d)),I){gr=Qr(I)?xu(I,Su):Su,C=Jn("scroller-start",u,P,k,gr,0),Ee=Jn("scroller-end",u,P,k,gr,0,C),Rr=C["offset"+k.op.d2];var yn=ge(kr(P,"content")||P);me=this.markerStart=Jn("start",u,yn,k,gr,Rr,0,b),Se=this.markerEnd=Jn("end",u,yn,k,gr,Rr,0,b),b&&(Bi=R.quickSetter([me,Se],k.a,Ot)),!G&&!(Qe.length&&kr(P,"fixedMarkers")===!0)&&(Yc(N?ct:P),R.set([C,Ee],{force3D:!0}),po=R.quickSetter(C,k.a,Ot),Yi=R.quickSetter(Ee,k.a,Ot))}if(b){var H=b.vars.onUpdate,q=b.vars.onUpdateParams;b.eventCallback("onUpdate",function(){m.update(0,0,1),H&&H.apply(b,q||[])})}if(m.previous=function(){return j[j.indexOf(m)-1]},m.next=function(){return j[j.indexOf(m)+1]},m.revert=function(O,U){if(!U)return m.kill(!0);var V=O!==!1||!m.enabled,$=Gt;V!==m.isReverted&&(V&&(Xe=Math.max(ot(),m.scroll.rec||0),zt=m.progress,li=i&&i.progress()),me&&[me,Se,C,Ee].forEach(function(qt){return qt.style.display=V?"none":"block"}),V&&(Gt=m,m.update(V)),d&&(!x||!m.isActive)&&(V?zc(d,Nt,Yr):Ss(d,Nt,Re(d),At)),V||m.update(V),Gt=$,m.isReverted=V)},m.refresh=function(O,U,V,$){if(!((Gt||!m.enabled)&&!U)){if(d&&O&&Me){Lt(a,"scrollEnd",Fu);return}!ae&&et&&et(m),Gt=m,ue.tween&&!V&&(ue.tween.kill(),ue.tween=0),Z&&Z.pause(),f&&i&&i.revert({kill:!1}).invalidate(),m.isReverted||m.revert(!0,!0),m._subPinOffset=!1;var qt=Dt(),rt=_e(),St=b?b.duration():Je(P,k),Qt=kt<=.01,wt=0,pt=$||0,ut=Qr(V)?V.end:r.end,$e=r.endTrigger||p,yt=Qr(V)?V.start:r.start||(r.start===0||!p?0:d?"0 0":"0 100%"),Fe=m.pinnedContainer=r.pinnedContainer&&ge(r.pinnedContainer,m),ir=p&&Math.max(0,j.indexOf(m))||0,Wt=ir,Xt,Zt,ci,go,Jt,Yt,nr,Rs,dl,bn,or,wn,_o;for(I&&Qr(V)&&(wn=R.getProperty(C,k.p),_o=R.getProperty(Ee,k.p));Wt--;)Yt=j[Wt],Yt.end||Yt.refresh(0,1)||(Gt=m),nr=Yt.pin,nr&&(nr===p||nr===d||nr===Fe)&&!Yt.isReverted&&(bn||(bn=[]),bn.unshift(Yt),Yt.revert(!0,!0)),Yt!==j[Wt]&&(ir--,Wt--);for(se(yt)&&(yt=yt(m)),yt=pu(yt,"start",m),nt=Yu(yt,p,qt,k,ot(),me,C,m,rt,E,G,St,b,m._startClamp&&"_startClamp")||(d?-.001:0),se(ut)&&(ut=ut(m)),xe(ut)&&!ut.indexOf("+=")&&(~ut.indexOf(" ")?ut=(xe(yt)?yt.split(" ")[0]:"")+ut:(wt=Zn(ut.substr(2),qt),ut=xe(yt)?yt:(b?R.utils.mapRange(0,b.duration(),b.scrollTrigger.start,b.scrollTrigger.end,nt):nt)+wt,$e=p)),ut=pu(ut,"end",m),xt=Math.max(nt,Yu(ut||($e?"100% 0":St),$e,qt,k,ot()+wt,Se,Ee,m,rt,E,G,St,b,m._endClamp&&"_endClamp"))||-.001,wt=0,Wt=ir;Wt--;)Yt=j[Wt],nr=Yt.pin,nr&&Yt.start-Yt._pinPush<=nt&&!b&&Yt.end>0&&(Xt=Yt.end-(m._startClamp?Math.max(0,Yt.start):Yt.start),(nr===p&&Yt.start-Yt._pinPush=Je(P,k)))Xt=Re(d),go=k===Pt,ci=ot(),Be=parseFloat(Tt(k.a))+pt,!St&&xt>1&&(or=(N?mt.scrollingElement||ze:P).style,or={style:or,value:or["overflow"+k.a.toUpperCase()]},N&&Re(ct)["overflow"+k.a.toUpperCase()]!=="scroll"&&(or.style["overflow"+k.a.toUpperCase()]="scroll")),Ss(d,Nt,Xt),Mi=io(d),Zt=fr(d,!0),Rs=G&&Ar(P,go?ie:Pt)(),g?(At=[g+k.os2,kt+pt+Ot],At.t=Nt,Wt=g===Ft?Un(d,k)+kt+pt:0,Wt&&(At.push(k.d,Wt+Ot),Nt.style.flexBasis!=="auto"&&(Nt.style.flexBasis=Wt+Ot)),Pi(At),Fe&&j.forEach(function(vn){vn.pin===Fe&&vn.vars.pinSpacing!==!1&&(vn._subPinOffset=!0)}),G&&ot(Xe)):(Wt=Un(d,k),Wt&&Nt.style.flexBasis!=="auto"&&(Nt.style.flexBasis=Wt+Ot)),G&&(Jt={top:Zt.top+(go?ci-nt:Rs)+Ot,left:Zt.left+(go?Rs:ci-nt)+Ot,boxSizing:"border-box",position:"fixed"},Jt[Zr]=Jt["max"+ki]=Math.ceil(Zt.width)+Ot,Jt[Jr]=Jt["max"+ys]=Math.ceil(Zt.height)+Ot,Jt[Ye]=Jt[Ye+dn]=Jt[Ye+ln]=Jt[Ye+fn]=Jt[Ye+cn]="0",Jt[Ft]=Xt[Ft],Jt[Ft+dn]=Xt[Ft+dn],Jt[Ft+ln]=Xt[Ft+ln],Jt[Ft+fn]=Xt[Ft+fn],Jt[Ft+cn]=Xt[Ft+cn],si=qc(Yr,Jt,x),ae&&ot(0)),i?(dl=i._initted,us(1),i.render(i.duration(),!0,!0),_r=Tt(k.a)-Be+kt+pt,Br=Math.abs(kt-_r)>1,G&&Br&&si.splice(si.length-2,2),i.render(0,!0,!0),dl||i.invalidate(!0),i.parent||i.totalTime(i.totalTime()),us(0)):_r=kt,or&&(or.value?or.style["overflow"+k.a.toUpperCase()]=or.value:or.style.removeProperty("overflow-"+k.a));else if(p&&ot()&&!b)for(Zt=p.parentNode;Zt&&Zt!==ct;)Zt._pinOffset&&(nt-=Zt._pinOffset,xt-=Zt._pinOffset),Zt=Zt.parentNode;bn&&bn.forEach(function(vn){return vn.revert(!1,!0)}),m.start=nt,m.end=xt,le=Ne=ae?Xe:ot(),!b&&!ae&&(le0?j.slice(0,U).reverse():j.slice(U+1);return(xe(O)?V.filter(function($){return $.vars.preventOverlaps===O}):V).filter(function($){return m.direction>0?$.end<=nt:$.start>=xt})},m.update=function(O,U,V){if(!(b&&!V&&!O)){var $=ae===!0?Xe:m.scroll(),qt=O?0:($-nt)/kt,rt=qt<0?0:qt>1?1:qt||0,St=m.progress,Qt,wt,pt,ut,$e,yt,Fe,ir;if(U&&(Ne=le,le=b?ot():$,y&&(ai=Lr,Lr=i&&!L?i.totalProgress():rt)),_&&d&&!Gt&&!$n&&Me&&(!rt&&nt<$+($-Ne)/(jt()-nn)*_?rt=1e-4:rt===1&&xt>$+($-Ne)/(jt()-nn)*_&&(rt=.9999)),rt!==St&&m.enabled){if(Qt=m.isActive=!!rt&&rt<1,wt=!!St&&St<1,yt=Qt!==wt,$e=yt||!!rt!=!!St,m.direction=rt>St?1:-1,m.progress=rt,$e&&!Gt&&(pt=rt&&!St?0:rt===1?1:St===1?2:3,L&&(ut=!yt&&M[pt+1]!=="none"&&M[pt+1]||M[pt],ir=i&&(ut==="complete"||ut==="reset"||ut in i))),F&&(yt||ir)&&(ir||h||!i)&&(se(F)?F(m):m.getTrailing(F).forEach(function(ci){return ci.endAnimation()})),L||(Z&&!Gt&&!$n?(Z._dp._time-Z._start!==Z._time&&Z.render(Z._dp._time-Z._start),Z.resetTo?Z.resetTo("totalProgress",rt,i._tTime/i._tDur):(Z.vars.totalProgress=rt,Z.invalidate().restart())):i&&i.totalProgress(rt,!!(Gt&&(Q||O)))),d){if(O&&g&&(Nt.style[g+k.os2]=Dn),!G)qe(sn(Be+_r*rt));else if($e){if(Fe=!O&&rt>St&&xt+1>$&&$+1>=Je(P,k),x)if(!O&&(Qt||Fe)){var Wt=fr(d,!0),Xt=$-nt;Ru(d,ct,Wt.top+(k===Pt?Xt:0)+Ot,Wt.left+(k===Pt?0:Xt)+Ot)}else Ru(d,Nt);Pi(Qt||Fe?si:Mi),Br&&rt<1&&Qt||qe(Be+(rt===1&&!Fe?_r:0))}}y&&!ue.tween&&!Gt&&!$n&&We.restart(!0),s&&(yt||T&&rt&&(rt<1||!ps))&&en(s.targets).forEach(function(ci){return ci.classList[Qt||T?"add":"remove"](s.className)}),o&&!L&&!O&&o(m),$e&&!Gt?(L&&(ir&&(ut==="complete"?i.pause().totalProgress(1):ut==="reset"?i.restart(!0).pause():ut==="restart"?i.restart(!0):i[ut]()),o&&o(m)),(yt||!ps)&&(l&&yt&&_s(m,l),Y[pt]&&_s(m,Y[pt]),T&&(rt===1?m.kill(!1,1):Y[pt]=0),yt||(pt=rt===1?1:3,Y[pt]&&_s(m,Y[pt]))),A&&!Qt&&Math.abs(m.getVelocity())>(an(A)?A:2500)&&(un(m.callbackAnimation),Z?Z.progress(1):un(i,ut==="reverse"?1:!rt,1))):L&&o&&!Gt&&o(m)}if(Yi){var Zt=b?$/b.duration()*(b._caScrollDist||0):$;po(Zt+(C._isFlipped?1:0)),Yi(Zt)}Bi&&Bi(-$/b.duration()*(b._caScrollDist||0))}},m.enable=function(O,U){m.enabled||(m.enabled=!0,Lt(P,"resize",pn),N||Lt(P,"scroll",Ai),et&&Lt(a,"refreshInit",et),O!==!1&&(m.progress=zt=0,le=Ne=it=ot()),U!==!1&&m.refresh())},m.getTween=function(O){return O&&ue?ue.tween:Z},m.setPositions=function(O,U,V,$){if(b){var qt=b.scrollTrigger,rt=b.duration(),St=qt.end-qt.start;O=qt.start+St*O/rt,U=qt.start+St*U/rt}m.refresh(!1,!1,{start:gu(O,V&&!!m._startClamp),end:gu(U,V&&!!m._endClamp)},$),m.update()},m.adjustPinSpacing=function(O){if(At&&O){var U=At.indexOf(k.d)+1;At[U]=parseFloat(At[U])+O+Ot,At[1]=parseFloat(At[1])+O+Ot,Pi(At)}},m.disable=function(O,U){if(m.enabled&&(O!==!1&&m.revert(!0,!0),m.enabled=m.isActive=!1,U||Z&&Z.pause(),Xe=0,Kt&&(Kt.uncache=1),et&&Vt(a,"refreshInit",et),We&&(We.pause(),ue.tween&&ue.tween.kill()&&(ue.tween=0)),!N)){for(var V=j.length;V--;)if(j[V].scroller===P&&j[V]!==m)return;Vt(P,"resize",pn),N||Vt(P,"scroll",Ai)}},m.kill=function(O,U){m.disable(O,U),Z&&!U&&Z.kill(),u&&delete ws[u];var V=j.indexOf(m);V>=0&&j.splice(V,1),V===ne&&eo>0&&ne--,V=0,j.forEach(function($){return $.scroller===m.scroller&&(V=1)}),V||ae||(m.scroll.rec=0),i&&(i.scrollTrigger=null,O&&i.revert({kill:!1}),U||i.kill()),me&&[me,Se,C,Ee].forEach(function($){return $.parentNode&&$.parentNode.removeChild($)}),gn===m&&(gn=0),d&&(Kt&&(Kt.uncache=1),V=0,j.forEach(function($){return $.pin===d&&V++}),V||(Kt.spacer=0)),r.onKill&&r.onKill(m)},j.push(m),m.enable(!1,!1),mr&&mr(m),i&&i.add&&!kt){var st=m.update;m.update=function(){m.update=st,nt||xt||m.refresh()},R.delayedCall(.01,m.update),kt=.01,nt=xt=0}else m.refresh();d&&Vc()},a.register=function(r){return Ti||(R=r||yu(),Du()&&window.document&&a.enable(),Ti=on),Ti},a.defaults=function(r){if(r)for(var i in r)Kn[i]=r[i];return Kn},a.disable=function(r,i){on=0,j.forEach(function(o){return o[i?"kill":"disable"](r)}),Vt(tt,"wheel",Ai),Vt(mt,"scroll",Ai),clearInterval(In),Vt(mt,"touchcancel",Ze),Vt(ct,"touchstart",Ze),Gn(Vt,mt,"pointerdown,touchstart,mousedown",_u),Gn(Vt,mt,"pointerup,touchend,mouseup",mu),qn.kill(),Hn(Vt);for(var n=0;n0&&o.left+s0&&o.top+s=0&&Te.splice(e,5),Te.push(t,t.style.cssText,t.getBBox&&t.getAttribute("transform"),R.core.getCache(t),cs())}}):Te},B.revert=function(a,t){return Cs(!a,t)},B.create=function(a,t){return new B(a,t)},B.refresh=function(a){return a?pn():(Ti||B.register())&&ii(!0)},B.update=function(a){return++K.cache&&hr(a===!0?2:0)},B.clearScrollMemory=Au,B.maxScroll=function(a,t){return Je(a,t?ie:Pt)},B.getScrollFunc=function(a,t){return Ar(ge(a),t?ie:Pt)},B.getById=function(a){return ws[a]},B.getAll=function(){return j.filter(function(a){return a.vars.id!=="ScrollSmoother"})},B.isScrolling=function(){return!!Me},B.snapDirectional=bs,B.addEventListener=function(a,t){var e=ti[a]||(ti[a]=[]);~e.indexOf(t)||e.push(t)},B.removeEventListener=function(a,t){var e=ti[a],r=e&&e.indexOf(t);r>=0&&e.splice(r,1)},B.batch=function(a,t){var e=[],r={},i=t.interval||.016,n=t.batchMax||1e9,o=function(l,c){var h=[],p=[],d=R.delayedCall(i,function(){c(h,p),h=[],p=[]}).pause();return function(g){h.length||d.restart(!0),h.push(g.trigger),p.push(g),n<=h.length&&d.progress(1)}},s;for(s in t)r[s]=s.substr(0,2)==="on"&&se(t[s])&&s!=="onRefreshInit"?o(s,t[s]):t[s];return se(n)&&(n=n(),Lt(B,"refresh",function(){return n=t.batchMax()})),en(a).forEach(function(u){var l={};for(s in r)l[s]=r[s];l.trigger=u,e.push(B.create(l))}),e};var Vu=function(t,e,r,i){return e>i?t(i):e<0&&t(0),r>i?(i-e)/(r-e):r<0?e/(e-r):1},Es=function a(t,e){e===!0?t.style.removeProperty("touch-action"):t.style.touchAction=e===!0?"auto":e?"pan-"+e+(Ct.isTouch?" pinch-zoom":""):"none",t===ze&&a(ct,e)},so={auto:1,scroll:1},Wc=function(t){var e=t.event,r=t.target,i=t.axis,n=(e.changedTouches?e.changedTouches[0]:e).target,o=n._gsap||R.core.getCache(n),s=jt(),u;if(!o._isScrollT||s-o._isScrollT>2e3){for(;n&&n!==ct&&(n.scrollHeight<=n.clientHeight&&n.scrollWidth<=n.clientWidth||!(so[(u=Re(n)).overflowY]||so[u.overflowX]));)n=n.parentNode;o._isScroll=n&&n!==r&&!Kr(n)&&(so[(u=Re(n)).overflowY]||so[u.overflowX]),o._isScrollT=s}(o._isScroll||i==="x")&&(e.stopPropagation(),e._gsapAllow=!0)},zu=function(t,e,r,i){return Ct.create({target:t,capture:!0,debounce:!1,lockAxis:!0,type:e,onWheel:i=i&&Wc,onPress:i,onDrag:i,onScroll:i,onEnable:function(){return r&&Lt(mt,Ct.eventTypes[0],qu,!1,!0)},onDisable:function(){return Vt(mt,Ct.eventTypes[0],qu,!0)}})},Xc=/(input|label|select|textarea)/i,Nu,qu=function(t){var e=Xc.test(t.target.tagName);(e||Nu)&&(t._gsapAllow=!0,Nu=e)},$c=function(t){Qr(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 e=t,r=e.normalizeScrollX,i=e.momentum,n=e.allowNestedScroll,o=e.onRelease,s,u,l=ge(t.target)||ze,c=R.core.globals().ScrollSmoother,h=c&&c.get(),p=Pr&&(t.content&&ge(t.content)||h&&t.content!==!1&&!h.smooth()&&h.content()),d=Ar(l,Pt),g=Ar(l,ie),f=1,_=(Ct.isTouch&&tt.visualViewport?tt.visualViewport.scale*tt.visualViewport.width:tt.outerWidth)/tt.innerWidth,D=0,v=se(i)?function(){return i(s)}:function(){return i||2.8},T,y,x=zu(l,t.type,!0,n),S=function(){return y=!1},b=Ze,A=Ze,F=function(){u=Je(l,Pt),A=rn(Pr?1:0,u),r&&(b=rn(0,Je(l,ie))),T=ri},k=function(){p._gsap.y=sn(parseFloat(p._gsap.y)+d.offset)+"px",p.style.transform="matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, "+parseFloat(p._gsap.y)+", 0, 1)",d.offset=d.cacheID=0},L=function(){if(y){requestAnimationFrame(S);var I=sn(s.deltaY/2),E=A(d.v-I);if(p&&E!==d.v+d.offset){d.offset=E-d.v;var m=sn((parseFloat(p&&p._gsap.y)||0)-d.offset);p.style.transform="matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, "+m+", 0, 1)",p._gsap.y=m+"px",d.cacheID=K.cache,hr()}return!0}d.offset&&k(),y=!0},P,X,N,G,Y=function(){F(),P.isActive()&&P.vars.scrollY>u&&(d()>u?P.progress(1)&&d(u):P.resetTo("scrollY",u))};return p&&R.set(p,{y:"+=0"}),t.ignoreCheck=function(M){return Pr&&M.type==="touchmove"&&L()||f>1.05&&M.type!=="touchstart"||s.isGesturing||M.touches&&M.touches.length>1},t.onPress=function(){y=!1;var M=f;f=sn((tt.visualViewport&&tt.visualViewport.scale||1)/_),P.pause(),M!==f&&Es(l,f>1.01?!0:r?!1:"x"),X=g(),N=d(),F(),T=ri},t.onRelease=t.onGestureStart=function(M,I){if(d.offset&&k(),!I)G.restart(!0);else{K.cache++;var E=v(),m,et;r&&(m=g(),et=m+E*.05*-M.velocityX/.227,E*=Vu(g,m,et,Je(l,ie)),P.vars.scrollX=b(et)),m=d(),et=m+E*.05*-M.velocityY/.227,E*=Vu(d,m,et,Je(l,Pt)),P.vars.scrollY=A(et),P.invalidate().duration(E).play(.01),(Pr&&P.vars.scrollY>=u||m>=u-1)&&R.to({},{onUpdate:Y,duration:E})}o&&o(M)},t.onWheel=function(){P._ts&&P.pause(),jt()-D>1e3&&(T=0,D=jt())},t.onChange=function(M,I,E,m,et){if(ri!==T&&F(),I&&r&&g(b(m[2]===I?X+(M.startX-M.x):g()+I-m[1])),E){d.offset&&k();var Dt=et[2]===E,_e=Dt?N+M.startY-M.y:d()+E-et[1],it=A(_e);Dt&&_e!==it&&(N+=it-_e),d(it)}(E||I)&&hr()},t.onEnable=function(){Es(l,r?!1:"x"),B.addEventListener("refresh",Y),Lt(tt,"resize",Y),d.smooth&&(d.target.style.scrollBehavior="auto",d.smooth=g.smooth=!1),x.enable()},t.onDisable=function(){Es(l,!0),Vt(tt,"resize",Y),B.removeEventListener("refresh",Y),x.kill()},t.lockAxis=t.lockAxis!==!1,s=new Ct(t),s.iOS=Pr,Pr&&!d()&&d(1),Pr&&R.ticker.add(Ze),G=s._dc,P=R.to(s,{ease:"power4",paused:!0,inherit:!1,scrollX:r?"+=0.1":"+=0",scrollY:"+=0.1",modifiers:{scrollY:Bu(d,d(),function(){return P.pause()})},onUpdate:hr,onComplete:G.vars.onComplete}),s};B.sort=function(a){return j.sort(a||function(t,e){return(t.vars.refreshPriority||0)*-1e6+t.start-(e.start+(e.vars.refreshPriority||0)*-1e6)})},B.observe=function(a){return new Ct(a)},B.normalizeScroll=function(a){if(typeof a>"u")return oe;if(a===!0&&oe)return oe.enable();if(a===!1){oe&&oe.kill(),oe=a;return}var t=a instanceof Ct?a:$c(a);return oe&&oe.target===t.target&&oe.kill(),Kr(t.target)&&(oe=t),t},B.core={_getVelocityProp:ss,_inputObserver:zu,_scrollers:K,_proxies:Qe,bridge:{ss:function(){Me||ei("scrollStart"),Me=jt()},ref:function(){return Gt}}},yu()&&R.registerPlugin(B);/*! * strings: 3.12.5 * https://gsap.com * * Copyright 2008-2024, GreenSock. All rights reserved. * Subject to the terms at https://gsap.com/standard-license or for * Club GSAP members, the agreement issued with that membership. * @author: Jack Doyle, jack@greensock.com */var Hc=/([\uD800-\uDBFF][\uDC00-\uDFFF](?:[\u200D\uFE0F][\uD800-\uDBFF][\uDC00-\uDFFF]){2,}|\uD83D\uDC69(?:\u200D(?:(?:\uD83D\uDC69\u200D)?\uD83D\uDC67|(?:\uD83D\uDC69\u200D)?\uD83D\uDC66)|\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC69\u200D(?:\uD83D\uDC69\u200D)?\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D(?:\uD83D\uDC69\u200D)?\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]\uFE0F|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC6F\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3C-\uDD3E\uDDD6-\uDDDF])\u200D[\u2640\u2642]\uFE0F|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF6\uD83C\uDDE6|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uFE0F\u200D[\u2640\u2642]|(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642])\uFE0F|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2695\u2696\u2708]|\uD83D\uDC69\u200D[\u2695\u2696\u2708]|\uD83D\uDC68(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708]))\uFE0F|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83D\uDC69\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69]))|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67)\uDB40\uDC7F|\uD83D\uDC68(?:\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:(?:\uD83D[\uDC68\uDC69])\u200D)?\uD83D\uDC66\u200D\uD83D\uDC66|(?:(?:\uD83D[\uDC68\uDC69])\u200D)?\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92])|(?:\uD83C[\uDFFB-\uDFFF])\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]))|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDD1-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|\uD83D\uDC68(?:\u200D(?:(?:(?:\uD83D[\uDC68\uDC69])\u200D)?\uD83D\uDC67|(?:(?:\uD83D[\uDC68\uDC69])\u200D)?\uD83D\uDC66)|\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC69\uDC6E\uDC70-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD18-\uDD1C\uDD1E\uDD1F\uDD26\uDD30-\uDD39\uDD3D\uDD3E\uDDD1-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])?|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDEEB\uDEEC\uDEF4-\uDEF8]|\uD83E[\uDD10-\uDD3A\uDD3C-\uDD3E\uDD40-\uDD45\uDD47-\uDD4C\uDD50-\uDD6B\uDD80-\uDD97\uDDC0\uDDD0-\uDDE6])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u2660\u2663\u2665\u2666\u2668\u267B\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEF8]|\uD83E[\uDD10-\uDD3A\uDD3C-\uDD3E\uDD40-\uDD45\uDD47-\uDD4C\uDD50-\uDD6B\uDD80-\uDD97\uDDC0\uDDD0-\uDDE6])\uFE0F)/;function Iu(a){var t=a.nodeType,e="";if(t===1||t===9||t===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)e+=Iu(a)}else if(t===3||t===4)return a.nodeValue;return e}/*! * DrawSVGPlugin 3.12.5 * https://gsap.com * * @license Copyright 2008-2024, GreenSock. All rights reserved. * Subject to the terms at https://gsap.com/standard-license or for * Club GSAP members, the agreement issued with that membership. * @author: Jack Doyle, jack@greensock.com */var tr,Fs,ao,Wu,Xu,$u,ks,Hu,Uu=function(){return typeof window<"u"},Gu=function(){return tr||Uu()&&(tr=window.gsap)&&tr.registerPlugin&&tr},Uc=/[-+=\.]*\d+[\.e\-\+]*\d*[e\-\+]*\d*/gi,As={rect:["width","height"],circle:["r","r"],ellipse:["rx","ry"],line:["x2","y2"]},ni=function(t){return Math.round(t*1e4)/1e4},pr=function(t){return parseFloat(t)||0},ju=function(t,e){var r=pr(t);return~t.indexOf("%")?r/100*e:r},uo=function(t,e){return pr(t.getAttribute(e))},lo=Math.sqrt,Ku=function(t,e,r,i,n,o){return lo(Math.pow((pr(r)-pr(t))*n,2)+Math.pow((pr(i)-pr(e))*o,2))},Qu=function(t){return console.warn(t)},Zu=function(t){return t.getAttribute("vector-effect")==="non-scaling-stroke"},Gc=1,jc=function(t,e,r){var i=t.indexOf(" "),n,o;return i<0?(n=r!==void 0?r+"":t,o=t):(n=t.substr(0,i),o=t.substr(i+1)),n=ju(n,e),o=ju(o,e),n>o?[o,n]:[n,o]},co=function(t){if(t=Fs(t)[0],!t)return 0;var e=t.tagName.toLowerCase(),r=t.style,i=1,n=1,o,s,u,l,c,h,p;Zu(t)&&(n=t.getScreenCTM(),i=lo(n.a*n.a+n.b*n.b),n=lo(n.d*n.d+n.c*n.c));try{s=t.getBBox()}catch{Qu("Some browsers won't measure invisible elements (like display:none or masks inside defs).")}var d=s||{x:0,y:0,width:0,height:0},g=d.x,f=d.y,_=d.width,D=d.height;if((!s||!_&&!D)&&As[e]&&(_=uo(t,As[e][0]),D=uo(t,As[e][1]),e!=="rect"&&e!=="line"&&(_*=2,D*=2),e==="line"&&(g=uo(t,"x1"),f=uo(t,"y1"),_=Math.abs(_-g),D=Math.abs(D-f))),e==="path")l=r.strokeDasharray,r.strokeDasharray="none",o=t.getTotalLength()||0,ni(i)!==ni(n)&&!$u&&($u=1)&&Qu("Warning: length cannot be measured when vector-effect is non-scaling-stroke and the element isn't proportionally scaled."),o*=(i+n)/2,r.strokeDasharray=l;else if(e==="rect")o=_*2*i+D*2*n;else if(e==="line")o=Ku(g,f,g+_,f+D,i,n);else if(e==="polyline"||e==="polygon")for(u=t.getAttribute("points").match(Uc)||[],e==="polygon"&&u.push(u[0],u[1]),o=0,c=2;ce&&(i=e),[-n||0,i-n||0]},tl=function(){Uu()&&(ao=window,Xu=tr=Gu(),Fs=tr.utils.toArray,ks=tr.core.getStyleSaver,Hu=tr.core.reverting||function(){},Wu=((ao.navigator||{}).userAgent||"").indexOf("Edge")!==-1)},Ps={version:"3.12.5",name:"drawSVG",register:function(t){tr=t,tl()},init:function(t,e,r,i,n){if(!t.getBBox)return!1;Xu||tl();var o=co(t),s,u,l;return this.styles=ks&&ks(t,"strokeDashoffset,strokeDasharray,strokeMiterlimit"),this.tween=r,this._style=t.style,this._target=t,e+""=="true"?e="0 100%":e?(e+"").indexOf(" ")===-1&&(e="0 "+e):e="0 0",s=Ju(t,o),u=jc(e,o,s[0]),this._length=ni(o),this._dash=ni(s[1]-s[0]),this._offset=ni(-s[0]),this._dashPT=this.add(this,"_dash",this._dash,ni(u[1]-u[0]),0,0,0,0,0,1),this._offsetPT=this.add(this,"_offset",this._offset,ni(-u[0]),0,0,0,0,0,1),Wu&&(l=ao.getComputedStyle(t),l.strokeLinecap!==l.strokeLinejoin&&(u=pr(l.strokeMiterlimit),this.add(t.style,"strokeMiterlimit",u,u+.01))),this._live=Zu(t)||~(e+"").indexOf("live"),this._nowrap=~(e+"").indexOf("nowrap"),this._props.push("drawSVG"),Gc},render:function(t,e){if(e.tween._time||!Hu()){var r=e._pt,i=e._style,n,o,s,u;if(r){for(e._live&&(n=co(e._target),n!==e._length&&(o=n/e._length,e._length=n,e._offsetPT&&(e._offsetPT.s*=o,e._offsetPT.c*=o),e._dashPT?(e._dashPT.s*=o,e._dashPT.c*=o):e._dash*=o));r;)r.r(t,r.d),r=r._next;s=e._dash||t&&t!==1&&1e-4||0,n=e._length-s+.1,u=e._offset,s&&u&&s+Math.abs(u%e._length)>e._length-.2&&(u+=u<0?.1:-.1)&&(n+=.1),i.strokeDashoffset=s?u:u+.001,i.strokeDasharray=n<.2?"none":s?s+"px,"+(e._nowrap?999999:n)+"px":"0px, 999999px"}}else e.styles.revert()},getLength:co,getPosition:Ju};Gu()&&tr.registerPlugin(Ps);/*! * SplitText: 3.12.5 * https://gsap.com * * @license Copyright 2008-2024, GreenSock. All rights reserved. * Subject to the terms at https://gsap.com/standard-license or for * Club GSAP members, the agreement issued with that membership. * @author: Jack Doyle, jack@greensock.com */var Oi,Os,el,_n,rl,fo,Kc=/(?:\r|\n|\t\t)/g,Qc=/(?:\s\s+)/g,Zc=" ",il=function(t){Oi=document,Os=window,_n=_n||t||Os.gsap||console.warn("Please gsap.registerPlugin(SplitText)"),_n&&(fo=_n.utils.toArray,rl=_n.core.context||function(){},el=1)},nl=function(t){return Os.getComputedStyle(t)},Ms=function(t){return t.position==="absolute"||t.absolute===!0},Jc=function(t,e){for(var r=e.length,i;--r>-1;)if(i=e[r],t.substr(0,i.length)===i)return i.length},td=" style='position:relative;display:inline-block;'",ol=function(t,e){t===void 0&&(t="");var r=~t.indexOf("++"),i=1;return r&&(t=t.split("++").join("")),function(){return"<"+e+td+(t?" class='"+t+(r?i++:"")+"'>":">")}},sl=function a(t,e,r){var i=t.nodeType;if(i===1||i===9||i===11)for(t=t.firstChild;t;t=t.nextSibling)a(t,e,r);else(i===3||i===4)&&(t.nodeValue=t.nodeValue.split(e).join(r))},Ys=function(t,e){for(var r=e.length;--r>-1;)t.push(e[r])},al=function(t,e,r){for(var i;t&&t!==e;){if(i=t._next||t.nextSibling,i)return i.textContent.charAt(0)===r;t=t.parentNode||t._parent}},ed=function a(t){var e=fo(t.childNodes),r=e.length,i,n;for(i=0;if&&(E.nodeName!=="BR"||Y===0)&&(Dt=[],b.push(Dt),c=ot),k&&(E._x=E.offsetLeft,E._y=ot,E._w=E.offsetWidth,E._h=E.offsetHeight),b&&((E._isSplit&&et||!F&&et||A&&et||!A&&E.parentNode.parentNode===t&&!E.parentNode._isSplit)&&(Dt.push(E),E._x-=l,al(E,t,y)&&(E._wordEnd=!0)),E.nodeName==="BR"&&(E.nextSibling&&E.nextSibling.nodeName==="BR"||Y===0)&&b.push([])));for(Y=0;Y-1;)X[Y].parentNode.removeChild(X[Y]);if(b){for(k&&(Q=Oi.createElement(x),t.appendChild(Q),zt=Q.offsetWidth+"px",ot=Q.offsetParent===t?0:t.offsetLeft,t.removeChild(Q)),it=t.style.cssText,t.style.cssText="display:none;";t.firstChild;)t.removeChild(t.firstChild);for(_e=y===" "&&(!k||!A&&!F),Y=0;Yt.clientHeight&&(t.style.height=s-d+"px",t.clientHeightt.clientWidth&&(t.style.width=o-g+"px",t.clientWidth",d=1,g=e.specialChars?typeof e.specialChars=="function"?e.specialChars:Jc:null,f,_,D,v,T,y,x,S,b=Oi.createElement("div"),A=t.parentNode;for(A.insertBefore(b,t),b.textContent=t.nodeValue,A.removeChild(t),t=b,f=Iu(t),x=f.indexOf("<")!==-1,e.reduceWhiteSpace!==!1&&(f=f.replace(Qc," ").replace(Kc,"")),x&&(f=f.split("<").join("{{LT}}")),T=f.length,_=(f.charAt(0)===" "?h:"")+r(),D=0;D":y,D+=S-1;else if(c(y)&&!c(f.charAt(D-1))&&D){for(_+=d?p:"",d=0;c(f.charAt(D+1));)_+=h,D++;D===T-1?_+=h:f.charAt(D+1)!==")"&&(_+=h+r(),d=1)}else y==="{"&&f.substr(D,6)==="{{LT}}"?(_+=s?i()+"{{LT}}":"{{LT}}",D+=5):y.charCodeAt(0)>=55296&&y.charCodeAt(0)<=56319||f.charCodeAt(D+1)>=65024&&f.charCodeAt(D+1)<=65039?(v=((f.substr(D,12).split(Hc)||[])[1]||"").length||2,_+=s&&y!==" "?i()+f.substr(D,v)+"":f.substr(D,v),D+=v-1):_+=s&&y!==" "?i()+y+"":y;t.outerHTML=_+(d?p:""),x&&sl(A,"{{LT}}","<")},nd=function a(t,e,r,i){var n=fo(t.childNodes),o=n.length,s=Ms(e),u,l;if(t.nodeType!==3||o>1){for(e.absolute=!1,u=0;u-1;)c=this.elements[i],this._originals[i]={html:c.innerHTML,style:c.getAttribute("style")},u=c.clientHeight,l=c.clientWidth,nd(c,r,o,s),rd(c,r,this.chars,this.words,this.lines,l,u);return this.chars.reverse(),this.words.reverse(),this.lines.reverse(),this.isSplit=!0,this},t.revert=function(){var r=this._originals;if(!r)throw"revert() call wasn't scoped properly.";return this.elements.forEach(function(i,n){i.innerHTML=r[n].html,i.setAttribute("style",r[n].style)}),this.chars=[],this.words=[],this.lines=[],this.isSplit=!1,this},a.create=function(r,i){return new a(r,i)},a}();ft.version="3.12.5",ft.register=il,z.registerPlugin(B),z.registerPlugin(ft,B);function Mt(a={}){document.querySelectorAll("[r-split-text]").forEach(e=>{ul(e,a)})}function oi(a={}){document.querySelectorAll("[r-split-text-scroll]").forEach(e=>{ul(e,{...a,scrollTrigger:{trigger:e,start:"top 80%",end:"bottom 20%",scrub:!0,...a.scrollTrigger}})})}function ul(a,{type:t="chars",duration:e=1,y:r=50,stagger:i=.1,ease:n="power2.out",opacity:o=0,scrollTrigger:s=null}){const u=new ft(a,{type:t}),l={opacity:o,y:r,stagger:i,duration:e,ease:n};s&&(l.scrollTrigger={trigger:a,...s}),z.from(u[t],l)}z.registerPlugin(B);function w({selector:a,initialY:t,duration:e,delay:r=0,scrollTrigger:i=null}){const n={y:"0rem",duration:e,opacity:1,delay:r};i&&(n.scrollTrigger={...i,toggleActions:"play none none reverse"}),z.fromTo(a,{y:t,opacity:0},n)}function W({selector:a,trigger:t,start:e,end:r,scrub:i,fromVars:n,toVars:o,markers:s}){z.fromTo(a,n,{...o,scrollTrigger:{trigger:t||a,start:e||"top 95%",end:r||"bottom -10%",scrub:i!==void 0?i:!0,markers:s!==void 0?s:!1}})}function ht({selector:a,trigger:t,start:e,end:r,scrub:i,initialY:n,duration:o,stagger:s,delay:u=0}){const l=document.querySelectorAll(a);z.from(l,{scrollTrigger:{trigger:t,start:e,end:r,scrub:i},opacity:0,y:n,stagger:s,duration:o,delay:u})}function ho({pinSectionSelector:a,pinContentSelector:t,pinWrapperSelector:e,imagesSelector:r,textContainerSelector:i,startPin:n="top 10%",endPinOffset:o=0,pinSpacing:s=!0,scrubPin:u=!0,imageAnimationStart:l="top 90%",imageAnimationEnd:c="top 0%",imageDuration:h=.5,textFadeDuration:p=.5}){const d=document.querySelector(a),g=document.querySelector(t),f=document.querySelector(e),_=document.querySelectorAll(r),D=document.querySelectorAll(i);if(!d||!g||!f||_.length===0||D.length===0){console.error("One or more required elements are missing.");return}const v=g.scrollHeight,T=f.offsetHeight,y=T-g.scrollHeight,x=v-T+o;B.create({trigger:d,start:n,end:()=>"+="+x,pin:!0,pinSpacing:s,scrub:u}),z.to(g,{y,ease:"none",scrollTrigger:{trigger:d,start:n,end:()=>"+="+x,scrub:u}}),D.forEach((S,b)=>{const A=_[b];B.create({trigger:S,start:l,end:c,onEnter:()=>z.to(A,{y:0,autoAlpha:1,duration:h}),onLeave:()=>{b<_.length-1&&z.to(A,{y:-50,autoAlpha:0,duration:h})},onEnterBack:()=>z.to(A,{y:0,autoAlpha:1,duration:h}),onLeaveBack:()=>{b<_.length-1&&z.to(A,{y:50,autoAlpha:0,duration:h})}}),b>0&&z.fromTo(S,{autoAlpha:0,y:20},{autoAlpha:1,y:0,duration:p,ease:"power2.out",scrollTrigger:{trigger:S,start:"top 70%",end:"end 20%",scrub:u}})})}function rr(a,t=!1){document.querySelectorAll(`.c-old-card-wrapper.${a.old}, .c-old-card-wrapper.${a.new}`).forEach(r=>{if(t){r.classList.add("cc-open");const i=r.querySelector(".cc-hide-old"),n=r.querySelector(".cc-hide-new"),o=r.querySelector(".c-img-plus"),s=r.querySelector(".c-img-minus");i&&(i.style.display="block"),n&&(n.style.display="block"),o&&s&&(o.style.display="none",s.style.display="block")}r.addEventListener("click",function(){document.querySelectorAll(`.c-old-card-wrapper.${a.old}, .c-old-card-wrapper.${a.new}`).forEach(n=>{n.classList.toggle("cc-open");const o=n.querySelector(".cc-hide-old"),s=n.querySelector(".cc-hide-new"),u=n.querySelector(".c-img-plus"),l=n.querySelector(".c-img-minus");o&&(o.style.display=o.style.display==="block"?"none":"block"),s&&(s.style.display=s.style.display==="block"?"none":"block"),u&&l&&(u.style.display==="block"||u.style.display===""?(u.style.display="none",l.style.display="block"):(u.style.display="block",l.style.display="none"))})})})}function ll(a){var t=new MutationObserver(function(r){r.forEach(function(i){a.forEach(({formSelector:n,checkboxSelector:o})=>{const s=document.querySelector(`${n} .hs-button.primary.large`),u=s?s.closest("form"):null;s&&u&&s.addEventListener("click",function(l){if(l.preventDefault(),o){const h=document.querySelector(o);if(!h){console.error("Required checkbox not found.");return}if(!h.checked){h.setCustomValidity("This field is required."),h.reportValidity();return}h.setCustomValidity("")}if(!u.checkValidity()){u.reportValidity();return}if(o){s.value="✓",s.style.color="white";var c=z.timeline();c.to(s,{duration:.3,ease:"power3.inOut",borderRadius:"100%"}),c.to(s,{duration:.5,y:"-14%",x:"1.2%",width:"100%",height:"46%",borderRadius:"7.5rem",onComplete:function(){u.submit()}})}else{s.value="";var c=z.timeline();c.to(s,{duration:.5,padding:0,width:"0%",height:"5px"}),c.to(s,{duration:1.5,width:"100%",onComplete:function(){u.submit()}})}})}),t.disconnect()})}),e={childList:!0,subtree:!0};t.observe(document.body,e)}z.registerPlugin(B,ft);function od(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".cc-hero-insight",initialY:"5rem",duration:1.2}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,Ps);function sd(){let a=z.matchMedia();Mt({type:"words",duration:.6,y:10,stagger:.1,ease:"power2.out"}),w({selector:".c-hero-product-container",initialY:"5rem",duration:1.2}),w({selector:".c-circle-bg-product, .c-demi-bg-product",initialY:"7rem",duration:.8}),w({selector:".c-product-hero-img-wrapper",initialY:"7rem",duration:.8}),w({selector:".cc-title-seo",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-seo",start:"bot 95%"}}),a.add("(min-width: 768px)",()=>{W({selector:".cc-text-seo",trigger:".cc-text-seo",start:"top 90%",end:"bottom 10%",scrub:!0,fromVars:{y:"0rem",opacity:1},toVars:{y:"-8rem",opacity:1,ease:"quart.easeOut",duration:1}})}),[".c-path-left",".c-path-right",".c-path-mid", ".c-path-mobile"].forEach(e=>{z.from(e,{drawSVG:"0%",scrollTrigger:{trigger:e,start:"top 80%",end:"bottom 50%",scrub:!0}})}),w({selector:".c-botify-path-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-botify-path-btn",start:"bot 95%"}}),w({selector:".c-botify-path-link.cc-analytics",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-botify-path-link.cc-analytics",start:"bot 80%"}}),w({selector:".c-botify-path-link.cc-intel",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-botify-path-link.cc-intel",start:"bot 75%"}}),w({selector:".c-botify-path-link.cc-activation",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-botify-path-link.cc-activation",start:"bot 80%"}}),w({selector:".c-analytics-content.cc-one",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-analytics-content.cc-one",start:"bot 95%"}}),w({selector:".c-analytics-content.cc-two",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-analytics-content.cc-two",start:"bot 95%"}}),w({selector:".c-analytics-content.cc-three",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-analytics-content.cc-three",start:"bot 95%"}}),a.add({isDesktop:"(min-width: 991px)",isTablet:"(min-width: 480px) and (max-width: 990px)",isMobile:"(max-width: 479px)"},e=>{let{isDesktop:r,isTablet:i,isMobile:n}=e.conditions;function o(s){let u=z.timeline({scrollTrigger:{trigger:s,start:"top 80%",end:"bottom 70%",toggleActions:"play none none reverse"}});r?u.fromTo(s+" .c-plus-circle-img",{display:"block"},{display:"none"}).fromTo(s,{width:"2.75rem",padding:"0rem",height:"2.75rem",display:"flex",borderRadius:"100%"},{width:"33rem",padding:"1.5rem",height:"17.25rem",borderRadius:"0.75rem"},0).fromTo(s+" .c-text-circle-wrapper",{display:"none",opacity:0},{display:"block",opacity:1,duration:1},">"):i?u.fromTo(s+" .c-plus-circle-img",{display:"block"},{display:"none"}).fromTo(s,{width:"2rem",padding:"0.5rem",height:"2rem",display:"flex",borderRadius:"100%"},{width:"25rem",padding:"1rem",height:"16rem",borderRadius:"0.75rem"},0).fromTo(s+" .c-text-circle-wrapper",{display:"none",opacity:0},{display:"block",opacity:1,duration:1},">"):n&&u.fromTo(s+" .c-plus-circle-img",{display:"block"},{display:"none"}).fromTo(s,{width:"1.5rem",padding:"0.25rem",height:"1.5rem",display:"flex",borderRadius:"100%"},{width:"auto",padding:"1rem",height:"18rem",borderRadius:"0.5rem"},0).fromTo(s+" .c-text-circle-wrapper",{display:"none",opacity:0},{display:"block",opacity:1,duration:1},">")}o(".c-plus-circle-wrapper.cc-one"),o(".c-plus-circle-wrapper.cc-two"),o(".c-plus-circle-wrapper.cc-three")}),W({selector:".c-product-card-wrapper.cc-assist",trigger:".c-product-card-wrapper.cc-assist",start:"top 90%",end:"bottom 75%",scrub:!0,fromVars:{y:"-3rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),w({selector:".c-support-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-support-content",start:"bot 95%"}}),W({selector:".cc-scroll",trigger:".cc-scroll",start:"top 90%",end:"bottom 10%",scrub:!0,fromVars:{y:"-3rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),w({selector:".c-slider-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-slider-content",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft); function ass(){ Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}), z.fromTo(".c-botify-path-txt.cc-activation",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}), rr({old:"cc-old-blue",new:"cc-blue"}), rr({old:"cc-old-purple",new:"cc-purple"}), rr({old:"cc-old-orange",new:"cc-orange"}), rr({old:"cc-old-green",new:"cc-green"},!0), oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}), ht({selector:".c-deploy-list-wrapper",trigger:".c-deploy-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}), ht({selector:".c-ai-list-wrapper",trigger:".c-ai-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}), ht({selector:".c-help-list-wrapper",trigger:".c-help-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}), w({selector:".c-help-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-help-btn",start:"bot 90%"}}), w({selector:".c-deploy-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-deploy-btn",start:"bot 90%"}}), w({selector:".c-ai-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-ai-btn",start:"bot 90%"}}), W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}), z.utils.toArray(".c-chat-bubble").forEach(bubble=>{const isLeft=bubble.classList.contains("left"),offsetX=isLeft?-50:50;z.fromTo(bubble,{opacity:0,x:offsetX},{opacity:1,x:0,duration:.5,ease:"power2.out",scrollTrigger:{trigger:bubble,start:window.innerWidth<768?"top bottom":"top bottom-=200",end:window.innerWidth<768?"bottom top":"top center",scrub:!0,markers:!1}})}), z.fromTo(".c-chat-bar",{y:200,opacity:0},{y:0,opacity:1,duration:.6,ease:"power2.out",scrollTrigger:{trigger:".c-chat-bar",start:"top bottom",end:"top center",scrub:!0,markers:!1}}) } z.registerPlugin(B,ft);function ad(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-img-activation.cc-one",initialY:"5rem",duration:1.2}),w({selector:".c-img-activation.cc-two",initialY:"7rem",duration:.9}),w({selector:".c-img-activation.cc-three",initialY:"9rem",duration:.6}),w({selector:".c-hero-bg-img-activation",initialY:"7rem",duration:1}),z.fromTo(".c-botify-path-txt.cc-activation",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}),w({selector:".cc-title-organic",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-organic",start:"bot 95%"}}),rr({old:"cc-old-blue",new:"cc-blue"}),rr({old:"cc-old-purple",new:"cc-purple"}),rr({old:"cc-old-orange",new:"cc-orange"}),rr({old:"cc-old-green",new:"cc-green"},!0),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),ht({selector:".c-serve-list-wrapper",trigger:".c-serve-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-deploy-list-wrapper",trigger:".c-deploy-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}), ht({selector:".c-ai-list-wrapper",trigger:".c-ai-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-linking-list-wrapper",trigger:".c-linking-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}), ht({selector:".c-help-list-wrapper",trigger:".c-help-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".c-help-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-help-btn",start:"bot 90%"}}),w({selector:".c-serve-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-serve-btn",start:"bot 90%"}}),w({selector:".c-deploy-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-deploy-btn",start:"bot 90%"}}), w({selector:".c-ai-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-ai-btn",start:"bot 90%"}}), w({selector:".c-linking-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-linking-btn",start:"bot 90%"}}),w({selector:".c-support-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-support-content",start:"bot 95%"}}),W({selector:".cc-scroll",trigger:".cc-scroll",start:"top 90%",end:"bottom 10%",scrub:!0,fromVars:{y:"-3rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),w({selector:".c-slider-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-slider-content",start:"bot 95%"}}),w({selector:".cc-platform-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-platform-title",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft);function mk(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),rr({old:"cc-old-blue",new:"cc-blue"}),rr({old:"cc-old-purple",new:"cc-purple"}),rr({old:"cc-old-orange",new:"cc-orange"}),rr({old:"cc-old-green",new:"cc-green"},!0),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),ht({selector:".c-accelerate-card-wrapper",trigger:".c-accelerate-card-wrapper",start:"top 95%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-deploy-list-wrapper",trigger:".c-deploy-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}), ht({selector:".c-ai-list-wrapper",trigger:".c-ai-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-linking-list-wrapper",trigger:".c-linking-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-grid-advantage-container",trigger:".c-grid-advantage-container",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-help-list-wrapper",trigger:".c-help-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".c-help-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-help-btn",start:"bot 90%"}}),ho({pinSectionSelector:".cc-pin-enterprise",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 0%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 95%",imageAnimationEnd:"top 0%",imageDuration:.5}),w({selector:".c-deploy-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-deploy-btn",start:"bot 90%"}}), w({selector:".c-ai-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-ai-btn",start:"bot 90%"}}), w({selector:".c-linking-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-linking-btn",start:"bot 90%"}}),w({selector:".c-support-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-support-content",start:"bot 95%"}}),w({selector:".c-slider-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-slider-content",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft);function ent(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),rr({old:"cc-old-blue",new:"cc-blue"}),rr({old:"cc-old-purple",new:"cc-purple"}),rr({old:"cc-old-orange",new:"cc-orange"}),rr({old:"cc-old-green",new:"cc-green"},!0),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),w({selector:".c-title-wrapper.cc-why",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-title-wrapper.cc-why",start:"bot 95%"}}),w({selector:".c-tile-heading",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-tile-heading",start:"bot 95%"}}),ht({selector:".c-grid-item-wrapper",trigger:".c-grid-item-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-growth-card-wrapper",trigger:".c-growth-card-wrapper",start:"top 80%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-deploy-list-wrapper",trigger:".c-deploy-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}), ht({selector:".c-ai-list-wrapper",trigger:".c-ai-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-linking-list-wrapper",trigger:".c-linking-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-help-list-wrapper",trigger:".c-help-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".c-help-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-help-btn",start:"bot 90%"}}),ho({pinSectionSelector:".cc-pin-enterprise",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 0%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 95%",imageAnimationEnd:"top 0%",imageDuration:.5}),w({selector:".c-deploy-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-deploy-btn",start:"bot 90%"}}), w({selector:".c-ai-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-ai-btn",start:"bot 90%"}}), w({selector:".c-linking-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-linking-btn",start:"bot 90%"}}),w({selector:".c-slider-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-slider-content",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft);function ud(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-img-activation.cc-analytics-one",initialY:"5rem",duration:1.2}),w({selector:".c-img-activation.cc-analytics-two",initialY:"7rem",duration:.9}),w({selector:".c-img-activation.cc-analytics-three",initialY:"9rem",duration:.6}),w({selector:".c-hero-bg-img-activation",initialY:"7rem",duration:1}),z.fromTo(".c-botify-path-txt.cc-analytics",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}),w({selector:".cc-title-organic",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-organic",start:"bot 95%"}}),rr({old:"cc-old-blue",new:"cc-blue"}),rr({old:"cc-old-purple",new:"cc-purple"}),rr({old:"cc-old-green",new:"cc-green"},!0),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),ht({selector:".c-access-list-wrapper",trigger:".c-access-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-engine-list-wrapper",trigger:".c-engine-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-insights-list-wrapper",trigger:".c-insights-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-measure-list-wrapper",trigger:".c-measure-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".c-access-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-access-btn",start:"bot 90%"}}),w({selector:".c-engine-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-engine-btn",start:"bot 90%"}}),w({selector:".c-insights-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-insights-btn",start:"bot 90%"}}),w({selector:".c-measure-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-measure-btn",start:"bot 90%"}}),w({selector:".c-support-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-support-content",start:"bot 95%"}}),W({selector:".cc-scroll",trigger:".cc-scroll",start:"top 90%",end:"bottom 10%",scrub:!0,fromVars:{y:"-3rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),w({selector:".c-slider-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-slider-content",start:"bot 95%"}}),w({selector:".cc-platform-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-platform-title",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function ld(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-img-activation.cc-intelligence-one",initialY:"5rem",duration:1.2}),w({selector:".c-img-activation.cc-intelligence-two",initialY:"7rem",duration:.9}),w({selector:".c-img-activation.cc-intelligence-three",initialY:"9rem",duration:.6}),w({selector:".c-hero-bg-img-activation",initialY:"7rem",duration:1}),z.fromTo(".c-botify-path-txt.cc-intelligence",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}),w({selector:".cc-title-organic",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-organic",start:"bot 95%"}}),rr({old:"cc-old-blue",new:"cc-blue"}),rr({old:"cc-old-purple",new:"cc-purple"}),rr({old:"cc-old-green",new:"cc-green"},!0),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),ht({selector:".c-prioritize-list-wrapper",trigger:".c-prioritize-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-actionable-list-wrapper",trigger:".c-actionable-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-safeguard-list-wrapper",trigger:".c-safeguard-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-notify-list-wrapper",trigger:".c-notify-list-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".c-prioritize-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-prioritize-btn",start:"bot 90%"}}),w({selector:".c-actionable-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-actionable-btn",start:"bot 90%"}}),w({selector:".c-safeguard-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-safeguard-btn",start:"bot 90%"}}),w({selector:".c-notify-btn",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-notify-btn",start:"bot 90%"}}),w({selector:".c-support-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-support-content",start:"bot 95%"}}),W({selector:".cc-scroll",trigger:".cc-scroll",start:"top 90%",end:"bottom 10%",scrub:!0,fromVars:{y:"-3rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),w({selector:".c-slider-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-slider-content",start:"bot 95%"}}),w({selector:".cc-platform-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-platform-title",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function cd(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-hero-speed-img-container",initialY:"7rem",duration:.9}),w({selector:".c-hero-speed-img",initialY:"7rem",duration:1}),z.fromTo(".c-back-container",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}),w({selector:".cc-title-search",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-search",start:"bot 90%"}}),w({selector:".cc-resources-txt",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-resources-txt",start:"bot 90%"}}),ht({selector:".c-search-cards-wrapper",trigger:".c-search-cards-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ho({pinSectionSelector:".cc-pin-speed",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 0%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 95%",imageAnimationEnd:"top 0%",imageDuration:.5}),z.matchMedia().add("(min-width: 768px)",()=>{W({selector:".c-result-card-container.cc-trafic",trigger:".c-result-card-container.cc-trafic",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"-25rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}),w({selector:".cc-testimonial-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-testimonial-title",start:"bot 95%"}}),w({selector:".cc-platform-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-platform-title",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function dd(){let a=z.matchMedia();Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-hero-speed-img-container",initialY:"7rem",duration:.9}),w({selector:".c-hero-speed-img",initialY:"7rem",duration:1}),z.fromTo(".c-back-container",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}),w({selector:".cc-title-search",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-search",start:"bot 90%"}}),a.add("(min-width: 768px)",()=>{W({selector:".cc-search-text",trigger:".cc-search-text",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"0rem",opacity:1},toVars:{y:"-4rem",opacity:1,ease:"quart.easeOut",duration:1}})}),ht({selector:".c-search-cards-wrapper",trigger:".c-search-cards-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ho({pinSectionSelector:".cc-pin-speed",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 0%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 95%",imageAnimationEnd:"top 0%",imageDuration:.5}),a.add("(min-width: 768px)",()=>{W({selector:".c-result-card-container.cc-trafic",trigger:".c-result-card-container.cc-trafic",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"-25rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}),w({selector:".cc-testimonial-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-testimonial-title",start:"bot 95%"}}),w({selector:".cc-platform-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-platform-title",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft);function idx(){let a=z.matchMedia();Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-hero-speed-img-container",initialY:"7rem",duration:.9}),w({selector:".c-hero-speed-img",initialY:"7rem",duration:1}),z.fromTo(".c-back-container",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}),w({selector:".cc-title-search",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-search",start:"bot 90%"}}),a.add("(min-width: 768px)",()=>{W({selector:".cc-search-text",trigger:".cc-search-text",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"0rem",opacity:1},toVars:{y:"-4rem",opacity:1,ease:"quart.easeOut",duration:1}})}),ht({selector:".c-search-cards-wrapper",trigger:".c-search-cards-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ho({pinSectionSelector:".cc-pin-speed",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 0%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 95%",imageAnimationEnd:"top 0%",imageDuration:.5}),a.add("(min-width: 768px)",()=>{W({selector:".c-result-card-container.cc-trafic",trigger:".c-result-card-container.cc-trafic",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"-25rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft);function cnt(){let a=z.matchMedia();Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-hero-speed-img-container",initialY:"7rem",duration:.9}),w({selector:".c-hero-speed-img",initialY:"7rem",duration:1}),z.fromTo(".c-back-container",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}),w({selector:".cc-title-search",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-search",start:"bot 90%"}}),a.add("(min-width: 768px)",()=>{W({selector:".cc-search-text",trigger:".cc-search-text",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"0rem",opacity:1},toVars:{y:"-4rem",opacity:1,ease:"quart.easeOut",duration:1}})}),ht({selector:".c-search-cards-wrapper",trigger:".c-search-cards-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ho({pinSectionSelector:".cc-pin-speed",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 0%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 95%",imageAnimationEnd:"top 0%",imageDuration:.5}),a.add("(min-width: 768px)",()=>{W({selector:".c-result-card-container.cc-trafic",trigger:".c-result-card-container.cc-trafic",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"-25rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft);function lnk(){let a=z.matchMedia();Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-hero-speed-img-container",initialY:"7rem",duration:.9}),w({selector:".c-hero-speed-img",initialY:"7rem",duration:1}),z.fromTo(".c-back-container",{scaleX:0,opacity:0},{scaleX:1,duration:.7,ease:"power3.inOut",opacity:1,delay:1}),w({selector:".cc-title-search",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-search",start:"bot 90%"}}),a.add("(min-width: 768px)",()=>{W({selector:".cc-search-text",trigger:".cc-search-text",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"0rem",opacity:1},toVars:{y:"-4rem",opacity:1,ease:"quart.easeOut",duration:1}})}),ht({selector:".c-search-cards-wrapper",trigger:".c-search-cards-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ho({pinSectionSelector:".cc-pin-speed",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 0%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 95%",imageAnimationEnd:"top 0%",imageDuration:.5}),a.add("(min-width: 768px)",()=>{W({selector:".c-result-card-container.cc-trafic",trigger:".c-result-card-container.cc-trafic",start:"top 80%",end:"bottom 10%",scrub:!0,fromVars:{y:"-25rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft,Ps);function uai(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),w({selector:".cc-title-ai",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-ai",start:"bot 95%"}}),ht({selector:".c-accelerate-card-wrapper",trigger:".c-accelerate-card-wrapper",start:"top 95%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-grid-advantage-container",trigger:".c-grid-advantage-container",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-business-cards-wrapper",trigger:".c-business-cards-wrapper",start:"top 80%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft,Ps);function use(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),w({selector:".cc-title-ai",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-ai",start:"bot 95%"}}),w({selector:".cc-title-feature",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-feature",start:"bot 95%"}}),ht({selector:".c-accelerate-card-wrapper",trigger:".c-accelerate-card-wrapper",start:"top 95%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-grid-advantage-container",trigger:".c-grid-advantage-container",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-business-cards-wrapper",trigger:".c-business-cards-wrapper",start:"top 80%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})} z.registerPlugin(B,ft,Ps);function fd(){z.timeline({scrollTrigger:{trigger:".c-curve-wrapper",start:"bottom 90%",pin:!0,end:"+=800",scrub:!0}}).from(".c-line-result",{drawSVG:"100% 100%",duration:2}).from(".c-line-result-one",{drawSVG:0,duration:1},"-=1.5").from(".c-curve-container.cc-one",{opacity:0,duration:1},"-=1").from(".c-line-result-two",{drawSVG:0,duration:1},"-=0.5").from(".c-curve-container.cc-two",{opacity:0,duration:1},"-=1").from(".c-line-result-three",{drawSVG:0,duration:1},"-=0.5").from(".c-curve-container.cc-three",{opacity:0,duration:1},"-=1").from(".c-line-result-four",{drawSVG:0,duration:1},"-=0.5").from(".c-curve-container.cc-four",{opacity:0,duration:1},"-=1").from(".c-line-result-five",{drawSVG:0,duration:1},"-=0.5").from(".c-curve-container.cc-five",{opacity:0,duration:1},"-=1"),Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-advantage-hero-img.cc-one",initialY:"7rem",duration:.9}),w({selector:".c-advantage-hero-img.cc-two",initialY:"7rem",duration:.6}),w({selector:".c-hero-speed-img-container",initialY:"10rem",duration:.9}),w({selector:".cc-success-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-success-title",start:"bot 95%"}}),w({selector:".cc-success-text",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-success-text",start:"bot 95%"}}),w({selector:".c-expand-wrapper.cc-one",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-expand-wrapper.cc-one",start:"bot 95%"}}),w({selector:".c-expand-wrapper.cc-two",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-expand-wrapper.cc-two",start:"bot 95%"}}),w({selector:".c-expand-wrapper.cc-three",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-expand-wrapper.cc-three",start:"bot 95%"}}),w({selector:".cc-title-advantage",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-advantage",start:"bot 95%"}}),w({selector:".cc-dedicated-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-dedicated-title",start:"bot 95%"}}),w({selector:".cc-dedicated-text",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-dedicated-text",start:"bot 95%"}}),ht({selector:".c-team-card-wrapper",trigger:".c-team-card-wrapper",start:"top 80%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".cc-title-member",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-member",start:"bot 95%"}}),w({selector:".cc-text-member",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-text-member",start:"bot 95%"}}),W({selector:".c-team-member-img-wrapper",trigger:".c-team-member-img-wrapper",start:"bot 95%",end:"bottom 40%",scrub:!0,fromVars:{y:"7rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),W({selector:".c-number-img-wrapper",trigger:".c-number-img-wrapper",start:"bot 95%",end:"bottom 40%",scrub:!0,fromVars:{y:"7rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),w({selector:".cc-title-ai",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-ai",start:"bot 95%"}}),ht({selector:".c-accelerate-card-wrapper",trigger:".c-accelerate-card-wrapper",start:"top 95%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-grid-advantage-container",trigger:".c-grid-advantage-container",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),ht({selector:".c-business-cards-wrapper",trigger:".c-business-cards-wrapper",start:"top 80%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function hd(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),W({selector:".c-hero-careers-img-wrapper.cc-left",trigger:".c-hero-careers-img-wrapper.cc-left",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"30rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),W({selector:".c-hero-careers-img-wrapper.cc-right",trigger:".c-hero-careers-img-wrapper.cc-right",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"20rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function pd(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-events-hero-text",initialY:"5rem",duration:1.2}),w({selector:".blog-hero_icon",initialY:"7rem",duration:1.2}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function gd(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-services-hero-img",initialY:"7rem",duration:.9}),W({selector:".c-hero-careers-img-wrapper.cc-left",trigger:".c-hero-careers-img-wrapper.cc-left",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"30rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),W({selector:".c-hero-careers-img-wrapper.cc-right",trigger:".c-hero-careers-img-wrapper.cc-right",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"20rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),oi({opacity:0,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 70%",end:"bottom 40%",scrub:!0}}),ht({selector:".c-value-wrapper",trigger:".c-value-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".cc-title-opportunities",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-opportunities",start:"bot 95%"}}),ht({selector:".c-opportunities-card",trigger:".c-opportunities-card",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".c-opportunities-img-wrapper",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-opportunities-img-wrapper",start:"bot 95%"}}),w({selector:".cc-img-col",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-img-col",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function _d(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".cc-hero-about",initialY:"5rem",duration:1.2}),w({selector:".c-img-bg-hero-about",initialY:"7rem",duration:.9}),ho({pinSectionSelector:".cc-pin-section",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 20%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 90%",imageAnimationEnd:"top 0%",imageDuration:.5}),w({selector:".cc-global-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-global-title",start:"bot 95%"}}),w({selector:".cc-global-text",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-global-text",start:"bot 95%"}}),ht({selector:".c-grid-data-about-container",trigger:".c-grid-data-about-container",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),oi({opacity:0,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 70%",end:"bottom 40%",scrub:!0}}),W({selector:".c-img-bg-journey",trigger:".c-img-bg-journey",start:"top 60%",end:"bottom",scrub:!0,fromVars:{y:"0rem",opacity:1},toVars:{y:"-6rem",opacity:1,ease:"quart.easeOut",duration:1}}),w({selector:".cc-proud-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-proud-title",start:"bot 95%"}}),ht({selector:".c-grid-proud-container",trigger:".c-grid-proud-container",start:"top 80%",end:"bottom 70%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".cc-things-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-things-title",start:"bot 95%"}}),w({selector:".cc-img-col",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-img-col",start:"bot 95%"}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}function cl(a){const t=a.getAttribute("r-filter"),e=new URL(window.location.href),r=e.searchParams.get(t);let i=r?r.split("--"):[],n="";switch(a.tagName){case"INPUT":n=a.value;break;case"SELECT":n=a.options[a.selectedIndex].value;break;default:n=a.textContent;break}console.log(n),n=n.replace(/\s/g,"-"),i.indexOf(n)>-1?i=i.filter(s=>s!==n):i.push(n),e.searchParams.set(t,i.join("--")),window.history.pushState({},"",e)}function md(){const a=new URL(window.location.href);for(const[t,e]of a.searchParams.entries()){const r=document.querySelectorAll(`[r-filter="${t}"]`),i=e.split("--");r.forEach(n=>{switch(n.tagName){case"INPUT":n.value=i[0];break;case"SELECT":const o=n.querySelector(`option[value="${i[0]}"]`);o&&(o.selected=!0);break;default:console.log("filter",n.textContent.replace(/\s/g,"-")),console.log("values",i);const s=i.indexOf(n.textContent.replace(/\s/g,"-"))>-1;if(console.log("isSelected",s),!s)return;n.querySelector("input").click();break}})}}function Dd(){let a;const t=new window.MutationObserver((i,n)=>{for(const o of i){if(o.type!=="childList")return;clearTimeout(a),a=setTimeout(()=>{n.disconnect();const u=new URL(window.location.href).searchParams.get("page");if(!u)return;const l=document.querySelector("[r-pagination]");if(!l)return;const c=l.querySelectorAll(".c-pagination_number");c.length&&c[u-1].click()},1200)}}),e={childList:!0},r=document.querySelector("[r-pagination]");t.observe(r,e)}function yd(){const a=document.querySelector("[r-pagination]");a&&a.addEventListener("pageChange",()=>{const t=document.querySelector(".c-pagination_number.c-current");if(!t)return;const e=t.innerText;if(e==="1")return;const r=new URL(window.location.href);r.searchParams.set("page",e),window.history.pushState({},"",r)})}function mn(){md(),Dd(),yd(),document.querySelectorAll('[r-filter]:not([r-filter="language"]').forEach(t=>{switch(t.tagName){case"INPUT":case"SELECT":t.addEventListener("change",function(){cl(t)});break;default:t.querySelector("input").addEventListener("change",function(){console.log("click",t),cl(t)});break}})}z.registerPlugin(B,ft);function bd(){mn(),Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".cc-hero-ai",initialY:"5rem",duration:1.2}),w({selector:".c-ai-bg-img.cc-one",initialY:"7rem",duration:1.2}),w({selector:".c-ai-bg-img.cc-two",initialY:"3rem",duration:1.2}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function wd(){mn(),Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".cc-hero-guides",initialY:"5rem",duration:1.2}),w({selector:".c-ai-bg-img.cc-one",initialY:"7rem",duration:1.2}),w({selector:".c-ai-bg-img.cc-two",initialY:"3rem",duration:1.2}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function vd(){mn(),Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".cc-hero-insight",initialY:"5rem",duration:1.2}),w({selector:".c-ai-bg-img.cc-one",initialY:"7rem",duration:1.2}),w({selector:".c-ai-bg-img.cc-two",initialY:"3rem",duration:1.2}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function Cd(){mn(),Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".cc-hero-automation",initialY:"5rem",duration:1.2}),w({selector:".c-ai-bg-img.cc-one",initialY:"7rem",duration:1.2}),w({selector:".c-ai-bg-img.cc-two",initialY:"3rem",duration:1.2}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function xd(){let a=z.matchMedia();a.add("(min-width: 768px)",()=>{Mt({type:"chars",duration:1,y:50,stagger:.1,ease:"power2.out"})}),w({selector:".c-hero-txt-content",initialY:"5rem",duration:.8}),w({selector:".c-hero-img.cc-one, .c-hero-img.cc-two",initialY:"7rem",duration:.8}),w({selector:".cc-purple-one",initialY:"6rem",duration:.8}),w({selector:".cc-purple-two",initialY:"6rem",duration:.8,delay:.2}),W({selector:".cc-hero-stats",trigger:".cc-hero-stats",start:"top 60%",end:"bottom",scrub:!0,fromVars:{y:"0rem",opacity:1},toVars:{y:"-3rem",opacity:1,ease:"quart.easeOut",duration:1}}),W({selector:".cc-hero-girl",trigger:".cc-hero-girl",start:"top 60%",end:"bottom",scrub:!0,fromVars:{y:"0rem",opacity:1},toVars:{y:"-2rem",opacity:1,ease:"quart.easeOut",duration:1}}),oi({opacity:.15,type:"words",duration:1,y:0,stagger:.1,ease:"power2.out",scrollTrigger:{start:"top 80%",end:"bottom 70%",scrub:!0}}),w({selector:".cc-title-newage",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-title-newage",start:"bot 95%"}}),W({selector:".c-average-img.cc-one",trigger:".c-average-img.cc-one",start:"top 95%",end:"bottom",scrub:!0,fromVars:{y:"8rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),W({selector:".c-average-img.cc-two",trigger:".c-average-img.cc-two",start:"top 95%",end:"bottom -10%",scrub:!0,fromVars:{y:"3rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),ht({selector:".c-success-card-wrapper",trigger:".c-success-card-wrapper",start:"top 80%",end:"bottom 50%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),a.add("(min-width: 768px)",()=>{z.timeline({scrollTrigger:{trigger:"[r-pinned-section]",start:"top 10%",end:"+=2000",scrub:!0,pin:!0}}).to(".cc-purple",{rotation:-3,duration:1}).to(".cc-green",{rotation:3,duration:1},"<").to(".cc-blue",{rotation:4,duration:1},"<").to(".cc-row-pin-top",{y:"-10rem",duration:.4},"<").to(".cc-row-pin",{y:"25rem",duration:.4},"<").fromTo(".c-hidden-text-wrapper",{opacity:0,scale:0},{opacity:1,scale:1,duration:.6},"<").to(".c-navigate-img",{y:"-3rem",duration:.9},"<")});const t=["velocity","measurability","impact","scale"];let e=0,r=0,i=!1;const n=150,o=100,s=1e3;function u(){const l=document.querySelector(".c-automatic-txt"),c=t[e];if(i)l.textContent=c.substring(0,r-1),r--,r===0&&(i=!1,e=(e+1)%t.length);else if(l.textContent=c.substring(0,r+1),r++,r===c.length){i=!0,setTimeout(u,s);return}setTimeout(u,i?o:n)}u(),w({selector:".c-text-wrapper.cc-control",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-text-wrapper.cc-control",start:"bot 95%"}}),ho({pinSectionSelector:".cc-pin-section",pinContentSelector:".c-pin-left-content",pinWrapperSelector:".c-pin-left-wrapper",imagesSelector:".c-pin-right-container",textContainerSelector:".c-pin-left-container",startPin:"top 10%",endPinOffset:0,pinSpacing:!0,scrubPin:!0,imageAnimationStart:"top 95%",imageAnimationEnd:"top 0%",imageDuration:.5}),ht({selector:".c-growth-card-wrapper",trigger:".c-growth-card-wrapper",start:"top 80%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),a.add("(min-width: 768px)",()=>{W({selector:".c-result-card-container.cc-purple-06",trigger:".c-result-card-container.cc-purple-06",start:"top 95%",end:"bottom 10%",scrub:!0,fromVars:{y:"-10rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),W({selector:".c-result-card-container.cc-purple-07",trigger:".c-result-card-container.cc-purple-07",start:"top 95%",end:"bottom 10%",scrub:!0,fromVars:{y:"-4rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}),w({selector:".c-title-wrapper.cc-accelerate",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-title-wrapper.cc-accelerate",start:"bot 95%"}}),ht({selector:".c-accelerate-card-wrapper",trigger:".c-accelerate-card-wrapper",start:"top 95%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),w({selector:".c-title-wrapper.cc-why",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-title-wrapper.cc-why",start:"bot 95%"}}),w({selector:".c-title-wrapper.cc-stories",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-title-wrapper.cc-stories",start:"bot 95%"}}),ht({selector:".c-stories-card-container",trigger:".c-stories-card-container",start:"top 95%",end:"bottom 75%",scrub:!0,initialY:50,duration:1,stagger:.2,delay:0}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}function Td(){const a=document.querySelector("[r-filter-empty]"),t=document.querySelector("[cta-inject]");if(!a)return;const e=()=>{const i=window.getComputedStyle(a,null).display;console.log("change style",i),i!=="none"?t.classList.add("cc-hide"):t.classList.remove("cc-hide")};new window.MutationObserver((i,n)=>{for(let o of i)o.type==="attributes"&&e()}).observe(a,{attributes:!0}),e()}z.registerPlugin(B,ft);function Sd(){mn(),Td(),Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".blog-hero_text",initialY:"5rem",duration:1.2}),w({selector:".blog-hero_icon",initialY:"7rem",duration:1.2}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function Ed(){Mt({type:"words",duration:1,y:40,stagger:.1,ease:"power2.out"}),w({selector:".c-btn-content-wrapper",initialY:"5rem",duration:1.2}),w({selector:".c-hero-services-img.cc-one",initialY:"7rem",duration:.9}),w({selector:".c-hero-services-img.cc-two",initialY:"5rem",duration:.7}),w({selector:".c-services-hero-img.cc-one",initialY:"9rem",duration:.8}),w({selector:".c-services-hero-img.cc-two",initialY:"7rem",duration:.6}),w({selector:".c-services-hero-img.cc-three",initialY:"10rem",duration:1.2}),w({selector:".cc-support-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-support-title",start:"bot 90%"}}),w({selector:".cc-support-text",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-support-text",start:"bot 90%"}}),w({selector:".cc-matter-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-matter-title",start:"bot 90%"}}),w({selector:".cc-matter-text",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-matter-text",start:"bot 90%"}}),w({selector:".c-support-content",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".c-support-content",start:"bot 95%"}}),W({selector:".cc-scroll",trigger:".cc-scroll",start:"top 90%",end:"bottom 10%",scrub:!0,fromVars:{y:"-3rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),w({selector:".cc-marquee-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-marquee-title",start:"bot 95%"}}),w({selector:".cc-dedicated-title",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-dedicated-title",start:"bot 95%"}}),w({selector:".cc-dedicated-text",initialY:"5rem",duration:.8,delay:0,scrollTrigger:{trigger:".cc-dedicated-text",start:"bot 95%"}}),W({selector:".c-team-card-wrapper.cc-purple-07",trigger:".c-team-card-wrapper.cc-purple-07",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"3.375rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function Fd(){document.addEventListener("DOMContentLoaded",function(){ll([{formSelector:"#hsForm_753ec6e4-c7a7-423b-bda8-b45e1a4dd08e"}])}),W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}z.registerPlugin(B,ft);function kd(){W({selector:".c-botify-logo",trigger:".c-footer-wrapper",start:"top 95%",end:"bottom 70%",scrub:!0,fromVars:{y:"15rem",opacity:1},toVars:{y:"0rem",opacity:1,ease:"quart.easeOut",duration:1}})}if(!window.localStorage.getItem("WebflowEditorData")){let t=function(e){a.raf(e),requestAnimationFrame(t)};console.log("Lenis");const a=new hl;requestAnimationFrame(t)}document.querySelector("body").classList.contains("body--home")&&xd(),document.querySelector("body").classList.contains("body--product")&&sd(),document.querySelector("body").classList.contains("body--activation")&&ad(),document.querySelector("body").classList.contains("body--analytics")&&ud(),document.querySelector("body").classList.contains("body--market")&&mk(),document.querySelector("body").classList.contains("body--intelligence")&&ld(),document.querySelector("body").classList.contains("body--workers")&&cd(),document.querySelector("body").classList.contains("body--speed")&&dd(),document.querySelector("body").classList.contains("body--services")&&Ed(),document.querySelector("body").classList.contains("body--advantage")&&fd(),document.querySelector("body").classList.contains("body--customers")&&hd(), document.querySelector("body").classList.contains("body--use-ai")&&uai(), document.querySelector("body").classList.contains("body--use-aut")&&use(), document.querySelector("body").classList.contains("body--index")&&idx(), document.querySelector("body").classList.contains("body--content")&&cnt(), document.querySelector("body").classList.contains("body--link")&&lnk(), document.querySelector("body").classList.contains("body--blog")&&Sd(),document.querySelector("body").classList.contains("body--events")&&pd(),document.querySelector("body").classList.contains("body--insight")&&od(),document.querySelector("body").classList.contains("body--careers")&&gd(),document.querySelector("body").classList.contains("body--about")&&_d(),document.querySelector("body").classList.contains("body--ai")&&bd(), document.querySelector("body").classList.contains("body--assist") &&ass(), document.querySelector("body").classList.contains("body--enterprise") &&ent(), document.querySelector("body").classList.contains("body--learn")&&wd(),document.querySelector("body").classList.contains("body--business")&&vd(),document.querySelector("body").classList.contains("body--automation")&&Cd(),document.querySelector("body").classList.contains("body--demo")&&Fd(),document.querySelector("body").classList.contains("body--contact")&&kd(),document.addEventListener("DOMContentLoaded",function(){ll([{formSelector:"#hsForm_b490a0db-0cf5-4da7-8810-23ae80dd68d4",checkboxSelector:"#LEGAL_CONSENT\\.processing-b490a0db-0cf5-4da7-8810-23ae80dd68d4"},{formSelector:"#anotherForm"}])})});