{
  "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/yevww260oHitAFGt4Ffa/Ticker.js", "ssg:https://framerusercontent.com/modules/SIG34MqWLTBGqyj7z6IG/GmkMcIzvt8DcUDufdZ7H/n2ois93pz.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,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,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)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];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);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"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_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* 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,MozMaskImage: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?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},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\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js\";const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const TickerFonts=getFonts(Ticker);const cycleOrder=[\"E4oeXzt6W\",\"iOhLm_9pG\"];const serializationHash=\"framer-QDSLx\";const variantClassNames={E4oeXzt6W:\"framer-v-ho1i75\",iOhLm_9pG:\"framer-v-1j3bhby\"};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 transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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 humanReadableVariantMap={\"2 lines\":\"iOhLm_9pG\",Horizontal:\"E4oeXzt6W\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"E4oeXzt6W\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"E4oeXzt6W\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ho1i75\",className,classNames),\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"E4oeXzt6W\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({iOhLm_9pG:{\"data-framer-name\":\"2 lines\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l8w5iw\",layoutDependency:layoutDependency,layoutId:\"RYV2x8hrT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qsfhh9\",\"data-framer-name\":\"Frame 48041\",layoutDependency:layoutDependency,layoutId:\"QNvjwbMW4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(44, 42, 54))\"},children:\"Trusted by the\"})}),className:\"framer-gerxy9\",\"data-framer-name\":\"Trusted by the\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"OIuG0XSQ5\",style:{\"--extracted-r6o4lv\":\"rgb(44, 42, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-p1n40d\",\"data-framer-appear-id\":\"p1n40d\",\"data-framer-name\":\"Frame 48042\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"Pg9mjQDsm\",optimized:true,style:{backgroundColor:\"rgb(220, 209, 255)\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(44, 42, 54))\"},children:\"fastest\"})}),className:\"framer-57smf4\",\"data-framer-name\":\"fastest\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"xUOAAyvtQ\",style:{\"--extracted-r6o4lv\":\"rgb(44, 42, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(44, 42, 54))\"},children:\"growing B2B companies\"})}),className:\"framer-pv3wf5\",\"data-framer-name\":\"growing B2B companies\",fonts:[\"GF;Plus Jakarta Sans-500\"],layoutDependency:layoutDependency,layoutId:\"MvjTe1neK\",style:{\"--extracted-r6o4lv\":\"rgb(44, 42, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-583fpc-container\",layoutDependency:layoutDependency,layoutId:\"o05tgXv3K-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:60,height:\"100%\",hoverFactor:.7,id:\"o05tgXv3K\",layoutId:\"o05tgXv3K\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xoyt7e\",\"data-framer-name\":\"GuideFlow\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OaDEB_AnO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 107 24\"><g transform=\"translate(0.586 0.013)\" id=\"ss10440543667_1\"><path d=\"M 0 23.077 L 0 0 L 106.07 0 L 106.07 23.077 Z\" fill=\"transparent\"></path><path d=\"M 6.896 0 L 16.833 0 C 18.662 0 20.416 0.707 21.709 1.964 C 23.003 3.222 23.729 4.928 23.729 6.707 L 23.729 16.37 C 23.729 18.149 23.003 19.855 21.709 21.113 C 20.416 22.37 18.662 23.077 16.833 23.077 L 6.896 23.077 C 5.067 23.077 3.313 22.37 2.02 21.113 C 0.727 19.855 0 18.149 0 16.37 L 0 6.707 C 0 4.928 0.727 3.222 2.02 1.964 C 3.313 0.707 5.067 0 6.896 0 Z\" fill=\"rgb(153,151,163)\"></path><path d=\"M 11.865 15.293 C 13.998 15.293 15.727 13.611 15.727 11.537 C 15.727 9.463 13.998 7.781 11.865 7.781 C 9.732 7.781 8.003 9.463 8.003 11.537 C 8.003 13.611 9.732 15.293 11.865 15.293 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 11.867 5.088 C 10.555 5.088 9.273 5.466 8.182 6.175 C 7.091 6.884 6.241 7.892 5.739 9.07 C 5.237 10.249 5.105 11.546 5.361 12.798 C 5.617 14.049 6.249 15.199 7.177 16.101 C 8.104 17.003 9.286 17.617 10.573 17.866 C 11.86 18.115 13.194 17.987 14.406 17.499 C 15.618 17.011 16.654 16.184 17.383 15.123 C 18.112 14.062 18.501 12.815 18.501 11.539 C 18.499 9.829 17.799 8.189 16.556 6.98 C 15.312 5.77 13.626 5.09 11.867 5.088 Z M 11.867 4.028 C 13.395 4.028 14.888 4.468 16.158 5.294 C 17.429 6.119 18.419 7.292 19.003 8.665 C 19.588 10.037 19.741 11.547 19.443 13.005 C 19.145 14.462 18.409 15.8 17.329 16.851 C 16.249 17.901 14.872 18.617 13.374 18.906 C 11.876 19.196 10.323 19.047 8.911 18.479 C 7.5 17.91 6.294 16.948 5.445 15.712 C 4.596 14.477 4.143 13.025 4.143 11.539 C 4.143 9.547 4.957 7.636 6.406 6.228 C 7.854 4.819 9.819 4.028 11.867 4.028 Z\" fill=\"rgb(255,255,255)\" opacity=\"0.8\"></path><path d=\"M 104.853 17.187 C 104.693 17.19 104.533 17.16 104.384 17.1 C 104.237 17.04 104.102 16.952 103.989 16.84 C 103.874 16.732 103.782 16.602 103.721 16.457 C 103.66 16.313 103.631 16.158 103.635 16.002 C 103.631 15.847 103.661 15.693 103.721 15.55 C 103.782 15.407 103.874 15.278 103.989 15.172 C 104.103 15.061 104.237 14.973 104.385 14.913 C 104.534 14.854 104.693 14.825 104.853 14.827 C 105.013 14.825 105.17 14.855 105.317 14.915 C 105.464 14.974 105.596 15.061 105.708 15.172 C 105.823 15.279 105.915 15.408 105.978 15.55 C 106.041 15.693 106.073 15.847 106.073 16.002 C 106.073 16.158 106.042 16.313 105.978 16.457 C 105.916 16.601 105.823 16.731 105.708 16.84 C 105.597 16.951 105.464 17.039 105.318 17.099 C 105.171 17.159 105.013 17.189 104.853 17.187 Z\" fill=\"rgb(153,151,163)\"></path><path d=\"M 37.119 9.561 C 36.963 9.012 36.628 8.527 36.163 8.181 C 35.707 7.847 35.137 7.68 34.454 7.68 C 33.877 7.671 33.311 7.826 32.824 8.127 C 32.328 8.449 31.938 8.904 31.703 9.437 C 31.431 10.011 31.295 10.714 31.295 11.544 C 31.295 12.794 31.592 13.754 32.185 14.424 C 32.778 15.094 33.549 15.429 34.498 15.429 C 35.351 15.429 36.031 15.197 36.537 14.734 C 37.043 14.27 37.303 13.645 37.318 12.859 L 34.703 12.859 L 34.703 11.296 L 39.308 11.296 L 39.308 12.622 C 39.308 13.57 39.101 14.388 38.687 15.076 C 38.285 15.753 37.693 16.304 36.98 16.666 C 36.256 17.037 35.425 17.223 34.487 17.223 C 33.445 17.223 32.529 16.994 31.739 16.536 C 30.942 16.071 30.3 15.392 29.891 14.58 C 29.449 13.734 29.229 12.729 29.229 11.565 C 29.229 10.38 29.456 9.363 29.91 8.515 C 30.327 7.707 30.97 7.031 31.766 6.565 C 32.573 6.106 33.492 5.871 34.426 5.886 C 35.212 5.875 35.99 6.035 36.703 6.354 C 37.361 6.65 37.937 7.094 38.382 7.65 C 38.824 8.207 39.11 8.865 39.213 9.561 Z M 46.476 13.591 L 46.476 8.795 L 48.482 8.795 L 48.482 17.072 L 46.537 17.072 L 46.537 15.601 L 46.449 15.601 C 46.258 16.063 45.929 16.459 45.504 16.738 C 45.066 17.033 44.528 17.18 43.888 17.18 C 43.054 17.18 42.372 16.91 41.844 16.369 C 41.316 15.828 41.052 15.06 41.052 14.065 L 41.052 8.795 L 43.058 8.795 L 43.058 13.764 C 43.058 14.288 43.206 14.705 43.501 15.014 C 43.797 15.323 44.185 15.477 44.665 15.477 C 44.965 15.476 45.26 15.404 45.524 15.267 C 45.806 15.122 46.042 14.905 46.207 14.639 C 46.387 14.361 46.476 14.012 46.476 13.591 Z M 50.387 17.072 L 50.387 8.795 L 52.393 8.795 L 52.393 17.072 Z M 51.396 7.621 C 51.09 7.627 50.795 7.515 50.573 7.311 C 50.465 7.217 50.378 7.102 50.319 6.973 C 50.261 6.845 50.231 6.705 50.232 6.564 C 50.231 6.423 50.26 6.282 50.319 6.153 C 50.378 6.023 50.464 5.907 50.573 5.813 C 50.795 5.608 51.09 5.497 51.396 5.503 C 51.7 5.497 51.993 5.609 52.213 5.813 C 52.322 5.907 52.409 6.023 52.467 6.153 C 52.526 6.282 52.556 6.423 52.554 6.564 C 52.555 6.705 52.526 6.845 52.467 6.973 C 52.408 7.102 52.322 7.217 52.213 7.311 C 51.993 7.515 51.7 7.626 51.396 7.621 Z M 57.456 17.218 C 56.82 17.227 56.196 17.052 55.661 16.716 C 55.133 16.382 54.716 15.897 54.409 15.261 C 54.102 14.625 53.949 13.853 53.949 12.944 C 53.949 12.025 54.105 11.249 54.417 10.616 C 54.729 9.984 55.151 9.505 55.683 9.178 C 56.215 8.851 56.833 8.681 57.462 8.687 C 57.964 8.687 58.375 8.769 58.695 8.933 C 58.988 9.076 59.248 9.276 59.459 9.52 C 59.629 9.718 59.775 9.934 59.894 10.164 L 59.977 10.164 L 59.977 6.036 L 61.989 6.036 L 61.989 17.072 L 60.016 17.072 L 60.016 15.768 L 59.894 15.768 C 59.771 15.997 59.621 16.212 59.446 16.407 C 59.229 16.647 58.965 16.842 58.67 16.98 C 58.349 17.139 57.944 17.218 57.456 17.218 Z M 58.016 15.617 C 58.655 15.617 59.148 15.37 59.495 14.876 C 59.843 14.382 60.016 13.735 60.016 12.934 C 60.016 12.129 59.845 11.487 59.501 11.007 C 59.157 10.528 58.662 10.288 58.016 10.288 C 57.347 10.288 56.843 10.536 56.503 11.032 C 56.164 11.527 55.994 12.161 55.994 12.934 C 55.994 13.71 56.166 14.351 56.509 14.857 C 56.853 15.364 57.355 15.617 58.016 15.617 Z M 67.745 17.234 C 66.892 17.234 66.156 17.059 65.537 16.711 C 64.922 16.367 64.425 15.853 64.11 15.235 C 63.778 14.599 63.611 13.848 63.611 12.982 C 63.611 12.131 63.778 11.383 64.11 10.738 C 64.421 10.115 64.909 9.592 65.515 9.229 C 66.119 8.868 66.827 8.687 67.64 8.687 C 68.311 8.681 68.974 8.832 69.573 9.126 C 70.177 9.431 70.673 9.907 70.995 10.49 C 71.351 11.106 71.529 11.899 71.529 12.869 L 71.529 13.467 L 65.601 13.467 C 65.612 14.175 65.814 14.726 66.207 15.122 C 66.601 15.517 67.122 15.714 67.773 15.714 C 68.165 15.724 68.553 15.63 68.895 15.442 C 69.209 15.262 69.449 14.981 69.573 14.647 L 71.446 14.852 C 71.276 15.561 70.832 16.18 70.208 16.582 C 69.559 17.016 68.739 17.234 67.745 17.234 Z M 65.606 12.152 L 69.607 12.152 C 69.603 11.588 69.423 11.123 69.066 10.757 C 68.71 10.39 68.244 10.207 67.667 10.207 C 67.069 10.207 66.583 10.399 66.21 10.784 C 65.844 11.153 65.629 11.64 65.606 12.152 Z M 77.435 8.795 L 77.435 10.304 L 75.668 10.304 L 75.668 17.072 L 73.662 17.072 L 73.662 10.304 L 72.404 10.304 L 72.404 8.795 L 73.662 8.795 L 73.662 8.014 C 73.662 7.457 73.781 6.994 74.019 6.624 C 74.249 6.261 74.583 5.972 74.98 5.794 C 75.401 5.607 75.859 5.513 76.321 5.519 C 76.632 5.516 76.942 5.543 77.246 5.6 C 77.449 5.637 77.649 5.685 77.845 5.745 L 77.44 7.254 C 77.359 7.229 77.254 7.203 77.125 7.176 C 76.982 7.148 76.838 7.134 76.692 7.136 C 76.319 7.136 76.055 7.223 75.9 7.397 C 75.745 7.571 75.667 7.82 75.667 8.143 L 75.667 8.795 Z M 80.858 6.037 L 80.858 17.072 L 78.853 17.072 L 78.853 6.037 Z M 86.476 17.234 C 85.645 17.234 84.924 17.056 84.315 16.7 C 83.705 16.344 83.213 15.825 82.899 15.205 C 82.565 14.564 82.398 13.818 82.398 12.966 C 82.398 12.111 82.565 11.363 82.899 10.722 C 83.214 10.101 83.705 9.581 84.315 9.224 C 84.924 8.866 85.645 8.687 86.476 8.687 C 87.307 8.687 88.028 8.866 88.639 9.224 C 89.25 9.58 89.741 10.1 90.055 10.722 C 90.387 11.363 90.554 12.111 90.554 12.966 C 90.554 13.818 90.387 14.564 90.055 15.205 C 89.742 15.826 89.25 16.345 88.639 16.7 C 88.028 17.056 87.307 17.234 86.476 17.234 Z M 86.487 15.671 C 86.897 15.685 87.298 15.558 87.62 15.31 C 87.934 15.051 88.168 14.713 88.296 14.332 C 88.45 13.891 88.526 13.427 88.52 12.961 C 88.526 12.493 88.451 12.027 88.296 11.584 C 88.167 11.202 87.933 10.862 87.62 10.601 C 87.3 10.35 86.897 10.22 86.487 10.234 C 86.073 10.22 85.667 10.35 85.342 10.601 C 85.026 10.861 84.789 11.201 84.658 11.584 C 84.501 12.027 84.425 12.492 84.431 12.961 C 84.425 13.427 84.502 13.891 84.658 14.332 C 84.789 14.713 85.025 15.052 85.342 15.31 C 85.668 15.558 86.074 15.685 86.487 15.671 Z M 93.617 17.072 L 91.212 8.795 L 93.256 8.795 L 94.753 14.615 L 94.83 14.615 L 96.359 8.795 L 98.382 8.795 L 99.911 14.582 L 99.995 14.582 L 101.469 8.795 L 103.518 8.795 L 101.108 17.072 L 99.02 17.072 L 97.423 11.479 L 97.307 11.479 L 95.711 17.072 Z\" fill=\"rgb(121,119,131)\"></path></g></svg>',svgContentId:10440543667,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kjmus5\",\"data-framer-name\":\"Welcome to the Jungle svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wf8aqi0pG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 94 31\"><g transform=\"translate(0.309 0.512)\" id=\"ss12563455733_1\"><path d=\"M 0 30.162 L 0 0 L 93.446 0 L 93.446 30.162 Z\" fill=\"transparent\"></path><path d=\"M 78.056 15.403 C 78.418 15.403 79.262 16.288 79.262 16.931 C 79.262 16.971 79.222 17.011 79.181 17.052 L 79.141 17.052 L 76.85 17.052 C 78.177 17.615 78.86 18.741 78.86 19.987 C 78.86 22.119 77.091 23.687 74.68 23.687 C 73.916 23.687 73.273 23.607 72.751 23.446 C 72.63 23.607 72.59 23.808 72.59 24.009 C 72.59 24.451 72.992 24.693 73.715 24.693 L 76.931 24.693 C 78.458 24.693 79.342 25.296 79.342 26.342 C 79.342 28.393 75.122 30.162 72.791 30.162 C 71.424 30.162 70.46 29.559 70.46 28.674 C 70.46 28.151 70.821 27.508 71.545 26.985 C 70.821 26.663 70.42 26.141 70.42 25.376 C 70.42 24.492 71.223 23.647 72.429 23.325 C 70.942 22.722 70.379 21.475 70.379 20.269 C 70.379 18.178 72.188 16.609 74.64 16.609 C 75.283 16.609 75.845 16.69 76.368 16.851 C 76.89 16.127 77.413 15.684 77.855 15.443 C 77.935 15.403 78.016 15.403 78.056 15.403 Z M 71.746 27.065 C 72.429 28.594 73.997 28.956 75.202 28.956 C 76.288 28.956 77.051 28.553 77.051 27.99 C 77.051 27.508 76.689 27.267 75.886 27.267 L 75.805 27.267 L 73.193 27.267 C 72.63 27.267 72.148 27.186 71.746 27.065 Z M 50.243 14.116 C 50.364 14.116 50.364 14.237 50.283 14.277 C 49.922 14.679 49.6 15.121 49.6 15.926 L 49.6 23.486 C 49.6 26.744 48.033 28.232 44.576 28.232 C 44.415 28.232 44.214 28.232 44.174 28.192 C 44.054 28.151 44.013 28.031 44.134 27.95 C 45.501 27.347 46.304 26.1 46.345 24.411 L 46.345 24.291 L 46.345 16.046 C 46.345 15.161 46.023 14.679 45.621 14.277 C 45.581 14.237 45.581 14.156 45.661 14.116 L 45.701 14.116 Z M 89.31 16.649 C 91.399 16.649 92.887 17.695 92.887 19.223 C 92.887 20.912 90.998 22.079 88.184 22.079 C 87.943 22.079 87.743 22.079 87.581 22.038 C 87.983 23.205 88.867 24.009 90.314 24.009 C 92.123 24.009 93.007 22.803 93.208 22.441 C 93.289 22.28 93.45 22.32 93.409 22.481 C 93.289 23.567 91.963 26.261 88.747 26.261 C 86.094 26.261 84.245 24.411 84.245 21.556 C 84.286 18.58 86.255 16.649 89.31 16.649 Z M 59.407 16.649 C 59.447 16.649 59.487 16.69 59.487 16.73 L 59.487 16.77 L 59.487 23.687 C 59.487 24.411 59.728 25.216 60.05 25.819 C 60.09 25.859 60.05 25.939 60.01 25.939 L 59.97 25.939 L 56.473 25.939 C 56.433 25.939 56.393 25.899 56.352 25.859 L 56.352 25.819 L 56.352 24.13 C 55.79 25.497 54.785 26.261 53.499 26.261 C 52.012 26.261 51.127 25.135 51.127 23.165 L 51.127 19.465 C 51.127 18.379 50.846 17.936 50.645 17.735 C 50.605 17.695 50.605 17.615 50.645 17.574 L 50.685 17.574 L 53.901 16.69 C 54.061 16.649 54.142 16.609 54.182 16.609 C 54.262 16.609 54.262 16.649 54.303 16.69 L 54.303 16.73 L 54.303 22.963 C 54.303 23.888 54.624 24.371 55.227 24.371 C 55.95 24.371 56.312 23.728 56.352 22.481 L 56.352 22.4 L 56.352 19.505 C 56.352 18.419 56.071 17.977 55.87 17.776 C 55.83 17.735 55.83 17.655 55.87 17.615 L 55.91 17.615 L 59.126 16.73 C 59.286 16.649 59.367 16.649 59.407 16.649 Z M 39.673 16.649 C 41.763 16.649 43.25 17.695 43.25 19.223 C 43.25 20.912 41.361 22.079 38.547 22.079 C 38.306 22.079 38.105 22.079 37.944 22.038 C 38.346 23.205 39.231 24.009 40.677 24.009 C 42.486 24.009 43.37 22.803 43.571 22.441 C 43.652 22.28 43.812 22.32 43.772 22.481 C 43.652 23.567 42.325 26.261 39.11 26.261 C 36.457 26.261 34.609 24.411 34.609 21.556 C 34.649 18.58 36.618 16.649 39.673 16.649 Z M 4.465 14.719 C 4.545 14.719 4.585 14.759 4.585 14.84 C 4.585 14.96 4.505 15.765 4.505 16.891 L 4.505 17.011 L 6.876 17.011 C 6.956 17.011 6.997 17.052 6.997 17.092 L 6.635 17.776 C 6.595 17.816 6.595 17.856 6.555 17.896 L 6.514 17.896 L 4.505 17.896 L 4.505 23.607 C 4.505 24.331 4.907 24.773 5.59 24.773 C 6.112 24.773 6.595 24.492 6.997 24.009 C 6.635 23.285 6.474 22.441 6.474 21.596 C 6.474 18.741 8.524 16.649 11.337 16.649 C 14.553 16.649 16.201 18.741 16.201 21.234 C 16.201 24.17 14.191 26.301 11.418 26.301 C 9.288 26.301 7.961 25.537 7.238 24.411 C 6.595 25.618 5.469 26.261 4.022 26.261 C 2.334 26.261 1.37 25.376 1.33 23.848 L 1.33 17.856 L 0.124 17.856 C 0.043 17.856 0.003 17.816 0.003 17.776 C 0.003 17.695 0.043 17.655 0.204 17.574 L 0.244 17.534 L 4.223 14.88 C 4.344 14.759 4.424 14.719 4.465 14.719 Z M 22.35 14.719 C 22.43 14.719 22.471 14.759 22.471 14.84 C 22.471 14.96 22.39 15.765 22.39 16.891 L 22.39 17.011 L 24.601 17.011 C 24.681 17.011 24.681 17.052 24.681 17.092 L 24.681 17.132 L 24.4 17.816 C 24.4 17.856 24.36 17.896 24.319 17.896 L 24.279 17.896 L 22.43 17.896 L 22.43 23.607 C 22.43 24.451 22.792 24.813 23.516 24.813 C 23.958 24.813 24.279 24.693 24.48 24.492 C 24.52 24.451 24.561 24.411 24.601 24.411 C 24.681 24.411 24.681 24.492 24.641 24.572 C 24.239 25.658 23.234 26.221 21.827 26.221 C 20.139 26.221 19.295 25.336 19.255 23.808 L 19.255 23.728 L 19.255 17.856 L 18.009 17.856 C 17.929 17.856 17.889 17.816 17.889 17.776 C 17.889 17.695 17.929 17.655 18.09 17.574 L 18.13 17.534 L 22.109 14.88 C 22.189 14.759 22.31 14.719 22.35 14.719 Z M 28.58 13.432 C 28.66 13.432 28.7 13.472 28.7 13.553 C 28.7 13.633 28.62 14.035 28.62 14.679 L 28.62 18.66 C 29.183 17.373 30.147 16.649 31.433 16.649 C 32.92 16.649 33.805 17.776 33.805 19.746 L 33.805 19.867 L 33.805 23.687 C 33.805 24.411 34.046 25.216 34.367 25.819 C 34.408 25.859 34.367 25.939 34.327 25.939 L 34.287 25.939 L 30.147 25.939 C 30.067 25.939 30.027 25.899 30.067 25.819 C 30.388 25.175 30.589 24.532 30.63 23.808 L 30.63 23.687 L 30.63 19.947 C 30.63 19.022 30.308 18.54 29.705 18.54 C 28.982 18.54 28.62 19.183 28.58 20.43 L 28.58 20.51 L 28.58 23.647 C 28.58 24.371 28.821 25.175 29.142 25.779 C 29.183 25.819 29.142 25.899 29.102 25.899 L 29.062 25.899 L 24.962 25.899 C 24.882 25.899 24.842 25.859 24.882 25.779 C 25.204 25.135 25.405 24.492 25.445 23.768 L 25.445 23.647 L 25.445 17.132 C 25.445 16.288 25.163 15.604 24.721 15.041 L 24.641 14.96 L 24.48 14.719 C 24.44 14.679 24.44 14.598 24.48 14.558 L 24.52 14.558 L 28.298 13.472 C 28.459 13.432 28.54 13.432 28.58 13.432 Z M 67.043 16.649 C 68.531 16.649 69.415 17.776 69.415 19.746 L 69.415 19.867 L 69.415 23.687 C 69.415 24.411 69.656 25.216 69.977 25.819 C 70.018 25.899 69.977 25.939 69.937 25.939 L 69.897 25.939 L 65.757 25.939 C 65.677 25.939 65.637 25.899 65.677 25.819 C 65.998 25.175 66.199 24.532 66.24 23.808 L 66.24 23.687 L 66.24 19.947 C 66.24 19.022 65.918 18.54 65.315 18.54 C 64.632 18.54 64.23 19.183 64.19 20.43 L 64.19 23.687 C 64.19 24.411 64.431 25.216 64.752 25.819 C 64.793 25.859 64.752 25.939 64.712 25.939 L 64.672 25.939 L 60.532 25.939 C 60.452 25.939 60.412 25.899 60.452 25.819 C 60.814 25.175 61.015 24.532 61.015 23.808 L 61.015 23.687 L 61.015 19.505 C 61.015 18.419 60.733 18.017 60.532 17.776 C 60.492 17.735 60.492 17.655 60.532 17.615 L 60.573 17.615 L 63.788 16.73 C 63.949 16.69 64.029 16.649 64.069 16.649 C 64.15 16.649 64.19 16.69 64.19 16.77 C 64.19 17.132 64.15 17.936 64.15 18.781 C 64.752 17.414 65.757 16.649 67.043 16.649 Z M 83.281 13.432 C 83.361 13.432 83.402 13.472 83.402 13.553 C 83.402 13.633 83.321 14.035 83.321 14.679 L 83.321 14.759 L 83.321 23.687 C 83.321 24.411 83.562 25.216 83.884 25.819 C 83.924 25.899 83.884 25.939 83.843 25.939 L 83.804 25.939 L 79.664 25.939 C 79.583 25.939 79.543 25.899 79.583 25.819 C 79.905 25.175 80.106 24.532 80.146 23.808 L 80.146 23.687 L 80.146 17.132 C 80.146 16.288 79.865 15.604 79.423 15.041 L 79.342 14.96 L 79.181 14.719 C 79.141 14.679 79.141 14.598 79.181 14.558 L 82.959 13.472 C 83.16 13.432 83.241 13.432 83.281 13.432 Z M 11.177 17.172 L 11.136 17.172 C 10.172 17.213 9.85 18.701 10.011 21.516 C 10.172 24.331 10.614 25.779 11.579 25.738 C 12.543 25.698 12.865 24.17 12.744 21.395 C 12.583 18.701 12.141 17.213 11.257 17.172 Z M 74.479 17.172 L 74.439 17.172 C 73.715 17.213 73.394 18.258 73.514 20.229 C 73.635 22.28 74.117 23.205 74.841 23.205 C 75.644 23.165 75.886 22.038 75.765 20.148 C 75.644 18.258 75.243 17.213 74.519 17.213 Z M 89.069 17.172 C 87.903 17.172 87.381 19.062 87.381 20.55 C 87.381 20.953 87.42 21.355 87.501 21.717 C 88.988 21.395 89.832 20.349 89.832 18.66 C 89.873 17.655 89.551 17.172 89.069 17.172 Z M 39.432 17.172 C 38.266 17.172 37.744 19.062 37.744 20.55 C 37.744 20.953 37.784 21.355 37.864 21.717 C 39.351 21.395 40.195 20.349 40.195 18.66 C 40.235 17.655 39.914 17.172 39.432 17.172 Z M 25.163 1.609 C 25.807 2.694 26.409 4.384 25.606 7.4 C 25.163 9.049 24.078 12.306 20.381 12.829 C 19.657 12.95 19.416 12.668 19.175 12.306 C 18.692 11.622 18.049 10.134 18.331 8.244 C 18.451 7.36 18.652 6.756 18.894 5.992 L 18.773 6.234 C 17.647 8.325 16.442 10.738 15.276 12.507 L 15.156 12.708 C 14.995 12.909 14.874 12.95 14.794 12.909 C 14.714 12.869 14.754 12.708 14.794 12.547 C 16.16 6.998 12.463 2.453 11.337 1.126 C 11.257 1.046 11.217 0.804 11.458 0.764 L 11.498 0.764 L 15.919 0.764 C 16.08 0.764 16.08 0.804 16.16 0.845 C 16.442 1.005 17.969 4.303 17.326 7.48 C 18.813 4.786 20.059 2.976 20.099 2.936 C 20.18 2.775 20.3 2.775 20.381 2.815 C 20.501 2.855 20.501 2.976 20.461 3.056 C 19.938 5.55 20.3 8.164 21.104 9.531 C 21.868 10.818 23.395 11.14 23.958 9.853 C 25.324 6.676 21.868 2.855 21.225 2.172 C 20.903 1.81 21.024 1.568 21.104 1.488 C 22.511 0 24.48 0.483 25.163 1.609 Z M 53.579 3.217 C 56.794 3.217 58.442 5.309 58.442 7.802 C 58.442 10.738 56.433 12.869 53.659 12.869 C 50.846 12.869 49.439 11.502 48.957 9.813 C 48.475 11.059 47.189 12.869 44.576 12.869 C 41.883 12.869 40.115 10.979 40.115 8.164 C 40.115 5.027 42.285 3.258 44.817 3.258 C 46.304 3.258 47.51 3.901 48.394 5.429 C 48.595 5.831 48.595 6.153 48.234 6.274 L 48.193 6.274 L 45.701 6.998 C 45.581 7.038 45.501 6.998 45.581 6.756 C 45.943 5.107 45.661 3.74 44.777 3.74 C 43.732 3.74 43.25 5.67 43.25 7.078 C 43.25 9.089 44.255 10.577 46.184 10.577 C 47.631 10.577 48.475 9.773 48.877 9.25 C 48.796 8.888 48.796 8.526 48.796 8.164 C 48.716 5.309 50.806 3.217 53.579 3.217 Z M 31.192 3.217 C 33.282 3.217 34.769 4.263 34.769 5.791 C 34.769 7.48 32.88 8.646 30.067 8.646 C 29.826 8.646 29.625 8.646 29.464 8.606 C 29.866 9.773 30.75 10.577 32.197 10.577 C 34.006 10.577 34.89 9.37 35.091 9.008 C 35.171 8.848 35.332 8.888 35.292 9.049 C 35.171 10.134 33.845 12.829 30.63 12.829 C 27.977 12.829 26.128 10.979 26.128 8.124 C 26.168 5.188 28.138 3.217 31.192 3.217 Z M 78.498 3.217 C 80.588 3.217 82.075 4.263 82.075 5.791 C 82.075 7.48 80.186 8.646 77.373 8.646 C 77.172 8.646 76.971 8.646 76.77 8.606 C 77.172 9.773 78.056 10.577 79.503 10.577 C 81.312 10.577 82.196 9.37 82.397 9.008 C 82.477 8.848 82.638 8.888 82.598 9.049 C 82.477 10.134 81.151 12.829 77.935 12.829 C 75.283 12.829 73.434 10.979 73.434 8.124 C 73.474 5.188 75.444 3.217 78.498 3.217 Z M 70.259 3.217 C 71.666 3.217 72.51 4.343 72.55 6.193 L 72.55 10.215 C 72.55 10.939 72.751 11.743 73.032 12.346 C 73.072 12.427 73.032 12.467 72.992 12.467 L 72.952 12.467 L 68.932 12.467 C 68.852 12.467 68.812 12.427 68.852 12.346 C 69.174 11.703 69.334 11.059 69.334 10.376 L 69.334 10.215 L 69.334 6.394 C 69.334 5.59 69.013 5.107 68.531 5.107 C 67.928 5.107 67.526 5.751 67.526 6.877 L 67.526 10.215 C 67.526 10.939 67.767 11.743 68.008 12.346 C 68.048 12.427 68.008 12.467 67.968 12.467 L 67.928 12.467 L 63.908 12.467 C 63.828 12.467 63.788 12.427 63.828 12.346 C 64.15 11.703 64.31 11.059 64.31 10.376 L 64.31 10.215 L 64.31 6.394 C 64.31 5.59 63.989 5.107 63.506 5.107 C 62.904 5.107 62.502 5.751 62.502 6.877 L 62.502 6.957 L 62.502 10.215 C 62.502 10.939 62.703 11.743 62.984 12.346 C 63.024 12.427 62.984 12.467 62.944 12.467 L 62.904 12.467 L 58.804 12.467 C 58.724 12.467 58.684 12.427 58.724 12.346 C 59.085 11.703 59.286 11.059 59.286 10.336 L 59.286 10.215 L 59.286 6.073 C 59.286 4.987 59.005 4.585 58.804 4.343 C 58.764 4.303 58.764 4.223 58.804 4.182 L 58.844 4.182 L 62.06 3.298 C 62.22 3.258 62.301 3.217 62.341 3.217 C 62.421 3.217 62.462 3.258 62.462 3.338 C 62.462 3.7 62.421 4.504 62.421 5.349 C 62.984 3.981 63.989 3.217 65.154 3.217 C 66.28 3.217 67.084 3.941 67.325 5.268 L 67.325 5.349 L 67.365 5.349 C 68.088 3.981 69.093 3.217 70.259 3.217 Z M 39.11 0 C 39.19 0 39.231 0.04 39.231 0.121 C 39.231 0.201 39.15 0.603 39.15 1.247 L 39.15 10.255 C 39.15 10.979 39.391 11.783 39.713 12.387 C 39.753 12.467 39.713 12.507 39.673 12.507 L 39.633 12.507 L 35.493 12.507 C 35.412 12.507 35.372 12.467 35.412 12.387 C 35.734 11.743 35.935 11.1 35.975 10.376 L 35.975 10.255 L 35.975 3.7 C 35.975 2.855 35.694 2.172 35.252 1.609 L 35.171 1.528 L 35.01 1.287 C 34.97 1.287 34.97 1.206 35.01 1.166 L 35.051 1.166 L 38.829 0.08 C 38.989 0 39.07 0 39.11 0 Z M 53.418 3.74 L 53.378 3.74 C 52.414 3.78 52.092 5.268 52.253 8.083 C 52.414 10.899 52.856 12.346 53.82 12.306 C 54.785 12.266 55.106 10.738 54.986 7.963 C 54.825 5.268 54.383 3.78 53.499 3.74 Z M 30.951 3.74 C 29.786 3.74 29.263 5.63 29.263 7.118 C 29.263 7.52 29.303 7.923 29.384 8.285 C 30.871 7.963 31.715 6.917 31.715 5.228 C 31.715 4.223 31.433 3.74 30.951 3.74 Z M 78.257 3.74 C 77.091 3.74 76.569 5.63 76.569 7.118 C 76.569 7.52 76.609 7.923 76.689 8.285 C 78.177 7.963 79.021 6.917 79.021 5.228 C 79.021 4.223 78.739 3.74 78.257 3.74 Z\" fill=\"rgb(121,119,131)\"></path></g></svg>',svgContentId:12563455733,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pth6ny\",\"data-framer-name\":\"servicebell_logo.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ftfQmEK7z\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 115 18\"><g transform=\"translate(0.078 0.265)\" id=\"ss10644845745_1\"><path d=\"M 0 17.761 L 0 0 L 114.238 0 L 114.238 17.761 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0)\" id=\"ss10644845745_3\"><path d=\"M 27.006 15.618 C 26.297 15.305 25.659 14.842 25.136 14.259 C 24.605 13.676 24.208 12.977 23.975 12.215 L 26.045 11.296 C 26.336 12.053 26.831 12.709 27.472 13.187 C 28.083 13.639 28.819 13.879 29.571 13.871 C 30.131 13.901 30.683 13.735 31.139 13.4 C 31.324 13.255 31.472 13.066 31.57 12.848 C 31.667 12.631 31.712 12.393 31.701 12.154 C 31.712 11.78 31.582 11.415 31.338 11.136 C 31.037 10.837 30.669 10.618 30.267 10.498 L 27.649 9.64 C 26.726 9.379 25.895 8.851 25.254 8.12 C 24.721 7.45 24.436 6.608 24.448 5.742 C 24.434 4.991 24.634 4.251 25.025 3.615 C 25.413 2.991 25.964 2.491 26.614 2.172 C 27.356 1.813 28.168 1.636 28.988 1.655 C 30.127 1.628 31.247 1.963 32.196 2.613 C 33.084 3.224 33.756 4.114 34.111 5.15 L 32.078 6.077 C 31.849 5.42 31.428 4.852 30.873 4.451 C 30.326 4.063 29.674 3.861 29.01 3.874 C 28.461 3.846 27.92 4.015 27.479 4.352 C 27.293 4.499 27.144 4.689 27.044 4.907 C 26.944 5.125 26.895 5.365 26.903 5.606 C 26.9 5.984 27.034 6.35 27.28 6.631 C 27.58 6.957 27.961 7.193 28.381 7.315 L 30.895 8.12 C 33.063 8.834 34.148 10.126 34.148 11.995 C 34.163 12.751 33.951 13.493 33.541 14.122 C 33.126 14.75 32.551 15.249 31.878 15.565 C 31.106 15.935 30.261 16.117 29.409 16.097 C 28.585 16.109 27.767 15.946 27.006 15.618 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 37.356 15.399 C 36.599 14.934 35.98 14.263 35.567 13.462 C 35.133 12.628 34.912 11.695 34.924 10.75 C 34.906 9.795 35.13 8.853 35.575 8.015 C 35.992 7.235 36.605 6.585 37.349 6.131 C 38.108 5.663 38.978 5.421 39.862 5.432 C 40.787 5.402 41.701 5.639 42.502 6.115 C 43.2 6.555 43.767 7.183 44.143 7.931 C 44.526 8.705 44.721 9.562 44.712 10.43 C 44.723 10.615 44.723 10.8 44.712 10.985 C 44.699 11.148 44.667 11.309 44.616 11.464 L 37.408 11.464 C 37.459 11.924 37.62 12.365 37.878 12.745 C 38.135 13.126 38.48 13.435 38.882 13.645 C 39.285 13.855 39.731 13.96 40.182 13.949 C 40.633 13.938 41.075 13.812 41.467 13.583 C 41.841 13.351 42.151 13.024 42.368 12.634 L 44.313 13.614 C 43.975 14.37 43.413 14.997 42.709 15.406 C 41.902 15.89 40.981 16.134 40.047 16.113 C 39.104 16.131 38.173 15.885 37.356 15.399 Z M 38.317 8.015 C 37.864 8.421 37.563 8.977 37.467 9.587 L 42.139 9.587 C 42.093 9.002 41.828 8.458 41.4 8.068 C 40.969 7.664 40.401 7.451 39.818 7.475 C 39.272 7.472 38.742 7.663 38.317 8.015 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 45.612 5.659 L 47.83 5.659 L 47.83 7.217 C 48.042 6.683 48.436 6.248 48.939 5.994 C 49.446 5.763 49.996 5.649 50.551 5.659 L 51.748 5.659 L 51.615 7.84 L 50.27 7.84 C 49.968 7.827 49.666 7.877 49.384 7.988 C 49.102 8.099 48.845 8.269 48.628 8.485 C 48.41 8.729 48.241 9.015 48.133 9.327 C 48.025 9.639 47.98 9.97 48 10.301 L 48 15.885 L 45.612 15.885 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 51.256 5.659 L 53.873 5.659 L 56.231 12.329 L 58.597 5.659 L 61.213 5.659 L 57.295 15.884 L 55.174 15.884 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 61.974 1.877 L 64.37 1.877 L 64.37 4.513 L 61.974 4.513 Z M 61.974 5.675 L 64.37 5.675 L 64.37 15.886 L 61.974 15.886 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 67.8 15.406 C 67.027 14.948 66.387 14.287 65.944 13.492 C 65.488 12.654 65.256 11.708 65.271 10.749 C 65.255 9.797 65.487 8.858 65.944 8.029 C 66.385 7.237 67.027 6.58 67.8 6.13 C 68.505 5.732 69.287 5.497 70.09 5.442 C 70.894 5.387 71.699 5.513 72.45 5.811 C 73.034 6.041 73.567 6.39 74.017 6.837 C 74.448 7.287 74.779 7.829 74.986 8.424 L 72.879 9.367 C 72.696 8.869 72.374 8.439 71.955 8.128 C 71.523 7.813 71.005 7.648 70.476 7.657 C 69.981 7.647 69.493 7.784 69.072 8.052 C 68.661 8.321 68.328 8.699 68.11 9.146 C 67.873 9.642 67.754 10.189 67.763 10.741 C 67.755 11.291 67.874 11.836 68.11 12.329 C 68.328 12.779 68.66 13.159 69.072 13.431 C 69.494 13.696 69.981 13.833 70.476 13.826 C 71.004 13.837 71.522 13.675 71.955 13.362 C 72.374 13.065 72.696 12.644 72.879 12.155 L 74.986 13.135 C 74.785 13.709 74.458 14.229 74.032 14.654 C 73.582 15.119 73.043 15.483 72.45 15.725 C 71.818 15.987 71.142 16.119 70.461 16.112 C 69.529 16.126 68.61 15.882 67.8 15.406 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 77.86 15.399 C 77.102 14.932 76.481 14.262 76.064 13.462 C 75.636 12.626 75.418 11.694 75.428 10.75 C 75.411 9.797 75.632 8.855 76.071 8.015 C 76.493 7.237 77.108 6.587 77.853 6.131 C 78.611 5.662 79.482 5.42 80.367 5.432 C 81.289 5.402 82.201 5.638 82.998 6.116 C 83.701 6.552 84.272 7.181 84.647 7.931 C 85.03 8.705 85.225 9.563 85.216 10.431 C 85.216 10.621 85.216 10.803 85.216 10.985 C 85.204 11.149 85.169 11.31 85.112 11.464 L 77.941 11.464 C 77.991 11.924 78.152 12.365 78.408 12.745 C 78.665 13.126 79.01 13.436 79.411 13.646 C 79.813 13.856 80.259 13.96 80.71 13.95 C 81.16 13.939 81.601 13.813 81.993 13.583 C 82.368 13.349 82.68 13.023 82.902 12.634 L 84.839 13.614 C 84.506 14.371 83.946 14.999 83.242 15.407 C 82.435 15.889 81.515 16.133 80.581 16.113 C 79.627 16.137 78.686 15.89 77.86 15.399 Z M 78.822 8.015 C 78.368 8.421 78.067 8.977 77.971 9.587 L 82.651 9.587 C 82.631 9.297 82.556 9.013 82.428 8.752 C 82.302 8.491 82.126 8.259 81.911 8.068 C 81.48 7.664 80.912 7.452 80.33 7.476 C 79.781 7.47 79.247 7.66 78.822 8.015 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 86.11 1.876 L 91.855 1.876 C 93.001 1.807 94.13 2.184 95.018 2.932 C 95.407 3.297 95.711 3.746 95.911 4.246 C 96.11 4.747 96.2 5.286 96.172 5.826 C 96.177 6.304 96.082 6.777 95.893 7.214 C 95.704 7.651 95.427 8.04 95.078 8.356 C 95.634 8.696 96.079 9.198 96.356 9.799 C 96.6 10.369 96.723 10.985 96.719 11.607 C 96.749 12.197 96.649 12.787 96.426 13.331 C 96.203 13.876 95.864 14.362 95.433 14.752 C 94.414 15.567 93.143 15.972 91.855 15.892 L 86.11 15.892 Z M 91.98 7.308 C 92.204 7.32 92.428 7.286 92.638 7.207 C 92.849 7.129 93.043 7.008 93.207 6.852 C 93.359 6.696 93.478 6.51 93.557 6.304 C 93.636 6.099 93.673 5.88 93.666 5.659 C 93.676 5.442 93.639 5.225 93.561 5.023 C 93.481 4.821 93.36 4.639 93.207 4.489 C 92.868 4.187 92.428 4.031 91.98 4.056 L 88.602 4.056 L 88.602 7.308 Z M 92.114 13.628 C 92.679 13.658 93.234 13.459 93.658 13.074 C 93.851 12.884 94.002 12.655 94.102 12.401 C 94.201 12.147 94.247 11.874 94.235 11.6 C 94.251 11.319 94.208 11.038 94.108 10.775 C 94.009 10.513 93.855 10.276 93.658 10.08 C 93.234 9.695 92.679 9.496 92.114 9.526 L 88.602 9.526 L 88.602 13.605 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 99.928 15.399 C 99.174 14.93 98.557 14.26 98.139 13.462 C 97.706 12.628 97.484 11.695 97.497 10.75 C 97.478 9.795 97.702 8.853 98.147 8.015 C 98.569 7.239 99.18 6.589 99.921 6.131 C 100.68 5.664 101.55 5.422 102.435 5.432 C 103.359 5.402 104.274 5.639 105.074 6.116 C 105.773 6.557 106.342 7.185 106.722 7.931 C 107.103 8.706 107.296 9.563 107.284 10.431 C 107.284 10.621 107.284 10.803 107.284 10.985 C 107.268 11.148 107.234 11.309 107.181 11.464 L 100.01 11.464 C 100.06 11.924 100.22 12.365 100.477 12.745 C 100.733 13.126 101.078 13.436 101.48 13.646 C 101.881 13.856 102.327 13.96 102.778 13.949 C 103.228 13.939 103.67 13.813 104.061 13.583 C 104.438 13.35 104.754 13.023 104.978 12.634 L 106.915 13.614 C 106.578 14.371 106.017 14.999 105.31 15.407 C 104.504 15.89 103.582 16.135 102.649 16.113 C 101.696 16.137 100.754 15.89 99.928 15.399 Z M 100.889 8.015 C 100.439 8.423 100.138 8.978 100.039 9.587 L 104.726 9.587 C 104.69 9.007 104.438 8.464 104.024 8.068 C 103.588 7.667 103.019 7.455 102.435 7.475 C 101.874 7.463 101.327 7.654 100.889 8.015 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 108.015 1.877 L 110.418 1.877 L 110.418 15.886 L 108.015 15.886 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 111.748 1.877 L 114.151 1.877 L 114.151 15.886 L 111.748 15.886 Z\" fill=\"rgb(121,119,131)\"></path><g><defs><linearGradient id=\"idss10644845745_15g-1810685315\" x1=\"0.30945682068488606\" x2=\"0.690543179315114\" y1=\"1\" y2=\"0\"><stop offset=\"0\" stop-color=\"rgb(102,102,102)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(174,176,179)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 9.906 0 L 8.036 0 C 7.562 0 7.333 0.387 7.333 0.858 C 7.333 1.329 7.562 1.724 8.036 1.724 C 8.065 1.73 8.091 1.746 8.11 1.769 C 8.129 1.793 8.14 1.823 8.139 1.854 L 8.139 3.943 L 9.802 3.943 L 9.802 1.854 C 9.802 1.823 9.812 1.793 9.831 1.769 C 9.85 1.746 9.877 1.73 9.906 1.724 C 10.379 1.724 10.608 1.337 10.608 0.858 C 10.608 0.38 10.35 0 9.906 0 Z\" fill=\"url(#idss10644845745_15g-1810685315)\"></path></g><g><defs><linearGradient id=\"idss10644845745_16g-1997023648\" x1=\"0.1888144776336027\" x2=\"0.8111855223663973\" y1=\"1\" y2=\"5.551115123125783e-17\"><stop offset=\"0\" stop-color=\"rgb(111,111,111)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(181,183,186)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 16.626 14.206 L 1.286 14.206 C 1.117 14.206 0.949 14.241 0.792 14.308 C 0.636 14.374 0.494 14.472 0.374 14.596 C 0.255 14.72 0.16 14.866 0.096 15.027 C 0.032 15.189 -0.001 15.361 0 15.536 L 0 17.761 L 17.913 17.761 L 17.913 15.536 C 17.914 15.361 17.881 15.189 17.817 15.027 C 17.753 14.866 17.658 14.72 17.539 14.596 C 17.419 14.472 17.277 14.374 17.12 14.308 C 16.964 14.241 16.796 14.206 16.626 14.206 Z\" fill=\"url(#idss10644845745_16g-1997023648)\"></path></g><g><defs><linearGradient id=\"idss10644845745_17g-1939578112\" x1=\"0\" x2=\"1\" y1=\"0.4975124378109453\" y2=\"0.5024875621890547\"><stop offset=\"0\" stop-color=\"rgb(92,92,92)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(162,164,167)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 10.823 12.702 L 7.119 12.702 L 7.119 14.214 L 10.823 14.214 Z\" fill=\"url(#idss10644845745_17g-1939578112)\"></path></g><path d=\"M 1.892 10.887 C 2.957 7.02 5.004 5.318 7.119 5.136 C 7.119 5.136 4.531 6.655 4.531 10.887 Z\" fill=\"rgb(248,245,237)\"></path><g><defs><linearGradient id=\"idss10644845745_19g1589922119\" x1=\"0\" x2=\"1\" y1=\"0.7661057296250597\" y2=\"0.23389427037494032\"><stop offset=\"0\" stop-color=\"rgb(193,193,193)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"rgb(213,213,213)\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 0 12.458 C 0.067 10.055 1.043 7.773 2.721 6.098 C 4.399 4.422 6.646 3.485 8.986 3.485 C 11.325 3.485 13.573 4.422 15.251 6.098 C 16.929 7.773 17.905 10.055 17.972 12.458 L 17.972 12.701 L 0 12.701 Z\" fill=\"url(#idss10644845745_19g1589922119)\"></path></g></g></g></svg>',svgContentId:10644845745,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9s2afe\",\"data-framer-name\":\"contentsquare_logo.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"I92HhOPcF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130 31\"><g transform=\"translate(0.055 0.613)\" id=\"ss10960466627_1\"><path d=\"M 0.003 30.039 L 0.003 0 L 129.174 0 L 129.174 30.039 Z\" fill=\"transparent\"></path><path d=\"M 35.341 15.025 C 35.341 12.246 37.404 10.098 40.281 10.098 C 41.098 10.087 41.903 10.287 42.618 10.678 C 43.334 11.07 43.936 11.639 44.366 12.331 L 42.752 13.273 C 42.287 12.433 41.366 11.919 40.275 11.919 C 38.418 11.919 37.194 13.205 37.194 15.032 C 37.194 16.86 38.415 18.132 40.275 18.132 C 41.359 18.132 42.297 17.618 42.752 16.792 L 44.366 17.718 C 43.566 19.072 42.032 19.952 40.281 19.952 C 37.404 19.952 35.341 17.786 35.341 15.025 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 45.052 16.378 C 45.051 15.669 45.26 14.976 45.654 14.386 C 46.048 13.796 46.609 13.335 47.265 13.063 C 47.922 12.791 48.644 12.72 49.341 12.858 C 50.039 12.996 50.679 13.337 51.182 13.838 C 51.684 14.34 52.026 14.978 52.165 15.674 C 52.303 16.369 52.231 17.09 51.959 17.744 C 51.686 18.399 51.224 18.958 50.633 19.351 C 50.041 19.744 49.346 19.953 48.635 19.951 C 48.163 19.956 47.695 19.867 47.258 19.689 C 46.821 19.512 46.424 19.249 46.091 18.916 C 45.757 18.583 45.493 18.187 45.315 17.751 C 45.136 17.316 45.047 16.849 45.052 16.378 Z M 50.48 16.378 C 50.49 16.132 50.449 15.887 50.36 15.658 C 50.271 15.429 50.136 15.22 49.963 15.045 C 49.79 14.869 49.583 14.731 49.355 14.639 C 49.127 14.546 48.882 14.502 48.635 14.507 C 47.603 14.507 46.803 15.279 46.803 16.375 C 46.803 17.471 47.603 18.243 48.635 18.243 C 48.881 18.248 49.125 18.204 49.353 18.112 C 49.581 18.02 49.788 17.882 49.961 17.708 C 50.134 17.533 50.269 17.325 50.358 17.096 C 50.447 16.868 50.489 16.623 50.48 16.378 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 59.744 15.606 L 59.744 19.755 L 57.99 19.755 L 57.99 15.822 C 57.99 14.896 57.433 14.433 56.647 14.433 C 55.791 14.433 55.153 14.935 55.153 16.113 L 55.153 19.755 L 53.398 19.755 L 53.398 12.995 L 55.149 12.995 L 55.149 13.753 C 55.556 13.135 56.261 12.805 57.171 12.805 C 58.614 12.81 59.744 13.807 59.744 15.606 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 63.461 14.674 L 63.461 17.489 C 63.461 18.221 63.99 18.233 64.994 18.179 L 64.994 19.756 C 62.537 20.028 61.709 19.31 61.709 17.483 L 61.709 14.674 L 60.52 14.674 L 60.52 12.996 L 61.699 12.996 L 61.699 11.628 L 63.461 11.1 L 63.461 12.996 L 64.994 12.996 L 64.994 14.674 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 69.537 18.365 C 69.825 18.376 70.112 18.321 70.376 18.203 C 70.639 18.086 70.872 17.91 71.056 17.689 L 72.468 18.501 C 71.83 19.427 70.812 19.948 69.509 19.948 C 67.229 19.948 65.794 18.393 65.794 16.375 C 65.794 14.358 67.243 12.808 69.374 12.808 C 71.386 12.808 72.807 14.392 72.807 16.381 C 72.806 16.622 72.783 16.862 72.739 17.099 L 67.622 17.099 C 67.867 17.988 68.614 18.365 69.537 18.365 Z M 71.056 15.741 C 70.84 14.765 70.106 14.373 69.374 14.373 C 68.436 14.373 67.799 14.875 67.596 15.741 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 80.326 15.606 L 80.326 19.755 L 78.582 19.755 L 78.582 15.822 C 78.582 14.896 78.024 14.433 77.238 14.433 C 76.382 14.433 75.745 14.935 75.745 16.113 L 75.745 19.755 L 73.994 19.755 L 73.994 12.995 L 75.745 12.995 L 75.745 13.753 C 76.152 13.135 76.857 12.805 77.767 12.805 C 79.205 12.81 80.326 13.807 80.326 15.606 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 84.041 14.674 L 84.041 17.489 C 84.041 18.221 84.57 18.233 85.575 18.179 L 85.575 19.756 C 83.117 20.028 82.291 19.31 82.291 17.483 L 82.291 14.674 L 81.11 14.674 L 81.11 12.996 L 82.291 12.996 L 82.291 11.628 L 84.041 11.1 L 84.041 12.996 L 85.575 12.996 L 85.575 14.674 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 91.946 17.784 C 91.946 19.246 90.671 19.945 89.218 19.945 C 87.86 19.945 86.856 19.377 86.369 18.335 L 87.888 17.482 C 88.079 18.037 88.54 18.362 89.218 18.362 C 89.775 18.362 90.147 18.172 90.147 17.78 C 90.147 16.792 86.646 17.334 86.646 14.95 C 86.654 13.58 87.834 12.808 89.232 12.808 C 90.33 12.808 91.281 13.308 91.811 14.242 L 90.318 15.055 C 90.227 14.846 90.076 14.668 89.883 14.544 C 89.69 14.421 89.464 14.358 89.235 14.364 C 88.8 14.364 88.447 14.554 88.447 14.92 C 88.444 15.917 91.946 15.293 91.946 17.784 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 99.931 12.993 L 99.931 22.467 L 98.181 22.467 L 98.181 18.962 C 97.693 19.58 96.974 19.95 95.983 19.95 C 94.163 19.95 92.671 18.394 92.671 16.377 C 92.671 14.359 94.163 12.808 95.983 12.808 C 96.974 12.808 97.693 13.174 98.181 13.796 L 98.181 12.993 Z M 98.181 16.377 C 98.181 15.239 97.381 14.469 96.308 14.469 C 95.235 14.469 94.422 15.241 94.422 16.377 C 94.422 17.513 95.223 18.284 96.308 18.284 C 97.393 18.284 98.181 17.514 98.181 16.377 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 107.761 12.997 L 107.761 19.758 L 106.017 19.758 L 106.017 19 C 105.609 19.618 104.903 19.948 103.995 19.948 C 102.555 19.948 101.428 18.946 101.428 17.146 L 101.428 12.997 L 103.18 12.997 L 103.18 16.937 C 103.18 17.863 103.736 18.326 104.524 18.326 C 105.378 18.326 106.017 17.824 106.017 16.646 L 106.017 12.997 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 116.234 12.993 L 116.234 19.754 L 114.476 19.754 L 114.476 18.956 C 113.987 19.566 113.253 19.944 112.263 19.944 C 110.458 19.944 108.965 18.388 108.965 16.37 C 108.965 14.353 110.458 12.808 112.263 12.808 C 113.253 12.808 113.987 13.186 114.476 13.796 L 114.476 12.993 Z M 114.484 16.377 C 114.484 15.239 113.682 14.469 112.597 14.469 C 111.512 14.469 110.724 15.241 110.724 16.377 C 110.724 17.513 111.524 18.284 112.597 18.284 C 113.67 18.284 114.476 17.514 114.476 16.377 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 121.593 12.861 L 121.593 14.818 C 120.683 14.71 119.53 15.116 119.53 16.536 L 119.53 19.777 L 117.781 19.777 L 117.781 12.997 L 119.53 12.997 L 119.53 14.16 C 119.883 13.241 120.738 12.861 121.593 12.861 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 125.904 18.365 C 126.192 18.376 126.479 18.321 126.743 18.203 C 127.006 18.086 127.239 17.91 127.423 17.689 L 128.835 18.501 C 128.198 19.427 127.179 19.948 125.876 19.948 C 123.596 19.948 122.162 18.393 122.162 16.375 C 122.162 14.358 123.61 12.808 125.741 12.808 C 127.754 12.808 129.174 14.392 129.174 16.381 C 129.173 16.622 129.151 16.862 129.108 17.099 L 123.991 17.099 C 124.234 17.988 124.981 18.365 125.904 18.365 Z M 127.423 15.741 C 127.207 14.765 126.474 14.373 125.741 14.373 C 124.805 14.373 124.167 14.875 123.963 15.741 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 28.828 8.882 L 28.48 8.207 C 26.945 5.2 24.44 2.796 21.368 1.382 C 18.297 -0.032 14.837 -0.373 11.547 0.414 C 8.257 1.201 5.329 3.07 3.234 5.719 C 1.139 8.369 0 11.645 0 15.019 C 0 18.393 1.139 21.669 3.234 24.318 C 5.329 26.968 8.257 28.836 11.547 29.623 C 14.837 30.41 18.297 30.069 21.368 28.655 C 24.44 27.242 26.945 24.837 28.48 21.83 L 28.825 21.154 L 22.674 15.019 Z M 26.26 21.539 C 24.823 23.993 22.616 25.907 19.979 26.985 C 17.342 28.063 14.422 28.245 11.671 27.502 C 8.92 26.76 6.491 25.134 4.759 22.877 C 3.027 20.62 2.088 17.857 2.088 15.015 C 2.088 12.173 3.027 9.409 4.759 7.152 C 6.491 4.895 8.92 3.27 11.671 2.528 C 14.422 1.785 17.342 1.967 19.979 3.045 C 22.616 4.123 24.823 6.037 26.26 8.491 L 21.196 13.545 L 15.063 7.426 L 7.45 15.019 L 15.063 22.61 L 21.196 16.491 Z M 19.72 15.019 L 15.063 19.663 L 10.404 15.019 L 15.063 10.373 Z\" fill=\"rgb(121,119,131)\"></path></g></svg>',svgContentId:10960466627,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gb0f9y\",\"data-framer-name\":\"Docusign\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"du9zqWbMk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 118 25\"><g transform=\"translate(0.952 0.25)\" id=\"ss12531428773_1\"><path d=\"M 0.001 0 L 116.631 0 L 116.631 24.632 L 0.001 24.632 Z\" fill=\"transparent\"></path><path d=\"M 24.296 0 L 0 0 L 0 24.632 L 24.296 24.632 Z\" fill=\"rgb(209,209,209)\"></path><path d=\"M 20.929 18.819 L 3.368 18.819 L 3.368 21.209 L 20.905 21.209 L 20.905 18.819 Z M 12.16 17.44 L 13.832 15.765 L 18.919 10.616 L 17.223 8.892 L 13.348 12.833 L 13.348 3.079 L 10.998 3.079 L 10.998 12.833 L 7.122 8.892 L 5.427 10.616 L 10.514 15.765 C 10.465 15.765 12.161 17.44 12.161 17.44 Z M 31.708 5 L 37.86 5 C 41.76 5 44.28 8.178 44.28 12.563 C 44.28 14.976 43.48 17.07 41.954 18.376 C 40.864 19.288 39.459 19.804 37.618 19.804 L 31.708 19.804 Z M 37.4 17.218 C 40.185 17.218 41.252 15.493 41.252 12.563 C 41.252 9.631 39.993 7.563 37.473 7.563 L 34.663 7.563 L 34.663 17.218 Z M 44.691 14.509 C 44.691 11.331 46.919 8.893 50.166 8.893 C 53.411 8.893 55.64 11.331 55.64 14.509 C 55.64 17.686 53.412 20.124 50.166 20.124 C 46.919 20.1 44.691 17.661 44.691 14.509 Z M 52.83 14.509 C 52.83 12.44 51.861 11.035 50.166 11.035 C 48.47 11.035 47.501 12.44 47.501 14.509 C 47.501 16.578 48.445 17.957 50.166 17.957 C 51.885 17.957 52.83 16.577 52.83 14.509 Z M 56.221 14.509 C 56.221 11.331 58.256 8.893 61.453 8.893 C 64.165 8.893 65.838 10.493 66.201 12.785 L 63.488 12.785 C 63.294 11.848 62.592 11.158 61.574 11.158 C 59.903 11.158 59.031 12.464 59.031 14.508 C 59.031 16.553 59.83 17.858 61.525 17.858 C 62.64 17.858 63.439 17.268 63.634 16.06 L 66.297 16.06 C 66.104 18.326 64.383 20.124 61.574 20.124 C 58.28 20.1 56.221 17.661 56.221 14.509 Z M 73.637 19.804 L 73.637 18.573 L 73.564 18.573 C 72.838 19.533 72.038 20.1 70.56 20.1 C 68.236 20.1 66.927 18.598 66.927 16.257 L 66.927 9.163 L 69.689 9.163 L 69.689 15.765 C 69.689 16.996 70.246 17.686 71.432 17.686 C 72.741 17.686 73.54 16.701 73.54 15.272 L 73.54 9.163 L 76.326 9.163 L 76.326 19.78 Z M 89.842 5.049 L 92.627 5.049 L 92.627 7.685 L 89.842 7.685 Z M 89.842 9.188 L 92.627 9.188 L 92.627 19.804 L 89.842 19.804 Z M 96.551 20.1 C 96.769 20.765 97.375 21.282 98.659 21.282 C 100.233 21.282 100.984 20.519 100.984 19.065 L 100.984 17.908 L 100.912 17.908 C 100.306 18.622 99.506 19.139 98.174 19.139 C 95.849 19.139 93.547 17.267 93.547 14.065 C 93.547 10.863 95.437 8.868 98.077 8.868 C 99.385 8.868 100.354 9.385 100.984 10.272 L 101.032 10.272 L 101.032 9.163 L 103.697 9.163 L 103.697 18.967 C 103.697 20.445 103.236 21.479 102.461 22.193 C 101.589 23.032 100.233 23.401 98.683 23.401 C 95.825 23.401 94.056 22.169 93.79 20.075 Z M 101.105 14.016 C 101.105 12.464 100.281 11.134 98.61 11.134 C 97.205 11.134 96.261 12.243 96.261 14.04 C 96.261 15.814 97.205 16.898 98.634 16.898 C 100.403 16.898 101.105 15.592 101.105 14.015 Z M 107.621 10.616 L 107.694 10.616 C 108.42 9.484 109.365 8.868 110.794 8.868 C 112.95 8.868 114.403 10.518 114.403 12.833 L 114.403 19.78 L 111.618 19.78 L 111.618 13.276 C 111.618 12.144 110.964 11.331 109.801 11.331 C 108.566 11.331 107.669 12.316 107.669 13.77 L 107.669 19.804 L 104.884 19.804 L 104.884 9.163 L 107.597 9.163 Z M 83.52 10.863 C 81.364 10.395 80.322 10.025 80.322 8.843 C 80.322 7.784 81.364 7.094 82.963 7.094 C 84.416 7.094 85.53 7.784 85.748 9.163 L 88.606 9.163 C 88.316 6.281 86.208 4.705 82.987 4.705 C 79.765 4.705 77.391 6.207 77.391 9.139 C 77.391 12.218 79.79 12.932 82.406 13.524 C 84.634 14.04 86.015 14.336 86.015 15.79 C 86.015 17.144 84.682 17.686 83.181 17.686 C 81.098 17.686 80.104 16.971 79.886 15.198 L 76.98 15.198 C 77.076 18.326 79.329 20.1 83.278 20.1 C 86.572 20.1 88.945 18.425 88.945 15.42 C 88.97 12.267 86.524 11.528 83.52 10.863 Z M 115.518 11.134 C 114.912 11.134 114.403 10.641 114.403 10.025 C 114.403 9.724 114.521 9.435 114.73 9.222 C 114.939 9.009 115.223 8.891 115.518 8.893 C 116.123 8.893 116.607 9.385 116.631 10.025 C 116.631 10.641 116.123 11.134 115.518 11.134 Z M 115.518 9.065 C 115.009 9.065 114.597 9.484 114.597 10.001 C 114.597 10.518 115.009 10.937 115.541 10.937 C 116.05 10.937 116.462 10.518 116.462 10.001 C 116.462 9.508 116.026 9.065 115.518 9.065 Z\" fill=\"rgb(127, 124, 138)\"></path><path d=\"M 115.153 9.432 L 115.516 9.432 C 115.662 9.432 115.758 9.432 115.855 9.506 C 115.929 9.577 115.972 9.675 115.976 9.778 C 115.976 9.999 115.807 10.073 115.758 10.098 L 116 10.565 L 115.758 10.565 L 115.54 10.146 L 115.346 10.146 L 115.346 10.59 L 115.128 10.59 Z M 115.346 9.629 L 115.346 9.999 L 115.564 9.999 C 115.613 9.999 115.758 9.999 115.758 9.826 C 115.758 9.802 115.758 9.728 115.662 9.679 C 115.613 9.654 115.564 9.654 115.444 9.654 C 115.444 9.629 115.346 9.629 115.346 9.629 Z\" fill=\"rgb(96,94,104)\"></path></g></svg>',svgContentId:12531428773,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fxvm89\",\"data-framer-name\":\"toptal_logo.svg\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"p_8M4ZsAL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79 22\"><g id=\"ss8631319890_1\"><path d=\"M 0 22 L 0 0 L 79 0 L 79 22 Z\" fill=\"transparent\"></path><path d=\"M 45.361 8.123 C 46.333 8.123 47.139 8.49 47.777 9.223 C 48.444 9.928 48.777 10.831 48.777 11.931 C 48.777 13.059 48.444 14.046 47.777 14.779 C 47.139 15.484 46.333 15.823 45.361 15.823 C 44.416 15.823 43.638 15.484 42.944 14.751 C 42.277 14.018 41.944 13.031 41.944 11.902 C 41.944 10.802 42.277 9.872 42.944 9.195 C 43.611 8.461 44.416 8.123 45.361 8.123 Z M 50 7.249 C 48.944 6.064 47.611 5.443 46.027 5.443 C 44.527 5.443 43.027 6.515 42.111 7.559 L 42.111 5.584 L 39.305 5.584 L 39.277 21.774 L 39.277 22 L 42.111 22 L 42.111 16.923 C 42.972 17.91 44.305 18.474 45.805 18.474 C 47.472 18.474 48.861 17.882 49.944 16.697 C 51.055 15.513 51.611 13.849 51.611 11.902 C 51.638 9.956 51.083 8.377 50 7.249 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 53.056 8.01 L 53.056 14.835 C 53.056 16.302 53.444 17.374 54.222 17.966 C 54.722 18.333 55.333 18.53 56.083 18.53 C 56.639 18.53 57.528 18.305 57.528 18.305 L 57.278 15.822 C 57.278 15.822 56.639 16.048 56.306 15.794 C 56 15.569 55.861 15.117 55.861 14.412 L 55.861 8.01 L 58.472 8.01 L 58.472 5.64 L 55.861 5.64 L 55.861 2.228 L 53.028 2.228 L 53.028 5.64 L 50.667 5.64 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 29.889 2.031 L 15.972 2.031 L 15.972 4.851 L 21.527 4.851 L 21.527 18.08 L 21.527 18.333 L 24.444 18.333 L 24.444 4.851 L 29.889 4.851 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 6.194 13.821 C 6.139 13.849 6.083 13.849 6 13.821 C 5.944 13.792 5.889 13.764 5.778 13.651 L 4.556 12.41 C 4.444 12.297 4.417 12.241 4.389 12.185 C 4.361 12.128 4.361 12.072 4.389 11.987 C 4.417 11.931 4.444 11.874 4.556 11.762 L 8.444 7.841 C 8.556 7.728 8.611 7.7 8.667 7.672 C 8.722 7.644 8.778 7.644 8.861 7.672 C 8.917 7.7 8.972 7.728 9.083 7.841 L 10.306 9.082 C 10.417 9.195 10.444 9.251 10.472 9.308 C 10.5 9.364 10.5 9.421 10.472 9.505 C 10.444 9.562 10.417 9.618 10.306 9.731 L 6.417 13.651 C 6.306 13.764 6.278 13.792 6.194 13.821 Z M 14.917 9.251 L 10.722 4.992 C 10.694 4.964 10.639 4.908 10.611 4.879 L 5.806 0 L 3.694 2.144 L 6.778 5.303 L 0 12.156 L 4.194 16.415 C 4.25 16.472 4.306 16.528 4.361 16.585 L 9.139 21.436 L 11.222 19.321 L 8.083 16.162 Z\" fill=\"rgb(153,151,163)\"></path><path d=\"M 35.527 11.987 C 35.527 13.143 35.193 14.102 34.527 14.836 C 33.86 15.569 33.027 15.936 32.082 15.936 C 31.138 15.936 30.305 15.569 29.666 14.836 C 29.027 14.131 28.693 13.143 28.693 11.987 C 28.693 10.802 29.027 9.843 29.666 9.138 C 30.332 8.405 31.138 8.038 32.11 8.038 C 33.082 8.038 33.888 8.405 34.555 9.138 C 35.193 9.872 35.527 10.831 35.527 11.987 Z M 36.416 7.305 C 35.277 6.092 33.693 5.415 32.082 5.472 C 30.443 5.472 29.027 6.064 27.832 7.192 C 26.61 8.349 25.999 9.956 25.999 11.959 C 25.999 13.961 26.61 15.569 27.805 16.725 C 28.999 17.882 30.443 18.474 32.055 18.474 C 32.11 18.474 32.166 18.474 32.249 18.474 C 33.777 18.474 35.277 17.825 36.388 16.669 C 37.193 15.823 38.166 14.328 38.166 11.987 C 38.193 9.674 37.221 8.151 36.416 7.305 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 63 16.106 C 61.972 16.106 61.333 15.514 61.333 14.611 C 61.333 13.681 61.972 13.116 63.361 12.891 L 66.195 12.411 C 66.167 14.583 64.861 16.106 63 16.106 Z M 61.694 10.014 C 61.694 9.281 62.083 7.673 64.139 7.673 C 64.889 7.673 65.306 7.927 65.639 8.237 C 65.972 8.519 66.139 9.224 66.139 9.816 L 66.139 10.099 L 62.694 10.634 C 59.972 11.057 58.417 12.552 58.417 14.724 C 58.417 15.852 58.806 16.811 59.583 17.516 C 60.333 18.222 61.389 18.588 62.611 18.588 C 64.139 18.588 65.306 18.024 66.139 16.868 C 66.139 17.347 66.139 17.855 66.139 18.306 L 69 18.306 L 69.028 9.957 C 69.028 8.604 68.583 7.278 67.722 6.545 C 66.861 5.84 65.75 5.473 64.139 5.473 L 64.111 5.473 C 62.889 5.473 61.556 5.811 60.695 6.573 C 59.667 7.475 59.139 8.914 59.139 10.042 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 70.416 2.228 L 70.388 18.248 L 70.388 18.305 L 72.916 18.305 L 72.944 2.284 L 72.944 2.228 Z\" fill=\"rgb(121,119,131)\"></path><path d=\"M 76.695 15.626 L 76.695 16.274 L 77.195 16.274 C 77.473 16.274 77.612 16.161 77.612 15.964 C 77.612 15.738 77.473 15.626 77.195 15.626 Z M 77.557 17.459 L 77.057 16.528 L 76.723 16.528 L 76.723 17.459 L 76.39 17.459 L 76.39 15.343 L 77.223 15.343 C 77.64 15.343 77.89 15.597 77.89 15.936 C 77.89 16.246 77.668 16.443 77.39 16.5 L 77.918 17.431 L 77.557 17.431 Z M 75.501 16.387 C 75.501 16.838 75.64 17.233 75.946 17.543 C 76.251 17.854 76.64 18.023 77.084 18.023 C 77.529 18.023 77.89 17.854 78.195 17.543 C 78.501 17.233 78.668 16.838 78.668 16.387 C 78.668 15.936 78.501 15.541 78.195 15.231 C 77.89 14.92 77.501 14.751 77.084 14.751 C 76.64 14.751 76.279 14.92 75.973 15.231 C 75.668 15.569 75.501 15.936 75.501 16.387 Z M 75.196 16.387 C 75.196 15.851 75.362 15.4 75.751 15.033 C 76.112 14.667 76.584 14.469 77.084 14.469 C 77.612 14.469 78.057 14.667 78.418 15.033 C 78.779 15.4 78.973 15.879 78.973 16.387 C 78.973 16.923 78.779 17.374 78.418 17.741 C 78.057 18.108 77.584 18.305 77.084 18.305 C 76.557 18.305 76.112 18.136 75.751 17.741 C 75.39 17.374 75.196 16.923 75.196 16.387 Z\" fill=\"rgb(121,119,131)\"></path></g></svg>',svgContentId:8631319890,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"134px\",src:\"https://framerusercontent.com/images/evLh27pJtC7JHLlYhDkf8VU74V0.png\",srcSet:\"https://framerusercontent.com/images/evLh27pJtC7JHLlYhDkf8VU74V0.png?scale-down-to=512 512w,https://framerusercontent.com/images/evLh27pJtC7JHLlYhDkf8VU74V0.png 680w\"},className:\"framer-1pz7iwf\",\"data-framer-name\":\"Efounder\",layoutDependency:layoutDependency,layoutId:\"StB5Q3Kgk\"})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eog2ln\",\"data-framer-name\":\"Frame 48276\",layoutDependency:layoutDependency,layoutId:\"FsXZa78aW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kigp43\",\"data-framer-name\":\"Frame 48275\",layoutDependency:layoutDependency,layoutId:\"nIiH_VbU_\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1vlhwnu\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"K7H0_2K_o\",svg:'<svg width=\"22\" height=\"21\" viewBox=\"0 0 22 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.0617 3.04344e-05L9.47095 0.616728C7.51402 2.65954 7.5837 5.90461 9.62651 7.86154L10.2432 8.45231L10.834 7.83562C12.7909 5.79281 12.7212 2.54773 10.6784 0.590802L10.0617 3.04344e-05Z\" fill=\"#9997A3\"/>\\n<path d=\"M9.90903 9.9431C8.63848 8.43769 6.56572 7.72341 4.55022 8.26877L4.78673 9.08666C5.60168 11.8778 8.27034 13.6212 11.0547 13.3689C10.462 12.3133 10.0708 11.1476 9.90887 9.93555L9.90903 9.9431Z\" fill=\"#9997A3\"/>\\n<path d=\"M12.8137 15.6453C12.5747 15.4164 12.3507 15.1796 12.1377 14.9312C10.4732 14.5932 8.67156 15.0773 7.39304 16.3657L8.00974 16.9564C10.0834 18.9429 13.2209 19.1398 15.5017 17.5846C14.5433 17.0804 13.6347 16.4317 12.8137 15.6453Z\" fill=\"#9997A3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNjAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 163))\"},children:\"Loved by our customers\"})}),className:\"framer-xcun8p\",\"data-framer-name\":\"Loved by our customers\",fonts:[\"GF;Plus Jakarta Sans-600\"],layoutDependency:layoutDependency,layoutId:\"vdqcfyDow\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-gkmax8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"CDcQHKw3Y\",svg:'<svg width=\"22\" height=\"21\" viewBox=\"0 0 22 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3055 3.05941e-05L12.8962 0.616729C14.8532 2.65954 14.7835 5.90461 12.7407 7.86154L12.124 8.45232L11.5332 7.83562C9.57628 5.79281 9.64595 2.54773 11.6888 0.590802L12.3055 3.05941e-05Z\" fill=\"#9997A3\"/>\\n<path d=\"M12.4582 9.9431C13.7287 8.43769 15.8015 7.72341 17.817 8.26877L17.5805 9.08666C16.7655 11.8778 14.0968 13.6212 11.3125 13.3689C11.9052 12.3133 12.2964 11.1476 12.4583 9.93555L12.4582 9.9431Z\" fill=\"#9997A3\"/>\\n<path d=\"M9.5535 15.6453C9.79247 15.4164 10.0165 15.1796 10.2295 14.9312C11.894 14.5932 13.6956 15.0773 14.9741 16.3657L14.3574 16.9564C12.2838 18.9429 9.14626 19.1398 6.86553 17.5846C7.8239 17.0804 8.73252 16.4317 9.5535 15.6453Z\" fill=\"#9997A3\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-svz85j\",\"data-framer-name\":\"Frame 48324\",layoutDependency:layoutDependency,layoutId:\"lFdQcpSVy\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-427vjc\",\"data-border\":true,\"data-framer-name\":\"Frame 48321\",layoutDependency:layoutDependency,layoutId:\"y5B89254G\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(222, 221, 227)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,rotate:-15},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zx8a1z\",\"data-framer-name\":\"Frame 48325\",layoutDependency:layoutDependency,layoutId:\"dnR2sfLtV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(44, 42, 54))\"},children:\"4.8\"})}),className:\"framer-1ghktpt\",\"data-framer-name\":\"4.8\",fonts:[\"GF;Plus Jakarta Sans-800\"],layoutDependency:layoutDependency,layoutId:\"KcQEZ_8FP\",style:{\"--extracted-r6o4lv\":\"rgb(44, 42, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s1q6vu\",\"data-framer-name\":\"Frame 48323\",layoutDependency:layoutDependency,layoutId:\"ydxLYboCE\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:11,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||220.5)-10-210.4090909090909)/2+53+32)+0+38.90909090909091+-57.999999999999986+9+0+0+152+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sfRYOEAi6epkgUNDqiVyWs9fyKU.svg\"},className:\"framer-sb495y\",\"data-framer-name\":\"Frame 48321\",layoutDependency:layoutDependency,layoutId:\"CE_n5hNrT\",...addPropertyOverrides({iOhLm_9pG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:11,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||261.5)-20-241.4090909090909)/2+84+32)+0+38.90909090909091+-57.999999999999986+9+0+0+152+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sfRYOEAi6epkgUNDqiVyWs9fyKU.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mqdr0k\",\"data-framer-name\":\"Frame 48322\",layoutDependency:layoutDependency,layoutId:\"KL2RBogM1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 163))\"},children:\"On\"})}),className:\"framer-ok3dea\",\"data-framer-name\":\"On\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"iZuGofTjV\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k3dgsl\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,layoutDependency:layoutDependency,layoutId:\"SWW1L3GEh\",svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.88281 4.18714L2.97634 7.52332L5.31808 10.1369L8.7509 4.18836L15.619 4.18714C14.2476 1.81641 11.6859 0.222656 8.7509 0.222656C5.81587 0.222656 3.25422 1.81641 1.88281 4.18714Z\" fill=\"#9997A3\"/>\\n<path d=\"M8.74999 16.0871L11.0917 13.4723L12.184 10.1373H5.31709L1.88305 4.1875C0.516449 6.56067 0.416144 9.57785 1.88427 12.1201C3.35118 14.6625 6.01306 16.0847 8.74992 16.0871\" fill=\"#BCBBC3\"/>\\n<path d=\"M15.6181 4.1875H8.75L12.184 10.1361L8.75 16.0858C11.4881 16.0835 14.15 14.6613 15.6169 12.1189C17.085 9.57663 16.9848 6.56067 15.6181 4.1875Z\" fill=\"#DEDDE4\"/>\\n<path d=\"M8.74964 12.1189C10.9392 12.1189 12.7141 10.3434 12.7141 8.1532C12.7141 5.96301 10.9392 4.1875 8.74964 4.1875C6.56012 4.1875 4.78516 5.96301 4.78516 8.1532C4.78516 10.3434 6.56012 12.1189 8.74964 12.1189Z\" fill=\"#F1F3F4\"/>\\n<path d=\"M8.75263 11.3749C10.5318 11.3749 11.974 9.93208 11.974 8.15229C11.974 6.3725 10.5318 4.92969 8.75263 4.92969C6.97351 4.92969 5.53125 6.3725 5.53125 8.15229C5.53125 9.93208 6.97351 11.3749 8.75263 11.3749Z\" fill=\"#797783\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-100y127\",\"data-border\":true,\"data-framer-name\":\"Frame 48320\",layoutDependency:layoutDependency,layoutId:\"ER4emPkAp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(222, 221, 227)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,rotate:5},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6p2l89\",\"data-framer-name\":\"Frame 48326\",layoutDependency:layoutDependency,layoutId:\"AEahJWoJ7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtODAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(44, 42, 54))\"},children:\"4.9\"})}),className:\"framer-122g7vr\",\"data-framer-name\":\"4.9\",fonts:[\"GF;Plus Jakarta Sans-800\"],layoutDependency:layoutDependency,layoutId:\"H1PPsoIoH\",style:{\"--extracted-r6o4lv\":\"rgb(44, 42, 54)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wquu0a\",\"data-framer-name\":\"Frame 48323\",layoutDependency:layoutDependency,layoutId:\"OWBY8JH6h\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:11,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||220.5)-10-210.4090909090909)/2+53+32)+0+38.90909090909091+0+9+0+0+152+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sxhUzY0JMIJaDL89bdKMjLrgLA.svg\"},className:\"framer-10q5wl1\",\"data-framer-name\":\"Frame 48321\",layoutDependency:layoutDependency,layoutId:\"s6e4KC0Un\",...addPropertyOverrides({iOhLm_9pG:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:11,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||261.5)-20-241.4090909090909)/2+84+32)+0+38.90909090909091+0+9+0+0+152+0+0),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/sxhUzY0JMIJaDL89bdKMjLrgLA.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dprnue\",\"data-framer-name\":\"Frame 48322\",layoutDependency:layoutDependency,layoutId:\"tvGfslrKk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 163))\"},children:\"On\"})}),className:\"framer-rfx00y\",\"data-framer-name\":\"On\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"FPOeLk15A\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 163)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11wh2mn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"scjmyc_3x\",svg:'<svg width=\"14\" height=\"15\" viewBox=\"0 0 14 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.43803 0.300781C7.88803 0.300781 8.33803 0.344781 8.78003 0.432781L7.43803 3.23878C5.27803 3.23778 3.51903 4.99778 3.51903 7.15778C3.51903 9.31778 5.27903 11.0778 7.43903 11.0778C8.37603 11.0778 9.28303 10.7398 9.99203 10.1268L11.475 12.6988C10.4525 13.4437 9.24377 13.8912 7.98266 13.9917C6.72154 14.0922 5.45721 13.8418 4.3296 13.2682C3.20199 12.6946 2.25507 11.8202 1.59365 10.7418C0.932233 9.66332 0.582109 8.42289 0.582031 7.15778C0.582031 5.33946 1.30436 3.59561 2.59011 2.30986C3.87586 1.02411 5.61971 0.300781 7.43803 0.300781ZM10.936 0.790781H10.962C11.388 0.790781 11.755 0.904114 12.063 1.13078C12.373 1.36078 12.5284 1.67611 12.529 2.07678C12.529 2.71578 12.169 3.10678 11.494 3.45278L11.117 3.64378C10.714 3.84778 10.515 4.02878 10.46 4.34978H12.51V5.19978H9.40903V5.05578C9.40836 4.53045 9.51303 4.09511 9.72303 3.74978C9.93303 3.40511 10.3004 3.09945 10.825 2.83278L11.067 2.71578C11.494 2.49978 11.605 2.31478 11.605 2.09078C11.605 1.82478 11.377 1.63278 11.005 1.63278C10.565 1.63278 10.232 1.86078 10.001 2.32678L9.40903 1.73178C9.5397 1.45378 9.74603 1.22878 10.028 1.05678C10.2994 0.883977 10.6143 0.791737 10.936 0.790781ZM8.84203 6.17878H12.236L13.933 9.11578L12.236 12.0558L10.539 9.11578H7.14603L8.84203 6.17878Z\" fill=\"#9997A3\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QDSLx.framer-1hpnhqi, .framer-QDSLx .framer-1hpnhqi { display: block; }\",\".framer-QDSLx.framer-ho1i75 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 10px 12px; position: relative; width: 992px; }\",\".framer-QDSLx .framer-1l8w5iw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QDSLx .framer-qsfhh9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QDSLx .framer-gerxy9, .framer-QDSLx .framer-57smf4, .framer-QDSLx .framer-pv3wf5, .framer-QDSLx .framer-xcun8p, .framer-QDSLx .framer-ok3dea, .framer-QDSLx .framer-rfx00y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QDSLx .framer-p1n40d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 3px 4px 4px 4px; position: relative; width: min-content; }\",\".framer-QDSLx .framer-583fpc-container { flex: 1 0 0px; height: 53px; position: relative; width: 1px; }\",\".framer-QDSLx .framer-1xoyt7e { height: 24px; position: relative; width: 107px; }\",\".framer-QDSLx .framer-1kjmus5 { height: 31px; position: relative; width: 94px; }\",\".framer-QDSLx .framer-1pth6ny { height: 18px; position: relative; width: 115px; }\",\".framer-QDSLx .framer-9s2afe { height: 31px; position: relative; width: 130px; }\",\".framer-QDSLx .framer-1gb0f9y { height: 25px; position: relative; width: 118px; }\",\".framer-QDSLx .framer-1fxvm89 { height: 22px; position: relative; width: 79px; }\",\".framer-QDSLx .framer-1pz7iwf { aspect-ratio: 3.629629623596541 / 1; height: var(--framer-aspect-ratio-supported, 37px); position: relative; width: 134px; }\",\".framer-QDSLx .framer-1eog2ln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QDSLx .framer-kigp43 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QDSLx .framer-1vlhwnu, .framer-QDSLx .framer-gkmax8 { aspect-ratio: 1.0476190476190477 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 24px; }\",\".framer-QDSLx .framer-svz85j { flex: none; height: 87px; overflow: visible; position: relative; width: 191px; }\",\".framer-QDSLx .framer-427vjc { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: -3px; overflow: hidden; padding: 9px 16px 9px 16px; position: absolute; top: 50%; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QDSLx .framer-zx8a1z, .framer-QDSLx .framer-6p2l89 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 64px; }\",\".framer-QDSLx .framer-1ghktpt, .framer-QDSLx .framer-122g7vr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 64px; word-break: break-word; word-wrap: break-word; }\",\".framer-QDSLx .framer-s1q6vu, .framer-QDSLx .framer-wquu0a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-QDSLx .framer-sb495y, .framer-QDSLx .framer-10q5wl1 { flex: none; height: 11px; position: relative; width: 64px; }\",\".framer-QDSLx .framer-mqdr0k, .framer-QDSLx .framer-dprnue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QDSLx .framer-1k3dgsl { flex: none; height: 17px; position: relative; width: 17px; }\",\".framer-QDSLx .framer-100y127 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 90px; overflow: hidden; padding: 9px 16px 9px 16px; position: absolute; top: 0px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-QDSLx .framer-11wh2mn { flex: none; height: 15px; position: relative; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QDSLx.framer-ho1i75, .framer-QDSLx .framer-1l8w5iw, .framer-QDSLx .framer-qsfhh9, .framer-QDSLx .framer-p1n40d, .framer-QDSLx .framer-1eog2ln, .framer-QDSLx .framer-kigp43, .framer-QDSLx .framer-427vjc, .framer-QDSLx .framer-zx8a1z, .framer-QDSLx .framer-s1q6vu, .framer-QDSLx .framer-mqdr0k, .framer-QDSLx .framer-100y127, .framer-QDSLx .framer-6p2l89, .framer-QDSLx .framer-wquu0a, .framer-QDSLx .framer-dprnue { gap: 0px; } .framer-QDSLx.framer-ho1i75 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-QDSLx.framer-ho1i75 > :first-child, .framer-QDSLx .framer-1eog2ln > :first-child, .framer-QDSLx .framer-zx8a1z > :first-child, .framer-QDSLx .framer-s1q6vu > :first-child, .framer-QDSLx .framer-6p2l89 > :first-child, .framer-QDSLx .framer-wquu0a > :first-child { margin-top: 0px; } .framer-QDSLx.framer-ho1i75 > :last-child, .framer-QDSLx .framer-1eog2ln > :last-child, .framer-QDSLx .framer-zx8a1z > :last-child, .framer-QDSLx .framer-s1q6vu > :last-child, .framer-QDSLx .framer-6p2l89 > :last-child, .framer-QDSLx .framer-wquu0a > :last-child { margin-bottom: 0px; } .framer-QDSLx .framer-1l8w5iw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-QDSLx .framer-1l8w5iw > :first-child, .framer-QDSLx .framer-qsfhh9 > :first-child, .framer-QDSLx .framer-p1n40d > :first-child, .framer-QDSLx .framer-kigp43 > :first-child, .framer-QDSLx .framer-427vjc > :first-child, .framer-QDSLx .framer-mqdr0k > :first-child, .framer-QDSLx .framer-100y127 > :first-child, .framer-QDSLx .framer-dprnue > :first-child { margin-left: 0px; } .framer-QDSLx .framer-1l8w5iw > :last-child, .framer-QDSLx .framer-qsfhh9 > :last-child, .framer-QDSLx .framer-p1n40d > :last-child, .framer-QDSLx .framer-kigp43 > :last-child, .framer-QDSLx .framer-427vjc > :last-child, .framer-QDSLx .framer-mqdr0k > :last-child, .framer-QDSLx .framer-100y127 > :last-child, .framer-QDSLx .framer-dprnue > :last-child { margin-right: 0px; } .framer-QDSLx .framer-qsfhh9 > *, .framer-QDSLx .framer-p1n40d > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-QDSLx .framer-1eog2ln > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-QDSLx .framer-kigp43 > *, .framer-QDSLx .framer-427vjc > *, .framer-QDSLx .framer-100y127 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QDSLx .framer-zx8a1z > *, .framer-QDSLx .framer-6p2l89 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-QDSLx .framer-s1q6vu > *, .framer-QDSLx .framer-wquu0a > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-QDSLx .framer-mqdr0k > *, .framer-QDSLx .framer-dprnue > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",\".framer-QDSLx.framer-v-1j3bhby.framer-ho1i75 { padding: 0px 0px 20px 0px; }\",\".framer-QDSLx.framer-v-1j3bhby .framer-1l8w5iw { flex-direction: column; }\",\".framer-QDSLx.framer-v-1j3bhby .framer-583fpc-container { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QDSLx.framer-v-1j3bhby .framer-1l8w5iw { gap: 0px; } .framer-QDSLx.framer-v-1j3bhby .framer-1l8w5iw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-QDSLx.framer-v-1j3bhby .framer-1l8w5iw > :first-child { margin-top: 0px; } .framer-QDSLx.framer-v-1j3bhby .framer-1l8w5iw > :last-child { margin-bottom: 0px; } }\",'.framer-QDSLx[data-border=\"true\"]::after, .framer-QDSLx [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 220.5\n * @framerIntrinsicWidth 992\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iOhLm_9pG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framern2ois93pz=withCSS(Component,css,\"framer-QDSLx\");export default Framern2ois93pz;Framern2ois93pz.displayName=\"Logo Ticker\";Framern2ois93pz.defaultProps={height:220.5,width:992};addPropertyControls(Framern2ois93pz,{variant:{options:[\"E4oeXzt6W\",\"iOhLm_9pG\"],optionTitles:[\"Horizontal\",\"2 lines\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framern2ois93pz,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern2ois93pz\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"220.5\",\"framerIntrinsicWidth\":\"992\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iOhLm_9pG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n2ois93pz.map"],
  "mappings": "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",
  "names": ["noopReturn", "e", "velocityPerSecond", "calcBezier", "n", "e", "i", "binarySubdivide", "o", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "t", "o", "cubicBezier", "__rest", "e", "t", "r", "n", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "t", "hasReachedTarget", "spring", "o", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "isOutOfBounds", "nearestBoundary", "m", "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", "createGeneratorEasing", "e", "t", "o", "getGenerator", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "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", "dispatchViewEvent", "se", "o", "i", "__rest", "inView$1", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "Framern2ois93pz", "withCSS", "n2ois93pz_default", "addPropertyControls", "ControlType", "addFonts"]
}
