{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/1vASyjRpkpXbW9OyOZae/H0NWaMMqcmDjryZvbdzo/fcXMWuiBN.js", "ssg:https://framerusercontent.com/modules/IYDnnyBUzJM4rxavXxrQ/ouaJqwjke9D9M9nL4gfJ/In_wXVfye.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (cfe29ee)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"b38t2CaIq\",\"ZG17HNTl8\"];const variantClassNames={b38t2CaIq:\"framer-v-nhgsue\",ZG17HNTl8:\"framer-v-9suqjc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={Large:\"b38t2CaIq\",Small:\"ZG17HNTl8\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"b38t2CaIq\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"b38t2CaIq\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-NZesh\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.figure,{...restProps,className:cx(\"framer-nhgsue\",className),\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"b38t2CaIq\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({ZG17HNTl8:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(SVG,{className:\"framer-1ymxjc1\",\"data-framer-name\":\"irene-logo\",description:\"Social proof logos\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"l9OW4An5E\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 24\"><path d=\"M 0.48 24.433 L 0.48 0.62 L 5.914 0.62 L 5.914 24.433 Z M 10.569 24.433 L 10.569 0.62 L 23.973 0.62 C 29.95 0.62 33.356 3.215 33.356 7.764 C 33.356 11.638 31.073 13.948 26.509 14.375 L 26.509 14.659 C 28.683 15.228 29.516 16.365 30.421 18.035 L 33.935 24.433 L 27.632 24.433 L 24.299 18.249 C 23.321 16.401 22.415 15.796 19.59 15.796 L 16.003 15.796 L 16.003 24.433 Z M 16.003 11.78 L 23.937 11.78 C 26.509 11.78 27.668 11.069 27.668 8.582 C 27.668 6.236 26.509 5.418 23.937 5.418 L 16.003 5.418 Z M 37.463 24.433 L 37.463 0.62 L 67.06 0.62 L 67.06 5.418 L 42.897 5.418 L 42.897 10.074 L 66.517 10.074 L 66.517 14.837 L 42.897 14.837 L 42.897 19.635 L 67.06 19.635 L 67.06 24.433 Z M 71.326 24.433 L 71.326 0.62 L 77.122 0.62 L 85.816 11.887 L 89.149 16.898 L 89.548 16.898 L 89.294 12.1 L 89.294 0.62 L 94.728 0.62 L 94.728 24.433 L 88.932 24.433 L 79.984 13.06 L 76.905 8.582 L 76.542 8.582 L 76.76 12.953 L 76.76 24.433 Z M 99.423 24.433 L 99.423 0.62 L 112.038 0.62 L 112.038 5.418 L 104.856 5.418 L 104.856 10.074 L 111.495 10.074 L 111.495 14.837 L 104.856 14.837 L 104.856 19.635 L 112.038 19.635 L 112.038 24.433 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:2054509049,title:\"Logo\",transition:transition,withExternalLayout:true,...addPropertyOverrides({ZG17HNTl8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 66 14\"><path d=\"M 0.283 14.252 L 0.283 0.362 L 3.485 0.362 L 3.485 14.252 Z M 6.228 14.252 L 6.228 0.362 L 14.127 0.362 C 17.649 0.362 19.656 1.875 19.656 4.529 C 19.656 6.789 18.311 8.136 15.621 8.385 L 15.621 8.551 C 16.902 8.883 17.393 9.546 17.927 10.521 L 19.998 14.252 L 16.283 14.252 L 14.319 10.645 C 13.743 9.567 13.209 9.215 11.544 9.215 L 9.431 9.215 L 9.431 14.252 Z M 9.431 6.872 L 14.106 6.872 C 15.621 6.872 16.304 6.457 16.304 5.006 C 16.304 3.638 15.621 3.161 14.106 3.161 L 9.431 3.161 Z M 22.077 14.252 L 22.077 0.362 L 39.518 0.362 L 39.518 3.161 L 25.279 3.161 L 25.279 5.877 L 39.197 5.877 L 39.197 8.655 L 25.279 8.655 L 25.279 11.454 L 39.518 11.454 L 39.518 14.252 Z M 42.031 14.252 L 42.031 0.362 L 45.447 0.362 L 50.57 6.934 L 52.534 9.857 L 52.769 9.857 L 52.62 7.058 L 52.62 0.362 L 55.822 0.362 L 55.822 14.252 L 52.406 14.252 L 47.133 7.618 L 45.319 5.006 L 45.105 5.006 L 45.233 7.556 L 45.233 14.252 Z M 58.588 14.252 L 58.588 0.362 L 66.023 0.362 L 66.023 3.161 L 61.79 3.161 L 61.79 5.877 L 65.702 5.877 L 65.702 8.655 L 61.79 8.655 L 61.79 11.454 L 66.023 11.454 L 66.023 14.252 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:1651797687}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1hqh2wy\",\"data-framer-name\":\"slice-logo\",description:\"Social proof logos\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nHnPwUhcY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 108 30\"><path d=\"M 36.811 20.133 L 40.695 20.133 C 40.713 23.496 43.048 25.594 46.897 25.594 C 50.4 25.594 52.507 23.913 52.507 21.45 C 52.507 18.555 49.859 18.207 47.176 17.532 L 44.32 16.821 C 40.852 15.955 37.351 14.394 37.351 10.18 C 37.351 5.602 40.923 2.62 46.602 2.62 C 52.246 2.62 55.696 5.776 55.818 10.63 L 52.002 10.63 C 51.811 7.804 49.861 5.95 46.515 5.95 C 43.239 5.95 41.324 7.615 41.324 10.075 C 41.324 12.73 44.947 13.3 47.193 13.855 L 49.423 14.41 C 53.327 15.382 56.462 17.115 56.462 21.363 C 56.462 26.044 52.804 28.975 46.828 28.975 C 40.644 28.975 36.811 25.681 36.811 20.133 Z M 63.118 28.558 L 59.371 28.558 L 59.371 3.037 L 63.118 3.037 Z M 66.688 10.248 L 70.417 10.248 L 70.417 28.56 L 66.688 28.56 Z M 68.571 7.039 C 67.28 7.039 66.253 6.034 66.271 4.804 C 66.253 3.555 67.28 2.55 68.571 2.55 C 69.827 2.551 70.85 3.556 70.869 4.806 C 70.853 6.037 69.825 7.042 68.571 7.042 Z M 73.204 19.438 C 73.204 13.873 76.617 9.972 81.742 9.972 C 86.688 9.972 89.441 13.492 89.579 16.647 L 85.956 16.647 C 85.626 14.809 84.266 13.11 81.758 13.11 C 78.883 13.11 76.967 15.658 76.967 19.438 C 76.967 23.166 78.936 25.663 81.775 25.663 C 83.988 25.663 85.748 24.172 85.834 22.144 L 89.579 22.144 C 89.371 25.629 86.654 28.836 81.793 28.836 C 76.688 28.836 73.204 24.936 73.204 19.438 Z M 91.6 19.438 C 91.6 13.857 94.981 9.972 100.19 9.972 C 105.399 9.972 108.517 13.821 108.517 19.422 L 108.517 20.376 L 95.365 20.376 C 95.365 23.358 97.21 25.785 100.294 25.785 C 102.384 25.785 104.179 24.658 104.702 22.941 L 108.291 22.941 C 107.593 26.496 104.44 28.836 100.277 28.836 C 94.998 28.836 91.6 25.021 91.6 19.438 Z M 104.876 17.653 C 104.788 14.896 102.803 13.006 100.155 13.006 C 97.316 13.006 95.539 15.208 95.382 17.653 Z M 17.839 13.764 C 17.839 12.129 16.508 10.804 14.867 10.804 L 8.919 10.804 L 8.919 2.542 C 8.919 1.225 10.52 0.565 11.458 1.497 L 27.194 17.158 C 28.132 18.091 27.468 19.684 26.144 19.684 L 17.839 19.684 L 17.839 25.6 C 17.839 27.234 16.508 28.558 14.865 28.558 L 2.974 28.558 C 1.331 28.558 0 27.234 0 25.599 L 0 13.764 C 0 12.129 1.331 10.804 2.974 10.804 L 8.919 10.804 L 8.919 18.205 C 8.919 19.022 9.585 19.684 10.406 19.684 L 17.839 19.684 Z M 8.919 10.804 L 8.919 10.804 L 8.919 10.804 L 8.919 10.804 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:2578475082,title:\"Logo\",transition:transition,withExternalLayout:true,...addPropertyOverrides({ZG17HNTl8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64 18\"><path d=\"M 21.814 12.08 L 24.116 12.08 C 24.126 14.098 25.51 15.357 27.791 15.357 C 29.867 15.357 31.115 14.348 31.115 12.87 C 31.115 11.133 29.546 10.924 27.956 10.519 L 26.264 10.093 C 24.209 9.573 22.134 8.636 22.134 6.108 C 22.134 3.361 24.251 1.572 27.616 1.572 C 30.961 1.572 33.005 3.466 33.078 6.378 L 30.816 6.378 C 30.703 4.683 29.547 3.57 27.564 3.57 C 25.623 3.57 24.488 4.569 24.488 6.045 C 24.488 7.638 26.635 7.98 27.966 8.313 L 29.288 8.646 C 31.601 9.229 33.459 10.269 33.459 12.818 C 33.459 15.627 31.291 17.385 27.75 17.385 C 24.085 17.385 21.814 15.409 21.814 12.08 Z M 37.403 17.135 L 35.183 17.135 L 35.183 1.822 L 37.403 1.822 Z M 39.519 6.149 L 41.729 6.149 L 41.729 17.136 L 39.519 17.136 Z M 40.634 4.224 C 39.87 4.224 39.261 3.621 39.272 2.883 C 39.261 2.133 39.87 1.53 40.634 1.53 C 41.379 1.531 41.985 2.133 41.996 2.884 C 41.987 3.622 41.378 4.225 40.634 4.225 Z M 43.38 11.663 C 43.38 8.324 45.403 5.983 48.44 5.983 C 51.371 5.983 53.002 8.095 53.084 9.988 L 50.937 9.988 C 50.741 8.886 49.936 7.866 48.449 7.866 C 46.745 7.866 45.61 9.395 45.61 11.663 C 45.61 13.9 46.777 15.398 48.459 15.398 C 49.77 15.398 50.814 14.503 50.865 13.287 L 53.084 13.287 C 52.961 15.377 51.35 17.302 48.47 17.302 C 45.445 17.302 43.38 14.962 43.38 11.663 Z M 54.282 11.663 C 54.282 8.314 56.285 5.983 59.372 5.983 C 62.458 5.983 64.306 8.293 64.306 11.653 L 64.306 12.226 L 56.513 12.226 C 56.513 14.015 57.606 15.471 59.433 15.471 C 60.672 15.471 61.736 14.795 62.046 13.765 L 64.172 13.765 C 63.759 15.898 61.89 17.302 59.424 17.302 C 56.295 17.302 54.282 15.013 54.282 11.663 Z M 62.148 10.592 C 62.097 8.938 60.92 7.804 59.351 7.804 C 57.668 7.804 56.615 9.125 56.523 10.592 Z M 10.571 8.258 C 10.571 7.277 9.783 6.483 8.81 6.483 L 5.286 6.483 L 5.286 10.923 C 5.286 11.413 5.68 11.811 6.166 11.811 L 10.571 11.811 Z M 10.571 15.36 C 10.571 16.34 9.783 17.135 8.809 17.135 L 1.762 17.135 C 0.789 17.135 0 16.34 0 15.359 L 0 8.258 C 0 7.277 0.789 6.483 1.762 6.483 L 5.286 6.483 L 5.286 1.526 C 5.286 0.735 6.234 0.339 6.79 0.898 L 16.115 10.295 C 16.671 10.855 16.278 11.811 15.492 11.811 L 10.571 11.811 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:1418353993}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-12myo9r\",\"data-framer-name\":\"noa-logo\",description:\"Social proof logos\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tobkyoezV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 75 28\"><path d=\"M 47.211 21.099 C 47.211 16.992 49.612 14.733 55.483 12.988 L 62.581 10.883 C 62.314 9.446 61.514 8.83 59.379 8.83 C 56.337 8.83 52.921 10.421 50.733 12.783 L 46.464 6.006 C 49.773 3.131 54.416 1.078 59.913 1.078 C 66.691 1.078 70.853 4.261 70.853 10.781 L 70.853 18.43 C 70.853 19.559 71.174 19.918 72.134 19.918 L 73.682 19.918 L 73.682 26.952 L 68.238 26.952 C 65.25 26.952 62.314 25.72 62.314 22.126 L 62.314 20.175 C 61.514 23.461 59.486 27.516 54.095 27.516 C 50.253 27.516 47.211 25.668 47.211 21.099 Z M 57.778 21.099 C 60.927 21.099 62.314 19.918 62.314 17.3 L 62.314 16.53 L 57.991 18.019 C 56.177 18.635 55.75 19.148 55.75 19.816 C 55.75 20.637 56.39 21.099 57.778 21.099 Z M 0.801 26.952 L 0.801 1.591 L 10.407 1.591 L 10.407 9.138 C 11.154 4.928 13.556 1.078 19.053 1.078 C 23.963 1.078 26.951 4.004 26.951 9.189 L 26.951 26.952 L 17.345 26.952 L 17.345 12.783 C 17.345 9.702 16.758 8.06 13.876 8.06 C 11.101 8.06 10.407 9.035 10.407 13.142 L 10.407 26.952 Z M 31.081 14.759 C 31.081 11.166 34.017 8.496 37.539 8.496 C 41.061 8.496 43.997 11.166 43.997 14.759 C 43.997 18.302 41.061 20.971 37.539 20.971 C 34.017 20.971 31.081 18.302 31.081 14.759 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:2393646954,title:\"Logo\",transition:transition,withExternalLayout:true,...addPropertyOverrides({ZG17HNTl8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44 16\"><path d=\"M 27.697 12.057 C 27.697 9.71 29.106 8.419 32.55 7.422 L 36.714 6.219 C 36.558 5.398 36.088 5.046 34.836 5.046 C 33.051 5.046 31.047 5.955 29.763 7.304 L 27.259 3.432 C 29.2 1.789 31.924 0.616 35.149 0.616 C 39.125 0.616 41.567 2.435 41.567 6.16 L 41.567 10.531 C 41.567 11.177 41.755 11.382 42.319 11.382 L 43.227 11.382 L 43.227 15.401 L 40.033 15.401 C 38.28 15.401 36.558 14.697 36.558 12.643 L 36.558 11.529 C 36.088 13.406 34.898 15.724 31.736 15.724 C 29.482 15.724 27.697 14.668 27.697 12.057 Z M 33.896 12.057 C 35.744 12.057 36.558 11.382 36.558 9.886 L 36.558 9.446 L 34.022 10.297 C 32.957 10.649 32.707 10.942 32.707 11.323 C 32.707 11.793 33.082 12.057 33.896 12.057 Z M 0.47 15.401 L 0.47 0.909 L 6.105 0.909 L 6.105 5.222 C 6.544 2.816 7.953 0.616 11.178 0.616 C 14.058 0.616 15.812 2.288 15.812 5.251 L 15.812 15.401 L 10.176 15.401 L 10.176 7.304 C 10.176 5.544 9.831 4.606 8.141 4.606 C 6.513 4.606 6.105 5.163 6.105 7.51 L 6.105 15.401 Z M 18.234 8.434 C 18.234 6.38 19.956 4.855 22.023 4.855 C 24.089 4.855 25.811 6.38 25.811 8.434 C 25.811 10.458 24.089 11.983 22.023 11.983 C 19.956 11.983 18.234 10.458 18.234 8.434 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:540655206}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-jejzyq\",\"data-framer-name\":\"someday-logo\",description:\"Social proof logos\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ifwocVbrA\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 127 21\"><path d=\"M 7.933 20.582 C 13.018 20.582 16.541 18.575 16.541 14.561 C 16.541 11.36 14.846 9.759 10.37 8.896 C 7.801 8.388 6.954 7.854 6.954 6.839 C 6.954 5.848 7.563 5.212 8.648 5.212 C 10.264 5.212 10.82 6.102 10.82 7.982 L 16.276 6 C 16.223 2.214 13.839 0.766 8.808 0.766 C 3.537 0.766 0.624 3.358 0.624 6.787 C 0.624 10.369 2.558 12.147 7.405 12.935 C 10.079 13.367 10.846 13.901 10.846 14.866 C 10.846 15.577 10.211 16.136 8.49 16.136 C 6.503 16.136 5.735 15.526 5.735 14.409 C 5.735 14.078 5.788 13.799 5.894 13.367 L 0.545 14.713 C 0.466 15.017 0.387 15.475 0.387 16.211 C 0.387 18.726 3.405 20.581 7.935 20.581 Z M 26.14 0.766 C 20.606 0.766 17.242 3.917 17.242 9.404 C 17.242 14.891 20.606 18.041 26.14 18.041 C 31.701 18.041 35.013 14.891 35.013 9.404 C 35.013 3.917 31.701 0.766 26.14 0.766 Z M 26.14 5.212 C 27.941 5.212 28.71 6.483 28.71 9.404 C 28.71 12.326 27.941 13.595 26.14 13.595 C 24.34 13.595 23.545 12.325 23.545 9.404 C 23.545 6.482 24.34 5.212 26.14 5.212 Z M 59.019 1.021 L 50.809 1.021 L 48.797 8.464 L 48.03 11.59 L 47.976 11.59 L 47.209 8.464 L 45.196 1.021 L 36.561 1.021 L 36.561 17.787 L 41.964 17.787 L 41.964 11.97 L 41.883 6.33 L 41.989 6.33 L 45.328 17.788 L 50.254 17.788 L 53.643 6.33 L 53.723 6.33 L 53.643 11.97 L 53.643 17.788 L 59.019 17.788 L 59.019 1.019 Z M 61.145 17.788 L 75.975 17.788 L 75.975 13.442 L 67.315 13.442 L 67.315 11.461 L 74.042 11.461 L 74.042 7.447 L 67.314 7.447 L 67.314 5.365 L 75.657 5.365 L 75.657 1.021 L 61.145 1.021 L 61.145 17.787 Z M 85.773 1.021 L 77.192 1.021 L 77.192 17.787 L 85.773 17.787 C 91.255 17.787 94.062 14.739 94.062 9.404 C 94.062 4.07 91.255 1.021 85.773 1.021 Z M 84.899 13.57 L 83.364 13.57 L 83.364 5.238 L 84.899 5.238 C 87.177 5.238 87.759 6.533 87.759 9.404 C 87.759 12.274 87.177 13.57 84.9 13.57 Z M 112.109 17.788 L 106.415 1.021 L 99 1.021 L 93.334 17.787 L 99.477 17.787 L 100.297 14.587 L 105.011 14.587 L 105.806 17.787 L 112.109 17.787 Z M 101.225 10.903 L 102.681 5.084 L 104.111 10.903 Z M 126.531 1.021 L 120.466 1.021 L 118.612 4.856 L 117.367 7.905 L 116.123 4.856 L 114.269 1.021 L 108.125 1.021 L 114.243 11.97 L 114.243 17.788 L 120.414 17.788 L 120.414 11.97 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:170181031,title:\"Logo\",transition:transition,withExternalLayout:true,...addPropertyOverrides({ZG17HNTl8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 75 13\"><path d=\"M 4.685 12.741 C 7.688 12.741 9.768 11.499 9.768 9.014 C 9.768 7.032 8.767 6.041 6.124 5.507 C 4.607 5.193 4.107 4.862 4.107 4.234 C 4.107 3.62 4.467 3.227 5.107 3.227 C 6.061 3.227 6.39 3.777 6.39 4.941 L 9.612 3.714 C 9.581 1.371 8.173 0.474 5.202 0.474 C 2.089 0.474 0.369 2.079 0.369 4.201 C 0.369 6.419 1.51 7.52 4.373 8.007 C 5.952 8.275 6.405 8.605 6.405 9.203 C 6.405 9.643 6.03 9.989 5.014 9.989 C 3.84 9.989 3.387 9.612 3.387 8.92 C 3.387 8.715 3.418 8.542 3.481 8.275 L 0.322 9.108 C 0.275 9.296 0.228 9.58 0.228 10.035 C 0.228 11.592 2.011 12.74 4.686 12.74 Z M 15.437 0.474 C 12.169 0.474 10.182 2.425 10.182 5.822 C 10.182 9.218 12.169 11.168 15.437 11.168 C 18.721 11.168 20.677 9.218 20.677 5.822 C 20.677 2.425 18.721 0.474 15.437 0.474 Z M 15.437 3.227 C 16.501 3.227 16.954 4.013 16.954 5.822 C 16.954 7.63 16.501 8.416 15.437 8.416 C 14.374 8.416 13.904 7.63 13.904 5.822 C 13.904 4.013 14.374 3.227 15.437 3.227 Z M 34.854 0.632 L 30.005 0.632 L 28.817 5.239 L 28.364 7.175 L 28.332 7.175 L 27.879 5.239 L 26.69 0.632 L 21.591 0.632 L 21.591 11.011 L 24.782 11.011 L 24.782 7.41 L 24.734 3.918 L 24.797 3.918 L 26.769 11.012 L 29.678 11.012 L 31.679 3.918 L 31.726 3.918 L 31.679 7.41 L 31.679 11.012 L 34.854 11.012 L 34.854 0.631 Z M 36.109 11.012 L 44.867 11.012 L 44.867 8.321 L 39.753 8.321 L 39.753 7.095 L 43.725 7.095 L 43.725 4.61 L 39.752 4.61 L 39.752 3.321 L 44.68 3.321 L 44.68 0.632 L 36.109 0.632 L 36.109 11.011 Z M 50.654 0.632 L 45.586 0.632 L 45.586 11.011 L 50.654 11.011 C 53.891 11.011 55.548 9.124 55.548 5.822 C 55.548 2.519 53.891 0.632 50.654 0.632 Z M 50.137 8.401 L 49.231 8.401 L 49.231 3.242 L 50.137 3.242 C 51.482 3.242 51.826 4.045 51.826 5.822 C 51.826 7.598 51.482 8.401 50.138 8.401 Z M 66.206 11.012 L 62.843 0.632 L 58.464 0.632 L 55.118 11.011 L 58.746 11.011 L 59.23 9.03 L 62.015 9.03 L 62.484 11.011 L 66.206 11.011 Z M 59.779 6.749 L 60.638 3.147 L 61.483 6.749 Z M 74.723 0.632 L 71.141 0.632 L 70.046 3.006 L 69.311 4.893 L 68.576 3.006 L 67.482 0.632 L 63.853 0.632 L 67.466 7.41 L 67.466 11.012 L 71.11 11.012 L 71.11 7.41 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:2343849630}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-1dlitzd\",\"data-framer-name\":\"compose-logo\",description:\"Social proof logos\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VfnndakzW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 114 29\"><path d=\"M 15.709 17.342 L 14.96 22.787 C 13.148 23.704 10.869 23.949 9.245 23.949 C 3.248 23.949 0.343 19.728 0.343 12.418 C 0.343 5.597 4.123 0.673 9.339 0.673 C 10.712 0.673 11.712 1.009 12.399 1.009 C 13.118 1.009 13.554 0.734 13.742 0.061 L 14.429 0 L 15.179 7.188 L 14.491 7.371 C 13.337 3.823 11.181 1.743 8.651 1.743 C 5.497 1.743 3.623 5.016 3.623 10.521 C 3.623 17.77 5.872 22.817 9.682 22.817 C 12.212 22.817 14.179 20.921 15.022 17.22 Z M 30.812 14.926 C 30.812 20.34 27.909 23.918 23.536 23.918 C 19.007 23.918 16.665 20.829 16.665 15.813 C 16.665 10.368 19.507 6.79 23.942 6.79 C 28.377 6.79 30.812 9.879 30.812 14.926 Z M 24.067 23.123 C 26.066 23.123 27.627 21.134 27.627 16.425 C 27.627 11.897 26.378 7.585 23.317 7.585 C 21.224 7.585 19.944 9.574 19.944 14.222 C 19.944 18.871 21.13 23.123 24.066 23.123 Z M 39.221 23.612 L 31.382 23.612 L 31.382 23.031 C 33.912 22.847 34.005 22.787 34.005 19.575 L 34.005 11.715 C 34.005 9.727 33.256 9.512 31.07 9.512 L 31.07 8.931 C 33.506 8.931 34.942 8.227 36.628 6.79 L 36.879 6.943 L 36.879 9.451 C 39.534 7.554 40.596 6.79 42.344 6.79 C 44.25 6.79 45.343 7.708 45.78 9.604 C 48.591 7.585 49.684 6.79 51.464 6.79 C 54.026 6.79 55.118 8.472 55.118 11.959 L 55.118 19.575 C 55.118 22.787 55.244 22.817 57.773 23.031 L 57.773 23.612 L 49.934 23.612 L 49.934 23.031 C 52.151 22.847 52.245 22.787 52.245 19.575 L 52.245 13.397 C 52.245 9.42 50.808 8.503 49.465 8.503 C 47.841 8.503 45.999 10.155 45.999 12.999 L 45.999 19.575 C 45.999 22.787 46.123 22.817 48.653 23.031 L 48.653 23.612 L 40.814 23.612 L 40.814 23.031 C 43.032 22.847 43.126 22.787 43.126 19.575 L 43.126 13.397 C 43.126 9.42 41.689 8.503 40.346 8.503 C 38.722 8.503 36.879 10.155 36.879 12.999 L 36.879 19.575 C 36.879 22.787 37.004 22.817 39.221 23.031 Z M 65.089 29.118 L 57.25 29.118 L 57.25 28.537 C 59.467 28.353 59.561 28.292 59.561 25.08 L 59.561 11.562 C 59.561 9.574 58.811 9.359 56.625 9.359 L 56.625 8.778 C 59.061 8.778 60.498 8.074 62.184 6.637 L 62.434 6.79 L 62.434 9.512 C 64.214 7.983 65.776 6.79 67.525 6.79 C 70.742 6.79 73.022 9.849 73.022 14.62 C 73.022 20.156 69.618 23.918 65.901 23.918 C 64.277 23.918 63.278 23.184 62.434 22.756 L 62.434 25.08 C 62.434 28.292 62.559 28.322 65.089 28.537 Z M 66.151 23.153 C 68.462 23.153 69.836 20.768 69.836 16.057 C 69.836 10.827 68.493 8.411 66.245 8.411 C 63.715 8.411 62.434 11.194 62.434 13.61 L 62.434 19.605 C 62.809 21.716 64.371 23.153 66.151 23.153 Z M 88.401 14.926 C 88.401 20.34 85.496 23.918 81.124 23.918 C 76.595 23.918 74.253 20.829 74.253 15.813 C 74.253 10.368 77.095 6.79 81.53 6.79 C 85.965 6.79 88.401 9.879 88.401 14.926 Z M 85.215 16.425 C 85.215 11.897 83.966 7.585 80.905 7.585 C 78.813 7.585 77.532 9.574 77.532 14.222 C 77.532 18.871 78.719 23.123 81.654 23.123 C 83.654 23.123 85.215 21.134 85.215 16.425 Z M 91.875 23.46 C 91.469 23.46 91.188 23.643 91.062 24.224 L 90.438 24.224 L 89.813 18.26 L 90.532 18.199 C 91.406 20.982 92.218 23.123 94.467 23.123 C 95.872 23.123 97.247 22.327 97.247 20.431 C 97.247 16.272 90.001 15.996 90.001 11.133 C 90.001 8.839 91.562 6.79 94.904 6.79 C 96.029 6.79 96.591 7.126 97.216 7.126 C 97.59 7.126 97.809 6.882 97.996 6.178 L 98.559 6.178 L 99.027 11.531 L 98.371 11.592 C 97.496 9.023 96.529 7.585 94.842 7.585 C 93.562 7.585 92.406 8.442 92.406 9.91 C 92.406 13.519 99.62 14.192 99.62 19.208 C 99.62 22.205 96.903 23.918 94.686 23.918 C 93.468 23.918 92.531 23.46 91.875 23.46 Z M 100.791 15.751 C 100.791 10.674 103.351 6.791 107.567 6.791 C 110.067 6.791 112.94 8.228 112.94 13.091 L 103.851 14.008 C 103.882 18.321 105.569 22.175 108.567 22.175 C 110.067 22.175 111.691 21.227 113.002 19.881 L 113.377 20.37 C 112.034 21.96 110.035 23.918 107.193 23.918 C 103.788 23.918 100.791 21.165 100.791 15.751 Z M 107.161 7.677 C 105.257 7.677 104.164 9.696 103.914 12.571 L 109.973 12.571 C 109.785 8.167 108.099 7.677 107.161 7.677 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:1835075338,title:\"Logo\",transition:transition,withExternalLayout:true,...addPropertyOverrides({ZG17HNTl8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 67 17\"><path d=\"M 9.233 10.166 L 8.792 13.358 C 7.727 13.896 6.388 14.039 5.433 14.039 C 1.909 14.039 0.201 11.565 0.201 7.279 C 0.201 3.281 2.423 0.394 5.488 0.394 C 6.296 0.394 6.883 0.592 7.287 0.592 C 7.709 0.592 7.966 0.43 8.076 0.036 L 8.48 0 L 8.921 4.213 L 8.517 4.321 C 7.838 2.241 6.571 1.022 5.084 1.022 C 3.231 1.022 2.129 2.941 2.129 6.168 C 2.129 10.417 3.451 13.376 5.69 13.376 C 7.177 13.376 8.333 12.264 8.829 10.094 Z M 18.109 8.749 C 18.109 11.923 16.402 14.021 13.832 14.021 C 11.171 14.021 9.794 12.21 9.794 9.27 C 9.794 6.078 11.464 3.98 14.071 3.98 C 16.677 3.98 18.109 5.791 18.109 8.749 Z M 14.145 13.555 C 15.319 13.555 16.237 12.389 16.237 9.628 C 16.237 6.974 15.503 4.447 13.704 4.447 C 12.474 4.447 11.721 5.612 11.721 8.337 C 11.721 11.062 12.419 13.555 14.144 13.555 Z M 23.051 13.841 L 18.444 13.841 L 18.444 13.501 C 19.93 13.393 19.986 13.358 19.986 11.475 L 19.986 6.867 C 19.986 5.702 19.545 5.576 18.26 5.576 L 18.26 5.235 C 19.692 5.235 20.536 4.823 21.527 3.98 L 21.674 4.07 L 21.674 5.54 C 23.235 4.428 23.859 3.98 24.887 3.98 C 26.006 3.98 26.649 4.519 26.906 5.63 C 28.558 4.447 29.2 3.98 30.247 3.98 C 31.752 3.98 32.394 4.966 32.394 7.011 L 32.394 11.475 C 32.394 13.358 32.468 13.376 33.954 13.501 L 33.954 13.841 L 29.347 13.841 L 29.347 13.501 C 30.65 13.393 30.705 13.358 30.705 11.475 L 30.705 7.853 C 30.705 5.522 29.861 4.985 29.072 4.985 C 28.117 4.985 27.034 5.953 27.034 7.62 L 27.034 11.475 C 27.034 13.358 27.108 13.376 28.594 13.501 L 28.594 13.841 L 23.987 13.841 L 23.987 13.501 C 25.291 13.393 25.346 13.358 25.346 11.475 L 25.346 7.853 C 25.346 5.522 24.501 4.985 23.712 4.985 C 22.757 4.985 21.674 5.953 21.674 7.62 L 21.674 11.475 C 21.674 13.358 21.748 13.376 23.051 13.501 Z M 38.254 17.069 L 33.647 17.069 L 33.647 16.728 C 34.95 16.621 35.005 16.585 35.005 14.702 L 35.005 6.777 C 35.005 5.612 34.564 5.486 33.279 5.486 L 33.279 5.146 C 34.712 5.146 35.556 4.733 36.547 3.891 L 36.694 3.98 L 36.694 5.576 C 37.74 4.679 38.658 3.98 39.686 3.98 C 41.576 3.98 42.916 5.773 42.916 8.57 C 42.916 11.816 40.916 14.021 38.731 14.021 C 37.777 14.021 37.19 13.591 36.694 13.34 L 36.694 14.702 C 36.694 16.585 36.767 16.603 38.254 16.728 Z M 38.878 13.573 C 40.236 13.573 41.044 12.174 41.044 9.413 C 41.044 6.347 40.255 4.931 38.933 4.931 C 37.447 4.931 36.694 6.562 36.694 7.978 L 36.694 11.493 C 36.914 12.73 37.832 13.572 38.878 13.572 Z M 51.955 8.749 C 51.955 11.923 50.248 14.021 47.678 14.021 C 45.016 14.021 43.64 12.21 43.64 9.27 C 43.64 6.078 45.31 3.98 47.917 3.98 C 50.523 3.98 51.955 5.791 51.955 8.749 Z M 50.083 9.628 C 50.083 6.974 49.348 4.447 47.549 4.447 C 46.32 4.447 45.567 5.612 45.567 8.337 C 45.567 11.063 46.264 13.555 47.99 13.555 C 49.165 13.555 50.083 12.389 50.083 9.628 Z M 53.997 13.752 C 53.758 13.752 53.593 13.86 53.519 14.2 L 53.152 14.2 L 52.785 10.704 L 53.207 10.668 C 53.721 12.3 54.199 13.555 55.52 13.555 C 56.346 13.555 57.154 13.088 57.154 11.977 C 57.154 9.539 52.895 9.377 52.895 6.526 C 52.895 5.182 53.813 3.98 55.777 3.98 C 56.438 3.98 56.768 4.178 57.135 4.178 C 57.356 4.178 57.484 4.034 57.594 3.622 L 57.925 3.622 L 58.2 6.759 L 57.815 6.795 C 57.301 5.289 56.732 4.447 55.741 4.447 C 54.988 4.447 54.309 4.949 54.309 5.809 C 54.309 7.925 58.549 8.319 58.549 11.26 C 58.549 13.017 56.952 14.021 55.649 14.021 C 54.933 14.021 54.382 13.752 53.997 13.752 Z M 59.237 9.234 C 59.237 6.257 60.741 3.981 63.219 3.981 C 64.688 3.981 66.377 4.823 66.377 7.674 L 61.035 8.212 C 61.054 10.74 62.045 12.999 63.807 12.999 C 64.688 12.999 65.643 12.443 66.414 11.654 L 66.634 11.941 C 65.845 12.873 64.67 14.021 62.999 14.021 C 60.998 14.021 59.237 12.407 59.237 9.234 Z M 62.981 4.5 C 61.861 4.5 61.219 5.684 61.072 7.369 L 64.633 7.369 C 64.523 4.787 63.532 4.5 62.981 4.5 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:299163776}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(SVG,{className:\"framer-s4mo7\",\"data-framer-name\":\"accent-logo\",description:\"Social proof logos\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KsFfLUS8M\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106 24\"><path d=\"M 17.446 22.964 L 22.09 22.964 L 13.718 0.361 L 8.518 0.361 L 0.142 22.964 L 4.558 22.964 L 6.259 18.277 L 15.744 18.277 L 17.445 22.964 Z M 10.348 7.075 L 11.002 4.749 L 11.656 7.076 L 14.469 14.82 L 7.535 14.82 Z M 38.794 11.463 C 38.204 6.909 35.064 4.649 31.074 4.649 C 26.037 4.649 22.799 8.039 22.799 14.089 C 22.799 19.872 25.939 23.463 31.107 23.463 C 35.064 23.463 38.14 21.369 38.925 16.915 L 34.705 16.915 C 34.28 18.942 33.004 19.94 31.205 19.94 C 28.556 19.94 27.116 17.845 27.116 14.089 C 27.116 10.266 28.49 8.172 31.075 8.172 C 32.841 8.172 34.215 9.136 34.607 11.463 Z M 56.674 11.463 C 56.085 6.909 52.944 4.649 48.955 4.649 C 43.917 4.649 40.678 8.039 40.678 14.089 C 40.678 19.872 43.818 23.463 48.987 23.463 C 52.944 23.463 56.019 21.369 56.804 16.915 L 52.585 16.915 C 52.16 18.942 50.884 19.94 49.085 19.94 C 46.436 19.94 44.996 17.845 44.996 14.089 C 44.996 10.266 46.37 8.172 48.955 8.172 C 50.721 8.172 52.095 9.136 52.487 11.463 Z M 75.371 17.147 L 70.955 17.147 C 70.399 19.041 69.059 19.973 67.096 19.973 C 64.545 19.973 63.073 18.177 62.876 14.919 L 75.241 14.919 L 75.241 13.923 C 75.241 8.172 72.068 4.649 66.932 4.649 C 61.83 4.649 58.559 8.039 58.559 14.089 C 58.559 19.906 61.797 23.463 67.096 23.463 C 71.283 23.463 74.423 21.269 75.371 17.147 Z M 66.932 8.139 C 69.124 8.139 70.465 9.602 70.857 12.261 L 62.975 12.261 C 63.367 9.568 64.708 8.139 66.932 8.139 Z M 78.055 22.964 L 82.242 22.964 L 82.242 12.626 C 82.242 10.233 83.681 8.172 86.003 8.172 C 88.129 8.172 89.144 9.535 89.144 11.962 L 89.144 22.964 L 93.33 22.964 L 93.33 11.097 C 93.33 6.775 90.942 4.648 87.442 4.648 C 85.218 4.648 83.387 5.612 82.242 7.54 L 82.242 5.147 L 78.055 5.147 Z M 97.418 17.413 C 97.418 21.401 99.118 23.463 102.684 23.463 C 103.828 23.463 104.776 23.263 105.235 23.03 L 105.235 19.906 L 104.45 19.906 C 102.127 19.906 101.604 18.909 101.604 17.047 L 101.604 8.439 L 105.3 8.439 L 105.3 5.147 L 101.604 5.147 L 101.604 1.059 L 97.418 1.059 L 97.418 5.147 L 95.161 5.147 L 95.161 8.438 L 97.418 8.438 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:696736299,title:\"Logo\",transition:transition,withExternalLayout:true,...addPropertyOverrides({ZG17HNTl8:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 62 14\"><path d=\"M 10.204 13.396 L 12.921 13.396 L 8.024 0.211 L 4.982 0.211 L 0.083 13.396 L 2.666 13.396 L 3.661 10.662 L 9.209 10.662 L 10.204 13.396 Z M 6.053 4.127 L 6.435 2.77 L 6.818 4.127 L 8.463 8.645 L 4.407 8.645 Z M 22.691 6.687 C 22.346 4.03 20.509 2.712 18.175 2.712 C 15.229 2.712 13.335 4.69 13.335 8.219 C 13.335 11.592 15.172 13.686 18.195 13.686 C 20.509 13.686 22.308 12.465 22.767 9.867 L 20.299 9.867 C 20.051 11.049 19.304 11.631 18.252 11.631 C 16.702 11.631 15.861 10.41 15.861 8.219 C 15.861 5.989 16.664 4.767 18.176 4.767 C 19.209 4.767 20.012 5.329 20.242 6.687 Z M 33.149 6.687 C 32.804 4.03 30.967 2.712 28.634 2.712 C 25.687 2.712 23.793 4.69 23.793 8.219 C 23.793 11.592 25.63 13.686 28.653 13.686 C 30.967 13.686 32.766 12.465 33.225 9.867 L 30.757 9.867 C 30.509 11.049 29.762 11.631 28.71 11.631 C 27.16 11.631 26.319 10.41 26.319 8.219 C 26.319 5.989 27.122 4.767 28.634 4.767 C 29.667 4.767 30.47 5.329 30.7 6.687 Z M 44.085 10.003 L 41.502 10.003 C 41.177 11.108 40.393 11.651 39.245 11.651 C 37.753 11.651 36.892 10.603 36.777 8.703 L 44.009 8.703 L 44.009 8.122 C 44.009 4.767 42.153 2.712 39.149 2.712 C 36.165 2.712 34.252 4.69 34.252 8.219 C 34.252 11.612 36.145 13.686 39.245 13.686 C 41.694 13.686 43.53 12.407 44.085 10.003 Z M 39.149 4.748 C 40.431 4.748 41.216 5.601 41.445 7.152 L 36.834 7.152 C 37.064 5.582 37.848 4.748 39.149 4.748 Z M 45.655 13.396 L 48.104 13.396 L 48.104 7.365 C 48.104 5.969 48.945 4.767 50.304 4.767 C 51.547 4.767 52.141 5.562 52.141 6.978 L 52.141 13.396 L 54.589 13.396 L 54.589 6.473 C 54.589 3.952 53.193 2.712 51.145 2.712 C 49.844 2.712 48.773 3.274 48.104 4.398 L 48.104 3.003 L 45.655 3.003 Z M 56.98 10.157 C 56.98 12.484 57.975 13.686 60.06 13.686 C 60.73 13.686 61.284 13.57 61.552 13.434 L 61.552 11.612 L 61.093 11.612 C 59.735 11.612 59.429 11.03 59.429 9.944 L 59.429 4.923 L 61.591 4.923 L 61.591 3.003 L 59.429 3.003 L 59.429 0.618 L 56.98 0.618 L 56.98 3.003 L 55.66 3.003 L 55.66 4.922 L 56.98 4.922 Z\" fill=\"var(--token-0a481ec1-86f0-4e6d-86e6-79d7bce4ec1d, rgb(0, 0, 0))\"></path></svg>',svgContentId:1757230047}},baseVariant,gestureVariant)})]})})});});const css=['.framer-NZesh [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NZesh .framer-117bisv { display: block; }\",\".framer-NZesh .framer-nhgsue { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 88px; height: 30px; justify-content: flex-start; overflow: hidden; padding: 0px 80px 0px 0px; position: relative; width: min-content; }\",\".framer-NZesh .framer-1ymxjc1 { flex: none; height: 24px; position: relative; width: 112px; }\",\".framer-NZesh .framer-1hqh2wy { flex: none; height: 30px; position: relative; width: 108px; }\",\".framer-NZesh .framer-12myo9r { flex: none; height: 28px; position: relative; width: 75px; }\",\".framer-NZesh .framer-jejzyq { flex: none; height: 21px; position: relative; width: 127px; }\",\".framer-NZesh .framer-1dlitzd { flex: none; height: 29px; position: relative; width: 114px; }\",\".framer-NZesh .framer-s4mo7 { flex: none; height: 24px; position: relative; width: 106px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NZesh .framer-nhgsue { gap: 0px; } .framer-NZesh .framer-nhgsue > * { margin: 0px; margin-left: calc(88px / 2); margin-right: calc(88px / 2); } .framer-NZesh .framer-nhgsue > :first-child { margin-left: 0px; } .framer-NZesh .framer-nhgsue > :last-child { margin-right: 0px; } }\",\".framer-NZesh.framer-v-9suqjc .framer-nhgsue { gap: 40px; height: min-content; padding: 0px 40px 0px 0px; }\",\".framer-NZesh.framer-v-9suqjc .framer-1ymxjc1 { height: 14px; width: 66px; }\",\".framer-NZesh.framer-v-9suqjc .framer-1hqh2wy { height: 18px; width: 64px; }\",\".framer-NZesh.framer-v-9suqjc .framer-12myo9r { height: 16px; width: 44px; }\",\".framer-NZesh.framer-v-9suqjc .framer-jejzyq { height: 13px; width: 75px; }\",\".framer-NZesh.framer-v-9suqjc .framer-1dlitzd { height: 17px; width: 67px; }\",\".framer-NZesh.framer-v-9suqjc .framer-s4mo7 { height: 14px; width: 62px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NZesh.framer-v-9suqjc .framer-nhgsue { gap: 0px; } .framer-NZesh.framer-v-9suqjc .framer-nhgsue > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-NZesh.framer-v-9suqjc .framer-nhgsue > :first-child { margin-left: 0px; } .framer-NZesh.framer-v-9suqjc .framer-nhgsue > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 1162\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"ZG17HNTl8\":{\"layout\":[\"auto\",\"auto\"]}}}\n */ const FramerfcXMWuiBN=withCSS(Component,css,\"framer-NZesh\");export default FramerfcXMWuiBN;FramerfcXMWuiBN.displayName=\"Component / Logos\";FramerfcXMWuiBN.defaultProps={height:30,width:1162};addPropertyControls(FramerfcXMWuiBN,{variant:{options:[\"b38t2CaIq\",\"ZG17HNTl8\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfcXMWuiBN,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfcXMWuiBN\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ZG17HNTl8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"30\",\"framerIntrinsicWidth\":\"1162\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fcXMWuiBN.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import ComponentLogos from\"https://framerusercontent.com/modules/1vASyjRpkpXbW9OyOZae/H0NWaMMqcmDjryZvbdzo/fcXMWuiBN.js\";import ComponentSpacer from\"https://framerusercontent.com/modules/9ZGBI7UFzvD41J6N2Jj7/gHeeTmHEhPuekTBKegeC/Ku2z1TOKj.js\";const ComponentSpacerFonts=getFonts(ComponentSpacer);const ComponentLogosFonts=getFonts(ComponentLogos);const TickerFonts=getFonts(Ticker);const ComponentLogosControls=getPropertyControls(ComponentLogos);const cycleOrder=[\"Y6NrO7X22\",\"jHyt9IQNz\",\"q_Ojq9YT0\"];const serializationHash=\"framer-yVpc6\";const variantClassNames={jHyt9IQNz:\"framer-v-zv0zxr\",q_Ojq9YT0:\"framer-v-lv9l95\",Y6NrO7X22:\"framer-v-1tkn4x9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Large:\"b38t2CaIq\",Small:\"ZG17HNTl8\"};const humanReadableVariantMap={Desktop:\"Y6NrO7X22\",Mobile:\"q_Ojq9YT0\",Tablet:\"jHyt9IQNz\"};const getProps=({bottomSpacer,height,id,logoSize,topSpacer,width,...props})=>{return{...props,aJUrRLBzK:bottomSpacer??props.aJUrRLBzK??true,FF_dkfhe9:humanReadableEnumMap[logoSize]??logoSize??props.FF_dkfhe9??\"b38t2CaIq\",TeoJCh3kL:topSpacer??props.TeoJCh3kL??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"Y6NrO7X22\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,FF_dkfhe9,TeoJCh3kL,aJUrRLBzK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Y6NrO7X22\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tkn4x9\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Y6NrO7X22\",ref:refBinding,style:{...style},tabIndex:-1,...addPropertyOverrides({jHyt9IQNz:{\"data-framer-name\":\"Tablet\"},q_Ojq9YT0:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[TeoJCh3kL&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1req28-container\",layoutDependency:layoutDependency,layoutId:\"AXuLxUAWd-container\",nodeId:\"AXuLxUAWd\",rendersWithMotion:true,scopeId:\"In_wXVfye\",children:/*#__PURE__*/_jsx(ComponentSpacer,{height:\"100%\",id:\"AXuLxUAWd\",layoutId:\"AXuLxUAWd\",style:{width:\"100%\"},variant:\"VNihbZyAx\",width:\"100%\",...addPropertyOverrides({jHyt9IQNz:{variant:\"ot9MB4MnG\"},q_Ojq9YT0:{variant:\"fAGxrMtBV\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mj557z-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IexBG8vRX-container\",nodeId:\"IexBG8vRX\",rendersWithMotion:true,scopeId:\"In_wXVfye\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:0,height:\"100%\",hoverFactor:.5,id:\"IexBG8vRX\",layoutId:\"IexBG8vRX\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3emh55-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"wGy_V7MlY-container\",nodeId:\"wGy_V7MlY\",rendersWithMotion:true,scopeId:\"In_wXVfye\",children:/*#__PURE__*/_jsx(ComponentLogos,{height:\"100%\",id:\"wGy_V7MlY\",layoutId:\"wGy_V7MlY\",style:{height:\"100%\"},variant:FF_dkfhe9,width:\"100%\"})})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),aJUrRLBzK&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xw7n3t-container\",layoutDependency:layoutDependency,layoutId:\"JsfH2p4eQ-container\",nodeId:\"JsfH2p4eQ\",rendersWithMotion:true,scopeId:\"In_wXVfye\",children:/*#__PURE__*/_jsx(ComponentSpacer,{height:\"100%\",id:\"JsfH2p4eQ\",layoutId:\"JsfH2p4eQ\",style:{width:\"100%\"},variant:\"VNihbZyAx\",width:\"100%\",...addPropertyOverrides({jHyt9IQNz:{variant:\"ot9MB4MnG\"},q_Ojq9YT0:{variant:\"fAGxrMtBV\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yVpc6.framer-11r029n, .framer-yVpc6 .framer-11r029n { display: block; }\",\".framer-yVpc6.framer-1tkn4x9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1456px; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-yVpc6 .framer-1req28-container, .framer-yVpc6 .framer-xw7n3t-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-yVpc6 .framer-mj557z-container { flex: none; height: 30px; position: relative; width: 100%; }\",\".framer-yVpc6 .framer-3emh55-container { height: 30px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yVpc6.framer-1tkn4x9 { gap: 0px; } .framer-yVpc6.framer-1tkn4x9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yVpc6.framer-1tkn4x9 > :first-child { margin-top: 0px; } .framer-yVpc6.framer-1tkn4x9 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 350\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1456px\",null,null]},\"jHyt9IQNz\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1456px\",null,null]},\"q_Ojq9YT0\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1456px\",null,null]}}}\n * @framerVariables {\"FF_dkfhe9\":\"logoSize\",\"TeoJCh3kL\":\"topSpacer\",\"aJUrRLBzK\":\"bottomSpacer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIn_wXVfye=withCSS(Component,css,\"framer-yVpc6\");export default FramerIn_wXVfye;FramerIn_wXVfye.displayName=\"Section / Logos\";FramerIn_wXVfye.defaultProps={height:350,width:1200};addPropertyControls(FramerIn_wXVfye,{variant:{options:[\"Y6NrO7X22\",\"jHyt9IQNz\",\"q_Ojq9YT0\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},FF_dkfhe9:ComponentLogosControls?.[\"variant\"]&&{...ComponentLogosControls[\"variant\"],defaultValue:\"b38t2CaIq\",description:undefined,hidden:undefined,title:\"Logo Size\"},TeoJCh3kL:{defaultValue:true,title:\"Top Spacer\",type:ControlType.Boolean},aJUrRLBzK:{defaultValue:true,title:\"Bottom Spacer\",type:ControlType.Boolean}});addFonts(FramerIn_wXVfye,[{explicitInter:true,fonts:[]},...ComponentSpacerFonts,...ComponentLogosFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIn_wXVfye\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"FF_dkfhe9\\\":\\\"logoSize\\\",\\\"TeoJCh3kL\\\":\\\"topSpacer\\\",\\\"aJUrRLBzK\\\":\\\"bottomSpacer\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1456px\\\",null,null]},\\\"jHyt9IQNz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1456px\\\",null,null]},\\\"q_Ojq9YT0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1456px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"350\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./In_wXVfye.map"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "c", "i", "h", "d", "f", "l", "g", "glide", "r", "o", "u", "isOutOfBounds", "nearestBoundary", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "t", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "t", "n", "createGeneratorEasing", "e", "t", "n", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "t", "n", "dispatchViewEvent", "se", "o", "i", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "SVG", "css", "FramerfcXMWuiBN", "withCSS", "fcXMWuiBN_default", "addPropertyControls", "ControlType", "addFonts", "ComponentSpacerFonts", "getFonts", "Ku2z1TOKj_default", "ComponentLogosFonts", "fcXMWuiBN_default", "TickerFonts", "Ticker", "ComponentLogosControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "bottomSpacer", "height", "id", "logoSize", "topSpacer", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "FF_dkfhe9", "TeoJCh3kL", "aJUrRLBzK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerIn_wXVfye", "withCSS", "In_wXVfye_default", "addPropertyControls", "ControlType", "addFonts"]
}
