{"version":3,"file":"nT8JiHhC1RlhdUbIMWrVxLtYSQxfmhZ0FS3mT18cY_g.DS2gUbNE.mjs","names":["e","t","u","a","s","n","o","r","t","e","i","n","r","n","e","t","o","n","e","t","a","n","e","r","t","s","o","i","u","p","M","n","e","t","o","a","i","s","r","A","l","u","O","q","j","x","V","se","b","props","Children","useRef","useMemo","useState","useCallback","size","i","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","props","createLayoutDependency","Component","useRef","className","css","addPropertyOverrides","VerticalTabButton","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","props","createLayoutDependency","Component","useRef","className","Image","css","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","props","Component","useRef","className","componentPresets.props[\"XxyyB7KVf\"]","css","componentPresets.fonts?.[\"XxyyB7KVf\"]","ElementNavigation","ElementButton","ElementButtonInfo","VerticalTabs","AccordionAccordion03","SectionsFooter","props","useRef","metadata","metadataProvider","className","PropertyOverrides","Image"],"sources":["https:/ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js","https:/ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js","https:/ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js","https:/ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js","https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/bSG2fUXcc43766cbIglD/Ticker.js","https:/framerusercontent.com/modules/SUdTh3Vrq0bCLCqGeAvu/jRZIOe4BAWgUB2ccjza0/yYRV14gzH.js","https:/framerusercontent.com/modules/aPYRb5dVCDfG1nchLfEU/eUyWC7N1GYe6m3MHBCp5/OMLXq0OOQ.js","https:/framerusercontent.com/modules/wLM5Cq7IcU7bw4feYLhu/pdy7obyKMHYTLUk7gWiS/xJ2WVPMOC.js","https:/framerusercontent.com/modules/tnRIyCB6n6dtqDzB9Dy1/bVa9breycxPxlbZKbwTJ/wL_DFmSOn.js"],"sourcesContent":["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map","import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map","import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map","var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map","var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map","import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map","import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (ed23c09)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ldigSyVfKZp2eUqrL9Ms/WmY0RUehOmKhugmogBdb/aGCZLqUau.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tz7gQKd1ljA13PzNlh8G/NORrSyoWdLJJ8e8MCrZH/yUpftignO.js\";const enabledGestures={cdqFyI08p:{hover:true}};const cycleOrder=[\"I1:1128;25:1648\",\"cdqFyI08p\"];const serializationHash=\"framer-dbfki\";const variantClassNames={\"I1:1128;25:1648\":\"framer-v-2pv6bt\",cdqFyI08p:\"framer-v-a7iepm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={active:\"I1:1128;25:1648\",inactive:\"cdqFyI08p\"};const getProps=({click,height,id,text,title,width,...props})=>{return{...props,a6JXE9NHz:click??props.a6JXE9NHz,g3vsFXQ0F:title??props.g3vsFXQ0F??\"Daily intelligence without another dashboard\",GbArWYUyn:text??props.GbArWYUyn??\"Get your priority accounts delivered to Slack every morning. See risk factors, usage patterns, and suggested actions - no new tools to check.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"I1:1128;25:1648\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,g3vsFXQ0F,GbArWYUyn,a6JXE9NHz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I1:1128;25:1648\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ukeiod=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(a6JXE9NHz){const res=await a6JXE9NHz(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-2pv6bt\",className,classNames),\"data-border\":true,\"data-framer-name\":\"active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I1:1128;25:1648\",onTap:onTap1ukeiod,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(233, 235, 240)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 4px 4px 0px rgba(0, 0, 0, 0.15)\",...style},variants:{\"cdqFyI08p-hover\":{\"--border-color\":\"rgb(233, 235, 240)\",backgroundColor:\"rgba(255, 255, 255, 0.85)\"},cdqFyI08p:{\"--border-color\":\"rgba(233, 235, 240, 0)\",backgroundColor:\"rgba(255, 255, 255, 0)\",boxShadow:\"none\"}},...addPropertyOverrides({\"cdqFyI08p-hover\":{\"data-framer-name\":undefined},cdqFyI08p:{\"data-framer-name\":\"inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tcxtp0\",\"data-framer-name\":\"Project Title + Description\",layoutDependency:layoutDependency,layoutId:\"I1:1128;25:1649\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1mgt7gv\",\"data-styles-preset\":\"aGCZLqUau\",children:\"Daily intelligence without another dashboard\"})}),className:\"framer-1vw4c4z\",\"data-framer-name\":\"Project Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1:1128;25:1650\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:g3vsFXQ0F,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cob799\",\"data-styles-preset\":\"yUpftignO\",children:\"Get your priority accounts delivered to Slack every morning. See risk factors, usage patterns, and suggested actions - no new tools to check.\"})}),className:\"framer-gakegq\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I1:1128;25:1651\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:GbArWYUyn,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dbfki.framer-1cr0wb1, .framer-dbfki .framer-1cr0wb1 { display: block; }\",\".framer-dbfki.framer-2pv6bt { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 24px 40px 24px; position: relative; width: 460px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dbfki .framer-1tcxtp0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dbfki .framer-1vw4c4z, .framer-dbfki .framer-gakegq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-dbfki[data-border=\"true\"]::after, .framer-dbfki [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 246\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cdqFyI08p\":{\"layout\":[\"fixed\",\"auto\"]},\"JvCXxoFYd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"g3vsFXQ0F\":\"title\",\"GbArWYUyn\":\"text\",\"a6JXE9NHz\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameryYRV14gzH=withCSS(Component,css,\"framer-dbfki\");export default FrameryYRV14gzH;FrameryYRV14gzH.displayName=\"vertical tab button\";FrameryYRV14gzH.defaultProps={height:246,width:460};addPropertyControls(FrameryYRV14gzH,{variant:{options:[\"I1:1128;25:1648\",\"cdqFyI08p\"],optionTitles:[\"active\",\"inactive\"],title:\"Variant\",type:ControlType.Enum},g3vsFXQ0F:{defaultValue:\"Daily intelligence without another dashboard\",displayTextArea:false,title:\"Title\",type:ControlType.String},GbArWYUyn:{defaultValue:\"Get your priority accounts delivered to Slack every morning. See risk factors, usage patterns, and suggested actions - no new tools to check.\",displayTextArea:false,title:\"Text\",type:ControlType.String},a6JXE9NHz:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FrameryYRV14gzH,[{explicitInter:true,fonts:[{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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{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/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{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/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{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/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryYRV14gzH\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"246\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"g3vsFXQ0F\\\":\\\"title\\\",\\\"GbArWYUyn\\\":\\\"text\\\",\\\"a6JXE9NHz\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cdqFyI08p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JvCXxoFYd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"460\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yYRV14gzH.map","// Generated by Framer (a9375b9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import VerticalTabButton from\"https://framerusercontent.com/modules/SUdTh3Vrq0bCLCqGeAvu/jRZIOe4BAWgUB2ccjza0/yYRV14gzH.js\";const VerticalTabButtonFonts=getFonts(VerticalTabButton);const cycleOrder=[\"I1:1128;25:1645\",\"IpKBM7Sno\",\"YcZELYBAf\",\"gx46ozw9F\",\"f0Q2IejLT\",\"cYhKaoxn_\",\"OufG3ap8p\"];const serializationHash=\"framer-EWXUC\";const variantClassNames={\"I1:1128;25:1645\":\"framer-v-1hfhmx7\",cYhKaoxn_:\"framer-v-wll2a3\",f0Q2IejLT:\"framer-v-1ne2002\",gx46ozw9F:\"framer-v-1jfwwmr\",IpKBM7Sno:\"framer-v-120iy6e\",OufG3ap8p:\"framer-v-12n4bp0\",YcZELYBAf:\"framer-v-4k9apy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"tab 1 desktop\":\"I1:1128;25:1645\",\"tab 1 mobile\":\"OufG3ap8p\",\"tab 1 tablet\":\"gx46ozw9F\",\"tab 2 desktop\":\"IpKBM7Sno\",\"tab 2 tablet\":\"f0Q2IejLT\",\"tab 3 desktop\":\"YcZELYBAf\",\"tab 3 tablet\":\"cYhKaoxn_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"I1:1128;25:1645\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I1:1128;25:1645\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const a6JXE9NHz11qxfvs=activeVariantCallback(async(...args)=>{setVariant(\"I1:1128;25:1645\");});const a6JXE9NHzp6pbxh=activeVariantCallback(async(...args)=>{setVariant(\"gx46ozw9F\");});const a6JXE9NHz1xhmqp8=activeVariantCallback(async(...args)=>{setVariant(\"IpKBM7Sno\");});const a6JXE9NHzuyf5av=activeVariantCallback(async(...args)=>{setVariant(\"f0Q2IejLT\");});const a6JXE9NHz1wpg2um=activeVariantCallback(async(...args)=>{setVariant(\"YcZELYBAf\");});const a6JXE9NHz6hhq4n=activeVariantCallback(async(...args)=>{setVariant(\"cYhKaoxn_\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"OufG3ap8p\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"OufG3ap8p\")return false;return true;};const isDisplayed2=()=>{if([\"IpKBM7Sno\",\"f0Q2IejLT\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"YcZELYBAf\",\"cYhKaoxn_\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"IpKBM7Sno\",\"YcZELYBAf\",\"f0Q2IejLT\",\"cYhKaoxn_\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1hfhmx7\",className,classNames),\"data-framer-name\":\"tab 1 desktop\",layoutDependency:layoutDependency,layoutId:\"I1:1128;25:1645\",ref:refBinding,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({cYhKaoxn_:{\"data-framer-name\":\"tab 3 tablet\"},f0Q2IejLT:{\"data-framer-name\":\"tab 2 tablet\"},gx46ozw9F:{\"data-framer-name\":\"tab 1 tablet\"},IpKBM7Sno:{\"data-framer-name\":\"tab 2 desktop\"},OufG3ap8p:{\"data-framer-name\":\"tab 1 mobile\"},YcZELYBAf:{\"data-framer-name\":\"tab 3 desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jua8m8\",\"data-framer-name\":\"Frame 492\",layoutDependency:layoutDependency,layoutId:\"I1:1128;25:1646\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f25uqf\",\"data-framer-name\":\"Frame 26158\",layoutDependency:layoutDependency,layoutId:\"I1:1128;25:1647\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:246,width:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0,...addPropertyOverrides({cYhKaoxn_:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},f0Q2IejLT:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},gx46ozw9F:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},OufG3ap8p:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+40+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5zyyfk-container\",layoutDependency:layoutDependency,layoutId:\"hkXPy87AV-container\",nodeId:\"hkXPy87AV\",rendersWithMotion:true,scopeId:\"OMLXq0OOQ\",children:/*#__PURE__*/_jsx(VerticalTabButton,{g3vsFXQ0F:\"Know who’s moving and who’s stuck.\",GbArWYUyn:\"See which accounts are making progress and which ones are drifting. Track activation, adoption, frequency, active users and more. – no digging.\",height:\"100%\",id:\"hkXPy87AV\",layoutId:\"hkXPy87AV\",style:{width:\"100%\"},variant:\"I1:1128;25:1648\",width:\"100%\",...addPropertyOverrides({cYhKaoxn_:{a6JXE9NHz:a6JXE9NHzp6pbxh,variant:\"cdqFyI08p\"},f0Q2IejLT:{a6JXE9NHz:a6JXE9NHzp6pbxh,variant:\"cdqFyI08p\"},IpKBM7Sno:{a6JXE9NHz:a6JXE9NHz11qxfvs,variant:\"cdqFyI08p\"},YcZELYBAf:{a6JXE9NHz:a6JXE9NHz11qxfvs,variant:\"cdqFyI08p\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zysl71\",\"data-framer-name\":\"mobile images\",layoutDependency:layoutDependency,layoutId:\"I5zHnsrZ2\",style:{backgroundColor:\"rgb(9, 209, 128)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,pixelHeight:1276,pixelWidth:1464,src:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?width=1464&height=1276 1464w\"},className:\"framer-50yim9\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ewc9GuMQW\",...addPropertyOverrides({OufG3ap8p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+0+0+0+276+0+354.5),pixelHeight:1276,pixelWidth:1464,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?width=1464&height=1276 1464w\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a6x98f\",\"data-framer-name\":\"mobile images\",layoutDependency:layoutDependency,layoutId:\"IePh1i5iQ\",style:{backgroundColor:\"rgb(208, 236, 252)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,pixelHeight:1276,pixelWidth:1464,src:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?width=1464&height=1276 1464w\"},className:\"framer-1bfeul1\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"p0f_tKbbn\",...addPropertyOverrides({OufG3ap8p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+0+0+0+1901+0+572.3416),pixelHeight:1276,pixelWidth:1464,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?width=1464&height=1276 1464w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,pixelHeight:1276,pixelWidth:1464,src:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?width=1464&height=1276 1464w\"},className:\"framer-1wgu4pf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Mza9ZwpKs\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:246,width:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+276,...addPropertyOverrides({cYhKaoxn_:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},f0Q2IejLT:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},gx46ozw9F:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},OufG3ap8p:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+40+0+0+0+0+1625}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-32ksee-container\",layoutDependency:layoutDependency,layoutId:\"zpMdvhKmQ-container\",nodeId:\"zpMdvhKmQ\",rendersWithMotion:true,scopeId:\"OMLXq0OOQ\",children:/*#__PURE__*/_jsx(VerticalTabButton,{a6JXE9NHz:a6JXE9NHz1xhmqp8,g3vsFXQ0F:\"Interpret your signals fast with summaries.\",GbArWYUyn:\"Accoil’s summaries surface key signals across users and accounts fast, with suggestions on what to do next.\",height:\"100%\",id:\"zpMdvhKmQ\",layoutId:\"zpMdvhKmQ\",style:{width:\"100%\"},variant:\"cdqFyI08p\",width:\"100%\",...addPropertyOverrides({cYhKaoxn_:{a6JXE9NHz:a6JXE9NHzuyf5av},f0Q2IejLT:{variant:\"I1:1128;25:1648\"},gx46ozw9F:{a6JXE9NHz:a6JXE9NHzuyf5av},IpKBM7Sno:{variant:\"I1:1128;25:1648\"},OufG3ap8p:{a6JXE9NHz:undefined,variant:\"I1:1128;25:1648\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ii1p5\",\"data-framer-name\":\"mobile images\",layoutDependency:layoutDependency,layoutId:\"PLGCGnIvw\",style:{backgroundColor:\"rgb(32, 193, 108)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,pixelHeight:1276,pixelWidth:1464,src:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?width=1464&height=1276 1464w\"},className:\"framer-kzysf0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"DK_NMi6VW\",...addPropertyOverrides({OufG3ap8p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+0+0+0+3526+0+572.3416),pixelHeight:1276,pixelWidth:1464,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?width=1464&height=1276 1464w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,pixelHeight:1276,pixelWidth:1464,src:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?width=1464&height=1276 1464w\"},className:\"framer-fnaz9l\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"acLZtAezw\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:246,width:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+552,...addPropertyOverrides({cYhKaoxn_:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},f0Q2IejLT:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},gx46ozw9F:{width:`max((${componentViewport?.width||\"100vw\"} - 60px) / 3, 1px)`,y:(componentViewport?.y||0)+40+0+0+0+0},OufG3ap8p:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+40+0+0+0+0+3250}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11d5v41-container\",layoutDependency:layoutDependency,layoutId:\"pvhyENQTN-container\",nodeId:\"pvhyENQTN\",rendersWithMotion:true,scopeId:\"OMLXq0OOQ\",children:/*#__PURE__*/_jsx(VerticalTabButton,{a6JXE9NHz:a6JXE9NHz1wpg2um,g3vsFXQ0F:\"Custom alerts so younever miss an important update.\",GbArWYUyn:\"Use automation to get alerts on even just one account’s product usage trends.\",height:\"100%\",id:\"pvhyENQTN\",layoutId:\"pvhyENQTN\",style:{width:\"100%\"},variant:\"cdqFyI08p\",width:\"100%\",...addPropertyOverrides({cYhKaoxn_:{variant:\"I1:1128;25:1648\"},f0Q2IejLT:{a6JXE9NHz:a6JXE9NHz6hhq4n},gx46ozw9F:{a6JXE9NHz:a6JXE9NHz6hhq4n},OufG3ap8p:{a6JXE9NHz:undefined,variant:\"I1:1128;25:1648\"},YcZELYBAf:{variant:\"I1:1128;25:1648\"}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q551k0\",\"data-framer-name\":\"desktop images\",layoutDependency:layoutDependency,layoutId:\"rjtpkO9J4\",style:{backgroundColor:\"rgb(9, 209, 128)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{cYhKaoxn_:{backgroundColor:\"rgb(32, 193, 108)\"},f0Q2IejLT:{backgroundColor:\"rgb(208, 236, 252)\"},IpKBM7Sno:{backgroundColor:\"rgb(208, 236, 252)\"},YcZELYBAf:{backgroundColor:\"rgb(32, 193, 108)\"}},children:[isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,pixelHeight:1276,pixelWidth:1464,src:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?width=1464&height=1276 1464w\"},className:\"framer-12bpvz0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hbSIKueFX\",...addPropertyOverrides({f0Q2IejLT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+0+276+0+601.6831),pixelHeight:1276,pixelWidth:1464,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?width=1464&height=1276 1464w\"}},IpKBM7Sno:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+11+0+601.6831),pixelHeight:1276,pixelWidth:1464,sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/7GgZ3hoUDV1gu4iy8gcdEVMrQc.png?width=1464&height=1276 1464w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,pixelHeight:1276,pixelWidth:1464,src:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?width=1464&height=1276 1464w\"},className:\"framer-3g7oxg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"pVpOVTKtP\",...addPropertyOverrides({cYhKaoxn_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+0+276+0+300.8416),pixelHeight:1276,pixelWidth:1464,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?width=1464&height=1276 1464w\"}},YcZELYBAf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+11+0+300.8416),pixelHeight:1276,pixelWidth:1464,sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/br0TCCX04lTvN4SUApcIgM3yKE.png?width=1464&height=1276 1464w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+11+0+83),pixelHeight:1276,pixelWidth:1464,sizes:`max((${componentViewport?.width||\"100vw\"} - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?width=1464&height=1276 1464w\"},className:\"framer-109w4w4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hbiby4b9S\",...addPropertyOverrides({gx46ozw9F:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:638,intrinsicWidth:732,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+0+0+276+0+83),pixelHeight:1276,pixelWidth:1464,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276\",srcSet:\"https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=512&width=1464&height=1276 512w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?scale-down-to=1024&width=1464&height=1276 1024w,https://framerusercontent.com/images/n11YTjbZoy0BhamoHLPFk7Q4F6U.png?width=1464&height=1276 1464w\"}}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EWXUC.framer-49hchn, .framer-EWXUC .framer-49hchn { display: block; }\",\".framer-EWXUC.framer-1hfhmx7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 1190px; }\",\".framer-EWXUC .framer-1jua8m8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EWXUC .framer-1f25uqf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-EWXUC .framer-5zyyfk-container, .framer-EWXUC .framer-32ksee-container, .framer-EWXUC .framer-11d5v41-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-EWXUC .framer-zysl71, .framer-EWXUC .framer-a6x98f, .framer-EWXUC .framer-7ii1p5 { align-content: center; align-items: center; aspect-ratio: 0.9020618556701031 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 222px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EWXUC .framer-50yim9, .framer-EWXUC .framer-1bfeul1, .framer-EWXUC .framer-1wgu4pf, .framer-EWXUC .framer-kzysf0, .framer-EWXUC .framer-fnaz9l, .framer-EWXUC .framer-12bpvz0, .framer-EWXUC .framer-3g7oxg { aspect-ratio: 1.1473354231974922 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 174px); overflow: visible; position: relative; width: 100%; }\",\".framer-EWXUC .framer-q551k0 { align-content: center; align-items: center; aspect-ratio: 0.9020618556701031 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 643px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-EWXUC .framer-109w4w4 { aspect-ratio: 1.1473354231974922 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 506px); overflow: visible; position: relative; width: 100%; }\",\".framer-EWXUC.framer-v-120iy6e .framer-q551k0 { justify-content: flex-end; }\",\".framer-EWXUC.framer-v-120iy6e .framer-12bpvz0 { height: var(--framer-aspect-ratio-supported, 506px); order: 0; }\",\".framer-EWXUC.framer-v-4k9apy .framer-3g7oxg { height: var(--framer-aspect-ratio-supported, 506px); }\",\".framer-EWXUC.framer-v-1jfwwmr .framer-1jua8m8, .framer-EWXUC.framer-v-1ne2002 .framer-1jua8m8, .framer-EWXUC.framer-v-wll2a3 .framer-1jua8m8, .framer-EWXUC.framer-v-12n4bp0 .framer-1jua8m8 { flex-direction: column; }\",\".framer-EWXUC.framer-v-1jfwwmr .framer-1f25uqf, .framer-EWXUC.framer-v-1ne2002 .framer-1f25uqf, .framer-EWXUC.framer-v-wll2a3 .framer-1f25uqf { flex: none; flex-direction: row; width: 100%; }\",\".framer-EWXUC.framer-v-1jfwwmr .framer-5zyyfk-container, .framer-EWXUC.framer-v-1jfwwmr .framer-32ksee-container, .framer-EWXUC.framer-v-1jfwwmr .framer-11d5v41-container, .framer-EWXUC.framer-v-1ne2002 .framer-5zyyfk-container, .framer-EWXUC.framer-v-1ne2002 .framer-32ksee-container, .framer-EWXUC.framer-v-1ne2002 .framer-11d5v41-container, .framer-EWXUC.framer-v-wll2a3 .framer-5zyyfk-container, .framer-EWXUC.framer-v-wll2a3 .framer-32ksee-container, .framer-EWXUC.framer-v-wll2a3 .framer-11d5v41-container { flex: 1 0 0px; width: 1px; }\",\".framer-EWXUC.framer-v-1jfwwmr .framer-q551k0, .framer-EWXUC.framer-v-wll2a3 .framer-q551k0 { flex: none; height: var(--framer-aspect-ratio-supported, 1319px); width: 100%; }\",\".framer-EWXUC.framer-v-1jfwwmr .framer-109w4w4, .framer-EWXUC.framer-v-1ne2002 .framer-12bpvz0, .framer-EWXUC.framer-v-wll2a3 .framer-3g7oxg { height: var(--framer-aspect-ratio-supported, 1037px); }\",\".framer-EWXUC.framer-v-1ne2002 .framer-q551k0 { flex: none; height: var(--framer-aspect-ratio-supported, 1319px); justify-content: flex-end; width: 100%; }\",\".framer-EWXUC.framer-v-12n4bp0 .framer-1f25uqf { flex: none; width: 100%; }\",\".framer-EWXUC.framer-v-12n4bp0 .framer-5zyyfk-container { order: 0; }\",\".framer-EWXUC.framer-v-12n4bp0 .framer-zysl71 { order: 1; }\",\".framer-EWXUC.framer-v-12n4bp0 .framer-a6x98f { order: 3; }\",\".framer-EWXUC.framer-v-12n4bp0 .framer-32ksee-container { order: 2; }\",\".framer-EWXUC.framer-v-12n4bp0 .framer-7ii1p5 { order: 5; }\",\".framer-EWXUC.framer-v-12n4bp0 .framer-11d5v41-container { order: 4; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 728\n * @framerIntrinsicWidth 1190\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IpKBM7Sno\":{\"layout\":[\"fixed\",\"auto\"]},\"YcZELYBAf\":{\"layout\":[\"fixed\",\"auto\"]},\"gx46ozw9F\":{\"layout\":[\"fixed\",\"auto\"]},\"f0Q2IejLT\":{\"layout\":[\"fixed\",\"auto\"]},\"cYhKaoxn_\":{\"layout\":[\"fixed\",\"auto\"]},\"OufG3ap8p\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOMLXq0OOQ=withCSS(Component,css,\"framer-EWXUC\");export default FramerOMLXq0OOQ;FramerOMLXq0OOQ.displayName=\"vertical tabs\";FramerOMLXq0OOQ.defaultProps={height:728,width:1190};addPropertyControls(FramerOMLXq0OOQ,{variant:{options:[\"I1:1128;25:1645\",\"IpKBM7Sno\",\"YcZELYBAf\",\"gx46ozw9F\",\"f0Q2IejLT\",\"cYhKaoxn_\",\"OufG3ap8p\"],optionTitles:[\"tab 1 desktop\",\"tab 2 desktop\",\"tab 3 desktop\",\"tab 1 tablet\",\"tab 2 tablet\",\"tab 3 tablet\",\"tab 1 mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOMLXq0OOQ,[{explicitInter:true,fonts:[]},...VerticalTabButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOMLXq0OOQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"728\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IpKBM7Sno\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YcZELYBAf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gx46ozw9F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f0Q2IejLT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cYhKaoxn_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OufG3ap8p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1190\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OMLXq0OOQ.map","// Generated by Framer (a9375b9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/tzK5kPZWcMhH39fqUQO6/HoUt3XsoVTXCVqCPTMlw/componentPresets.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/ldigSyVfKZp2eUqrL9Ms/WmY0RUehOmKhugmogBdb/aGCZLqUau.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/eGy1sZoNxSAlOkbJpmG1/MHGuc3LxirntAplLZe0T/H6kpSgVe5.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/6BgfFwWqCrPXVUEgAIT1/DC2pC5N0fNKxAhHNUDVr/IawcPHtI8.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/ASxPmwbA4eBIVm2Fzz4Q/INMWXnUX6LYI9wbUldk2/K3qCY1foP.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/idRx0ft1vibgdPTB56Bs/bZYiuivn1gN7qHNGoiT0/kdnsteXbk.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/xOhSvoZqEOT3udjFOA6O/5pPvKnq2DtBwz6Oc9Wif/KkpP3tb3P.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/86M2uOCD0NWHQC4dSUIX/Dfwh3dncwLBA4SGKuRuv/l7m9kpHJr.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/wrPe8dCWrZwmPYsIPiEi/7ngraTcsxqpL0Yi83pnK/mJiib48Jt.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/tw0dzDvSbfqh6dXZ5fLh/oKK0L6b53RkMvL22OfIe/SELqKM73y.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/ZsdtDRwBxvd0aDEXeXVf/sF7mAhIqV94w2KyzNOe0/vElRl19j8.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/bTHyKEGv8rACppcvETzD/jHH40vBn7nB6I4oYC0zt/VkkrVlv4m.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/xAKR3PcANVWKt8QFKsYQ/INkOtwqhCSKReW7uxy8o/yifqthF4B.js\";const cycleOrder=[\"k1t1xnPH4\",\"neC7T8Osa\"];const serializationHash=\"framer-tAOv0\";const variantClassNames={k1t1xnPH4:\"framer-v-1ivgnql\",neC7T8Osa:\"framer-v-u7w3s7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"k1t1xnPH4\",Open:\"neC7T8Osa\"};const getProps=({content,height,id,question,width,...props})=>{return{...props,R2YBuxhjX:content??props.R2YBuxhjX??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Placeholder text\"})}),variant:humanReadableVariantMap[props.variant]??props.variant??\"k1t1xnPH4\",W88zB8mIG:question??props.W88zB8mIG??\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,W88zB8mIG,R2YBuxhjX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"k1t1xnPH4\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ib3qx6=activeVariantCallback(async(...args)=>{setVariant(\"neC7T8Osa\");});const onTapphb60d=activeVariantCallback(async(...args)=>{setVariant(\"k1t1xnPH4\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"neC7T8Osa\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ivgnql\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"k1t1xnPH4\",ref:refBinding,style:{...style},...addPropertyOverrides({neC7T8Osa:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gq30x5\",\"data-border\":true,\"data-framer-name\":\"Box\",layoutDependency:layoutDependency,layoutId:\"Lpg7NlbU3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(211, 211, 211)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\"},variants:{neC7T8Osa:{boxShadow:\"0px 20px 50px 0px rgba(0, 0, 0, 0.12)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qx8t1p\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Soe0iy3dY\",onTap:onTap1ib3qx6,...addPropertyOverrides({neC7T8Osa:{onTap:onTapphb60d}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Connect your data\"})}),className:\"framer-1q01hbi\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HCuIbPk1c\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tyka3o\",layoutDependency:layoutDependency,layoutId:\"ob4_Lw0OA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.065 13.666\" overflow=\"visible\"><path d=\"M 0.505 2.819 L 10.875 13.189 C 11.512 13.825 12.544 13.825 13.18 13.189 L 23.55 2.819 C 23.984 2.412 24.162 1.801 24.014 1.225 C 23.866 0.649 23.416 0.199 22.84 0.051 C 22.264 -0.097 21.653 0.081 21.246 0.515 L 12.028 9.732 L 2.81 0.514 C 2.402 0.085 1.794 -0.088 1.221 0.06 C 0.648 0.209 0.201 0.656 0.052 1.228 C -0.096 1.801 0.077 2.409 0.505 2.818 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({neC7T8Osa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.065 13.666\" overflow=\"visible\"><path d=\"M 0.505 10.847 L 10.875 0.477 C 11.512 -0.159 12.544 -0.159 13.18 0.477 L 23.55 10.847 C 23.984 11.254 24.162 11.865 24.014 12.441 C 23.866 13.017 23.416 13.467 22.84 13.615 C 22.264 13.763 21.653 13.585 21.246 13.151 L 12.028 3.934 L 2.81 13.152 C 2.402 13.581 1.794 13.754 1.221 13.606 C 0.648 13.458 0.201 13.01 0.052 12.438 C -0.096 11.865 0.077 11.257 0.505 10.848 Z\" fill=\"rgb(0,0,0)\"></path></svg>'}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xgwcvg\",\"data-framer-name\":\"Line Bottom\",layoutDependency:layoutDependency,layoutId:\"BydRk9ewq\",style:{backgroundColor:\"var(--token-d62ffd6d-0365-4204-85b2-674429fa3b78, rgb(230, 231, 232))\"}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-cno1kz\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"ko8u5b4TJ\",style:{opacity:0},variants:{neC7T8Osa:{opacity:1}},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/MdNWL2Xsf9YVOUrCz8E6/CodeBlock.js:default\":componentPresets.props[\"XxyyB7KVf\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:R2YBuxhjX,className:\"framer-6prp1x\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uK63xh8hw\",style:{\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-37kwv8\",blockquote:\"framer-styles-preset-mqvpw9\",code:\"framer-styles-preset-bx5vz\",h1:\"framer-styles-preset-164i5hv\",h2:\"framer-styles-preset-1e5au5j\",h3:\"framer-styles-preset-1dagltv\",h4:\"framer-styles-preset-1mgt7gv\",h5:\"framer-styles-preset-j55s49\",h6:\"framer-styles-preset-pduiqt\",img:\"framer-styles-preset-lpbi6c\",p:\"framer-styles-preset-11wkhg3\",table:\"framer-styles-preset-ytx0nm\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tAOv0.framer-4yrejl, .framer-tAOv0 .framer-4yrejl { display: block; }\",\".framer-tAOv0.framer-1ivgnql { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-tAOv0 .framer-1gq30x5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tAOv0 .framer-qx8t1p { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; user-select: none; width: 100%; }\",\".framer-tAOv0 .framer-1q01hbi { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tAOv0 .framer-1tyka3o { height: 14px; position: relative; width: 24px; }\",\".framer-tAOv0 .framer-xgwcvg { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-tAOv0 .framer-cno1kz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-tAOv0 .framer-6prp1x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-tAOv0[data-border=\"true\"]::after, .framer-tAOv0 [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 155\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"neC7T8Osa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"R2YBuxhjX\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxJ2WVPMOC=withCSS(Component,css,\"framer-tAOv0\");export default FramerxJ2WVPMOC;FramerxJ2WVPMOC.displayName=\"Accordion/Accordion 03\";FramerxJ2WVPMOC.defaultProps={height:155,width:400};addPropertyControls(FramerxJ2WVPMOC,{variant:{options:[\"k1t1xnPH4\",\"neC7T8Osa\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},R2YBuxhjX:{defaultValue:\"<p>Placeholder text</p>\",title:\"Content\",type:ControlType.RichText}});addFonts(FramerxJ2WVPMOC,[{explicitInter:true,fonts:[{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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{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/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{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/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{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/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...componentPresets.fonts?.[\"XxyyB7KVf\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"XxyyB7KVf\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxJ2WVPMOC\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"neC7T8Osa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"155\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"R2YBuxhjX\\\":\\\"content\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xJ2WVPMOC.map","// Generated by Framer (44e0108)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/bSG2fUXcc43766cbIglD/Ticker.js\";import FramerIcons from\"https://framerusercontent.com/modules/bjUTEQt5uFu8cIOVtWXD/1JUDrjekvVZ3bNFl775A/FramerIcon.js\";import SectionsFooter from\"#framer/local/canvasComponent/NYrMCsWcz/NYrMCsWcz.js\";import VerticalTabs from\"#framer/local/canvasComponent/OMLXq0OOQ/OMLXq0OOQ.js\";import ElementNavigation from\"#framer/local/canvasComponent/Onncil_xn/Onncil_xn.js\";import ElementButton,*as ElementButtonInfo from\"#framer/local/canvasComponent/SUZJzn96L/SUZJzn96L.js\";import AccordionAccordion03 from\"#framer/local/canvasComponent/xJ2WVPMOC/xJ2WVPMOC.js\";import{withClass}from\"#framer/local/codeFile/tJ5vQ8L/Cta_main.js\";import*as sharedStyle7 from\"#framer/local/css/Dc622bfqC/Dc622bfqC.js\";import*as sharedStyle6 from\"#framer/local/css/IawcPHtI8/IawcPHtI8.js\";import*as sharedStyle4 from\"#framer/local/css/kdnsteXbk/kdnsteXbk.js\";import*as sharedStyle5 from\"#framer/local/css/KkpP3tb3P/KkpP3tb3P.js\";import*as sharedStyle1 from\"#framer/local/css/OIgVEUH6Q/OIgVEUH6Q.js\";import*as sharedStyle3 from\"#framer/local/css/Q1B93IoU2/Q1B93IoU2.js\";import*as sharedStyle from\"#framer/local/css/SELqKM73y/SELqKM73y.js\";import*as sharedStyle2 from\"#framer/local/css/yUpftignO/yUpftignO.js\";import metadataProvider from\"#framer/local/webPageMetadata/wL_DFmSOn/wL_DFmSOn.js\";const ElementNavigationFonts=getFonts(ElementNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FramerIconsFonts=getFonts(FramerIcons);const ElementButtonFonts=getFonts(ElementButton);const ElementButtonWithClass64yp35WithMappedReactPropskuccna=withMappedReactProps(withCodeBoundaryForOverrides(ElementButton,{nodeId:\"L2AwbYT79\",override:withClass,scopeId:\"wL_DFmSOn\"}),ElementButtonInfo);const ElementButtonWithClass1tyn6xmWithMappedReactPropskuccna=withMappedReactProps(withCodeBoundaryForOverrides(ElementButton,{nodeId:\"haJDCML77\",override:withClass,scopeId:\"wL_DFmSOn\"}),ElementButtonInfo);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const RichTextWithFX=withFX(RichText);const VerticalTabsFonts=getFonts(VerticalTabs);const ElementButtonWithClassmavrw8WithMappedReactPropskuccna=withMappedReactProps(withCodeBoundaryForOverrides(ElementButton,{nodeId:\"fJ9m7Dqwk\",override:withClass,scopeId:\"wL_DFmSOn\"}),ElementButtonInfo);const AccordionAccordion03Fonts=getFonts(AccordionAccordion03);const ContainerWithFX=withFX(Container);const ElementButtonWithClassgfx1hbWithMappedReactPropskuccna=withMappedReactProps(withCodeBoundaryForOverrides(ElementButton,{nodeId:\"Q4cAIvZrz\",override:withClass,scopeId:\"wL_DFmSOn\"}),ElementButtonInfo);const ElementButtonWithClass1f88emWithMappedReactPropskuccna=withMappedReactProps(withCodeBoundaryForOverrides(ElementButton,{nodeId:\"OeRLBwim0\",override:withClass,scopeId:\"wL_DFmSOn\"}),ElementButtonInfo);const SectionsFooterFonts=getFonts(SectionsFooter);const breakpoints={gA3ajLa1A:\"(min-width: 640px) and (max-width: 809.98px)\",gR0hVL8hw:\"(min-width: 1024px) and (max-width: 1439.98px)\",KOSaM6d8G:\"(min-width: 810px) and (max-width: 1023.98px)\",WUTyTQryH:\"(min-width: 1440px)\",x02gF1qOH:\"(max-width: 639.98px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AMZlA\";const variantClassNames={gA3ajLa1A:\"framer-v-10fgy8q\",gR0hVL8hw:\"framer-v-lh9co3\",KOSaM6d8G:\"framer-v-3qaj24\",WUTyTQryH:\"framer-v-xvws89\",x02gF1qOH:\"framer-v-1xpjg35\"};const transition1={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,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop xl\":\"WUTyTQryH\",\"Laptop lg\":\"gR0hVL8hw\",\"Mobile sm\":\"gA3ajLa1A\",\"Mobile xs\":\"x02gF1qOH\",\"Tablet md\":\"KOSaM6d8G\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WUTyTQryH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"KOSaM6d8G\",\"gA3ajLa1A\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WUTyTQryH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-42d39569-dd47-4528-9055-c60c186da9a3, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-xvws89\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-14mpl4z-container\",\"data-framer-appear-id\":\"14mpl4z\",initial:animation1,nodeId:\"urrkowzBu\",optimized:true,rendersWithMotion:true,scopeId:\"wL_DFmSOn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{variant:\"OzkNdHzUD\"},KOSaM6d8G:{variant:\"fFWjy1llB\"},x02gF1qOH:{variant:\"OzkNdHzUD\"}},children:/*#__PURE__*/_jsx(ElementNavigation,{height:\"100%\",id:\"urrkowzBu\",layoutId:\"urrkowzBu\",style:{width:\"100%\"},variant:\"TDAZoI0rg\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b5e29k\",\"data-framer-name\":\"Hero / 9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i9415c\",\"data-framer-name\":\"Frame 26172\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19d0w5j\",\"data-framer-name\":\"Frame 472\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2rdzz\",\"data-framer-name\":\"Header Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-164i5hv\",\"data-styles-preset\":\"SELqKM73y\",children:\"Know which customers need you now and why.\"})}),className:\"framer-whikrr\",\"data-framer-name\":\"Your product analytics knows who's churning. Do you?\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x21zkq\",\"data-framer-name\":\"Frame 26152\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ks1rt1\",\"data-styles-preset\":\"OIgVEUH6Q\",style:{\"--framer-text-alignment\":\"left\"},children:\"Accoil plugs into your CRM to turn product usage into account health, with clear reasons and next-best actions—delivered to you in Slack.\"})}),className:\"framer-klr3le\",\"data-framer-name\":\"Know who to call. Know what to say. Know you'll catch them in time.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wb8wh7\",\"data-framer-name\":\"Frame 464\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1460icn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8zm9dj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-udfv4j-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"GI9YES_bz\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"GI9YES_bz\",layoutId:\"GI9YES_bz\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cob799\",\"data-styles-preset\":\"yUpftignO\",children:\"Activation, adoption, and user activity – at a glance\"})}),className:\"framer-le62dq\",\"data-framer-name\":\"✅ Prioritize with confidence: know exactly which accounts to call today\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7kh04d\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a6qx00\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-etjsmn-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"LIFai3NIo\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"LIFai3NIo\",layoutId:\"LIFai3NIo\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cob799\",\"data-styles-preset\":\"yUpftignO\",children:\"Prioritize your day: know who to grow, who to rescue\"})}),className:\"framer-niy5u8\",\"data-framer-name\":\"✅ Start every customer conversation knowing how they use your products\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tnmskk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wihmq3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fauqv4-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"VvaQKhl4L\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"VvaQKhl4L\",layoutId:\"VvaQKhl4L\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cob799\",\"data-styles-preset\":\"yUpftignO\",children:\"Works where you work: Slack, Intercom, HubSpot, Salesforce + more\"})}),className:\"framer-186qxd\",\"data-framer-name\":\"✅ Get warnings in Slack, updates in your CRM, no new tabs to check\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v23yyt\",\"data-framer-name\":\"Frame 483\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-30c3ho\",\"data-framer-name\":\"Frame 26170\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{y:(componentViewport?.y||0)+0+140+0+0+0+0+25+810+0+0+0},KOSaM6d8G:{y:(componentViewport?.y||0)+0+140+80+0+0+0+0+810+0+0+0},x02gF1qOH:{width:`calc(${componentViewport?.width||\"100vw\"} - 50px)`,y:(componentViewport?.y||0)+0+140+0+0+0+0+25+810+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+140+132+-301.5+0+810+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-64yp35-container\",nodeId:\"L2AwbYT79\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x02gF1qOH:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ElementButtonWithClass64yp35WithMappedReactPropskuccna,{bs7DOMz0W:\"http://app.accoil.com/signup\",dJhwgiuSB:false,height:\"100%\",id:\"L2AwbYT79\",iTwiYCGsq:\"fill\",JP5_8CMHx:\"Get started\",layoutId:\"L2AwbYT79\",pIzKMbVL9:false,variant:\"bufrZN5by\",Wcaec0cG7:false,width:\"100%\",X9juprPex:\"diamond\",zscGWjyMm:\"diamond\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{y:(componentViewport?.y||0)+0+140+0+0+0+0+25+810+0+0+0},KOSaM6d8G:{y:(componentViewport?.y||0)+0+140+80+0+0+0+0+810+0+0+0},x02gF1qOH:{width:`calc(${componentViewport?.width||\"100vw\"} - 50px)`,y:(componentViewport?.y||0)+0+140+0+0+0+0+25+810+0+0+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+140+132+-301.5+0+810+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tyn6xm-container\",nodeId:\"haJDCML77\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{bs7DOMz0W:resolvedLinks[3]},gR0hVL8hw:{bs7DOMz0W:resolvedLinks[1]},KOSaM6d8G:{bs7DOMz0W:resolvedLinks[2]},x02gF1qOH:{bs7DOMz0W:resolvedLinks[4],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ElementButtonWithClass1tyn6xmWithMappedReactPropskuccna,{bs7DOMz0W:resolvedLinks[0],dJhwgiuSB:false,height:\"100%\",id:\"haJDCML77\",iTwiYCGsq:\"fill\",JP5_8CMHx:\"Watch the 90-second demo\",layoutId:\"haJDCML77\",pIzKMbVL9:false,variant:\"tUBp8GMeu\",Wcaec0cG7:false,width:\"100%\",X9juprPex:\"diamond\",zscGWjyMm:\"diamond\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cob799\",\"data-styles-preset\":\"yUpftignO\",style:{\"--framer-text-alignment\":\"center\"},children:\"SOC2 Type II ● GDPR ● Simple setup\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cob799\",\"data-styles-preset\":\"yUpftignO\",children:\"SOC2 Type II ● GDPR ● Simple setup\"})}),className:\"framer-18pg60d\",\"data-framer-name\":\"Free trial for 30 days - No credit card need\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qrvn7o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wiirvp\",\"data-styles-preset\":\"Q1B93IoU2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.55)\"},children:\"Connect your product data using API, SDK, or these fine products\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1wiirvp\",\"data-styles-preset\":\"Q1B93IoU2\",style:{\"--framer-text-color\":\"rgba(0, 0, 0, 0.55)\"},children:\"Connect your product data using API, SDK, or these fine products\"})}),className:\"framer-93inds\",\"data-framer-name\":\"Free trial for 30 days - No credit card need\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sxzlqp\",children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1xaghyk\",\"data-framer-name\":\"segment\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99.98 25.51\" overflow=\"visible\"><g><path d=\"M 0 0 L 99.98 0 L 99.98 25.51 L 0 25.51 Z\" fill=\"transparent\"></path><path d=\"M 44.255 0.017 L 42.452 0.017 C 42.393 0.017 42.346 0.064 42.346 0.123 L 42.346 1.188 C 42.346 1.246 42.393 1.294 42.452 1.294 L 44.255 1.294 C 44.314 1.294 44.361 1.246 44.361 1.188 L 44.361 0.123 C 44.361 0.064 44.314 0.017 44.255 0.017 Z M 44.247 1.614 L 42.444 1.614 C 42.385 1.614 42.338 1.661 42.338 1.72 L 42.338 6.378 C 42.338 6.436 42.385 6.484 42.444 6.484 L 44.247 6.484 C 44.306 6.484 44.353 6.436 44.353 6.378 L 44.353 1.72 C 44.353 1.661 44.306 1.614 44.247 1.614 Z M 41.879 0.017 L 40.075 0.017 C 40.017 0.017 39.969 0.064 39.969 0.123 L 39.969 6.378 C 39.969 6.437 40.017 6.484 40.075 6.484 L 41.879 6.484 C 41.937 6.484 41.985 6.437 41.985 6.378 L 41.985 0.123 C 41.985 0.064 41.937 0.017 41.879 0.017 Z M 39.509 0.017 L 37.705 0.017 C 37.646 0.017 37.599 0.064 37.599 0.123 L 37.599 1.188 C 37.599 1.246 37.646 1.294 37.705 1.294 L 39.509 1.294 C 39.567 1.294 39.614 1.246 39.614 1.188 L 39.614 0.123 C 39.614 0.065 39.567 0.017 39.509 0.017 Z M 39.506 1.614 L 35.859 1.614 C 35.796 1.614 35.761 1.64 35.744 1.712 L 35.326 3.716 L 34.9 1.712 C 34.891 1.649 34.845 1.614 34.785 1.614 L 33.082 1.614 C 33.019 1.614 32.976 1.649 32.967 1.712 L 32.541 3.736 L 32.143 1.712 C 32.126 1.64 32.088 1.614 32.028 1.614 L 29.108 1.614 L 29.108 0.097 C 29.108 0.017 29.054 -0.017 28.965 0.009 L 27.216 0.575 C 27.153 0.592 27.119 0.647 27.119 0.707 L 27.119 1.371 C 27.119 1.557 27.021 1.637 26.835 1.637 L 26.454 1.637 C 26.391 1.637 26.348 1.68 26.348 1.743 L 26.348 3.049 C 26.348 3.112 26.391 3.155 26.454 3.155 L 27.093 3.155 L 27.093 4.795 C 27.093 5.94 27.511 6.553 28.885 6.553 C 29.418 6.553 29.835 6.464 30.064 6.358 C 30.136 6.324 30.153 6.278 30.153 6.206 L 30.153 4.93 C 30.153 4.858 30.09 4.824 30.002 4.867 C 29.888 4.921 29.764 4.948 29.638 4.947 C 29.283 4.947 29.105 4.815 29.105 4.371 L 29.105 3.155 L 30.036 3.155 C 30.064 3.156 30.092 3.145 30.112 3.125 C 30.132 3.105 30.143 3.077 30.142 3.049 L 30.142 1.912 L 31.321 6.393 C 31.338 6.456 31.384 6.481 31.453 6.481 L 33.191 6.481 C 33.254 6.481 33.279 6.456 33.297 6.393 L 33.863 4.343 L 34.413 6.393 C 34.43 6.456 34.456 6.481 34.519 6.481 L 36.285 6.481 C 36.357 6.481 36.4 6.456 36.417 6.393 L 37.588 1.947 L 37.588 6.372 C 37.588 6.435 37.631 6.478 37.694 6.478 L 39.494 6.478 C 39.557 6.478 39.6 6.435 39.6 6.372 L 39.6 1.715 C 39.6 1.652 39.557 1.609 39.494 1.609 Z M 47.325 1.534 C 45.702 1.534 44.628 2.536 44.628 3.982 L 44.628 4.096 C 44.628 5.542 45.702 6.552 47.325 6.552 C 48.948 6.552 50.022 5.542 50.022 4.096 L 50.022 3.982 C 50.022 2.536 48.948 1.534 47.325 1.534 Z M 47.989 4.073 C 47.989 4.729 47.714 4.995 47.325 4.995 C 46.936 4.995 46.661 4.729 46.661 4.073 L 46.661 4.01 C 46.661 3.346 46.936 3.08 47.325 3.08 C 47.714 3.08 47.989 3.346 47.989 4.01 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 10.953 0.032 C 4.904 0.032 0 4.901 0 10.93 C 0 16.959 4.904 21.883 10.953 21.883 C 17.002 21.883 21.889 16.979 21.889 10.93 C 21.889 4.881 16.985 0.032 10.953 0.032 Z M 10.953 19.015 C 6.501 19.015 2.869 15.365 2.869 10.93 C 2.869 6.496 6.501 2.883 10.953 2.883 C 15.405 2.883 19 6.479 19 10.93 C 19 15.382 15.405 19.015 10.953 19.015 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 13.658 5.934 C 12.424 5.934 11.388 6.987 11.388 8.241 C 11.388 9.495 12.424 10.494 13.658 10.494 C 14.892 10.494 15.928 9.478 15.928 8.241 C 15.928 7.004 14.929 5.934 13.658 5.934 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 13.658 5.934 C 12.424 5.934 11.388 6.987 11.388 8.241 C 11.388 9.495 12.424 10.494 13.658 10.494 C 14.892 10.494 15.928 9.478 15.928 8.241 C 15.928 7.004 14.929 5.934 13.658 5.934 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 13.658 5.934 C 12.424 5.934 11.388 6.987 11.388 8.241 C 11.388 9.495 12.424 10.494 13.658 10.494 C 14.892 10.494 15.928 9.478 15.928 8.241 C 15.928 7.004 14.929 5.934 13.658 5.934 Z M 13.658 11.403 C 12.424 11.403 11.388 12.402 11.388 13.673 C 11.388 14.944 12.424 15.943 13.658 15.943 C 14.892 15.943 15.928 14.927 15.928 13.673 C 15.928 12.419 14.929 11.403 13.658 11.403 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 13.658 11.403 C 12.424 11.403 11.388 12.402 11.388 13.673 C 11.388 14.944 12.424 15.943 13.658 15.943 C 14.892 15.943 15.928 14.927 15.928 13.673 C 15.928 12.419 14.929 11.403 13.658 11.403 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 13.658 11.403 C 12.424 11.403 11.388 12.402 11.388 13.673 C 11.388 14.944 12.424 15.943 13.658 15.943 C 14.892 15.943 15.928 14.927 15.928 13.673 C 15.928 12.419 14.929 11.403 13.658 11.403 Z M 8.21 5.934 C 6.939 5.934 5.94 6.987 5.94 8.241 C 5.94 9.495 6.939 10.494 8.21 10.494 C 9.481 10.494 10.497 9.478 10.497 8.241 C 10.497 7.004 9.461 5.934 8.21 5.934 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 8.21 5.934 C 6.939 5.934 5.94 6.987 5.94 8.241 C 5.94 9.495 6.939 10.494 8.21 10.494 C 9.481 10.494 10.497 9.478 10.497 8.241 C 10.497 7.004 9.461 5.934 8.21 5.934 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 8.21 5.934 C 6.939 5.934 5.94 6.987 5.94 8.241 C 5.94 9.495 6.939 10.494 8.21 10.494 C 9.481 10.494 10.497 9.478 10.497 8.241 C 10.497 7.004 9.461 5.934 8.21 5.934 Z M 8.21 11.403 C 6.939 11.403 5.94 12.402 5.94 13.673 C 5.94 14.944 6.939 15.943 8.21 15.943 C 9.481 15.943 10.497 14.927 10.497 13.673 C 10.497 12.419 9.461 11.403 8.21 11.403 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 8.21 11.403 C 6.939 11.403 5.94 12.402 5.94 13.673 C 5.94 14.944 6.939 15.943 8.21 15.943 C 9.481 15.943 10.497 14.927 10.497 13.673 C 10.497 12.419 9.461 11.403 8.21 11.403 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 8.21 11.403 C 6.939 11.403 5.94 12.402 5.94 13.673 C 5.94 14.944 6.939 15.943 8.21 15.943 C 9.481 15.943 10.497 14.927 10.497 13.673 C 10.497 12.419 9.461 11.403 8.21 11.403 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 26.352 20.4 L 26.352 18.619 C 27.688 19.759 29.257 20.349 30.984 20.349 C 32.464 20.349 33.46 19.619 33.46 18.067 C 33.46 16.515 32.177 16.355 30.52 16.106 C 28.221 15.731 26.208 15.339 26.208 12.559 C 26.208 9.977 28.026 8.568 30.68 8.568 C 32.587 8.568 34.084 9.121 34.974 9.762 L 34.974 11.437 C 33.798 10.546 32.177 10.065 30.646 10.065 C 29.114 10.065 28.063 10.867 28.063 12.327 C 28.063 13.787 29.257 14.091 30.898 14.36 C 33.196 14.752 35.318 15.055 35.318 17.852 C 35.318 20.454 33.537 21.897 31.024 21.897 C 28.939 21.897 27.477 21.273 26.354 20.4 Z M 36.704 16.836 L 36.704 16.587 C 36.704 13.575 38.593 11.597 41.175 11.597 C 43.757 11.597 45.309 13.166 45.309 16.389 L 45.309 17.208 L 38.521 17.208 C 38.627 19.401 40.053 20.435 42.137 20.435 C 43.208 20.435 44.15 20.148 45.023 19.65 L 45.023 21.093 C 44.382 21.468 43.348 21.895 41.779 21.895 C 38.645 21.895 36.701 20.131 36.701 16.833 Z M 38.521 15.963 L 43.546 15.963 C 43.457 13.95 42.547 12.951 41.124 12.951 C 39.609 12.951 38.63 14.073 38.521 15.963 Z M 46.165 23.589 C 46.165 22.682 46.912 21.877 48.607 21.468 C 47.307 21.325 46.755 20.789 46.755 20.097 C 46.755 19.295 47.413 18.654 48.947 18.296 C 47.487 17.815 46.774 16.621 46.774 15.284 C 46.774 13.091 48.575 11.846 50.714 11.846 L 55.649 11.846 L 55.649 13.272 L 53.777 13.272 C 54.275 13.698 54.596 14.431 54.596 15.213 C 54.596 17.245 52.955 18.545 50.622 18.545 L 50.319 18.545 C 49.571 18.545 48.446 18.848 48.446 19.524 C 48.446 19.899 48.839 20.111 49.855 20.111 L 52.457 20.111 C 54.487 20.111 55.646 20.752 55.646 22.338 C 55.646 24.173 53.917 25.51 50.425 25.51 L 50.015 25.51 C 47.682 25.51 46.168 24.814 46.168 23.586 Z M 53.88 22.662 C 53.88 21.877 53.239 21.611 52.008 21.611 L 50.456 21.611 C 48.959 21.611 47.963 22.235 47.963 23.054 C 47.963 23.873 48.996 24.159 50.35 24.159 L 50.725 24.159 C 52.864 24.159 53.88 23.5 53.88 22.662 Z M 52.884 15.196 C 52.884 13.985 52.188 13.04 50.711 13.04 C 49.234 13.04 48.501 14.002 48.501 15.233 C 48.501 16.392 49.179 17.371 50.694 17.371 C 52.208 17.371 52.887 16.303 52.887 15.198 L 52.884 15.195 Z M 57.25 11.846 L 59.013 11.846 L 59.013 14.073 C 59.709 12.613 60.866 11.58 62.452 11.58 C 63.932 11.58 64.999 12.507 65.231 14.199 C 65.944 12.579 67.104 11.58 68.724 11.58 C 70.505 11.58 71.698 12.719 71.698 15.144 L 71.698 21.648 L 69.881 21.648 L 69.881 15.573 C 69.881 13.953 69.185 13.08 67.92 13.08 C 66.852 13.08 66.139 13.738 65.764 14.488 C 65.498 14.969 65.389 15.556 65.389 16.091 L 65.355 21.651 L 63.574 21.651 L 63.574 15.645 C 63.574 13.916 62.878 13.08 61.613 13.08 C 60.453 13.08 59.812 13.738 59.44 14.488 C 59.191 14.969 59.065 15.539 59.065 16.091 L 59.065 21.651 L 57.247 21.651 L 57.247 11.852 Z M 73.553 16.836 L 73.553 16.587 C 73.553 13.575 75.443 11.597 78.025 11.597 C 80.607 11.597 82.159 13.166 82.159 16.389 L 82.159 17.208 L 75.371 17.208 C 75.477 19.401 76.903 20.435 78.987 20.435 C 80.057 20.435 80.999 20.148 81.872 19.65 L 81.872 21.093 C 81.231 21.468 80.198 21.895 78.629 21.895 C 75.494 21.895 73.55 20.131 73.55 16.833 Z M 75.371 15.963 L 80.395 15.963 C 80.307 13.95 79.396 12.951 77.973 12.951 C 76.459 12.951 75.48 14.073 75.371 15.963 Z M 84.086 11.846 L 85.85 11.846 L 85.85 14.162 C 86.528 12.576 87.722 11.597 89.414 11.597 C 91.286 11.597 92.46 12.808 92.46 15.196 L 92.46 21.646 L 90.642 21.646 L 90.642 15.588 C 90.642 13.968 89.875 13.094 88.592 13.094 C 87.504 13.094 86.72 13.681 86.293 14.537 C 86.044 14.984 85.901 15.516 85.901 16.069 L 85.901 21.646 L 84.083 21.646 L 84.083 11.846 Z M 95.597 19.134 L 95.597 13.288 L 93.779 13.288 L 93.779 11.934 L 94.581 11.917 C 95.151 11.9 95.631 11.74 95.703 10.723 L 95.863 8.745 L 97.432 8.745 L 97.432 11.846 L 99.98 11.846 L 99.98 13.288 L 97.415 13.288 L 97.415 18.882 C 97.415 19.916 97.985 20.397 98.947 20.397 C 99.25 20.397 99.694 20.325 99.926 20.254 L 99.926 21.553 C 99.622 21.696 98.981 21.857 98.322 21.857 C 96.505 21.857 95.597 21.001 95.597 19.131 Z\" fill=\"rgb(121, 121, 121)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zxxzk3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99.98 25.51\" overflow=\"visible\"><path d=\"M 0 0 L 99.98 0 L 99.98 25.51 L 0 25.51 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-vjgdtz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.673 6.553\" overflow=\"visible\"><path d=\"M 17.907 0.017 L 16.103 0.017 C 16.045 0.017 15.997 0.064 15.997 0.123 L 15.997 1.188 C 15.997 1.246 16.045 1.294 16.103 1.294 L 17.907 1.294 C 17.965 1.294 18.013 1.246 18.013 1.188 L 18.013 0.123 C 18.013 0.064 17.965 0.017 17.907 0.017 Z M 17.899 1.614 L 16.095 1.614 C 16.037 1.614 15.989 1.661 15.989 1.72 L 15.989 6.378 C 15.989 6.436 16.037 6.484 16.095 6.484 L 17.899 6.484 C 17.957 6.484 18.005 6.436 18.005 6.378 L 18.005 1.72 C 18.005 1.661 17.957 1.614 17.899 1.614 Z M 15.53 0.017 L 13.727 0.017 C 13.668 0.017 13.621 0.064 13.621 0.123 L 13.621 6.378 C 13.621 6.437 13.668 6.484 13.727 6.484 L 15.53 6.484 C 15.589 6.484 15.636 6.437 15.636 6.378 L 15.636 0.123 C 15.636 0.064 15.589 0.017 15.53 0.017 Z M 13.16 0.017 L 11.356 0.017 C 11.298 0.017 11.251 0.064 11.251 0.123 L 11.251 1.188 C 11.251 1.246 11.298 1.294 11.356 1.294 L 13.16 1.294 C 13.218 1.294 13.266 1.246 13.266 1.188 L 13.266 0.123 C 13.266 0.064 13.218 0.017 13.16 0.017 Z M 13.157 1.614 L 9.51 1.614 C 9.447 1.614 9.413 1.64 9.396 1.712 L 8.978 3.716 L 8.551 1.712 C 8.543 1.649 8.497 1.614 8.437 1.614 L 6.733 1.614 C 6.67 1.614 6.627 1.649 6.619 1.712 L 6.192 3.736 L 5.794 1.712 C 5.777 1.64 5.74 1.614 5.68 1.614 L 2.76 1.614 L 2.76 0.097 C 2.76 0.017 2.705 -0.017 2.617 0.008 L 0.868 0.575 C 0.805 0.592 0.77 0.647 0.77 0.707 L 0.77 1.371 C 0.77 1.557 0.673 1.637 0.487 1.637 L 0.106 1.637 C 0.043 1.637 0 1.68 0 1.743 L 0 3.049 C 0 3.112 0.043 3.155 0.106 3.155 L 0.744 3.155 L 0.744 4.795 C 0.744 5.94 1.162 6.553 2.537 6.553 C 3.069 6.553 3.487 6.464 3.716 6.358 C 3.788 6.324 3.805 6.278 3.805 6.206 L 3.805 4.93 C 3.805 4.858 3.742 4.824 3.653 4.867 C 3.54 4.921 3.415 4.948 3.289 4.947 C 2.934 4.947 2.757 4.815 2.757 4.371 L 2.757 3.155 L 3.687 3.155 C 3.716 3.156 3.743 3.145 3.763 3.125 C 3.784 3.105 3.794 3.077 3.793 3.049 L 3.793 1.912 L 4.973 6.393 C 4.99 6.456 5.036 6.481 5.104 6.481 L 6.842 6.481 C 6.905 6.481 6.931 6.456 6.948 6.393 L 7.515 4.343 L 8.065 6.393 C 8.082 6.456 8.107 6.481 8.17 6.481 L 9.937 6.481 C 10.008 6.481 10.051 6.456 10.069 6.393 L 11.239 1.947 L 11.239 6.372 C 11.239 6.435 11.282 6.478 11.345 6.478 L 13.146 6.478 C 13.209 6.478 13.252 6.435 13.252 6.372 L 13.252 1.715 C 13.252 1.652 13.209 1.609 13.146 1.609 Z M 20.977 1.534 C 19.353 1.534 18.28 2.536 18.28 3.982 L 18.28 4.096 C 18.28 5.542 19.353 6.552 20.977 6.552 C 22.6 6.552 23.673 5.542 23.673 4.096 L 23.673 3.982 C 23.673 2.536 22.6 1.534 20.977 1.534 Z M 21.641 4.073 C 21.641 4.729 21.366 4.995 20.977 4.995 C 20.587 4.995 20.312 4.729 20.312 4.073 L 20.312 4.01 C 20.312 3.346 20.587 3.08 20.977 3.08 C 21.366 3.08 21.641 3.346 21.641 4.01 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-ruvsd1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.015 1.277\" overflow=\"visible\"><path d=\"M 1.91 0 L 0.106 0 C 0.047 0 0 0.047 0 0.106 L 0 1.171 C 0 1.229 0.047 1.277 0.106 1.277 L 1.91 1.277 C 1.968 1.277 2.015 1.229 2.015 1.171 L 2.015 0.106 C 2.015 0.047 1.968 0 1.91 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1nkjnsh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.015 4.87\" overflow=\"visible\"><path d=\"M 1.91 0 L 0.106 0 C 0.047 0 0 0.047 0 0.106 L 0 4.764 C 0 4.822 0.047 4.87 0.106 4.87 L 1.91 4.87 C 1.968 4.87 2.015 4.822 2.015 4.764 L 2.015 0.106 C 2.015 0.047 1.968 0 1.91 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jq3vst\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.015 6.467\" overflow=\"visible\"><path d=\"M 1.91 0 L 0.106 0 C 0.047 0 0 0.047 0 0.106 L 0 6.361 C 0 6.42 0.047 6.467 0.106 6.467 L 1.91 6.467 C 1.968 6.467 2.015 6.42 2.015 6.361 L 2.015 0.106 C 2.015 0.047 1.968 0 1.91 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1suiv1d\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.015 1.277\" overflow=\"visible\"><path d=\"M 1.91 0 L 0.106 0 C 0.047 0 0 0.047 0 0.106 L 0 1.171 C 0 1.229 0.047 1.277 0.106 1.277 L 1.91 1.277 C 1.968 1.277 2.015 1.229 2.015 1.171 L 2.015 0.106 C 2.015 0.048 1.968 0 1.91 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hbpp0k\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.252 6.553\" overflow=\"visible\"><path d=\"M 13.157 1.614 L 9.51 1.614 C 9.447 1.614 9.413 1.64 9.396 1.712 L 8.978 3.716 L 8.551 1.712 C 8.543 1.649 8.497 1.614 8.437 1.614 L 6.733 1.614 C 6.67 1.614 6.627 1.649 6.619 1.712 L 6.192 3.736 L 5.794 1.712 C 5.777 1.64 5.74 1.614 5.68 1.614 L 2.76 1.614 L 2.76 0.097 C 2.76 0.017 2.705 -0.017 2.617 0.008 L 0.868 0.575 C 0.805 0.592 0.77 0.647 0.77 0.707 L 0.77 1.371 C 0.77 1.557 0.673 1.637 0.487 1.637 L 0.106 1.637 C 0.043 1.637 0 1.68 0 1.743 L 0 3.049 C 0 3.112 0.043 3.155 0.106 3.155 L 0.744 3.155 L 0.744 4.795 C 0.744 5.94 1.162 6.553 2.537 6.553 C 3.069 6.553 3.487 6.464 3.716 6.358 C 3.788 6.324 3.805 6.278 3.805 6.206 L 3.805 4.93 C 3.805 4.858 3.742 4.824 3.653 4.867 C 3.54 4.921 3.415 4.948 3.289 4.947 C 2.934 4.947 2.757 4.815 2.757 4.371 L 2.757 3.155 L 3.687 3.155 C 3.716 3.156 3.743 3.145 3.763 3.125 C 3.784 3.105 3.794 3.077 3.793 3.049 L 3.793 1.912 L 4.973 6.393 C 4.99 6.456 5.036 6.481 5.104 6.481 L 6.842 6.481 C 6.905 6.481 6.931 6.456 6.948 6.393 L 7.515 4.343 L 8.065 6.393 C 8.082 6.456 8.107 6.481 8.17 6.481 L 9.937 6.481 C 10.008 6.481 10.051 6.456 10.069 6.393 L 11.239 1.947 L 11.239 6.372 C 11.239 6.435 11.282 6.478 11.345 6.478 L 13.146 6.478 C 13.209 6.478 13.252 6.435 13.252 6.372 L 13.252 1.715 C 13.252 1.652 13.209 1.609 13.146 1.609 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g255gh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.394 5.018\" overflow=\"visible\"><path d=\"M 2.697 0 C 1.073 0 0 1.002 0 2.448 L 0 2.562 C 0 4.008 1.073 5.018 2.697 5.018 C 4.32 5.018 5.394 4.008 5.394 2.562 L 5.394 2.448 C 5.394 1.002 4.32 0 2.697 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aihh8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.328 1.915\" overflow=\"visible\"><path d=\"M 1.328 0.993 C 1.328 1.649 1.054 1.915 0.664 1.915 C 0.275 1.915 0 1.649 0 0.993 L 0 0.93 C 0 0.266 0.275 0 0.664 0 C 1.054 0 1.328 0.266 1.328 0.93 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-5xbsxg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.889 21.852\" overflow=\"visible\"><path d=\"M 10.953 0 C 4.904 0 0 4.87 0 10.899 C 0 16.928 4.904 21.852 10.953 21.852 C 17.002 21.852 21.889 16.948 21.889 10.899 C 21.889 4.849 16.985 0 10.953 0 Z M 10.953 18.983 C 6.501 18.983 2.869 15.333 2.869 10.899 C 2.869 6.464 6.501 2.851 10.953 2.851 C 15.405 2.851 19 6.447 19 10.899 C 19 15.35 15.405 18.983 10.953 18.983 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10zq84q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.889 21.852\" overflow=\"visible\"><path d=\"M 10.953 0 C 4.904 0 0 4.87 0 10.899 C 0 16.928 4.904 21.852 10.953 21.852 C 17.002 21.852 21.889 16.948 21.889 10.899 C 21.889 4.849 16.985 0 10.953 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fdjlbn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.132 16.132\" overflow=\"visible\"><path d=\"M 8.085 16.132 C 3.633 16.132 0 12.482 0 8.047 C 0 3.613 3.633 0 8.085 0 C 12.536 0 16.132 3.596 16.132 8.047 C 16.132 12.499 12.536 16.132 8.084 16.132 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u1a1fy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.54 4.561\" overflow=\"visible\"><path d=\"M 2.27 0 C 1.036 0 0 1.054 0 2.307 C 0 3.561 1.036 4.561 2.27 4.561 C 3.504 4.561 4.54 3.544 4.54 2.307 C 4.54 1.071 3.541 0 2.27 0 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3f4rzl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.54 4.561\" overflow=\"visible\"><path d=\"M 2.27 0 C 1.036 0 0 1.054 0 2.307 C 0 3.561 1.036 4.561 2.27 4.561 C 3.504 4.561 4.54 3.544 4.54 2.307 C 4.54 1.071 3.541 0 2.27 0 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-75s7zi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.54 10.01\" overflow=\"visible\"><path d=\"M 2.27 0 C 1.036 0 0 1.054 0 2.307 C 0 3.561 1.036 4.561 2.27 4.561 C 3.504 4.561 4.54 3.544 4.54 2.307 C 4.54 1.071 3.541 0 2.27 0 Z M 2.27 5.469 C 1.036 5.469 0 6.468 0 7.739 C 0 9.011 1.036 10.01 2.27 10.01 C 3.504 10.01 4.54 8.993 4.54 7.739 C 4.54 6.486 3.541 5.469 2.27 5.469 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pxt8p1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.54 4.561\" overflow=\"visible\"><path d=\"M 2.27 0 C 1.036 0 0 1.054 0 2.307 C 0 3.561 1.036 4.561 2.27 4.561 C 3.504 4.561 4.54 3.544 4.54 2.307 C 4.54 1.071 3.541 0 2.27 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e96vvp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.54 4.54\" overflow=\"visible\"><path d=\"M 2.27 0 C 1.036 0 0 0.999 0 2.27 C 0 3.541 1.036 4.54 2.27 4.54 C 3.504 4.54 4.54 3.524 4.54 2.27 C 4.54 1.016 3.541 0 2.27 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-78p4kp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.54 4.54\" overflow=\"visible\"><path d=\"M 2.27 0 C 1.036 0 0 0.999 0 2.27 C 0 3.541 1.036 4.54 2.27 4.54 C 3.504 4.54 4.54 3.524 4.54 2.27 C 4.54 1.016 3.541 0 2.27 0 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1jmn3hl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.989 10.01\" overflow=\"visible\"><path d=\"M 7.718 5.469 C 6.485 5.469 5.448 6.468 5.448 7.739 C 5.448 9.011 6.485 10.01 7.718 10.01 C 8.952 10.01 9.989 8.993 9.989 7.739 C 9.989 6.486 8.989 5.469 7.718 5.469 Z M 2.27 0 C 0.999 0 0 1.054 0 2.307 C 0 3.561 0.999 4.561 2.27 4.561 C 3.541 4.561 4.558 3.544 4.558 2.307 C 4.558 1.071 3.521 0 2.27 0 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-llyjxq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.54 4.54\" overflow=\"visible\"><path d=\"M 2.27 0 C 1.036 0 0 0.999 0 2.27 C 0 3.541 1.036 4.54 2.27 4.54 C 3.504 4.54 4.54 3.524 4.54 2.27 C 4.54 1.016 3.541 0 2.27 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jzgngq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.558 4.561\" overflow=\"visible\"><path d=\"M 2.27 0 C 0.999 0 0 1.054 0 2.307 C 0 3.561 0.999 4.561 2.27 4.561 C 3.541 4.561 4.558 3.544 4.558 2.307 C 4.558 1.071 3.521 0 2.27 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-82mz35\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.558 4.561\" overflow=\"visible\"><path d=\"M 2.27 0 C 0.999 0 0 1.054 0 2.307 C 0 3.561 0.999 4.561 2.27 4.561 C 3.541 4.561 4.558 3.544 4.558 2.307 C 4.558 1.071 3.521 0 2.27 0 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-kmtsl0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.558 10.01\" overflow=\"visible\"><path d=\"M 2.27 0 C 0.999 0 0 1.054 0 2.307 C 0 3.561 0.999 4.561 2.27 4.561 C 3.541 4.561 4.558 3.544 4.558 2.307 C 4.558 1.071 3.521 0 2.27 0 Z M 2.27 5.469 C 0.999 5.469 0 6.468 0 7.739 C 0 9.011 0.999 10.01 2.27 10.01 C 3.541 10.01 4.558 8.993 4.558 7.739 C 4.558 6.486 3.521 5.469 2.27 5.469 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1izum5l\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.558 4.561\" overflow=\"visible\"><path d=\"M 2.27 0 C 0.999 0 0 1.054 0 2.307 C 0 3.561 0.999 4.561 2.27 4.561 C 3.541 4.561 4.558 3.544 4.558 2.307 C 4.558 1.071 3.521 0 2.27 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zvo31t\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.558 4.54\" overflow=\"visible\"><path d=\"M 2.27 0 C 0.999 0 0 0.999 0 2.27 C 0 3.541 0.999 4.54 2.27 4.54 C 3.541 4.54 4.558 3.524 4.558 2.27 C 4.558 1.016 3.521 0 2.27 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11fu6p6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.558 4.54\" overflow=\"visible\"><path d=\"M 2.27 0 C 0.999 0 0 0.999 0 2.27 C 0 3.541 0.999 4.54 2.27 4.54 C 3.541 4.54 4.558 3.524 4.558 2.27 C 4.558 1.016 3.521 0 2.27 0 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tvk1pv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.558 4.54\" overflow=\"visible\"><path d=\"M 2.27 0 C 0.999 0 0 0.999 0 2.27 C 0 3.541 0.999 4.54 2.27 4.54 C 3.541 4.54 4.558 3.524 4.558 2.27 C 4.558 1.016 3.521 0 2.27 0 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1kup69k\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 73.772 16.942\" overflow=\"visible\"><path d=\"M 0.143 11.832 L 0.143 10.051 C 1.48 11.191 3.049 11.78 4.775 11.78 C 6.255 11.78 7.252 11.05 7.252 9.499 C 7.252 7.947 5.969 7.787 4.311 7.538 C 2.013 7.163 0 6.77 0 3.991 C 0 1.409 1.818 0 4.472 0 C 6.378 0 7.876 0.553 8.766 1.194 L 8.766 2.869 C 7.589 1.978 5.969 1.497 4.437 1.497 C 2.906 1.497 1.855 2.299 1.855 3.759 C 1.855 5.219 3.049 5.522 4.689 5.791 C 6.988 6.184 9.109 6.487 9.109 9.284 C 9.109 11.886 7.329 13.329 4.815 13.329 C 2.731 13.329 1.268 12.705 0.146 11.832 Z M 10.495 8.268 L 10.495 8.019 C 10.495 5.007 12.385 3.029 14.967 3.029 C 17.549 3.029 19.101 4.598 19.101 7.821 L 19.101 8.64 L 12.313 8.64 C 12.419 10.833 13.845 11.866 15.929 11.866 C 16.999 11.866 17.941 11.58 18.815 11.082 L 18.815 12.525 C 18.173 12.9 17.14 13.326 15.571 13.326 C 12.436 13.326 10.493 11.563 10.493 8.265 Z M 12.313 7.395 L 17.337 7.395 C 17.249 5.382 16.338 4.383 14.915 4.383 C 13.401 4.383 12.422 5.505 12.313 7.395 Z M 19.956 15.021 C 19.956 14.113 20.704 13.309 22.398 12.9 C 21.099 12.756 20.546 12.221 20.546 11.528 C 20.546 10.727 21.205 10.086 22.739 9.728 C 21.279 9.247 20.566 8.053 20.566 6.716 C 20.566 4.523 22.367 3.278 24.505 3.278 L 29.441 3.278 L 29.441 4.703 L 27.569 4.703 C 28.067 5.13 28.387 5.863 28.387 6.644 C 28.387 8.677 26.747 9.977 24.414 9.977 L 24.11 9.977 C 23.363 9.977 22.238 10.28 22.238 10.956 C 22.238 11.331 22.63 11.543 23.647 11.543 L 26.249 11.543 C 28.279 11.543 29.438 12.184 29.438 13.77 C 29.438 15.605 27.709 16.942 24.216 16.942 L 23.807 16.942 C 21.474 16.942 19.959 16.246 19.959 15.018 Z M 27.672 14.093 C 27.672 13.309 27.03 13.043 25.799 13.043 L 24.248 13.043 C 22.751 13.043 21.754 13.667 21.754 14.486 C 21.754 15.304 22.788 15.591 24.142 15.591 L 24.517 15.591 C 26.655 15.591 27.672 14.932 27.672 14.093 Z M 26.675 6.627 C 26.675 5.416 25.98 4.472 24.503 4.472 C 23.025 4.472 22.293 5.434 22.293 6.664 C 22.293 7.824 22.971 8.803 24.485 8.803 C 26 8.803 26.678 7.735 26.678 6.63 L 26.675 6.627 Z M 31.042 3.278 L 32.805 3.278 L 32.805 5.505 C 33.501 4.045 34.657 3.011 36.243 3.011 C 37.723 3.011 38.791 3.939 39.023 5.631 C 39.736 4.011 40.895 3.011 42.516 3.011 C 44.296 3.011 45.49 4.151 45.49 6.576 L 45.49 13.08 L 43.672 13.08 L 43.672 7.005 C 43.672 5.385 42.977 4.512 41.711 4.512 C 40.643 4.512 39.931 5.17 39.556 5.92 C 39.289 6.401 39.181 6.988 39.181 7.523 L 39.146 13.083 L 37.365 13.083 L 37.365 7.077 C 37.365 5.347 36.67 4.512 35.405 4.512 C 34.245 4.512 33.604 5.17 33.232 5.92 C 32.983 6.401 32.857 6.971 32.857 7.523 L 32.857 13.083 L 31.039 13.083 L 31.039 3.283 Z M 47.345 8.268 L 47.345 8.019 C 47.345 5.007 49.234 3.029 51.817 3.029 C 54.399 3.029 55.951 4.598 55.951 7.821 L 55.951 8.64 L 49.163 8.64 C 49.269 10.833 50.694 11.866 52.779 11.866 C 53.849 11.866 54.791 11.58 55.664 11.082 L 55.664 12.525 C 55.023 12.9 53.989 13.326 52.421 13.326 C 49.286 13.326 47.342 11.563 47.342 8.265 Z M 49.163 7.395 L 54.187 7.395 C 54.098 5.382 53.188 4.383 51.765 4.383 C 50.251 4.383 49.272 5.505 49.163 7.395 Z M 57.878 3.278 L 59.641 3.278 L 59.641 5.594 C 60.32 4.008 61.514 3.029 63.205 3.029 C 65.078 3.029 66.252 4.24 66.252 6.628 L 66.252 13.077 L 64.434 13.077 L 64.434 7.02 C 64.434 5.399 63.666 4.526 62.384 4.526 C 61.296 4.526 60.512 5.113 60.085 5.969 C 59.836 6.416 59.693 6.948 59.693 7.501 L 59.693 13.077 L 57.875 13.077 L 57.875 3.278 Z M 69.389 10.566 L 69.389 4.72 L 67.571 4.72 L 67.571 3.366 L 68.372 3.349 C 68.942 3.332 69.423 3.172 69.495 2.155 L 69.655 0.177 L 71.224 0.177 L 71.224 3.277 L 73.772 3.277 L 73.772 4.72 L 71.207 4.72 L 71.207 10.314 C 71.207 11.348 71.776 11.829 72.738 11.829 C 73.042 11.829 73.485 11.757 73.717 11.685 L 73.717 12.985 C 73.414 13.128 72.773 13.289 72.114 13.289 C 70.296 13.289 69.389 12.433 69.389 10.563 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1s0821e\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.109 13.329\" overflow=\"visible\"><path d=\"M 0.143 11.832 L 0.143 10.051 C 1.48 11.191 3.049 11.78 4.775 11.78 C 6.255 11.78 7.252 11.05 7.252 9.499 C 7.252 7.947 5.969 7.787 4.311 7.538 C 2.013 7.163 0 6.77 0 3.991 C 0 1.409 1.818 0 4.472 0 C 6.378 0 7.876 0.553 8.766 1.194 L 8.766 2.869 C 7.589 1.978 5.969 1.497 4.437 1.497 C 2.906 1.497 1.855 2.299 1.855 3.759 C 1.855 5.219 3.049 5.522 4.689 5.791 C 6.988 6.184 9.109 6.487 9.109 9.284 C 9.109 11.886 7.329 13.329 4.815 13.329 C 2.731 13.329 1.268 12.705 0.146 11.832 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uv47gt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.608 10.297\" overflow=\"visible\"><path d=\"M 0.003 5.239 L 0.003 4.99 C 0.003 1.978 1.892 0 4.474 0 C 7.057 0 8.608 1.569 8.608 4.792 L 8.608 5.611 L 1.821 5.611 C 1.927 7.804 3.352 8.837 5.436 8.837 C 6.507 8.837 7.449 8.551 8.322 8.053 L 8.322 9.496 C 7.681 9.871 6.647 10.297 5.079 10.297 C 1.944 10.297 0 8.534 0 5.236 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l0iujn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.024 3.012\" overflow=\"visible\"><path d=\"M 0 3.012 L 5.024 3.012 C 4.936 0.999 4.025 0 2.602 0 C 1.088 0 0.109 1.122 0 3.012 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wdui9h\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.484 13.664\" overflow=\"visible\"><path d=\"M 0 11.743 C 0 10.836 0.747 10.031 2.442 9.622 C 1.142 9.479 0.59 8.943 0.59 8.251 C 0.59 7.449 1.248 6.808 2.783 6.45 C 1.323 5.969 0.61 4.775 0.61 3.438 C 0.61 1.245 2.411 0 4.549 0 L 9.484 0 L 9.484 1.426 L 7.612 1.426 C 8.11 1.852 8.431 2.585 8.431 3.367 C 8.431 5.399 6.79 6.699 4.457 6.699 L 4.154 6.699 C 3.407 6.699 2.282 7.002 2.282 7.678 C 2.282 8.053 2.674 8.265 3.69 8.265 L 6.292 8.265 C 8.322 8.265 9.482 8.906 9.482 10.492 C 9.482 12.327 7.752 13.664 4.26 13.664 L 3.851 13.664 C 1.517 13.664 0.003 12.969 0.003 11.74 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-94u3gh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.917 2.548\" overflow=\"visible\"><path d=\"M 5.917 1.051 C 5.917 0.266 5.276 0 4.045 0 L 2.494 0 C 0.996 0 0 0.624 0 1.443 C 0 2.262 1.034 2.548 2.388 2.548 L 2.763 2.548 C 4.901 2.548 5.917 1.889 5.917 1.051 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ennzmx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.386 4.331\" overflow=\"visible\"><path d=\"M 4.383 2.156 C 4.383 0.945 3.687 0 2.21 0 C 0.733 0 0 0.962 0 2.193 C 0 3.352 0.678 4.331 2.193 4.331 C 3.707 4.331 4.386 3.264 4.386 2.159 L 4.383 2.156 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7p49hs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.451 10.071\" overflow=\"visible\"><path d=\"M 0.003 0.266 L 1.766 0.266 L 1.766 2.494 C 2.462 1.034 3.619 0 5.205 0 C 6.685 0 7.752 0.928 7.984 2.619 C 8.697 0.999 9.857 0 11.477 0 C 13.258 0 14.451 1.139 14.451 3.564 L 14.451 10.068 L 12.634 10.068 L 12.634 3.994 C 12.634 2.373 11.938 1.5 10.672 1.5 C 9.605 1.5 8.892 2.159 8.517 2.909 C 8.251 3.39 8.142 3.977 8.142 4.512 L 8.107 10.071 L 6.327 10.071 L 6.327 4.065 C 6.327 2.336 5.631 1.5 4.366 1.5 C 3.206 1.5 2.565 2.159 2.193 2.909 C 1.944 3.39 1.818 3.959 1.818 4.512 L 1.818 10.071 L 0 10.071 L 0 0.272 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sktcte\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.609 10.297\" overflow=\"visible\"><path d=\"M 0.003 5.239 L 0.003 4.99 C 0.003 1.978 1.892 0 4.475 0 C 7.057 0 8.609 1.569 8.609 4.792 L 8.609 5.611 L 1.821 5.611 C 1.927 7.804 3.352 8.837 5.437 8.837 C 6.507 8.837 7.449 8.551 8.322 8.053 L 8.322 9.496 C 7.681 9.871 6.647 10.297 5.079 10.297 C 1.944 10.297 0 8.534 0 5.236 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8wjs80\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.024 3.012\" overflow=\"visible\"><path d=\"M 0 3.012 L 5.024 3.012 C 4.936 0.999 4.025 0 2.602 0 C 1.088 0 0.109 1.122 0 3.012 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-114ck86\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.377 10.048\" overflow=\"visible\"><path d=\"M 0.003 0.249 L 1.766 0.249 L 1.766 2.565 C 2.445 0.979 3.639 0 5.33 0 C 7.203 0 8.377 1.211 8.377 3.598 L 8.377 10.048 L 6.559 10.048 L 6.559 3.991 C 6.559 2.37 5.791 1.497 4.509 1.497 C 3.421 1.497 2.637 2.084 2.21 2.94 C 1.961 3.387 1.818 3.919 1.818 4.472 L 1.818 10.048 L 0 10.048 L 0 0.249 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xmchky\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.201 13.112\" overflow=\"visible\"><path d=\"M 1.818 10.389 L 1.818 4.543 L 0 4.543 L 0 3.189 L 0.802 3.172 C 1.371 3.155 1.852 2.995 1.924 1.978 L 2.084 0 L 3.653 0 L 3.653 3.1 L 6.201 3.1 L 6.201 4.543 L 3.636 4.543 L 3.636 10.137 C 3.636 11.171 4.205 11.652 5.167 11.652 C 5.471 11.652 5.914 11.58 6.146 11.508 L 6.146 12.808 C 5.843 12.951 5.202 13.112 4.543 13.112 C 2.725 13.112 1.818 12.256 1.818 10.386 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1hsekes\",\"data-framer-name\":\"rudderstack\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100.024 16.35\" overflow=\"visible\"><g><path d=\"M 0 0.788 C 0 0.35 0.35 0 0.759 0 L 15.854 0 C 16.117 0 16.321 0.204 16.321 0.467 L 16.321 15.562 C 16.321 16 15.971 16.35 15.533 16.35 C 6.949 16.35 0 9.372 0 0.788 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 22.132 7.329 C 22.015 7.329 22.044 7.183 22.103 7.066 C 22.22 6.716 22.249 6.482 22.249 6.19 L 22.249 5.752 C 22.249 5.694 22.19 5.635 22.132 5.635 L 21.139 5.635 C 21.081 5.635 21.022 5.694 21.022 5.752 L 21.022 12.905 C 21.022 12.964 21.081 13.022 21.139 13.022 L 22.132 13.022 C 22.19 13.022 22.249 12.964 22.249 12.905 L 22.249 9.256 C 22.249 7.358 22.891 6.57 25.052 6.686 C 25.11 6.686 25.169 6.628 25.169 6.57 L 25.169 5.635 C 25.169 5.577 25.11 5.519 25.052 5.519 C 23.212 5.548 22.804 6.044 22.307 7.212 C 22.278 7.27 22.22 7.358 22.132 7.329 Z M 29.139 13.11 C 30.57 13.11 31.621 12.117 31.884 11.387 C 31.913 11.358 31.971 11.27 32.059 11.3 C 32.176 11.329 32.117 11.475 32.059 11.592 C 31.942 11.884 31.913 12.117 31.913 12.38 L 31.913 12.876 C 31.913 12.935 31.971 12.993 32.03 12.993 L 33.023 12.993 C 33.081 12.993 33.139 12.935 33.139 12.876 L 33.139 5.723 C 33.139 5.665 33.081 5.606 33.023 5.606 L 32.03 5.606 C 31.971 5.606 31.913 5.665 31.913 5.723 L 31.913 9.285 C 31.913 11.037 30.599 12.117 29.402 12.117 C 28.293 12.117 27.475 11.65 27.475 9.927 L 27.475 5.723 C 27.475 5.665 27.417 5.606 27.358 5.606 L 26.366 5.606 C 26.307 5.606 26.249 5.665 26.249 5.723 L 26.249 9.986 C 26.19 12.146 27.3 13.11 29.139 13.11 Z M 40.497 3.066 C 40.439 3.066 40.38 3.124 40.38 3.183 L 40.38 6.073 C 40.38 6.336 40.409 6.599 40.526 6.891 C 40.585 7.037 40.672 7.154 40.526 7.212 C 40.439 7.241 40.38 7.095 40.351 7.066 C 40.001 6.044 38.95 5.402 37.694 5.402 C 35.621 5.402 34.19 7.037 34.19 9.256 C 34.19 11.475 35.621 13.11 37.694 13.11 C 38.92 13.11 39.971 12.467 40.351 11.416 C 40.38 11.358 40.439 11.241 40.526 11.3 C 40.614 11.358 40.585 11.475 40.526 11.592 C 40.409 11.913 40.38 12.117 40.38 12.38 L 40.38 12.905 C 40.38 12.964 40.439 13.022 40.497 13.022 L 41.49 13.022 C 41.548 13.022 41.607 12.964 41.607 12.905 L 41.607 3.183 C 41.607 3.124 41.548 3.066 41.49 3.066 Z M 37.869 12.059 C 36.263 12.059 35.417 10.774 35.417 9.256 C 35.417 7.738 36.263 6.453 37.869 6.453 C 39.329 6.453 40.38 7.738 40.38 9.256 C 40.38 10.774 39.329 12.059 37.869 12.059 Z M 48.847 3.066 C 48.789 3.066 48.731 3.124 48.731 3.183 L 48.731 6.073 C 48.731 6.336 48.76 6.599 48.877 6.891 C 48.935 7.037 49.023 7.154 48.877 7.212 C 48.789 7.241 48.731 7.095 48.701 7.066 C 48.351 6.044 47.329 5.402 46.103 5.402 C 44.088 5.402 42.687 7.037 42.687 9.256 C 42.687 11.475 44.088 13.11 46.103 13.11 C 47.3 13.11 48.351 12.467 48.701 11.416 C 48.731 11.358 48.789 11.241 48.877 11.3 C 48.964 11.358 48.935 11.475 48.877 11.592 C 48.76 11.913 48.731 12.117 48.731 12.38 L 48.731 12.905 C 48.731 12.964 48.789 13.022 48.847 13.022 L 49.811 13.022 C 49.869 13.022 49.928 12.964 49.928 12.905 L 49.928 3.183 C 49.928 3.124 49.869 3.066 49.811 3.066 Z M 46.278 12.059 C 44.701 12.059 43.884 10.774 43.884 9.256 C 43.884 7.738 44.701 6.453 46.278 6.453 C 47.709 6.453 48.731 7.738 48.731 9.256 C 48.731 10.774 47.709 12.059 46.278 12.059 Z M 58.424 9.11 C 58.424 6.57 56.614 5.519 54.862 5.519 C 52.614 5.519 51.066 7.066 51.066 9.314 C 51.066 11.329 52.409 13.11 54.891 13.11 C 56.818 13.11 57.899 11.913 58.249 10.716 C 58.278 10.657 58.22 10.57 58.132 10.57 L 57.052 10.57 C 56.993 10.57 56.964 10.599 56.935 10.657 C 56.643 11.446 56.059 12.088 54.95 12.088 C 53.373 12.088 52.439 10.978 52.322 9.723 C 52.322 9.665 52.38 9.606 52.439 9.606 L 58.307 9.606 C 58.366 9.606 58.424 9.548 58.424 9.489 Z M 54.979 6.482 C 56.205 6.482 57.023 7.27 57.169 8.555 C 57.169 8.613 57.11 8.672 57.052 8.672 L 52.526 8.672 C 52.468 8.672 52.409 8.613 52.409 8.526 C 52.614 7.387 53.315 6.482 54.979 6.482 Z M 64.03 5.665 C 64.059 5.577 64.001 5.519 63.913 5.519 C 63.504 5.519 63.154 5.548 62.862 5.606 C 62.483 5.665 62.22 5.752 61.986 5.898 C 61.519 6.161 61.256 6.599 60.993 7.212 C 60.964 7.27 60.935 7.329 60.847 7.329 C 60.731 7.329 60.76 7.183 60.818 7.066 C 60.935 6.716 60.993 6.482 60.993 6.19 L 60.993 5.752 C 60.993 5.694 60.935 5.635 60.877 5.635 L 59.826 5.635 C 59.767 5.635 59.709 5.694 59.709 5.752 L 59.709 12.905 C 59.709 12.964 59.767 13.022 59.826 13.022 L 60.877 13.022 C 60.935 13.022 60.993 12.964 60.993 12.905 L 60.993 9.256 C 60.993 8.175 61.198 7.475 61.811 7.066 C 62.103 6.891 62.453 6.774 62.92 6.716 C 63.183 6.686 63.446 6.686 63.767 6.686 C 63.826 6.686 63.884 6.657 63.884 6.599 Z M 64.672 10.453 C 64.614 10.453 64.556 10.511 64.556 10.57 C 64.672 12.117 65.869 13.081 67.796 13.081 C 69.782 13.081 71.067 12.175 71.067 10.686 C 71.067 9.519 69.928 8.964 68.088 8.73 C 66.103 8.497 65.957 8.029 65.957 7.621 C 65.957 7.124 66.424 6.482 67.767 6.482 C 69.11 6.482 69.548 7.154 69.607 7.825 C 69.607 7.883 69.665 7.942 69.723 7.942 L 70.687 7.942 C 70.745 7.942 70.804 7.883 70.804 7.825 C 70.658 6.511 69.636 5.548 67.796 5.548 C 65.811 5.548 64.731 6.716 64.731 7.825 C 64.731 8.789 65.607 9.577 67.242 9.752 C 69.285 9.986 69.811 10.248 69.811 10.949 C 69.811 11.416 69.344 12.146 67.796 12.146 C 66.307 12.146 65.723 11.358 65.665 10.599 C 65.665 10.54 65.607 10.482 65.548 10.482 Z M 75.942 5.489 C 76.001 5.489 76.059 5.548 76.059 5.606 L 76.059 6.365 C 76.059 6.424 76.001 6.482 75.942 6.482 L 74.453 6.482 C 74.395 6.482 74.337 6.54 74.337 6.599 L 74.337 10.891 C 74.337 11.738 74.512 12 75.388 12 C 75.621 12 75.855 11.971 76.03 11.913 C 76.088 11.884 76.176 11.942 76.176 12 L 76.293 12.643 C 76.293 12.701 76.264 12.759 76.234 12.759 C 76.059 12.818 75.767 12.935 75.388 12.964 C 73.782 13.081 73.11 12.497 73.11 10.745 L 73.11 6.628 C 73.11 6.57 73.052 6.511 72.994 6.511 L 71.767 6.511 C 71.709 6.511 71.65 6.453 71.65 6.394 L 71.65 5.635 C 71.65 5.577 71.709 5.519 71.767 5.519 L 72.994 5.519 C 73.052 5.519 73.11 5.46 73.11 5.402 L 73.11 3.416 C 73.11 3.358 73.14 3.3 73.198 3.3 L 74.191 3.095 C 74.278 3.066 74.337 3.124 74.337 3.212 L 74.337 5.373 C 74.337 5.431 74.395 5.489 74.453 5.489 Z M 76.906 10.949 C 76.906 12.205 78.103 13.11 79.534 13.11 C 80.994 13.11 82.22 12.38 82.629 11.212 C 82.658 11.154 82.687 11.066 82.775 11.095 C 82.891 11.124 82.862 11.241 82.804 11.358 C 82.687 11.65 82.658 11.884 82.658 12.175 L 82.658 12.876 C 82.658 12.935 82.716 12.993 82.775 12.993 L 83.796 12.993 C 83.855 12.993 83.913 12.935 83.913 12.876 L 83.913 8.789 C 83.913 6.073 82.424 5.519 80.614 5.519 C 78.95 5.519 77.49 6.161 77.169 7.679 C 77.14 7.738 77.198 7.825 77.286 7.825 L 78.278 7.825 C 78.337 7.825 78.395 7.796 78.395 7.738 C 78.541 7.095 79.154 6.511 80.497 6.511 C 82.337 6.511 82.658 7.329 82.658 7.883 C 82.687 8.701 81.198 8.584 79.709 8.701 C 78.307 8.818 76.906 9.314 76.906 10.949 Z M 82.424 9.051 C 82.512 8.993 82.658 9.051 82.658 9.168 C 82.541 11.008 81.49 12 80.059 12.117 C 78.745 12.234 78.161 11.562 78.161 10.862 C 78.161 10.102 78.775 9.781 79.767 9.635 C 80.789 9.46 81.84 9.402 82.424 9.051 Z M 84.964 9.314 C 84.964 11.387 86.395 13.11 88.76 13.11 C 90.804 13.11 92.03 11.825 92.205 10.482 C 92.205 10.424 92.147 10.365 92.088 10.365 L 91.096 10.365 C 91.037 10.365 90.979 10.394 90.979 10.453 C 90.804 11.387 90.045 12.088 88.789 12.088 C 87.008 12.088 86.191 10.832 86.191 9.314 C 86.191 7.825 86.979 6.54 88.789 6.54 C 90.045 6.54 90.804 7.212 90.979 8.175 C 90.979 8.234 91.037 8.263 91.096 8.263 L 92.088 8.263 C 92.147 8.263 92.205 8.205 92.205 8.146 C 92.03 6.774 90.804 5.519 88.76 5.519 C 86.366 5.519 84.964 7.241 84.964 9.314 Z M 99.913 13.022 C 100.001 13.022 100.059 12.905 100.001 12.818 L 96.526 8.701 C 96.497 8.643 96.497 8.584 96.526 8.526 L 99.68 5.665 C 99.767 5.606 99.709 5.46 99.592 5.46 L 98.307 5.46 C 98.278 5.46 98.249 5.46 98.22 5.489 L 94.599 8.964 C 94.541 9.022 94.483 9.11 94.395 9.051 C 94.307 8.993 94.366 8.905 94.424 8.818 C 94.658 8.526 94.716 8.263 94.716 7.883 L 94.716 3.183 C 94.716 3.124 94.658 3.066 94.599 3.066 L 93.607 3.066 C 93.548 3.066 93.49 3.124 93.49 3.183 L 93.49 12.905 C 93.49 12.964 93.548 13.022 93.607 13.022 L 94.599 13.022 C 94.658 13.022 94.716 12.964 94.716 12.905 L 94.716 10.19 C 94.716 10.161 94.716 10.132 94.745 10.102 L 95.475 9.431 C 95.534 9.373 95.592 9.402 95.651 9.431 L 98.541 12.964 C 98.57 12.993 98.599 12.993 98.629 12.993 L 99.913 12.993 Z\" fill=\"rgb(121, 121, 121)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-edjk67\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.321 16.35\" overflow=\"visible\"><path d=\"M 0 0.788 C 0 0.35 0.35 0 0.759 0 L 15.854 0 C 16.117 0 16.321 0.204 16.321 0.467 L 16.321 15.562 C 16.321 16 15.971 16.35 15.533 16.35 C 6.949 16.35 0 9.372 0 0.788 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-yewmvk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79.002 10.044\" overflow=\"visible\"><path d=\"M 1.109 4.263 C 0.993 4.263 1.022 4.117 1.08 4 C 1.197 3.65 1.226 3.416 1.226 3.124 L 1.226 2.686 C 1.226 2.628 1.168 2.569 1.109 2.569 L 0.117 2.569 C 0.058 2.569 0 2.628 0 2.686 L 0 9.839 C 0 9.898 0.058 9.956 0.117 9.956 L 1.109 9.956 C 1.168 9.956 1.226 9.898 1.226 9.839 L 1.226 6.19 C 1.226 4.292 1.869 3.504 4.029 3.62 C 4.088 3.62 4.146 3.562 4.146 3.504 L 4.146 2.569 C 4.146 2.511 4.088 2.453 4.029 2.453 C 2.19 2.482 1.781 2.978 1.285 4.146 C 1.255 4.204 1.197 4.292 1.109 4.263 Z M 8.117 10.044 C 9.547 10.044 10.599 9.051 10.861 8.321 C 10.891 8.292 10.949 8.204 11.037 8.234 C 11.153 8.263 11.095 8.409 11.037 8.526 C 10.92 8.818 10.891 9.051 10.891 9.314 L 10.891 9.81 C 10.891 9.869 10.949 9.927 11.007 9.927 L 12 9.927 C 12.058 9.927 12.117 9.869 12.117 9.81 L 12.117 2.657 C 12.117 2.599 12.058 2.54 12 2.54 L 11.007 2.54 C 10.949 2.54 10.891 2.599 10.891 2.657 L 10.891 6.219 C 10.891 7.971 9.577 9.051 8.38 9.051 C 7.27 9.051 6.453 8.584 6.453 6.861 L 6.453 2.657 C 6.453 2.599 6.394 2.54 6.336 2.54 L 5.343 2.54 C 5.285 2.54 5.226 2.599 5.226 2.657 L 5.226 6.92 C 5.168 9.08 6.277 10.044 8.117 10.044 Z M 19.475 0 C 19.416 0 19.358 0.058 19.358 0.117 L 19.358 3.007 C 19.358 3.27 19.387 3.533 19.504 3.825 C 19.562 3.971 19.65 4.088 19.504 4.146 C 19.416 4.175 19.358 4.029 19.329 4 C 18.978 2.978 17.927 2.336 16.672 2.336 C 14.599 2.336 13.168 3.971 13.168 6.19 C 13.168 8.409 14.599 10.044 16.672 10.044 C 17.898 10.044 18.949 9.401 19.329 8.35 C 19.358 8.292 19.416 8.175 19.504 8.234 C 19.591 8.292 19.562 8.409 19.504 8.526 C 19.387 8.847 19.358 9.051 19.358 9.314 L 19.358 9.839 C 19.358 9.898 19.416 9.956 19.475 9.956 L 20.467 9.956 C 20.526 9.956 20.584 9.898 20.584 9.839 L 20.584 0.117 C 20.584 0.058 20.526 0 20.467 0 Z M 16.847 8.993 C 15.241 8.993 14.394 7.708 14.394 6.19 C 14.394 4.672 15.241 3.387 16.847 3.387 C 18.307 3.387 19.358 4.672 19.358 6.19 C 19.358 7.708 18.307 8.993 16.847 8.993 Z M 27.825 0 C 27.767 0 27.708 0.058 27.708 0.117 L 27.708 3.007 C 27.708 3.27 27.737 3.533 27.854 3.825 C 27.913 3.971 28 4.088 27.854 4.146 C 27.767 4.175 27.708 4.029 27.679 4 C 27.329 2.978 26.307 2.336 25.08 2.336 C 23.066 2.336 21.664 3.971 21.664 6.19 C 21.664 8.409 23.066 10.044 25.08 10.044 C 26.277 10.044 27.329 9.401 27.679 8.35 C 27.708 8.292 27.767 8.175 27.854 8.234 C 27.942 8.292 27.913 8.409 27.854 8.526 C 27.737 8.847 27.708 9.051 27.708 9.314 L 27.708 9.839 C 27.708 9.898 27.767 9.956 27.825 9.956 L 28.788 9.956 C 28.847 9.956 28.905 9.898 28.905 9.839 L 28.905 0.117 C 28.905 0.058 28.847 0 28.788 0 Z M 25.256 8.993 C 23.679 8.993 22.861 7.708 22.861 6.19 C 22.861 4.672 23.679 3.387 25.256 3.387 C 26.686 3.387 27.708 4.672 27.708 6.19 C 27.708 7.708 26.686 8.993 25.256 8.993 Z M 37.402 6.044 C 37.402 3.504 35.591 2.453 33.84 2.453 C 31.591 2.453 30.044 4 30.044 6.248 C 30.044 8.263 31.387 10.044 33.869 10.044 C 35.796 10.044 36.876 8.847 37.226 7.65 C 37.256 7.591 37.197 7.504 37.11 7.504 L 36.029 7.504 C 35.971 7.504 35.942 7.533 35.913 7.591 C 35.621 8.38 35.037 9.022 33.927 9.022 C 32.351 9.022 31.416 7.912 31.299 6.657 C 31.299 6.599 31.358 6.54 31.416 6.54 L 37.285 6.54 C 37.343 6.54 37.402 6.482 37.402 6.423 Z M 33.956 3.416 C 35.183 3.416 36 4.204 36.146 5.489 C 36.146 5.547 36.088 5.606 36.029 5.606 L 31.504 5.606 C 31.445 5.606 31.387 5.547 31.387 5.46 C 31.591 4.321 32.292 3.416 33.956 3.416 Z M 43.007 2.599 C 43.037 2.511 42.978 2.453 42.891 2.453 C 42.482 2.453 42.132 2.482 41.84 2.54 C 41.46 2.599 41.197 2.686 40.964 2.832 C 40.497 3.095 40.234 3.533 39.971 4.146 C 39.942 4.204 39.913 4.263 39.825 4.263 C 39.708 4.263 39.737 4.117 39.796 4 C 39.913 3.65 39.971 3.416 39.971 3.124 L 39.971 2.686 C 39.971 2.628 39.913 2.569 39.854 2.569 L 38.803 2.569 C 38.745 2.569 38.686 2.628 38.686 2.686 L 38.686 9.839 C 38.686 9.898 38.745 9.956 38.803 9.956 L 39.854 9.956 C 39.913 9.956 39.971 9.898 39.971 9.839 L 39.971 6.19 C 39.971 5.11 40.175 4.409 40.788 4 C 41.08 3.825 41.431 3.708 41.898 3.65 C 42.161 3.62 42.424 3.62 42.745 3.62 C 42.803 3.62 42.861 3.591 42.861 3.533 Z M 43.65 7.387 C 43.591 7.387 43.533 7.445 43.533 7.504 C 43.65 9.051 44.847 10.015 46.774 10.015 C 48.759 10.015 50.044 9.11 50.044 7.62 C 50.044 6.453 48.905 5.898 47.066 5.664 C 45.08 5.431 44.934 4.964 44.934 4.555 C 44.934 4.058 45.402 3.416 46.745 3.416 C 48.088 3.416 48.526 4.088 48.584 4.759 C 48.584 4.818 48.643 4.876 48.701 4.876 L 49.664 4.876 C 49.723 4.876 49.781 4.818 49.781 4.759 C 49.635 3.445 48.613 2.482 46.774 2.482 C 44.789 2.482 43.708 3.65 43.708 4.759 C 43.708 5.723 44.584 6.511 46.219 6.686 C 48.263 6.92 48.789 7.183 48.789 7.883 C 48.789 8.35 48.321 9.08 46.774 9.08 C 45.285 9.08 44.701 8.292 44.643 7.533 C 44.643 7.474 44.584 7.416 44.526 7.416 Z M 54.92 2.423 C 54.978 2.423 55.037 2.482 55.037 2.54 L 55.037 3.299 C 55.037 3.358 54.978 3.416 54.92 3.416 L 53.431 3.416 C 53.372 3.416 53.314 3.474 53.314 3.533 L 53.314 7.825 C 53.314 8.672 53.489 8.934 54.365 8.934 C 54.599 8.934 54.832 8.905 55.008 8.847 C 55.066 8.818 55.154 8.876 55.154 8.934 L 55.27 9.577 C 55.27 9.635 55.241 9.693 55.212 9.693 C 55.037 9.752 54.745 9.869 54.365 9.898 C 52.759 10.015 52.088 9.431 52.088 7.679 L 52.088 3.562 C 52.088 3.504 52.029 3.445 51.971 3.445 L 50.745 3.445 C 50.686 3.445 50.628 3.387 50.628 3.328 L 50.628 2.569 C 50.628 2.511 50.686 2.453 50.745 2.453 L 51.971 2.453 C 52.029 2.453 52.088 2.394 52.088 2.336 L 52.088 0.35 C 52.088 0.292 52.117 0.234 52.175 0.234 L 53.168 0.029 C 53.256 0 53.314 0.058 53.314 0.146 L 53.314 2.307 C 53.314 2.365 53.372 2.423 53.431 2.423 Z M 55.883 7.883 C 55.883 9.139 57.081 10.044 58.511 10.044 C 59.971 10.044 61.197 9.314 61.606 8.146 C 61.635 8.088 61.664 8 61.752 8.029 C 61.869 8.058 61.84 8.175 61.781 8.292 C 61.664 8.584 61.635 8.818 61.635 9.11 L 61.635 9.81 C 61.635 9.869 61.694 9.927 61.752 9.927 L 62.774 9.927 C 62.832 9.927 62.891 9.869 62.891 9.81 L 62.891 5.723 C 62.891 3.007 61.402 2.453 59.591 2.453 C 57.927 2.453 56.467 3.095 56.146 4.613 C 56.117 4.672 56.175 4.759 56.263 4.759 L 57.256 4.759 C 57.314 4.759 57.373 4.73 57.373 4.672 C 57.518 4.029 58.132 3.445 59.475 3.445 C 61.314 3.445 61.635 4.263 61.635 4.818 C 61.664 5.635 60.175 5.518 58.686 5.635 C 57.285 5.752 55.883 6.248 55.883 7.883 Z M 61.402 5.985 C 61.489 5.927 61.635 5.985 61.635 6.102 C 61.519 7.942 60.467 8.934 59.037 9.051 C 57.723 9.168 57.139 8.496 57.139 7.796 C 57.139 7.037 57.752 6.715 58.745 6.569 C 59.767 6.394 60.818 6.336 61.402 5.985 Z M 63.942 6.248 C 63.942 8.321 65.373 10.044 67.738 10.044 C 69.781 10.044 71.008 8.759 71.183 7.416 C 71.183 7.358 71.124 7.299 71.066 7.299 L 70.073 7.299 C 70.015 7.299 69.956 7.328 69.956 7.387 C 69.781 8.321 69.022 9.022 67.767 9.022 C 65.986 9.022 65.168 7.766 65.168 6.248 C 65.168 4.759 65.956 3.474 67.767 3.474 C 69.022 3.474 69.781 4.146 69.956 5.11 C 69.956 5.168 70.015 5.197 70.073 5.197 L 71.066 5.197 C 71.124 5.197 71.183 5.139 71.183 5.08 C 71.008 3.708 69.781 2.453 67.738 2.453 C 65.343 2.453 63.942 4.175 63.942 6.248 Z M 78.891 9.956 C 78.978 9.956 79.037 9.839 78.978 9.752 L 75.504 5.635 C 75.475 5.577 75.475 5.518 75.504 5.46 L 78.657 2.599 C 78.745 2.54 78.686 2.394 78.57 2.394 L 77.285 2.394 C 77.256 2.394 77.227 2.394 77.197 2.423 L 73.577 5.898 C 73.519 5.956 73.46 6.044 73.373 5.985 C 73.285 5.927 73.343 5.839 73.402 5.752 C 73.635 5.46 73.694 5.197 73.694 4.818 L 73.694 0.117 C 73.694 0.058 73.635 0 73.577 0 L 72.584 0 C 72.526 0 72.467 0.058 72.467 0.117 L 72.467 9.839 C 72.467 9.898 72.526 9.956 72.584 9.956 L 73.577 9.956 C 73.635 9.956 73.694 9.898 73.694 9.839 L 73.694 7.124 C 73.694 7.095 73.694 7.066 73.723 7.037 L 74.453 6.365 C 74.511 6.307 74.57 6.336 74.628 6.365 L 77.519 9.898 C 77.548 9.927 77.577 9.927 77.606 9.927 L 78.891 9.927 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16t5b2s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.146 7.504\" overflow=\"visible\"><path d=\"M 1.109 1.81 C 0.993 1.81 1.022 1.664 1.08 1.547 C 1.197 1.197 1.226 0.964 1.226 0.672 L 1.226 0.234 C 1.226 0.175 1.168 0.117 1.109 0.117 L 0.117 0.117 C 0.058 0.117 0 0.175 0 0.234 L 0 7.387 C 0 7.445 0.058 7.504 0.117 7.504 L 1.109 7.504 C 1.168 7.504 1.226 7.445 1.226 7.387 L 1.226 3.737 C 1.226 1.839 1.869 1.051 4.029 1.168 C 4.088 1.168 4.146 1.109 4.146 1.051 L 4.146 0.117 C 4.146 0.058 4.088 0 4.029 0 C 2.19 0.029 1.781 0.526 1.285 1.693 C 1.255 1.752 1.197 1.839 1.109 1.81 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xs8mz0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.893 7.504\" overflow=\"visible\"><path d=\"M 2.893 7.504 C 4.323 7.504 5.374 6.511 5.637 5.781 C 5.666 5.752 5.725 5.664 5.812 5.693 C 5.929 5.723 5.871 5.869 5.812 5.985 C 5.696 6.277 5.666 6.511 5.666 6.774 L 5.666 7.27 C 5.666 7.328 5.725 7.387 5.783 7.387 L 6.776 7.387 C 6.834 7.387 6.893 7.328 6.893 7.27 L 6.893 0.117 C 6.893 0.058 6.834 0 6.776 0 L 5.783 0 C 5.725 0 5.666 0.058 5.666 0.117 L 5.666 3.679 C 5.666 5.431 4.353 6.511 3.155 6.511 C 2.046 6.511 1.228 6.044 1.228 4.321 L 1.228 0.117 C 1.228 0.058 1.17 0 1.112 0 L 0.119 0 C 0.061 0 0.002 0.058 0.002 0.117 L 0.002 4.38 C -0.056 6.54 1.053 7.504 2.893 7.504 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19z3nyh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.416 10.044\" overflow=\"visible\"><path d=\"M 6.307 0 C 6.248 0 6.19 0.058 6.19 0.117 L 6.19 3.007 C 6.19 3.27 6.219 3.533 6.336 3.825 C 6.394 3.971 6.482 4.088 6.336 4.146 C 6.248 4.175 6.19 4.029 6.161 4 C 5.81 2.978 4.759 2.336 3.504 2.336 C 1.431 2.336 0 3.971 0 6.19 C 0 8.409 1.431 10.044 3.504 10.044 C 4.73 10.044 5.781 9.401 6.161 8.35 C 6.19 8.292 6.248 8.175 6.336 8.234 C 6.423 8.292 6.394 8.409 6.336 8.526 C 6.219 8.847 6.19 9.051 6.19 9.314 L 6.19 9.839 C 6.19 9.898 6.248 9.956 6.307 9.956 L 7.299 9.956 C 7.358 9.956 7.416 9.898 7.416 9.839 L 7.416 0.117 C 7.416 0.058 7.358 0 7.299 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2m2gu9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.964 5.606\" overflow=\"visible\"><path d=\"M 2.453 5.606 C 0.847 5.606 0 4.321 0 2.803 C 0 1.285 0.847 0 2.453 0 C 3.912 0 4.964 1.285 4.964 2.803 C 4.964 4.321 3.912 5.606 2.453 5.606 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-djoril\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.241 10.044\" overflow=\"visible\"><path d=\"M 6.161 0 C 6.102 0 6.044 0.058 6.044 0.117 L 6.044 3.007 C 6.044 3.27 6.073 3.533 6.19 3.825 C 6.248 3.971 6.336 4.088 6.19 4.146 C 6.102 4.175 6.044 4.029 6.015 4 C 5.664 2.978 4.642 2.336 3.416 2.336 C 1.401 2.336 0 3.971 0 6.19 C 0 8.409 1.401 10.044 3.416 10.044 C 4.613 10.044 5.664 9.401 6.015 8.35 C 6.044 8.292 6.102 8.175 6.19 8.234 C 6.277 8.292 6.248 8.409 6.19 8.526 C 6.073 8.847 6.044 9.051 6.044 9.314 L 6.044 9.839 C 6.044 9.898 6.102 9.956 6.161 9.956 L 7.124 9.956 C 7.183 9.956 7.241 9.898 7.241 9.839 L 7.241 0.117 C 7.241 0.058 7.183 0 7.124 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ob9rad\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.847 5.606\" overflow=\"visible\"><path d=\"M 2.394 5.606 C 0.818 5.606 0 4.321 0 2.803 C 0 1.285 0.818 0 2.394 0 C 3.825 0 4.847 1.285 4.847 2.803 C 4.847 4.321 3.825 5.606 2.394 5.606 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bxmdq2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.358 7.591\" overflow=\"visible\"><path d=\"M 7.358 3.591 C 7.358 1.051 5.547 0 3.796 0 C 1.547 0 0 1.547 0 3.796 C 0 5.81 1.343 7.591 3.825 7.591 C 5.752 7.591 6.832 6.394 7.183 5.197 C 7.212 5.139 7.153 5.051 7.066 5.051 L 5.985 5.051 C 5.927 5.051 5.898 5.08 5.869 5.139 C 5.577 5.927 4.993 6.569 3.883 6.569 C 2.307 6.569 1.372 5.46 1.255 4.204 C 1.255 4.146 1.314 4.088 1.372 4.088 L 7.241 4.088 C 7.299 4.088 7.358 4.029 7.358 3.971 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ywvxzj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.759 2.19\" overflow=\"visible\"><path d=\"M 2.569 0 C 3.796 0 4.613 0.788 4.759 2.073 C 4.759 2.131 4.701 2.19 4.642 2.19 L 0.117 2.19 C 0.058 2.19 0 2.131 0 2.044 C 0.204 0.905 0.905 0 2.569 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1glgpbq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.329 7.504\" overflow=\"visible\"><path d=\"M 4.321 0.146 C 4.35 0.058 4.292 0 4.204 0 C 3.796 0 3.445 0.029 3.153 0.088 C 2.774 0.146 2.511 0.234 2.277 0.38 C 1.81 0.642 1.547 1.08 1.285 1.693 C 1.255 1.752 1.226 1.81 1.139 1.81 C 1.022 1.81 1.051 1.664 1.109 1.547 C 1.226 1.197 1.285 0.964 1.285 0.672 L 1.285 0.234 C 1.285 0.175 1.226 0.117 1.168 0.117 L 0.117 0.117 C 0.058 0.117 0 0.175 0 0.234 L 0 7.387 C 0 7.445 0.058 7.504 0.117 7.504 L 1.168 7.504 C 1.226 7.504 1.285 7.445 1.285 7.387 L 1.285 3.737 C 1.285 2.657 1.489 1.956 2.102 1.547 C 2.394 1.372 2.745 1.255 3.212 1.197 C 3.474 1.168 3.737 1.168 4.058 1.168 C 4.117 1.168 4.175 1.139 4.175 1.08 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7bfrc0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.511 7.533\" overflow=\"visible\"><path d=\"M 0.117 4.905 C 0.058 4.905 0 4.964 0 5.022 C 0.117 6.569 1.314 7.533 3.241 7.533 C 5.226 7.533 6.511 6.628 6.511 5.139 C 6.511 3.971 5.372 3.416 3.533 3.182 C 1.547 2.949 1.401 2.482 1.401 2.073 C 1.401 1.577 1.869 0.934 3.212 0.934 C 4.555 0.934 4.993 1.606 5.051 2.277 C 5.051 2.336 5.11 2.394 5.168 2.394 L 6.131 2.394 C 6.19 2.394 6.248 2.336 6.248 2.277 C 6.102 0.964 5.08 0 3.241 0 C 1.255 0 0.175 1.168 0.175 2.277 C 0.175 3.241 1.051 4.029 2.686 4.204 C 4.73 4.438 5.255 4.701 5.255 5.401 C 5.255 5.869 4.788 6.599 3.241 6.599 C 1.752 6.599 1.168 5.81 1.109 5.051 C 1.109 4.993 1.051 4.934 0.993 4.934 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xqt6fg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.642 9.891\" overflow=\"visible\"><path d=\"M 4.292 2.402 C 4.35 2.402 4.409 2.46 4.409 2.519 L 4.409 3.278 C 4.409 3.336 4.35 3.394 4.292 3.394 L 2.803 3.394 C 2.745 3.394 2.686 3.453 2.686 3.511 L 2.686 7.803 C 2.686 8.65 2.861 8.913 3.737 8.913 C 3.971 8.913 4.204 8.884 4.38 8.825 C 4.438 8.796 4.526 8.854 4.526 8.913 L 4.642 9.555 C 4.642 9.613 4.613 9.672 4.584 9.672 C 4.409 9.73 4.117 9.847 3.737 9.876 C 2.131 9.993 1.46 9.409 1.46 7.657 L 1.46 3.54 C 1.46 3.482 1.401 3.424 1.343 3.424 L 0.117 3.424 C 0.058 3.424 0 3.365 0 3.307 L 0 2.548 C 0 2.489 0.058 2.431 0.117 2.431 L 1.343 2.431 C 1.401 2.431 1.46 2.373 1.46 2.314 L 1.46 0.329 C 1.46 0.27 1.489 0.212 1.547 0.212 L 2.54 0.008 C 2.628 -0.022 2.686 0.037 2.686 0.124 L 2.686 2.285 C 2.686 2.343 2.745 2.402 2.803 2.402 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-svmz0a\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.007 7.591\" overflow=\"visible\"><path d=\"M 0 5.431 C 0 6.686 1.197 7.591 2.628 7.591 C 4.088 7.591 5.314 6.861 5.723 5.693 C 5.752 5.635 5.781 5.547 5.869 5.577 C 5.985 5.606 5.956 5.723 5.898 5.839 C 5.781 6.131 5.752 6.365 5.752 6.657 L 5.752 7.358 C 5.752 7.416 5.81 7.474 5.869 7.474 L 6.891 7.474 C 6.949 7.474 7.007 7.416 7.007 7.358 L 7.007 3.27 C 7.007 0.555 5.518 0 3.708 0 C 2.044 0 0.584 0.642 0.263 2.161 C 0.234 2.219 0.292 2.307 0.38 2.307 L 1.372 2.307 C 1.431 2.307 1.489 2.277 1.489 2.219 C 1.635 1.577 2.248 0.993 3.591 0.993 C 5.431 0.993 5.752 1.81 5.752 2.365 C 5.781 3.182 4.292 3.066 2.803 3.182 C 1.401 3.299 0 3.796 0 5.431 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ch3a96\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.496 3.102\" overflow=\"visible\"><path d=\"M 4.263 0.023 C 4.35 -0.035 4.496 0.023 4.496 0.14 C 4.38 1.979 3.328 2.972 1.898 3.089 C 0.584 3.205 0 2.534 0 1.833 C 0 1.074 0.613 0.753 1.606 0.607 C 2.628 0.432 3.679 0.373 4.263 0.023 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16djf30\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.241 7.591\" overflow=\"visible\"><path d=\"M 0 3.796 C 0 5.869 1.431 7.591 3.796 7.591 C 5.839 7.591 7.066 6.307 7.241 4.964 C 7.241 4.905 7.183 4.847 7.124 4.847 L 6.131 4.847 C 6.073 4.847 6.015 4.876 6.015 4.934 C 5.839 5.869 5.08 6.569 3.825 6.569 C 2.044 6.569 1.226 5.314 1.226 3.796 C 1.226 2.307 2.015 1.022 3.825 1.022 C 5.08 1.022 5.839 1.693 6.015 2.657 C 6.015 2.715 6.073 2.745 6.131 2.745 L 7.124 2.745 C 7.183 2.745 7.241 2.686 7.241 2.628 C 7.066 1.255 5.839 0 3.796 0 C 1.401 0 0 1.723 0 3.796 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17fdlnd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.534 9.956\" overflow=\"visible\"><path d=\"M 6.423 9.956 C 6.511 9.956 6.569 9.839 6.511 9.752 L 3.037 5.635 C 3.007 5.577 3.007 5.518 3.037 5.46 L 6.19 2.599 C 6.277 2.54 6.219 2.394 6.102 2.394 L 4.818 2.394 C 4.788 2.394 4.759 2.394 4.73 2.423 L 1.109 5.898 C 1.051 5.956 0.993 6.044 0.905 5.985 C 0.818 5.927 0.876 5.839 0.934 5.752 C 1.168 5.46 1.226 5.197 1.226 4.818 L 1.226 0.117 C 1.226 0.058 1.168 0 1.109 0 L 0.117 0 C 0.058 0 0 0.058 0 0.117 L 0 9.839 C 0 9.898 0.058 9.956 0.117 9.956 L 1.109 9.956 C 1.168 9.956 1.226 9.898 1.226 9.839 L 1.226 7.124 C 1.226 7.095 1.226 7.066 1.255 7.037 L 1.985 6.365 C 2.044 6.307 2.102 6.336 2.161 6.365 L 5.051 9.898 C 5.08 9.927 5.11 9.927 5.139 9.927 L 6.423 9.927 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(SVG,{className:\"framer-b7uqh hidden-3qaj24 hidden-10fgy8q\",\"data-framer-name\":\"amplitude logo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 20.82\" overflow=\"visible\"><g><path d=\"M 0 0 L 100 0 L 100 20.82 L 0 20.82 Z\" fill=\"transparent\"></path><path d=\"M 29.02 3.753 L 24.492 15.095 L 26.502 15.095 L 27.396 12.825 L 32.193 12.825 L 33.072 15.095 L 35.129 15.095 L 30.609 3.753 Z M 28.094 11.014 L 29.795 6.672 L 31.481 11.014 L 28.094 11.014 Z M 45.419 7.012 C 44.875 7.012 44.375 7.138 43.916 7.388 C 43.456 7.639 43.116 7.978 42.894 8.404 C 42.424 7.476 41.606 7.012 40.44 7.012 C 39.97 7.012 39.518 7.113 39.083 7.317 C 38.648 7.52 38.296 7.846 38.027 8.293 L 38.027 7.178 L 36.23 7.178 L 36.23 15.095 L 38.027 15.095 L 38.027 10.657 C 38.027 10.025 38.2 9.548 38.545 9.226 C 38.89 8.904 39.306 8.743 39.791 8.743 C 40.329 8.743 40.754 8.913 41.065 9.253 C 41.377 9.593 41.532 10.061 41.532 10.656 L 41.532 15.094 L 43.345 15.094 L 43.345 10.656 C 43.345 10.024 43.516 9.547 43.859 9.225 C 44.202 8.903 44.619 8.742 45.11 8.742 C 45.642 8.742 46.062 8.912 46.368 9.252 C 46.674 9.592 46.828 10.06 46.828 10.655 L 46.828 15.093 L 48.664 15.093 L 48.664 10.253 C 48.664 9.267 48.365 8.479 47.766 7.891 C 47.167 7.306 46.385 7.012 45.419 7.012 Z M 56.953 7.566 C 56.375 7.196 55.74 7.012 55.049 7.012 C 54.416 7.012 53.858 7.149 53.379 7.424 C 52.899 7.699 52.513 8.091 52.223 8.603 L 52.223 7.179 L 50.426 7.179 L 50.426 17.864 L 52.223 17.864 L 52.223 13.673 C 52.514 14.179 52.899 14.569 53.379 14.843 C 53.859 15.117 54.416 15.254 55.049 15.254 C 56.099 15.254 56.99 14.854 57.724 14.056 C 58.457 13.257 58.824 12.286 58.824 11.141 C 58.824 10.392 58.656 9.702 58.321 9.069 C 57.987 8.436 57.53 7.935 56.953 7.565 Z M 56.355 12.837 C 55.89 13.303 55.323 13.537 54.653 13.537 C 53.957 13.537 53.377 13.307 52.916 12.849 C 52.454 12.39 52.223 11.82 52.223 11.14 C 52.223 10.448 52.454 9.874 52.916 9.415 C 53.378 8.956 53.957 8.727 54.653 8.727 C 55.323 8.727 55.89 8.96 56.355 9.427 C 56.82 9.893 57.051 10.464 57.051 11.14 C 57.052 11.806 56.82 12.37 56.355 12.837 Z M 62.046 3.753 L 60.249 3.753 L 60.249 15.095 L 62.046 15.095 Z M 65.588 7.178 L 63.791 7.178 L 63.791 15.095 L 65.588 15.095 Z M 64.702 3.5 C 64.385 3.5 64.113 3.614 63.887 3.84 C 63.66 4.067 63.546 4.336 63.546 4.647 C 63.546 4.969 63.659 5.242 63.887 5.47 C 64.113 5.697 64.385 5.81 64.702 5.81 C 65.018 5.81 65.292 5.697 65.522 5.47 C 65.751 5.243 65.866 4.969 65.866 4.647 C 65.866 4.335 65.751 4.067 65.522 3.84 C 65.291 3.614 65.018 3.5 64.702 3.5 Z M 70.052 5.051 L 68.24 5.051 L 68.24 7.178 L 66.736 7.178 L 66.736 8.895 L 68.24 8.895 L 68.24 12.114 C 68.24 13.1 68.503 13.86 69.032 14.392 C 69.559 14.925 70.269 15.191 71.161 15.191 C 71.53 15.191 71.855 15.159 72.134 15.095 L 72.134 13.427 C 71.971 13.469 71.775 13.49 71.548 13.49 C 71.083 13.49 70.719 13.376 70.453 13.146 C 70.186 12.917 70.052 12.562 70.052 12.082 L 70.052 8.894 L 72.134 8.894 L 72.134 7.178 L 70.052 7.178 L 70.052 5.051 Z M 79.067 11.465 C 79.067 12.087 78.89 12.585 78.533 12.96 C 78.177 13.334 77.706 13.522 77.12 13.522 C 76.539 13.522 76.072 13.335 75.718 12.96 C 75.364 12.586 75.188 12.088 75.188 11.465 L 75.188 7.178 L 73.391 7.178 L 73.391 11.678 C 73.391 12.791 73.684 13.665 74.269 14.3 C 74.855 14.935 75.659 15.253 76.684 15.253 C 77.206 15.253 77.67 15.132 78.077 14.889 C 78.483 14.647 78.812 14.299 79.066 13.845 L 79.066 15.095 L 80.879 15.095 L 80.879 7.178 L 79.066 7.178 L 79.066 11.465 Z M 88.863 8.57 C 88.573 8.069 88.191 7.684 87.715 7.415 C 87.241 7.146 86.689 7.012 86.061 7.012 C 85.37 7.012 84.734 7.194 84.154 7.558 C 83.573 7.921 83.114 8.42 82.777 9.053 C 82.439 9.686 82.27 10.376 82.27 11.125 C 82.27 11.874 82.439 12.566 82.777 13.201 C 83.114 13.836 83.573 14.338 84.154 14.704 C 84.735 15.07 85.37 15.253 86.061 15.253 C 86.689 15.253 87.241 15.12 87.715 14.853 C 88.19 14.587 88.573 14.204 88.863 13.702 L 88.863 15.094 L 90.684 15.094 L 90.684 3.753 L 88.863 3.753 L 88.863 8.57 Z M 88.172 12.846 C 87.71 13.307 87.136 13.538 86.45 13.538 C 85.78 13.538 85.212 13.304 84.748 12.838 C 84.283 12.371 84.052 11.801 84.052 11.125 C 84.052 10.461 84.284 9.895 84.748 9.429 C 85.212 8.962 85.78 8.729 86.45 8.729 C 87.136 8.729 87.71 8.958 88.172 9.417 C 88.634 9.876 88.864 10.445 88.864 11.126 C 88.863 11.81 88.633 12.384 88.172 12.846 Z M 100 10.967 C 100 10.213 99.825 9.532 99.477 8.923 C 99.129 8.313 98.66 7.843 98.072 7.51 C 97.483 7.178 96.835 7.012 96.128 7.012 C 95.379 7.012 94.692 7.191 94.066 7.55 C 93.441 7.909 92.947 8.4 92.585 9.025 C 92.224 9.649 92.043 10.34 92.043 11.093 C 92.043 11.868 92.224 12.575 92.585 13.213 C 92.947 13.851 93.442 14.35 94.07 14.712 C 94.698 15.073 95.394 15.253 96.16 15.253 C 97.136 15.253 97.967 15 98.653 14.494 C 99.339 13.988 99.756 13.318 99.905 12.485 L 98.092 12.485 C 98.013 12.822 97.798 13.097 97.447 13.307 C 97.096 13.518 96.678 13.623 96.192 13.623 C 95.564 13.623 95.05 13.455 94.649 13.117 C 94.247 12.78 93.989 12.316 93.873 11.726 L 99.952 11.726 C 99.985 11.584 100 11.33 100 10.967 Z M 93.921 10.183 C 94.053 9.698 94.303 9.321 94.674 9.052 C 95.043 8.783 95.494 8.648 96.027 8.648 C 96.565 8.648 97.015 8.79 97.376 9.071 C 97.738 9.353 97.958 9.723 98.037 10.182 L 93.921 10.182 Z M 9.183 4.686 C 9.124 4.611 9.061 4.57 8.986 4.57 C 8.932 4.574 8.881 4.591 8.835 4.62 C 8.279 5.055 7.522 6.899 6.899 9.331 L 7.451 9.335 C 8.539 9.348 9.664 9.36 10.773 9.377 C 10.48 8.264 10.204 7.311 9.95 6.538 C 9.576 5.414 9.325 4.908 9.183 4.686 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 10.417 0 C 4.665 0 0 4.661 0 10.41 C 0 16.158 4.665 20.82 10.417 20.82 C 16.17 20.82 20.835 16.158 20.835 10.41 C 20.835 4.661 16.17 0 10.417 0 Z M 18.107 10.285 C 18.074 10.407 18.004 10.517 17.906 10.598 C 17.894 10.606 17.881 10.614 17.869 10.623 L 17.856 10.631 L 17.831 10.648 L 17.81 10.66 C 17.73 10.702 17.64 10.724 17.55 10.723 L 12.614 10.723 C 12.651 10.886 12.698 11.074 12.743 11.275 C 13.015 12.442 13.73 15.543 14.495 15.543 L 14.537 15.543 C 15.131 15.543 15.437 14.683 16.106 12.796 L 16.115 12.775 C 16.224 12.474 16.345 12.131 16.475 11.768 L 16.509 11.676 C 16.559 11.555 16.697 11.492 16.818 11.542 C 16.931 11.587 16.993 11.71 16.96 11.827 L 16.931 11.918 C 16.86 12.144 16.789 12.45 16.7 12.805 C 16.303 14.452 15.7 16.94 14.161 16.94 L 14.148 16.94 C 13.153 16.931 12.559 15.343 12.303 14.661 C 11.827 13.39 11.467 12.04 11.119 10.728 L 6.585 10.728 L 5.644 13.742 L 5.631 13.73 C 5.489 13.952 5.194 14.017 4.97 13.876 C 4.833 13.789 4.749 13.638 4.749 13.475 L 4.749 13.459 L 4.807 13.115 C 4.937 12.342 5.096 11.535 5.271 10.724 L 3.347 10.724 L 3.338 10.715 C 2.945 10.656 2.673 10.29 2.732 9.896 C 2.777 9.592 3.011 9.35 3.313 9.294 C 3.389 9.285 3.464 9.281 3.539 9.285 L 3.631 9.285 C 4.237 9.294 4.882 9.306 5.592 9.314 C 6.593 5.25 7.751 3.185 9.04 3.181 C 10.42 3.181 11.445 6.32 12.265 9.393 L 12.269 9.405 C 13.951 9.439 15.75 9.489 17.494 9.615 L 17.57 9.623 C 17.598 9.624 17.626 9.627 17.653 9.632 L 17.662 9.632 L 17.671 9.636 L 17.675 9.636 C 17.973 9.695 18.17 9.988 18.107 10.285 Z\" fill=\"rgb(121, 121, 121)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xqghed\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 20.82\" overflow=\"visible\"><path d=\"M 0 0 L 100 0 L 100 20.82 L 0 20.82 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1scrgzd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 93.101 14.365\" overflow=\"visible\"><path d=\"M 22.121 0.253 L 17.594 11.595 L 19.604 11.595 L 20.498 9.325 L 25.295 9.325 L 26.173 11.595 L 28.231 11.595 L 23.711 0.253 Z M 21.195 7.514 L 22.897 3.172 L 24.583 7.514 L 21.195 7.514 Z M 38.521 3.512 C 37.977 3.512 37.476 3.638 37.017 3.888 C 36.558 4.139 36.217 4.478 35.996 4.904 C 35.526 3.976 34.708 3.512 33.542 3.512 C 33.072 3.512 32.62 3.614 32.185 3.817 C 31.75 4.02 31.398 4.346 31.128 4.793 L 31.128 3.678 L 29.331 3.678 L 29.331 11.595 L 31.128 11.595 L 31.128 7.158 C 31.128 6.525 31.301 6.048 31.646 5.726 C 31.992 5.404 32.407 5.243 32.893 5.243 C 33.431 5.243 33.855 5.413 34.167 5.753 C 34.478 6.093 34.634 6.561 34.634 7.157 L 34.634 11.594 L 36.446 11.594 L 36.446 7.157 C 36.446 6.524 36.618 6.047 36.96 5.725 C 37.303 5.403 37.72 5.242 38.211 5.242 C 38.744 5.242 39.163 5.412 39.47 5.752 C 39.776 6.092 39.929 6.56 39.929 7.156 L 39.929 11.593 L 41.766 11.593 L 41.766 6.753 C 41.766 5.767 41.467 4.979 40.868 4.391 C 40.269 3.806 39.486 3.512 38.521 3.512 Z M 50.054 4.066 C 49.476 3.696 48.842 3.512 48.15 3.512 C 47.517 3.512 46.96 3.649 46.48 3.924 C 46 4.199 45.614 4.591 45.325 5.103 L 45.325 3.679 L 43.528 3.679 L 43.528 14.365 L 45.325 14.365 L 45.325 10.173 C 45.615 10.679 46 11.069 46.48 11.343 C 46.961 11.618 47.517 11.754 48.15 11.754 C 49.2 11.754 50.092 11.354 50.826 10.556 C 51.559 9.757 51.925 8.786 51.925 7.642 C 51.925 6.893 51.757 6.202 51.423 5.569 C 51.088 4.936 50.632 4.435 50.054 4.066 Z M 49.456 9.337 C 48.992 9.804 48.425 10.037 47.755 10.037 C 47.058 10.037 46.478 9.807 46.017 9.349 C 45.555 8.89 45.325 8.32 45.325 7.64 C 45.325 6.949 45.555 6.374 46.017 5.915 C 46.479 5.456 47.058 5.227 47.755 5.227 C 48.425 5.227 48.992 5.46 49.456 5.927 C 49.921 6.393 50.152 6.964 50.152 7.64 C 50.153 8.306 49.921 8.87 49.456 9.337 Z M 55.148 0.253 L 53.351 0.253 L 53.351 11.595 L 55.148 11.595 Z M 58.69 3.678 L 56.893 3.678 L 56.893 11.595 L 58.69 11.595 Z M 57.803 0 C 57.487 0 57.215 0.114 56.988 0.34 C 56.762 0.567 56.648 0.836 56.648 1.147 C 56.648 1.469 56.761 1.743 56.988 1.97 C 57.215 2.197 57.487 2.31 57.803 2.31 C 58.12 2.31 58.394 2.197 58.623 1.97 C 58.853 1.744 58.968 1.469 58.968 1.147 C 58.968 0.836 58.853 0.567 58.623 0.34 C 58.393 0.114 58.12 0 57.803 0 Z M 63.154 1.551 L 61.341 1.551 L 61.341 3.678 L 59.838 3.678 L 59.838 5.395 L 61.341 5.395 L 61.341 8.614 C 61.341 9.6 61.605 10.36 62.133 10.892 C 62.661 11.425 63.371 11.691 64.262 11.691 C 64.631 11.691 64.957 11.659 65.235 11.595 L 65.235 9.927 C 65.072 9.969 64.876 9.99 64.65 9.99 C 64.185 9.99 63.82 9.876 63.554 9.646 C 63.288 9.417 63.154 9.062 63.154 8.582 L 63.154 5.395 L 65.235 5.395 L 65.235 3.678 L 63.154 3.678 L 63.154 1.551 Z M 72.169 7.965 C 72.169 8.587 71.991 9.085 71.634 9.46 C 71.278 9.834 70.808 10.022 70.221 10.022 C 69.64 10.022 69.174 9.835 68.82 9.46 C 68.466 9.086 68.289 8.588 68.289 7.965 L 68.289 3.678 L 66.492 3.678 L 66.492 8.179 C 66.492 9.291 66.785 10.165 67.371 10.8 C 67.956 11.435 68.761 11.753 69.785 11.753 C 70.308 11.753 70.772 11.632 71.178 11.389 C 71.584 11.147 71.914 10.799 72.168 10.345 L 72.168 11.595 L 73.98 11.595 L 73.98 3.678 L 72.168 3.678 L 72.168 7.965 Z M 81.965 5.07 C 81.674 4.569 81.292 4.184 80.817 3.915 C 80.342 3.646 79.79 3.512 79.163 3.512 C 78.471 3.512 77.835 3.695 77.256 4.058 C 76.675 4.421 76.216 4.92 75.878 5.553 C 75.541 6.186 75.372 6.876 75.372 7.625 C 75.372 8.374 75.541 9.066 75.878 9.701 C 76.216 10.337 76.675 10.838 77.256 11.204 C 77.836 11.57 78.472 11.753 79.163 11.753 C 79.79 11.753 80.342 11.62 80.817 11.353 C 81.291 11.087 81.674 10.704 81.965 10.203 L 81.965 11.594 L 83.786 11.594 L 83.786 0.253 L 81.965 0.253 L 81.965 5.07 Z M 81.273 9.346 C 80.811 9.807 80.237 10.038 79.551 10.038 C 78.881 10.038 78.314 9.805 77.85 9.338 C 77.385 8.871 77.153 8.301 77.153 7.625 C 77.153 6.961 77.386 6.395 77.85 5.929 C 78.314 5.462 78.881 5.229 79.551 5.229 C 80.237 5.229 80.811 5.459 81.273 5.917 C 81.735 6.376 81.966 6.946 81.966 7.626 C 81.965 8.31 81.734 8.884 81.273 9.346 Z M 93.101 7.467 C 93.101 6.713 92.927 6.032 92.579 5.423 C 92.23 4.814 91.762 4.343 91.173 4.011 C 90.585 3.678 89.937 3.512 89.23 3.512 C 88.48 3.512 87.793 3.692 87.168 4.05 C 86.542 4.409 86.049 4.9 85.687 5.525 C 85.325 6.15 85.145 6.84 85.145 7.593 C 85.145 8.368 85.325 9.075 85.687 9.713 C 86.049 10.351 86.543 10.85 87.171 11.212 C 87.799 11.573 88.496 11.753 89.262 11.753 C 90.238 11.753 91.068 11.5 91.755 10.994 C 92.441 10.488 92.857 9.818 93.006 8.985 L 91.194 8.985 C 91.114 9.323 90.899 9.597 90.548 9.807 C 90.197 10.019 89.78 10.124 89.293 10.124 C 88.665 10.124 88.151 9.955 87.75 9.618 C 87.349 9.28 87.09 8.817 86.975 8.226 L 93.053 8.226 C 93.086 8.084 93.101 7.83 93.101 7.467 Z M 87.023 6.683 C 87.155 6.198 87.405 5.821 87.775 5.552 C 88.145 5.283 88.595 5.148 89.129 5.148 C 89.667 5.148 90.116 5.29 90.478 5.571 C 90.84 5.854 91.06 6.224 91.139 6.683 L 87.023 6.683 Z M 2.284 1.187 C 2.225 1.111 2.163 1.07 2.087 1.07 C 2.034 1.074 1.982 1.091 1.937 1.12 C 1.38 1.555 0.623 3.399 0 5.831 L 0.553 5.835 C 1.641 5.848 2.765 5.86 3.875 5.877 C 3.581 4.764 3.306 3.811 3.051 3.038 C 2.678 1.914 2.427 1.408 2.284 1.187 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qtl3k3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.637 11.342\" overflow=\"visible\"><path d=\"M 4.528 0 L 0 11.342 L 2.01 11.342 L 2.904 9.072 L 7.701 9.072 L 8.58 11.342 L 10.637 11.342 L 6.117 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i9uzat\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.388 4.342\" overflow=\"visible\"><path d=\"M 0 4.342 L 1.701 0 L 3.388 4.342 L 0 4.342 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b5sr2k\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.434 8.083\" overflow=\"visible\"><path d=\"M 9.19 0 C 8.645 0 8.145 0.125 7.686 0.376 C 7.227 0.627 6.886 0.966 6.664 1.392 C 6.194 0.464 5.377 0 4.21 0 C 3.741 0 3.288 0.101 2.853 0.305 C 2.418 0.508 2.066 0.834 1.797 1.281 L 1.797 0.166 L 0 0.166 L 0 8.083 L 1.797 8.083 L 1.797 3.645 C 1.797 3.013 1.97 2.536 2.315 2.214 C 2.66 1.892 3.076 1.731 3.561 1.731 C 4.1 1.731 4.524 1.901 4.835 2.241 C 5.147 2.581 5.302 3.049 5.302 3.644 L 5.302 8.082 L 7.115 8.082 L 7.115 3.644 C 7.115 3.012 7.286 2.535 7.629 2.213 C 7.972 1.891 8.389 1.73 8.88 1.73 C 9.412 1.73 9.832 1.9 10.139 2.24 C 10.444 2.58 10.598 3.048 10.598 3.643 L 10.598 8.081 L 12.434 8.081 L 12.434 3.241 C 12.434 2.255 12.135 1.467 11.536 0.879 C 10.937 0.294 10.155 0 9.19 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ihnfep\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.397 10.852\" overflow=\"visible\"><path d=\"M 6.526 0.553 C 5.948 0.184 5.314 0 4.622 0 C 3.989 0 3.432 0.137 2.952 0.411 C 2.472 0.686 2.086 1.079 1.797 1.59 L 1.797 0.167 L 0 0.167 L 0 10.852 L 1.797 10.852 L 1.797 6.66 C 2.087 7.166 2.472 7.557 2.952 7.83 C 3.433 8.105 3.989 8.242 4.622 8.242 C 5.672 8.242 6.564 7.842 7.298 7.044 C 8.031 6.245 8.397 5.273 8.397 4.129 C 8.397 3.38 8.23 2.69 7.895 2.057 C 7.56 1.424 7.104 0.922 6.526 0.553 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1auxdwz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.828 4.81\" overflow=\"visible\"><path d=\"M 4.131 4.11 C 3.667 4.577 3.1 4.81 2.43 4.81 C 1.733 4.81 1.154 4.58 0.693 4.122 C 0.23 3.663 0 3.093 0 2.413 C 0 1.721 0.23 1.147 0.693 0.688 C 1.155 0.229 1.733 0 2.43 0 C 3.1 0 3.667 0.233 4.131 0.7 C 4.596 1.166 4.828 1.737 4.828 2.413 C 4.829 3.079 4.596 3.643 4.131 4.11 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dj9my3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.797 11.342\" overflow=\"visible\"><path d=\"M 1.797 0 L 0 0 L 0 11.342 L 1.797 11.342 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j6skpp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.797 7.917\" overflow=\"visible\"><path d=\"M 1.797 0 L 0 0 L 0 7.917 L 1.797 7.917 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-g6qa7h\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.32 2.31\" overflow=\"visible\"><path d=\"M 1.155 0 C 0.839 0 0.567 0.114 0.34 0.34 C 0.114 0.567 0 0.836 0 1.147 C 0 1.469 0.113 1.743 0.34 1.97 C 0.567 2.197 0.839 2.31 1.155 2.31 C 1.472 2.31 1.746 2.197 1.975 1.97 C 2.205 1.744 2.32 1.469 2.32 1.147 C 2.32 0.836 2.205 0.567 1.975 0.34 C 1.745 0.114 1.472 0 1.155 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z5awoc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.398 10.14\" overflow=\"visible\"><path d=\"M 3.316 0 L 1.504 0 L 1.504 2.127 L 0 2.127 L 0 3.844 L 1.504 3.844 L 1.504 7.063 C 1.504 8.049 1.767 8.809 2.296 9.341 C 2.823 9.874 3.533 10.14 4.424 10.14 C 4.794 10.14 5.119 10.108 5.398 10.045 L 5.398 8.376 C 5.235 8.419 5.039 8.44 4.812 8.44 C 4.347 8.44 3.983 8.325 3.717 8.096 C 3.45 7.866 3.316 7.511 3.316 7.032 L 3.316 3.844 L 5.398 3.844 L 5.398 2.127 L 3.316 2.127 L 3.316 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-89gqe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.488 8.075\" overflow=\"visible\"><path d=\"M 5.676 4.287 C 5.676 4.909 5.499 5.407 5.142 5.782 C 4.786 6.156 4.315 6.344 3.729 6.344 C 3.148 6.344 2.681 6.157 2.328 5.782 C 1.973 5.408 1.797 4.91 1.797 4.287 L 1.797 0 L 0 0 L 0 4.5 C 0 5.613 0.293 6.487 0.879 7.122 C 1.464 7.757 2.269 8.075 3.293 8.075 C 3.816 8.075 4.28 7.954 4.686 7.711 C 5.092 7.469 5.422 7.121 5.675 6.667 L 5.675 7.917 L 7.488 7.917 L 7.488 0 L 5.675 0 L 5.675 4.287 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-omtcdx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.414 11.5\" overflow=\"visible\"><path d=\"M 6.593 4.817 C 6.302 4.315 5.92 3.931 5.445 3.662 C 4.97 3.393 4.419 3.259 3.791 3.259 C 3.099 3.259 2.464 3.441 1.884 3.804 C 1.303 4.168 0.844 4.666 0.506 5.3 C 0.169 5.933 0 6.623 0 7.372 C 0 8.121 0.169 8.813 0.506 9.448 C 0.844 10.083 1.303 10.584 1.884 10.951 C 2.465 11.317 3.1 11.5 3.791 11.5 C 4.419 11.5 4.97 11.367 5.445 11.1 C 5.92 10.834 6.302 10.45 6.593 9.949 L 6.593 11.341 L 8.414 11.341 L 8.414 0 L 6.593 0 L 6.593 4.816 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t3jcdt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.812 4.809\" overflow=\"visible\"><path d=\"M 4.12 4.117 C 3.658 4.578 3.084 4.809 2.398 4.809 C 1.728 4.809 1.16 4.576 0.696 4.109 C 0.231 3.642 0 3.072 0 2.396 C 0 1.732 0.232 1.166 0.696 0.7 C 1.16 0.233 1.728 0 2.398 0 C 3.084 0 3.658 0.23 4.12 0.688 C 4.582 1.147 4.812 1.717 4.812 2.397 C 4.811 3.081 4.581 3.655 4.12 4.117 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nrfkex\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.957 8.241\" overflow=\"visible\"><path d=\"M 7.957 3.955 C 7.957 3.201 7.782 2.52 7.434 1.91 C 7.086 1.301 6.617 0.831 6.029 0.498 C 5.44 0.166 4.792 0 4.085 0 C 3.336 0 2.649 0.179 2.023 0.538 C 1.398 0.896 0.904 1.388 0.542 2.013 C 0.18 2.637 0 3.327 0 4.081 C 0 4.856 0.18 5.563 0.542 6.201 C 0.904 6.839 1.399 7.338 2.027 7.7 C 2.655 8.061 3.351 8.241 4.117 8.241 C 5.093 8.241 5.923 7.988 6.61 7.482 C 7.296 6.976 7.713 6.306 7.861 5.473 L 6.049 5.473 C 5.97 5.81 5.755 6.085 5.404 6.295 C 5.052 6.506 4.635 6.611 4.149 6.611 C 3.521 6.611 3.007 6.442 2.605 6.105 C 2.204 5.768 1.946 5.304 1.83 4.713 L 7.909 4.713 C 7.941 4.572 7.957 4.318 7.957 3.955 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2mt8t9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.116 1.535\" overflow=\"visible\"><path d=\"M 0 1.535 C 0.132 1.05 0.382 0.673 0.752 0.404 C 1.122 0.135 1.572 0 2.106 0 C 2.644 0 3.093 0.142 3.455 0.423 C 3.817 0.706 4.037 1.076 4.116 1.535 L 0 1.535 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1d5exbc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.875 4.807\" overflow=\"visible\"><path d=\"M 2.284 0.117 C 2.225 0.041 2.163 0 2.087 0 C 2.034 0.004 1.982 0.021 1.937 0.05 C 1.38 0.485 0.623 2.329 0 4.762 L 0.553 4.765 C 1.641 4.778 2.765 4.79 3.875 4.807 C 3.581 3.695 3.306 2.741 3.051 1.968 C 2.678 0.844 2.427 0.338 2.284 0.117 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-10jdb8s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.835 20.82\" overflow=\"visible\"><path d=\"M 10.417 0 C 4.665 0 0 4.661 0 10.41 C 0 16.158 4.665 20.82 10.417 20.82 C 16.17 20.82 20.835 16.158 20.835 10.41 C 20.835 4.661 16.17 0 10.417 0 Z M 18.107 10.285 C 18.074 10.407 18.004 10.517 17.906 10.598 C 17.894 10.606 17.881 10.614 17.869 10.623 L 17.856 10.631 L 17.831 10.648 L 17.81 10.66 C 17.73 10.702 17.64 10.724 17.55 10.723 L 12.614 10.723 C 12.651 10.886 12.698 11.074 12.743 11.275 C 13.015 12.442 13.73 15.543 14.495 15.543 L 14.537 15.543 C 15.131 15.543 15.437 14.683 16.106 12.796 L 16.115 12.775 C 16.224 12.474 16.345 12.131 16.475 11.768 L 16.509 11.676 C 16.559 11.555 16.697 11.492 16.818 11.542 C 16.931 11.587 16.993 11.71 16.96 11.827 L 16.931 11.918 C 16.86 12.144 16.789 12.45 16.7 12.805 C 16.303 14.452 15.7 16.94 14.161 16.94 L 14.148 16.94 C 13.153 16.931 12.559 15.343 12.303 14.661 C 11.827 13.39 11.467 12.04 11.119 10.728 L 6.585 10.728 L 5.644 13.742 L 5.631 13.73 C 5.489 13.952 5.194 14.017 4.97 13.876 C 4.833 13.789 4.749 13.638 4.749 13.475 L 4.749 13.459 L 4.807 13.115 C 4.937 12.342 5.096 11.535 5.271 10.724 L 3.347 10.724 L 3.338 10.715 C 2.945 10.656 2.673 10.29 2.732 9.896 C 2.777 9.592 3.011 9.35 3.313 9.294 C 3.389 9.285 3.464 9.281 3.539 9.285 L 3.631 9.285 C 4.237 9.294 4.882 9.306 5.592 9.314 C 6.593 5.25 7.751 3.185 9.04 3.181 C 10.42 3.181 11.445 6.32 12.265 9.393 L 12.269 9.405 C 13.951 9.439 15.75 9.489 17.494 9.615 L 17.57 9.623 C 17.598 9.624 17.626 9.627 17.653 9.632 L 17.662 9.632 L 17.671 9.636 L 17.675 9.636 C 17.973 9.695 18.17 9.988 18.107 10.285 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l2rn97\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.835 20.82\" overflow=\"visible\"><path d=\"M 10.417 0 C 4.665 0 0 4.661 0 10.41 C 0 16.158 4.665 20.82 10.417 20.82 C 16.17 20.82 20.835 16.158 20.835 10.41 C 20.835 4.661 16.17 0 10.417 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e5nbir\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.395 13.759\" overflow=\"visible\"><path d=\"M 15.383 7.104 C 15.351 7.227 15.281 7.336 15.182 7.417 C 15.17 7.426 15.157 7.433 15.145 7.442 L 15.132 7.451 L 15.107 7.467 L 15.086 7.48 C 15.006 7.521 14.917 7.543 14.826 7.542 L 9.89 7.542 C 9.928 7.705 9.974 7.893 10.019 8.095 C 10.291 9.261 11.007 12.363 11.772 12.363 L 11.813 12.363 C 12.407 12.363 12.713 11.502 13.383 9.616 L 13.391 9.594 C 13.5 9.294 13.622 8.95 13.751 8.587 L 13.785 8.496 C 13.835 8.374 13.973 8.311 14.094 8.362 C 14.208 8.406 14.269 8.529 14.236 8.646 L 14.207 8.738 C 14.136 8.963 14.065 9.269 13.977 9.624 C 13.579 11.271 12.976 13.759 11.437 13.759 L 11.424 13.759 C 10.429 13.751 9.835 12.162 9.579 11.481 C 9.103 10.209 8.743 8.859 8.396 7.547 L 3.861 7.547 L 2.92 10.561 L 2.907 10.549 C 2.765 10.771 2.47 10.836 2.247 10.695 C 2.109 10.608 2.025 10.457 2.025 10.294 L 2.025 10.278 L 2.084 9.935 C 2.213 9.162 2.372 8.354 2.548 7.543 L 0.623 7.543 L 0.615 7.535 C 0.221 7.476 -0.051 7.109 0.008 6.715 C 0.053 6.411 0.287 6.169 0.59 6.113 C 0.665 6.104 0.74 6.1 0.815 6.104 L 0.907 6.104 C 1.513 6.113 2.158 6.125 2.869 6.133 C 3.869 2.069 5.027 0.004 6.316 0 C 7.696 0 8.722 3.139 9.542 6.212 L 9.545 6.225 C 11.228 6.258 13.027 6.309 14.771 6.434 L 14.846 6.442 C 14.874 6.443 14.902 6.446 14.93 6.451 L 14.938 6.451 L 14.947 6.455 L 14.951 6.455 C 15.249 6.514 15.446 6.807 15.383 7.104 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(SVG,{className:\"framer-xe6w08 hidden-3qaj24 hidden-10fgy8q\",\"data-framer-name\":\"mixpanel logo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100.03 23.688\" overflow=\"visible\"><g><path d=\"M 0 0 L 100.03 0 L 100.03 23.688 L 0 23.688 Z\" fill=\"transparent\"></path><path d=\"M 0 18.374 L 6 18.374 L 6 17.736 L 5.55 17.736 C 4.673 17.736 4.463 17.497 4.463 16.622 L 4.463 8.711 C 5.074 7.674 5.898 7.009 6.934 7.009 C 8.237 7.009 9.031 7.965 9.031 9.771 L 9.031 16.622 C 9.031 17.499 8.818 17.736 7.968 17.736 L 7.489 17.736 L 7.489 18.374 L 13.357 18.374 L 13.357 17.739 L 12.931 17.739 C 12.054 17.739 11.844 17.499 11.844 16.624 L 11.844 9.478 C 11.844 9.238 11.844 8.999 11.817 8.762 C 12.401 7.699 13.279 7.009 14.312 7.009 C 15.615 7.009 16.412 7.965 16.412 9.771 L 16.412 16.622 C 16.412 17.499 16.199 17.736 15.349 17.736 L 14.869 17.736 L 14.869 18.374 L 20.738 18.374 L 20.738 17.739 L 20.339 17.739 C 19.435 17.739 19.225 17.499 19.225 16.624 L 19.225 9.478 C 19.225 6.797 17.712 5.308 15.507 5.308 C 13.863 5.308 12.428 6.213 11.658 8.016 C 11.209 6.264 9.879 5.308 8.127 5.308 C 6.56 5.308 5.206 6.156 4.46 7.857 L 4.46 5.626 L 0 5.626 L 0 6.264 L 0.53 6.264 C 1.435 6.264 1.645 6.503 1.645 7.378 L 1.645 16.619 C 1.645 17.497 1.432 17.734 0.53 17.734 L 0 17.734 Z M 24.272 3.505 C 25.227 3.505 26.024 2.708 26.024 1.752 C 26.024 0.797 25.227 0 24.272 0 C 23.316 0 22.52 0.797 22.52 1.752 C 22.52 2.708 23.316 3.505 24.272 3.505 Z M 21.297 18.374 L 27.192 18.374 L 27.192 17.736 L 26.794 17.736 C 25.917 17.736 25.707 17.497 25.707 16.622 L 25.707 5.629 L 21.244 5.629 L 21.244 6.266 L 21.774 6.266 C 22.678 6.266 22.888 6.506 22.888 7.381 L 22.888 16.622 C 22.888 17.499 22.676 17.736 21.774 17.736 L 21.295 17.736 Z M 31.494 10.888 L 33.192 10.888 C 32.767 10.622 32.608 10.25 32.396 9.561 L 31.758 7.198 C 31.467 6.135 31.227 5.631 30.059 5.631 L 27.618 5.631 L 27.618 6.269 L 27.965 6.269 C 28.681 6.269 28.762 6.536 28.974 7.332 L 29.532 9.405 C 29.822 10.412 30.277 10.888 31.494 10.888 Z M 35.427 10.888 L 37.125 10.888 C 38.347 10.888 38.77 10.409 39.063 9.402 L 39.62 7.33 C 39.833 6.533 39.938 6.266 40.63 6.266 L 40.977 6.266 L 40.977 5.629 L 38.56 5.629 C 37.365 5.629 37.125 6.108 36.859 7.195 L 36.221 9.559 C 36.011 10.275 35.849 10.622 35.427 10.888 Z M 33.195 13.117 L 35.427 13.117 L 35.427 10.886 L 33.195 10.886 Z M 27.618 18.377 L 30.059 18.377 C 31.227 18.377 31.467 17.871 31.758 16.81 L 32.396 14.447 C 32.608 13.758 32.767 13.384 33.192 13.12 L 31.494 13.12 C 30.272 13.12 29.82 13.599 29.529 14.606 L 28.972 16.678 C 28.759 17.475 28.681 17.742 27.962 17.742 L 27.615 17.742 Z M 38.557 18.377 L 40.974 18.377 L 40.974 17.739 L 40.627 17.739 C 39.938 17.739 39.83 17.472 39.618 16.676 L 39.061 14.603 C 38.77 13.594 38.345 13.117 37.122 13.117 L 35.427 13.117 C 35.852 13.384 36.005 13.728 36.218 14.444 L 36.856 16.808 C 37.122 17.898 37.362 18.377 38.557 18.377 Z M 41.319 23.688 L 47.478 23.688 L 47.478 23.05 L 46.84 23.05 C 45.992 23.05 45.777 22.81 45.777 21.935 L 45.777 16.864 C 46.546 18.005 47.849 18.697 49.389 18.697 C 52.283 18.697 54.592 16.148 54.592 11.742 C 54.592 7.758 52.415 5.316 49.599 5.316 C 47.954 5.316 46.571 6.272 45.774 7.97 L 45.774 5.634 L 41.311 5.634 L 41.311 6.272 L 41.841 6.272 C 42.719 6.272 42.956 6.511 42.956 7.386 L 42.956 21.935 C 42.956 22.813 42.716 23.05 41.841 23.05 L 41.311 23.05 L 41.311 23.688 Z M 48.598 6.958 C 50.323 6.958 51.731 8.579 51.731 11.79 C 51.731 15.295 50.428 17.209 48.651 17.209 C 47.507 17.209 46.501 16.598 45.782 15.534 L 45.782 8.948 C 46.471 7.647 47.456 6.956 48.598 6.958 Z M 58.794 18.643 C 60.52 18.643 61.9 17.82 62.937 15.962 L 62.937 16.253 C 62.937 17.847 63.946 18.536 65.618 18.536 C 66.124 18.536 66.762 18.485 67.184 18.35 L 67.184 17.685 C 66.972 17.736 66.813 17.766 66.654 17.766 C 65.989 17.766 65.777 17.367 65.777 16.729 L 65.777 9.933 C 65.777 6.799 64.024 5.311 61.077 5.311 C 59.112 5.311 57.201 6.215 55.978 7.171 L 56.404 7.917 C 57.68 7.039 58.926 6.536 60.28 6.536 C 62.032 6.536 62.934 7.491 62.934 9.723 L 62.934 10.307 L 59.666 11.583 C 56.692 12.805 55.602 13.946 55.602 15.672 C 55.604 17.394 56.826 18.643 58.794 18.643 Z M 58.396 14.977 C 58.396 13.65 59.166 12.694 60.732 12.003 L 62.937 11.047 L 62.937 15.19 C 62.113 16.331 61.157 16.996 60.121 16.996 C 59.087 16.996 58.398 16.28 58.396 14.977 Z M 67.715 18.377 L 73.771 18.377 L 73.771 17.739 L 73.265 17.739 C 72.388 17.739 72.178 17.499 72.178 16.624 L 72.178 8.738 C 72.789 7.674 73.69 7.012 74.754 7.012 C 76.135 7.012 77.012 7.968 77.012 9.774 L 77.012 16.624 C 77.012 17.502 76.799 17.739 75.949 17.739 L 75.443 17.739 L 75.443 18.377 L 81.47 18.377 L 81.47 17.739 L 80.939 17.739 C 80.035 17.739 79.825 17.499 79.825 16.624 L 79.825 9.478 C 79.825 6.797 78.231 5.308 75.976 5.308 C 74.331 5.308 72.948 6.156 72.178 7.857 L 72.178 5.626 L 67.715 5.626 L 67.715 6.264 L 68.245 6.264 C 69.149 6.264 69.359 6.503 69.359 7.378 L 69.359 16.619 C 69.359 17.497 69.147 17.734 68.245 17.734 L 67.715 17.734 Z M 88.374 18.694 C 90.127 18.694 91.774 17.898 92.969 16.942 L 92.571 16.358 C 91.507 17.128 90.312 17.472 89.198 17.472 C 86.49 17.472 84.896 15.561 84.896 11.844 L 84.896 11.365 L 93.287 11.365 C 93.236 7.779 91.028 5.338 87.817 5.338 C 84.606 5.338 82.027 8.231 82.027 12.057 C 82.03 16.256 84.42 18.697 88.374 18.694 Z M 87.844 6 C 89.437 6 90.42 7.725 90.579 10.646 L 84.95 10.646 C 85.19 7.701 86.304 6 87.844 6 Z M 93.871 18.374 L 100.03 18.374 L 100.03 17.736 L 99.419 17.736 C 98.541 17.736 98.331 17.497 98.331 16.622 L 98.331 0.318 L 93.868 0.318 L 93.868 0.956 L 94.398 0.956 C 95.276 0.956 95.513 1.195 95.513 2.07 L 95.513 16.622 C 95.513 17.499 95.273 17.736 94.398 17.736 L 93.868 17.736 Z\" fill=\"rgb(121, 121, 121)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-8gb7dr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100.03 23.688\" overflow=\"visible\"><path d=\"M 0 0 L 100.03 0 L 100.03 23.688 L 0 23.688 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-apfbuy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100.03 23.688\" overflow=\"visible\"><path d=\"M 0 18.374 L 6 18.374 L 6 17.736 L 5.55 17.736 C 4.673 17.736 4.463 17.497 4.463 16.622 L 4.463 8.711 C 5.074 7.674 5.898 7.009 6.934 7.009 C 8.237 7.009 9.031 7.965 9.031 9.771 L 9.031 16.622 C 9.031 17.499 8.818 17.736 7.968 17.736 L 7.489 17.736 L 7.489 18.374 L 13.357 18.374 L 13.357 17.739 L 12.931 17.739 C 12.054 17.739 11.844 17.499 11.844 16.624 L 11.844 9.478 C 11.844 9.238 11.844 8.999 11.817 8.762 C 12.401 7.699 13.279 7.009 14.312 7.009 C 15.615 7.009 16.412 7.965 16.412 9.771 L 16.412 16.622 C 16.412 17.499 16.199 17.736 15.349 17.736 L 14.869 17.736 L 14.869 18.374 L 20.738 18.374 L 20.738 17.739 L 20.339 17.739 C 19.435 17.739 19.225 17.499 19.225 16.624 L 19.225 9.478 C 19.225 6.797 17.712 5.308 15.507 5.308 C 13.863 5.308 12.428 6.213 11.658 8.016 C 11.209 6.264 9.879 5.308 8.127 5.308 C 6.56 5.308 5.206 6.156 4.46 7.857 L 4.46 5.626 L 0 5.626 L 0 6.264 L 0.53 6.264 C 1.435 6.264 1.645 6.503 1.645 7.378 L 1.645 16.619 C 1.645 17.497 1.432 17.734 0.53 17.734 L 0 17.734 Z M 24.272 3.505 C 25.227 3.505 26.024 2.708 26.024 1.752 C 26.024 0.797 25.227 0 24.272 0 C 23.316 0 22.52 0.797 22.52 1.752 C 22.52 2.708 23.316 3.505 24.272 3.505 Z M 21.297 18.374 L 27.192 18.374 L 27.192 17.736 L 26.794 17.736 C 25.917 17.736 25.707 17.497 25.707 16.622 L 25.707 5.629 L 21.244 5.629 L 21.244 6.266 L 21.774 6.266 C 22.678 6.266 22.888 6.506 22.888 7.381 L 22.888 16.622 C 22.888 17.499 22.676 17.736 21.774 17.736 L 21.295 17.736 Z M 31.494 10.888 L 33.192 10.888 C 32.767 10.622 32.608 10.25 32.396 9.561 L 31.758 7.198 C 31.467 6.135 31.227 5.631 30.059 5.631 L 27.618 5.631 L 27.618 6.269 L 27.965 6.269 C 28.681 6.269 28.762 6.536 28.974 7.332 L 29.532 9.405 C 29.822 10.412 30.277 10.888 31.494 10.888 Z M 35.427 10.888 L 37.125 10.888 C 38.347 10.888 38.77 10.409 39.063 9.402 L 39.62 7.33 C 39.833 6.533 39.938 6.266 40.63 6.266 L 40.977 6.266 L 40.977 5.629 L 38.56 5.629 C 37.365 5.629 37.125 6.108 36.859 7.195 L 36.221 9.559 C 36.011 10.275 35.849 10.622 35.427 10.888 Z M 33.195 13.117 L 35.427 13.117 L 35.427 10.886 L 33.195 10.886 Z M 27.618 18.377 L 30.059 18.377 C 31.227 18.377 31.467 17.871 31.758 16.81 L 32.396 14.447 C 32.608 13.758 32.767 13.384 33.192 13.12 L 31.494 13.12 C 30.272 13.12 29.82 13.599 29.529 14.606 L 28.972 16.678 C 28.759 17.475 28.681 17.742 27.962 17.742 L 27.615 17.742 Z M 38.557 18.377 L 40.974 18.377 L 40.974 17.739 L 40.627 17.739 C 39.938 17.739 39.83 17.472 39.618 16.676 L 39.061 14.603 C 38.77 13.594 38.345 13.117 37.122 13.117 L 35.427 13.117 C 35.852 13.384 36.005 13.728 36.218 14.444 L 36.856 16.808 C 37.122 17.898 37.362 18.377 38.557 18.377 Z M 41.319 23.688 L 47.478 23.688 L 47.478 23.05 L 46.84 23.05 C 45.992 23.05 45.777 22.81 45.777 21.935 L 45.777 16.864 C 46.546 18.005 47.849 18.697 49.389 18.697 C 52.283 18.697 54.592 16.148 54.592 11.742 C 54.592 7.758 52.415 5.316 49.599 5.316 C 47.954 5.316 46.571 6.272 45.774 7.97 L 45.774 5.634 L 41.311 5.634 L 41.311 6.272 L 41.841 6.272 C 42.719 6.272 42.956 6.511 42.956 7.386 L 42.956 21.935 C 42.956 22.813 42.716 23.05 41.841 23.05 L 41.311 23.05 L 41.311 23.688 Z M 48.598 6.958 C 50.323 6.958 51.731 8.579 51.731 11.79 C 51.731 15.295 50.428 17.209 48.651 17.209 C 47.507 17.209 46.501 16.598 45.782 15.534 L 45.782 8.948 C 46.471 7.647 47.456 6.956 48.598 6.958 Z M 58.794 18.643 C 60.52 18.643 61.9 17.82 62.937 15.962 L 62.937 16.253 C 62.937 17.847 63.946 18.536 65.618 18.536 C 66.124 18.536 66.762 18.485 67.184 18.35 L 67.184 17.685 C 66.972 17.736 66.813 17.766 66.654 17.766 C 65.989 17.766 65.777 17.367 65.777 16.729 L 65.777 9.933 C 65.777 6.799 64.024 5.311 61.077 5.311 C 59.112 5.311 57.201 6.215 55.978 7.171 L 56.404 7.917 C 57.68 7.039 58.926 6.536 60.28 6.536 C 62.032 6.536 62.934 7.491 62.934 9.723 L 62.934 10.307 L 59.666 11.583 C 56.692 12.805 55.602 13.946 55.602 15.672 C 55.604 17.394 56.826 18.643 58.794 18.643 Z M 58.396 14.977 C 58.396 13.65 59.166 12.694 60.732 12.003 L 62.937 11.047 L 62.937 15.19 C 62.113 16.331 61.157 16.996 60.121 16.996 C 59.087 16.996 58.398 16.28 58.396 14.977 Z M 67.715 18.377 L 73.771 18.377 L 73.771 17.739 L 73.265 17.739 C 72.388 17.739 72.178 17.499 72.178 16.624 L 72.178 8.738 C 72.789 7.674 73.69 7.012 74.754 7.012 C 76.135 7.012 77.012 7.968 77.012 9.774 L 77.012 16.624 C 77.012 17.502 76.799 17.739 75.949 17.739 L 75.443 17.739 L 75.443 18.377 L 81.47 18.377 L 81.47 17.739 L 80.939 17.739 C 80.035 17.739 79.825 17.499 79.825 16.624 L 79.825 9.478 C 79.825 6.797 78.231 5.308 75.976 5.308 C 74.331 5.308 72.948 6.156 72.178 7.857 L 72.178 5.626 L 67.715 5.626 L 67.715 6.264 L 68.245 6.264 C 69.149 6.264 69.359 6.503 69.359 7.378 L 69.359 16.619 C 69.359 17.497 69.147 17.734 68.245 17.734 L 67.715 17.734 Z M 88.374 18.694 C 90.127 18.694 91.774 17.898 92.969 16.942 L 92.571 16.358 C 91.507 17.128 90.312 17.472 89.198 17.472 C 86.49 17.472 84.896 15.561 84.896 11.844 L 84.896 11.365 L 93.287 11.365 C 93.236 7.779 91.028 5.338 87.817 5.338 C 84.606 5.338 82.027 8.231 82.027 12.057 C 82.03 16.256 84.42 18.697 88.374 18.694 Z M 87.844 6 C 89.437 6 90.42 7.725 90.579 10.646 L 84.95 10.646 C 85.19 7.701 86.304 6 87.844 6 Z M 93.871 18.374 L 100.03 18.374 L 100.03 17.736 L 99.419 17.736 C 98.541 17.736 98.331 17.497 98.331 16.622 L 98.331 0.318 L 93.868 0.318 L 93.868 0.956 L 94.398 0.956 C 95.276 0.956 95.513 1.195 95.513 2.07 L 95.513 16.622 C 95.513 17.499 95.273 17.736 94.398 17.736 L 93.868 17.736 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cu54mq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.738 13.066\" overflow=\"visible\"><path d=\"M 0 13.066 L 6 13.066 L 6 12.428 L 5.55 12.428 C 4.673 12.428 4.463 12.188 4.463 11.314 L 4.463 3.402 C 5.074 2.366 5.898 1.701 6.934 1.701 C 8.237 1.701 9.031 2.657 9.031 4.463 L 9.031 11.314 C 9.031 12.191 8.818 12.428 7.968 12.428 L 7.489 12.428 L 7.489 13.066 L 13.357 13.066 L 13.357 12.431 L 12.931 12.431 C 12.054 12.431 11.844 12.191 11.844 11.316 L 11.844 4.17 C 11.844 3.93 11.844 3.69 11.817 3.454 C 12.401 2.39 13.279 1.701 14.312 1.701 C 15.615 1.701 16.412 2.657 16.412 4.463 L 16.412 11.314 C 16.412 12.191 16.199 12.428 15.349 12.428 L 14.869 12.428 L 14.869 13.066 L 20.738 13.066 L 20.738 12.431 L 20.339 12.431 C 19.435 12.431 19.225 12.191 19.225 11.316 L 19.225 4.17 C 19.225 1.489 17.712 0 15.507 0 C 13.863 0 12.428 0.904 11.658 2.708 C 11.209 0.956 9.879 0 8.127 0 C 6.56 0 5.206 0.848 4.46 2.549 L 4.46 0.318 L 0 0.318 L 0 0.956 L 0.53 0.956 C 1.435 0.956 1.645 1.195 1.645 2.07 L 1.645 11.311 C 1.645 12.188 1.432 12.425 0.53 12.425 L 0 12.425 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xqatd1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.505 3.505\" overflow=\"visible\"><path d=\"M 1.752 3.505 C 2.708 3.505 3.505 2.708 3.505 1.752 C 3.505 0.797 2.708 0 1.752 0 C 0.797 0 0 0.797 0 1.752 C 0 2.708 0.797 3.505 1.752 3.505 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ry8zxp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.949 12.746\" overflow=\"visible\"><path d=\"M 0.054 12.746 L 5.949 12.746 L 5.949 12.108 L 5.55 12.108 C 4.673 12.108 4.463 11.868 4.463 10.993 L 4.463 0 L 0 0 L 0 0.638 L 0.53 0.638 C 1.435 0.638 1.645 0.878 1.645 1.752 L 1.645 10.993 C 1.645 11.871 1.432 12.108 0.53 12.108 L 0.051 12.108 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12cn5u5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.575 5.257\" overflow=\"visible\"><path d=\"M 3.876 5.257 L 5.575 5.257 C 5.149 4.991 4.991 4.619 4.778 3.93 L 4.14 1.567 C 3.849 0.503 3.61 0 2.441 0 L 0 0 L 0 0.638 L 0.347 0.638 C 1.063 0.638 1.144 0.904 1.357 1.701 L 1.914 3.774 C 2.205 4.781 2.659 5.257 3.876 5.257 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r49cbz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.55 5.26\" overflow=\"visible\"><path d=\"M 0 5.26 L 1.699 5.26 C 2.921 5.26 3.343 4.781 3.637 3.774 L 4.194 1.701 C 4.406 0.904 4.511 0.638 5.203 0.638 L 5.55 0.638 L 5.55 0 L 3.133 0 C 1.938 0 1.699 0.479 1.432 1.567 L 0.794 3.93 C 0.584 4.646 0.423 4.993 0 5.26 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jgm8dz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.231 2.231\" overflow=\"visible\"><path d=\"M 0 2.231 L 2.231 2.231 L 2.231 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yzzpj6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.577 5.257\" overflow=\"visible\"><path d=\"M 0.003 5.257 L 2.444 5.257 C 3.612 5.257 3.852 4.751 4.143 3.69 L 4.781 1.327 C 4.993 0.638 5.152 0.264 5.577 0 L 3.879 0 C 2.657 0 2.205 0.479 1.914 1.486 L 1.357 3.559 C 1.144 4.355 1.066 4.622 0.347 4.622 L 0 4.622 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-54wvj0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.548 5.26\" overflow=\"visible\"><path d=\"M 3.131 5.26 L 5.548 5.26 L 5.548 4.622 L 5.201 4.622 C 4.511 4.622 4.404 4.355 4.191 3.559 L 3.634 1.486 C 3.343 0.476 2.918 0 1.696 0 L 0 0 C 0.425 0.266 0.579 0.611 0.791 1.327 L 1.429 3.69 C 1.696 4.781 1.935 5.26 3.131 5.26 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ow31rw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.281 18.371\" overflow=\"visible\"><path d=\"M 0.008 18.371 L 6.167 18.371 L 6.167 17.734 L 5.529 17.734 C 4.681 17.734 4.466 17.494 4.466 16.619 L 4.466 11.548 C 5.236 12.689 6.538 13.381 8.078 13.381 C 10.972 13.381 13.281 10.832 13.281 6.425 C 13.281 2.441 11.104 0 8.288 0 C 6.643 0 5.26 0.956 4.463 2.654 L 4.463 0.318 L 0 0.318 L 0 0.956 L 0.53 0.956 C 1.408 0.956 1.645 1.195 1.645 2.07 L 1.645 16.619 C 1.645 17.497 1.405 17.734 0.53 17.734 L 0 17.734 L 0 18.371 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zb7hgu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.949 10.25\" overflow=\"visible\"><path d=\"M 2.816 0 C 4.541 0 5.949 1.62 5.949 4.832 C 5.949 8.336 4.646 10.25 2.869 10.25 C 1.725 10.25 0.719 9.639 0 8.576 L 0 1.989 C 0.689 0.689 1.674 -0.003 2.816 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fo9uxp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.583 13.332\" overflow=\"visible\"><path d=\"M 3.192 13.332 C 4.918 13.332 6.299 12.509 7.335 10.651 L 7.335 10.942 C 7.335 12.536 8.345 13.225 10.016 13.225 C 10.522 13.225 11.16 13.174 11.583 13.039 L 11.583 12.374 C 11.37 12.425 11.211 12.455 11.052 12.455 C 10.388 12.455 10.175 12.057 10.175 11.419 L 10.175 4.622 C 10.175 1.489 8.423 0 5.475 0 C 3.51 0 1.599 0.904 0.377 1.86 L 0.802 2.606 C 2.078 1.728 3.324 1.225 4.678 1.225 C 6.431 1.225 7.332 2.18 7.332 4.412 L 7.332 4.996 L 4.065 6.272 C 1.09 7.494 0 8.635 0 10.361 C 0.003 12.083 1.225 13.332 3.192 13.332 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n6pieu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.541 5.949\" overflow=\"visible\"><path d=\"M 0 3.93 C 0 2.603 0.77 1.647 2.336 0.956 L 4.541 0 L 4.541 4.143 C 3.717 5.284 2.762 5.949 1.725 5.949 C 0.692 5.949 0.003 5.233 0 3.93 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aa5a4b\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.755 13.069\" overflow=\"visible\"><path d=\"M 0 13.069 L 6.057 13.069 L 6.057 12.431 L 5.55 12.431 C 4.673 12.431 4.463 12.191 4.463 11.316 L 4.463 3.429 C 5.074 2.366 5.976 1.704 7.039 1.704 C 8.42 1.704 9.297 2.659 9.297 4.466 L 9.297 11.316 C 9.297 12.194 9.085 12.431 8.234 12.431 L 7.728 12.431 L 7.728 13.069 L 13.755 13.069 L 13.755 12.431 L 13.225 12.431 C 12.32 12.431 12.11 12.191 12.11 11.316 L 12.11 4.17 C 12.11 1.489 10.517 0 8.261 0 C 6.616 0 5.233 0.848 4.463 2.549 L 4.463 0.318 L 0 0.318 L 0 0.956 L 0.53 0.956 C 1.435 0.956 1.645 1.195 1.645 2.07 L 1.645 11.311 C 1.645 12.188 1.432 12.425 0.53 12.425 L 0 12.425 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ts5f9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.26 13.357\" overflow=\"visible\"><path d=\"M 6.347 13.357 C 8.1 13.357 9.747 12.56 10.942 11.604 L 10.544 11.02 C 9.48 11.79 8.285 12.135 7.171 12.135 C 4.463 12.135 2.869 10.223 2.869 6.506 L 2.869 6.027 L 11.26 6.027 C 11.209 2.441 9.001 0 5.79 0 C 2.579 0 0 2.894 0 6.719 C 0.003 10.918 2.393 13.359 6.347 13.357 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cmys8x\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.629 4.646\" overflow=\"visible\"><path d=\"M 2.894 0 C 4.487 0 5.47 1.725 5.629 4.646 L 0 4.646 C 0.24 1.701 1.354 0 2.894 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j3ye52\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.162 18.057\" overflow=\"visible\"><path d=\"M 0.003 18.057 L 6.162 18.057 L 6.162 17.419 L 5.55 17.419 C 4.673 17.419 4.463 17.179 4.463 16.304 L 4.463 0 L 0 0 L 0 0.638 L 0.53 0.638 C 1.408 0.638 1.645 0.878 1.645 1.752 L 1.645 16.304 C 1.645 17.182 1.405 17.419 0.53 17.419 L 0 17.419 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(SVG,{className:\"framer-pad6jk hidden-3qaj24 hidden-10fgy8q\",\"data-framer-name\":\"posthog logo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99.964 19.062\" overflow=\"visible\"><g><path d=\"M 0 0 L 99.758 0 L 99.758 19.062 L 0 19.062 Z\" fill=\"transparent\"></path><g transform=\"translate(0 1.533)\"><path d=\"M 6.92 9.4 C 6.686 9.868 6.018 9.868 5.784 9.4 L 5.224 8.28 C 5.134 8.101 5.134 7.89 5.224 7.711 L 5.784 6.591 C 6.018 6.123 6.686 6.123 6.921 6.591 L 7.481 7.711 C 7.57 7.89 7.57 8.101 7.481 8.28 L 6.921 9.4 Z M 6.92 15.752 C 6.686 16.22 6.018 16.22 5.784 15.752 L 5.224 14.632 C 5.134 14.453 5.134 14.242 5.224 14.063 L 5.784 12.944 C 6.018 12.475 6.686 12.475 6.92 12.944 L 7.48 14.063 C 7.57 14.242 7.57 14.453 7.48 14.632 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 0 13.341 C 0 12.775 0.684 12.491 1.085 12.891 L 3.997 15.804 C 4.397 16.204 4.114 16.889 3.548 16.889 L 0.635 16.889 C 0.284 16.889 0 16.604 0 16.253 L 0 13.341 Z M 0 10.273 C 0 10.442 0.067 10.603 0.186 10.723 L 6.166 16.702 C 6.285 16.822 6.447 16.889 6.615 16.889 L 9.9 16.889 C 10.466 16.889 10.749 16.204 10.349 15.804 L 1.085 6.539 C 0.684 6.139 0 6.423 0 6.989 L 0 10.273 Z M 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 12.518 16.702 C 12.637 16.822 12.799 16.889 12.967 16.889 L 16.252 16.889 C 16.818 16.889 17.102 16.204 16.701 15.804 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 Z M 6.352 3.921 C 6.352 4.09 6.419 4.251 6.538 4.37 L 17.972 15.804 C 18.372 16.204 19.056 15.921 19.056 15.355 L 19.056 12.07 C 19.056 11.902 18.989 11.74 18.87 11.621 L 7.437 0.187 C 7.036 -0.213 6.352 0.071 6.352 0.637 Z M 13.789 0.187 C 13.389 -0.213 12.704 0.071 12.704 0.637 L 12.704 3.921 C 12.704 4.09 12.771 4.251 12.89 4.37 L 17.972 9.452 C 18.372 9.852 19.056 9.568 19.056 9.002 L 19.056 5.718 C 19.056 5.549 18.989 5.388 18.87 5.269 Z M 27.02 13.419 L 21.039 7.438 C 20.639 7.038 19.955 7.321 19.955 7.887 L 19.955 16.253 C 19.955 16.604 20.239 16.889 20.59 16.889 L 29.855 16.889 C 30.206 16.889 30.49 16.604 30.49 16.253 L 30.49 15.491 C 30.49 15.14 30.204 14.86 29.856 14.815 C 28.783 14.675 27.786 14.184 27.02 13.419 Z M 23.004 14.856 C 22.443 14.856 21.988 14.401 21.987 13.84 C 21.988 13.278 22.443 12.823 23.004 12.823 C 23.565 12.823 24.02 13.278 24.02 13.84 C 24.02 14.401 23.565 14.856 23.004 14.856 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 0 16.253 C 0 16.604 0.284 16.889 0.635 16.889 L 3.548 16.889 C 4.114 16.889 4.397 16.204 3.997 15.804 L 1.085 12.892 C 0.684 12.491 0 12.775 0 13.341 Z M 6.352 5.455 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 L 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 6.352 10.536 Z M 1.085 6.539 C 0.684 6.139 0 6.423 0 6.989 L 0 10.273 C 0 10.442 0.067 10.603 0.186 10.722 L 6.352 16.889 L 6.352 11.807 Z M 12.704 5.718 C 12.704 5.549 12.637 5.388 12.518 5.269 L 7.437 0.187 C 7.037 -0.213 6.352 0.071 6.352 0.637 L 6.352 3.921 C 6.352 4.09 6.419 4.251 6.538 4.37 L 12.704 10.536 Z M 6.352 16.889 L 9.9 16.889 C 10.466 16.889 10.749 16.204 10.349 15.804 L 6.352 11.807 Z M 6.352 5.455 L 6.352 10.273 C 6.352 10.442 6.419 10.603 6.538 10.722 L 12.704 16.889 L 12.704 12.07 C 12.704 11.902 12.637 11.74 12.518 11.621 Z M 37.901 14.352 L 40.512 14.352 L 40.512 10.024 L 42.692 10.024 C 45.088 10.024 46.624 8.603 46.624 6.406 C 46.624 4.209 45.088 2.788 42.692 2.788 L 37.901 2.788 Z M 40.512 7.794 L 40.512 5.018 L 42.428 5.018 C 43.419 5.018 44.014 5.547 44.014 6.406 C 44.014 7.265 43.419 7.794 42.428 7.794 L 40.512 7.794 Z M 51.346 14.485 C 53.891 14.485 55.741 12.667 55.741 10.189 C 55.741 7.711 53.891 5.894 51.346 5.894 C 48.769 5.894 46.952 7.711 46.952 10.189 C 46.952 12.667 48.769 14.485 51.346 14.485 Z M 49.364 10.189 C 49.364 8.868 50.157 7.959 51.346 7.959 C 52.519 7.959 53.312 8.868 53.312 10.189 C 53.312 11.511 52.519 12.419 51.346 12.419 C 50.157 12.419 49.364 11.511 49.364 10.189 Z M 59.918 14.485 C 61.867 14.485 63.189 13.262 63.189 11.825 C 63.189 8.455 58.712 9.545 58.712 8.223 C 58.712 7.86 59.092 7.629 59.637 7.629 C 60.199 7.629 60.876 7.975 61.091 8.735 L 63.04 7.926 C 62.66 6.72 61.256 5.894 59.555 5.894 C 57.721 5.894 56.581 6.984 56.581 8.289 C 56.581 11.445 60.992 10.569 60.992 11.874 C 60.992 12.337 60.562 12.651 59.918 12.651 C 58.993 12.651 58.349 12.006 58.15 11.23 L 56.201 11.99 C 56.63 13.245 57.886 14.485 59.918 14.485 Z M 69.468 14.27 L 69.303 12.172 C 69.022 12.32 68.659 12.37 68.362 12.37 C 67.767 12.37 67.37 11.94 67.37 11.197 L 67.37 8.041 L 69.386 8.041 L 69.386 6.026 L 67.37 6.026 L 67.37 3.614 L 64.942 3.614 L 64.942 6.026 L 63.62 6.026 L 63.62 8.041 L 64.942 8.041 L 64.942 11.511 C 64.942 13.526 66.313 14.485 68.114 14.485 C 68.609 14.485 69.072 14.402 69.468 14.27 Z M 77.936 2.788 L 77.936 7.281 L 73.343 7.281 L 73.343 2.788 L 70.733 2.788 L 70.733 14.352 L 73.343 14.352 L 73.343 9.512 L 77.936 9.512 L 77.936 14.352 L 80.562 14.352 L 80.562 2.788 Z M 86.356 14.485 C 88.9 14.485 90.751 12.667 90.751 10.189 C 90.751 7.711 88.9 5.894 86.356 5.894 C 83.779 5.894 81.962 7.711 81.962 10.189 C 81.962 12.667 83.779 14.485 86.356 14.485 Z M 84.374 10.189 C 84.374 8.868 85.167 7.959 86.356 7.959 C 87.529 7.959 88.322 8.868 88.322 10.189 C 88.322 11.511 87.529 12.419 86.356 12.419 C 85.167 12.419 84.374 11.511 84.374 10.189 Z M 95.438 14.088 C 96.346 14.088 97.156 13.774 97.585 13.229 L 97.585 14.022 C 97.585 14.947 96.842 15.591 95.702 15.591 C 94.893 15.591 94.182 15.195 94.067 14.517 L 91.853 14.864 C 92.15 16.434 93.753 17.491 95.702 17.491 C 98.263 17.491 99.964 15.988 99.964 13.758 L 99.964 6.026 L 97.569 6.026 L 97.569 6.736 C 97.123 6.224 96.363 5.894 95.388 5.894 C 93.075 5.894 91.622 7.48 91.622 9.991 C 91.622 12.502 93.075 14.088 95.438 14.088 Z M 93.984 9.991 C 93.984 8.752 94.711 7.959 95.834 7.959 C 96.974 7.959 97.701 8.752 97.701 9.991 C 97.701 11.23 96.974 12.023 95.834 12.023 C 94.711 12.023 93.984 11.23 93.984 9.991 Z\" fill=\"rgb(121, 121, 121)\"></path></g></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1px0708\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99.758 19.062\" overflow=\"visible\"><path d=\"M 0 0 L 99.758 0 L 99.758 19.062 L 0 19.062 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-5ghnsi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99.964 17.491\" overflow=\"visible\"><g><path d=\"M 6.92 9.4 C 6.686 9.868 6.018 9.868 5.784 9.4 L 5.224 8.28 C 5.134 8.101 5.134 7.89 5.224 7.711 L 5.784 6.591 C 6.018 6.123 6.686 6.123 6.921 6.591 L 7.481 7.711 C 7.57 7.89 7.57 8.101 7.481 8.28 L 6.921 9.4 Z M 6.92 15.752 C 6.686 16.22 6.018 16.22 5.784 15.752 L 5.224 14.632 C 5.134 14.453 5.134 14.242 5.224 14.063 L 5.784 12.944 C 6.018 12.475 6.686 12.475 6.92 12.944 L 7.48 14.063 C 7.57 14.242 7.57 14.453 7.48 14.632 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 0 13.341 C 0 12.775 0.684 12.491 1.085 12.891 L 3.997 15.804 C 4.397 16.204 4.114 16.889 3.548 16.889 L 0.635 16.889 C 0.284 16.889 0 16.604 0 16.253 L 0 13.341 Z M 0 10.273 C 0 10.442 0.067 10.603 0.186 10.723 L 6.166 16.702 C 6.285 16.822 6.447 16.889 6.615 16.889 L 9.9 16.889 C 10.466 16.889 10.749 16.204 10.349 15.804 L 1.085 6.539 C 0.684 6.139 0 6.423 0 6.989 L 0 10.273 Z M 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 12.518 16.702 C 12.637 16.822 12.799 16.889 12.967 16.889 L 16.252 16.889 C 16.818 16.889 17.102 16.204 16.701 15.804 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 Z M 6.352 3.921 C 6.352 4.09 6.419 4.251 6.538 4.37 L 17.972 15.804 C 18.372 16.204 19.056 15.921 19.056 15.355 L 19.056 12.07 C 19.056 11.902 18.989 11.74 18.87 11.621 L 7.437 0.187 C 7.036 -0.213 6.352 0.071 6.352 0.637 Z M 13.789 0.187 C 13.389 -0.213 12.704 0.071 12.704 0.637 L 12.704 3.921 C 12.704 4.09 12.771 4.251 12.89 4.37 L 17.972 9.452 C 18.372 9.852 19.056 9.568 19.056 9.002 L 19.056 5.718 C 19.056 5.549 18.989 5.388 18.87 5.269 Z M 27.02 13.419 L 21.039 7.438 C 20.639 7.038 19.955 7.321 19.955 7.887 L 19.955 16.253 C 19.955 16.604 20.239 16.889 20.59 16.889 L 29.855 16.889 C 30.206 16.889 30.49 16.604 30.49 16.253 L 30.49 15.491 C 30.49 15.14 30.204 14.86 29.856 14.815 C 28.783 14.675 27.786 14.184 27.02 13.419 Z M 23.004 14.856 C 22.443 14.856 21.988 14.401 21.987 13.84 C 21.988 13.278 22.443 12.823 23.004 12.823 C 23.565 12.823 24.02 13.278 24.02 13.84 C 24.02 14.401 23.565 14.856 23.004 14.856 Z\" fill=\"rgb(121, 121, 121)\"></path><path d=\"M 0 16.253 C 0 16.604 0.284 16.889 0.635 16.889 L 3.548 16.889 C 4.114 16.889 4.397 16.204 3.997 15.804 L 1.085 12.892 C 0.684 12.491 0 12.775 0 13.341 Z M 6.352 5.455 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 L 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 6.352 10.536 Z M 1.085 6.539 C 0.684 6.139 0 6.423 0 6.989 L 0 10.273 C 0 10.442 0.067 10.603 0.186 10.722 L 6.352 16.889 L 6.352 11.807 Z M 12.704 5.718 C 12.704 5.549 12.637 5.388 12.518 5.269 L 7.437 0.187 C 7.037 -0.213 6.352 0.071 6.352 0.637 L 6.352 3.921 C 6.352 4.09 6.419 4.251 6.538 4.37 L 12.704 10.536 Z M 6.352 16.889 L 9.9 16.889 C 10.466 16.889 10.749 16.204 10.349 15.804 L 6.352 11.807 Z M 6.352 5.455 L 6.352 10.273 C 6.352 10.442 6.419 10.603 6.538 10.722 L 12.704 16.889 L 12.704 12.07 C 12.704 11.902 12.637 11.74 12.518 11.621 Z M 37.901 14.352 L 40.512 14.352 L 40.512 10.024 L 42.692 10.024 C 45.088 10.024 46.624 8.603 46.624 6.406 C 46.624 4.209 45.088 2.788 42.692 2.788 L 37.901 2.788 Z M 40.512 7.794 L 40.512 5.018 L 42.428 5.018 C 43.419 5.018 44.014 5.547 44.014 6.406 C 44.014 7.265 43.419 7.794 42.428 7.794 L 40.512 7.794 Z M 51.346 14.485 C 53.891 14.485 55.741 12.667 55.741 10.189 C 55.741 7.711 53.891 5.894 51.346 5.894 C 48.769 5.894 46.952 7.711 46.952 10.189 C 46.952 12.667 48.769 14.485 51.346 14.485 Z M 49.364 10.189 C 49.364 8.868 50.157 7.959 51.346 7.959 C 52.519 7.959 53.312 8.868 53.312 10.189 C 53.312 11.511 52.519 12.419 51.346 12.419 C 50.157 12.419 49.364 11.511 49.364 10.189 Z M 59.918 14.485 C 61.867 14.485 63.189 13.262 63.189 11.825 C 63.189 8.455 58.712 9.545 58.712 8.223 C 58.712 7.86 59.092 7.629 59.637 7.629 C 60.199 7.629 60.876 7.975 61.091 8.735 L 63.04 7.926 C 62.66 6.72 61.256 5.894 59.555 5.894 C 57.721 5.894 56.581 6.984 56.581 8.289 C 56.581 11.445 60.992 10.569 60.992 11.874 C 60.992 12.337 60.562 12.651 59.918 12.651 C 58.993 12.651 58.349 12.006 58.15 11.23 L 56.201 11.99 C 56.63 13.245 57.886 14.485 59.918 14.485 Z M 69.468 14.27 L 69.303 12.172 C 69.022 12.32 68.659 12.37 68.362 12.37 C 67.767 12.37 67.37 11.94 67.37 11.197 L 67.37 8.041 L 69.386 8.041 L 69.386 6.026 L 67.37 6.026 L 67.37 3.614 L 64.942 3.614 L 64.942 6.026 L 63.62 6.026 L 63.62 8.041 L 64.942 8.041 L 64.942 11.511 C 64.942 13.526 66.313 14.485 68.114 14.485 C 68.609 14.485 69.072 14.402 69.468 14.27 Z M 77.936 2.788 L 77.936 7.281 L 73.343 7.281 L 73.343 2.788 L 70.733 2.788 L 70.733 14.352 L 73.343 14.352 L 73.343 9.512 L 77.936 9.512 L 77.936 14.352 L 80.562 14.352 L 80.562 2.788 Z M 86.356 14.485 C 88.9 14.485 90.751 12.667 90.751 10.189 C 90.751 7.711 88.9 5.894 86.356 5.894 C 83.779 5.894 81.962 7.711 81.962 10.189 C 81.962 12.667 83.779 14.485 86.356 14.485 Z M 84.374 10.189 C 84.374 8.868 85.167 7.959 86.356 7.959 C 87.529 7.959 88.322 8.868 88.322 10.189 C 88.322 11.511 87.529 12.419 86.356 12.419 C 85.167 12.419 84.374 11.511 84.374 10.189 Z M 95.438 14.088 C 96.346 14.088 97.156 13.774 97.585 13.229 L 97.585 14.022 C 97.585 14.947 96.842 15.591 95.702 15.591 C 94.893 15.591 94.182 15.195 94.067 14.517 L 91.853 14.864 C 92.15 16.434 93.753 17.491 95.702 17.491 C 98.263 17.491 99.964 15.988 99.964 13.758 L 99.964 6.026 L 97.569 6.026 L 97.569 6.736 C 97.123 6.224 96.363 5.894 95.388 5.894 C 93.075 5.894 91.622 7.48 91.622 9.991 C 91.622 12.502 93.075 14.088 95.438 14.088 Z M 93.984 9.991 C 93.984 8.752 94.711 7.959 95.834 7.959 C 96.974 7.959 97.701 8.752 97.701 9.991 C 97.701 11.23 96.974 12.023 95.834 12.023 C 94.711 12.023 93.984 11.23 93.984 9.991 Z\" fill=\"rgb(121, 121, 121)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-jmffhz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.391 9.863\" overflow=\"visible\"><path d=\"M 1.764 3.16 C 1.53 3.628 0.861 3.628 0.627 3.16 L 0.067 2.04 C -0.022 1.861 -0.022 1.65 0.067 1.471 L 0.627 0.351 C 0.861 -0.117 1.53 -0.117 1.764 0.351 L 2.324 1.471 C 2.413 1.65 2.413 1.861 2.324 2.04 L 1.764 3.16 Z M 1.764 9.512 C 1.53 9.98 0.861 9.98 0.627 9.512 L 0.067 8.392 C -0.022 8.213 -0.022 8.002 0.067 7.823 L 0.627 6.704 C 0.861 6.235 1.53 6.235 1.764 6.704 L 2.324 7.823 C 2.413 8.002 2.413 8.213 2.324 8.392 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-omrkfg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.391 3.511\" overflow=\"visible\"><path d=\"M 1.764 3.16 C 1.53 3.628 0.861 3.628 0.627 3.16 L 0.067 2.04 C -0.022 1.861 -0.022 1.65 0.067 1.471 L 0.627 0.351 C 0.861 -0.117 1.53 -0.117 1.764 0.351 L 2.324 1.471 C 2.413 1.65 2.413 1.861 2.324 2.04 L 1.764 3.16 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3k7f1x\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.391 3.511\" overflow=\"visible\"><path d=\"M 1.764 3.16 C 1.53 3.628 0.861 3.628 0.627 3.16 L 0.067 2.04 C -0.022 1.861 -0.022 1.65 0.067 1.471 L 0.627 0.351 C 0.861 -0.117 1.53 -0.117 1.764 0.351 L 2.324 1.471 C 2.413 1.65 2.413 1.861 2.324 2.04 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-158kg5c\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30.49 16.889\" overflow=\"visible\"><path d=\"M 0 13.341 C 0 12.775 0.684 12.491 1.085 12.891 L 3.997 15.804 C 4.397 16.204 4.114 16.889 3.548 16.889 L 0.635 16.889 C 0.284 16.889 0 16.604 0 16.253 L 0 13.341 Z M 0 10.273 C 0 10.442 0.067 10.603 0.186 10.723 L 6.166 16.702 C 6.285 16.822 6.447 16.889 6.615 16.889 L 9.9 16.889 C 10.466 16.889 10.749 16.204 10.349 15.804 L 1.085 6.539 C 0.684 6.139 0 6.423 0 6.989 L 0 10.273 Z M 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 12.518 16.702 C 12.637 16.822 12.799 16.889 12.967 16.889 L 16.252 16.889 C 16.818 16.889 17.102 16.204 16.701 15.804 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 Z M 6.352 3.921 C 6.352 4.09 6.419 4.251 6.538 4.37 L 17.972 15.804 C 18.372 16.204 19.056 15.921 19.056 15.355 L 19.056 12.07 C 19.056 11.902 18.989 11.74 18.87 11.621 L 7.437 0.187 C 7.036 -0.213 6.352 0.071 6.352 0.637 Z M 13.789 0.187 C 13.389 -0.213 12.704 0.071 12.704 0.637 L 12.704 3.921 C 12.704 4.09 12.771 4.251 12.89 4.37 L 17.972 9.452 C 18.372 9.852 19.056 9.568 19.056 9.002 L 19.056 5.718 C 19.056 5.549 18.989 5.388 18.87 5.269 Z M 27.02 13.419 L 21.039 7.438 C 20.639 7.038 19.955 7.321 19.955 7.887 L 19.955 16.253 C 19.955 16.604 20.239 16.889 20.59 16.889 L 29.855 16.889 C 30.206 16.889 30.49 16.604 30.49 16.253 L 30.49 15.491 C 30.49 15.14 30.204 14.86 29.856 14.815 C 28.783 14.675 27.786 14.184 27.02 13.419 Z M 23.004 14.856 C 22.443 14.856 21.988 14.401 21.987 13.84 C 21.988 13.278 22.443 12.823 23.004 12.823 C 23.565 12.823 24.02 13.278 24.02 13.84 C 24.02 14.401 23.565 14.856 23.004 14.856 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e0470j\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.184 4.184\" overflow=\"visible\"><path d=\"M 0 0.637 C 0 0.071 0.684 -0.213 1.085 0.187 L 3.997 3.1 C 4.397 3.5 4.114 4.184 3.548 4.184 L 0.635 4.184 C 0.284 4.184 0 3.9 0 3.549 L 0 0.637 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1chelo0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.537 10.537\" overflow=\"visible\"><path d=\"M 0 3.921 C 0 4.09 0.067 4.251 0.186 4.371 L 6.166 10.35 C 6.285 10.47 6.447 10.537 6.615 10.537 L 9.9 10.537 C 10.466 10.537 10.749 9.852 10.349 9.452 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 L 0 3.921 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lpu6z9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.889 16.889\" overflow=\"visible\"><path d=\"M 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 12.518 16.702 C 12.637 16.822 12.799 16.889 12.967 16.889 L 16.252 16.889 C 16.818 16.889 17.102 16.204 16.701 15.804 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bu1mlb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.704 15.991\" overflow=\"visible\"><path d=\"M 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 11.62 15.804 C 12.02 16.204 12.704 15.921 12.704 15.355 L 12.704 12.07 C 12.704 11.902 12.637 11.74 12.518 11.621 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-at6iws\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.352 9.639\" overflow=\"visible\"><path d=\"M 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 L 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 5.267 9.452 C 5.668 9.852 6.352 9.568 6.352 9.002 L 6.352 5.718 C 6.352 5.549 6.285 5.388 6.166 5.269 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-plvmeo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.535 9.638\" overflow=\"visible\"><path d=\"M 7.066 6.168 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 L 0 9.003 C 0 9.354 0.284 9.638 0.635 9.638 L 9.9 9.638 C 10.251 9.638 10.535 9.354 10.535 9.003 L 10.535 8.241 C 10.535 7.89 10.25 7.61 9.902 7.564 C 8.828 7.424 7.831 6.934 7.066 6.168 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aidvtg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.033 2.033\" overflow=\"visible\"><path d=\"M 1.016 2.033 C 0.455 2.033 0 1.578 0 1.016 C 0 0.455 0.455 0 1.016 0 C 1.578 0 2.033 0.455 2.033 1.016 C 2.033 1.578 1.578 2.033 1.016 2.033 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1jtwma1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99.964 17.491\" overflow=\"visible\"><path d=\"M 0 16.253 C 0 16.604 0.284 16.889 0.635 16.889 L 3.548 16.889 C 4.114 16.889 4.397 16.204 3.997 15.804 L 1.085 12.892 C 0.684 12.491 0 12.775 0 13.341 Z M 6.352 5.455 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 L 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 6.352 10.536 Z M 1.085 6.539 C 0.684 6.139 0 6.423 0 6.989 L 0 10.273 C 0 10.442 0.067 10.603 0.186 10.722 L 6.352 16.889 L 6.352 11.807 Z M 12.704 5.718 C 12.704 5.549 12.637 5.388 12.518 5.269 L 7.437 0.187 C 7.037 -0.213 6.352 0.071 6.352 0.637 L 6.352 3.921 C 6.352 4.09 6.419 4.251 6.538 4.37 L 12.704 10.536 Z M 6.352 16.889 L 9.9 16.889 C 10.466 16.889 10.749 16.204 10.349 15.804 L 6.352 11.807 Z M 6.352 5.455 L 6.352 10.273 C 6.352 10.442 6.419 10.603 6.538 10.722 L 12.704 16.889 L 12.704 12.07 C 12.704 11.902 12.637 11.74 12.518 11.621 Z M 37.901 14.352 L 40.512 14.352 L 40.512 10.024 L 42.692 10.024 C 45.088 10.024 46.624 8.603 46.624 6.406 C 46.624 4.209 45.088 2.788 42.692 2.788 L 37.901 2.788 Z M 40.512 7.794 L 40.512 5.018 L 42.428 5.018 C 43.419 5.018 44.014 5.547 44.014 6.406 C 44.014 7.265 43.419 7.794 42.428 7.794 L 40.512 7.794 Z M 51.346 14.485 C 53.891 14.485 55.741 12.667 55.741 10.189 C 55.741 7.711 53.891 5.894 51.346 5.894 C 48.769 5.894 46.952 7.711 46.952 10.189 C 46.952 12.667 48.769 14.485 51.346 14.485 Z M 49.364 10.189 C 49.364 8.868 50.157 7.959 51.346 7.959 C 52.519 7.959 53.312 8.868 53.312 10.189 C 53.312 11.511 52.519 12.419 51.346 12.419 C 50.157 12.419 49.364 11.511 49.364 10.189 Z M 59.918 14.485 C 61.867 14.485 63.189 13.262 63.189 11.825 C 63.189 8.455 58.712 9.545 58.712 8.223 C 58.712 7.86 59.092 7.629 59.637 7.629 C 60.199 7.629 60.876 7.975 61.091 8.735 L 63.04 7.926 C 62.66 6.72 61.256 5.894 59.555 5.894 C 57.721 5.894 56.581 6.984 56.581 8.289 C 56.581 11.445 60.992 10.569 60.992 11.874 C 60.992 12.337 60.562 12.651 59.918 12.651 C 58.993 12.651 58.349 12.006 58.15 11.23 L 56.201 11.99 C 56.63 13.245 57.886 14.485 59.918 14.485 Z M 69.468 14.27 L 69.303 12.172 C 69.022 12.32 68.659 12.37 68.362 12.37 C 67.767 12.37 67.37 11.94 67.37 11.197 L 67.37 8.041 L 69.386 8.041 L 69.386 6.026 L 67.37 6.026 L 67.37 3.614 L 64.942 3.614 L 64.942 6.026 L 63.62 6.026 L 63.62 8.041 L 64.942 8.041 L 64.942 11.511 C 64.942 13.526 66.313 14.485 68.114 14.485 C 68.609 14.485 69.072 14.402 69.468 14.27 Z M 77.936 2.788 L 77.936 7.281 L 73.343 7.281 L 73.343 2.788 L 70.733 2.788 L 70.733 14.352 L 73.343 14.352 L 73.343 9.512 L 77.936 9.512 L 77.936 14.352 L 80.562 14.352 L 80.562 2.788 Z M 86.356 14.485 C 88.9 14.485 90.751 12.667 90.751 10.189 C 90.751 7.711 88.9 5.894 86.356 5.894 C 83.779 5.894 81.962 7.711 81.962 10.189 C 81.962 12.667 83.779 14.485 86.356 14.485 Z M 84.374 10.189 C 84.374 8.868 85.167 7.959 86.356 7.959 C 87.529 7.959 88.322 8.868 88.322 10.189 C 88.322 11.511 87.529 12.419 86.356 12.419 C 85.167 12.419 84.374 11.511 84.374 10.189 Z M 95.438 14.088 C 96.346 14.088 97.156 13.774 97.585 13.229 L 97.585 14.022 C 97.585 14.947 96.842 15.591 95.702 15.591 C 94.893 15.591 94.182 15.195 94.067 14.517 L 91.853 14.864 C 92.15 16.434 93.753 17.491 95.702 17.491 C 98.263 17.491 99.964 15.988 99.964 13.758 L 99.964 6.026 L 97.569 6.026 L 97.569 6.736 C 97.123 6.224 96.363 5.894 95.388 5.894 C 93.075 5.894 91.622 7.48 91.622 9.991 C 91.622 12.502 93.075 14.088 95.438 14.088 Z M 93.984 9.991 C 93.984 8.752 94.711 7.959 95.834 7.959 C 96.974 7.959 97.701 8.752 97.701 9.991 C 97.701 11.23 96.974 12.023 95.834 12.023 C 94.711 12.023 93.984 11.23 93.984 9.991 Z\" fill=\"rgb(121, 121, 121)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15n7d3r\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.184 4.184\" overflow=\"visible\"><path d=\"M 0 3.549 C 0 3.9 0.284 4.184 0.635 4.184 L 3.548 4.184 C 4.114 4.184 4.397 3.5 3.997 3.1 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3u9m06\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.352 10.536\" overflow=\"visible\"><path d=\"M 6.352 5.455 L 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 L 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 6.352 10.536 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bdb006\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.352 10.537\" overflow=\"visible\"><path d=\"M 1.085 0.187 C 0.684 -0.213 0 0.071 0 0.637 L 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 6.352 10.537 L 6.352 5.455 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1k2a7ga\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.352 10.536\" overflow=\"visible\"><path d=\"M 6.352 5.718 C 6.352 5.549 6.285 5.388 6.166 5.269 L 1.085 0.187 C 0.685 -0.213 0 0.071 0 0.637 L 0 3.921 C 0 4.09 0.067 4.251 0.186 4.37 L 6.352 10.536 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sa2wja\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.184 5.082\" overflow=\"visible\"><path d=\"M 0 5.082 L 3.548 5.082 C 4.114 5.082 4.397 4.397 3.997 3.997 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w126qw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.352 11.434\" overflow=\"visible\"><path d=\"M 0 0 L 0 4.818 C 0 4.987 0.067 5.149 0.186 5.268 L 6.352 11.434 L 6.352 6.615 C 6.352 6.447 6.285 6.285 6.166 6.166 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bgamja\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.723 11.564\" overflow=\"visible\"><path d=\"M 0 11.564 L 2.61 11.564 L 2.61 7.236 L 4.791 7.236 C 7.186 7.236 8.723 5.815 8.723 3.618 C 8.723 1.421 7.186 0 4.791 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uv4y1j\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.502 2.775\" overflow=\"visible\"><path d=\"M 0 2.775 L 0 0 L 1.916 0 C 2.908 0 3.502 0.529 3.502 1.388 C 3.502 2.247 2.908 2.775 1.916 2.775 L 0 2.775 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ohhr0k\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.789 8.591\" overflow=\"visible\"><path d=\"M 4.394 8.591 C 6.939 8.591 8.789 6.773 8.789 4.295 C 8.789 1.817 6.939 0 4.394 0 C 1.817 0 0 1.817 0 4.295 C 0 6.773 1.817 8.591 4.394 8.591 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bymy2l\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.948 4.461\" overflow=\"visible\"><path d=\"M 0 2.23 C 0 0.909 0.793 0 1.982 0 C 3.155 0 3.948 0.909 3.948 2.23 C 3.948 3.552 3.155 4.461 1.982 4.461 C 0.793 4.461 0 3.552 0 2.23 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jfgbsn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.988 8.591\" overflow=\"visible\"><path d=\"M 3.717 8.591 C 5.667 8.591 6.988 7.368 6.988 5.931 C 6.988 2.561 2.511 3.651 2.511 2.329 C 2.511 1.966 2.891 1.735 3.436 1.735 C 3.998 1.735 4.675 2.082 4.89 2.841 L 6.839 2.032 C 6.459 0.826 5.055 0 3.354 0 C 1.52 0 0.38 1.09 0.38 2.395 C 0.38 5.551 4.791 4.675 4.791 5.98 C 4.791 6.443 4.361 6.757 3.717 6.757 C 2.792 6.757 2.148 6.113 1.949 5.336 L 0 6.096 C 0.43 7.352 1.685 8.591 3.717 8.591 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-52bw4c\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.848 10.87\" overflow=\"visible\"><path d=\"M 5.848 10.656 L 5.683 8.558 C 5.402 8.706 5.039 8.756 4.741 8.756 C 4.147 8.756 3.75 8.326 3.75 7.583 L 3.75 4.427 L 5.766 4.427 L 5.766 2.412 L 3.75 2.412 L 3.75 0 L 1.322 0 L 1.322 2.412 L 0 2.412 L 0 4.427 L 1.322 4.427 L 1.322 7.897 C 1.322 9.912 2.693 10.87 4.494 10.87 C 4.989 10.87 5.452 10.788 5.848 10.656 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11trsj6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.83 11.564\" overflow=\"visible\"><path d=\"M 7.203 0 L 7.203 4.493 L 2.61 4.493 L 2.61 0 L 0 0 L 0 11.564 L 2.61 11.564 L 2.61 6.724 L 7.203 6.724 L 7.203 11.564 L 9.83 11.564 L 9.83 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r1bevg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.789 8.591\" overflow=\"visible\"><path d=\"M 4.395 8.591 C 6.939 8.591 8.789 6.773 8.789 4.295 C 8.789 1.817 6.939 0 4.395 0 C 1.817 0 0 1.817 0 4.295 C 0 6.773 1.817 8.591 4.395 8.591 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xqx1u4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.948 4.461\" overflow=\"visible\"><path d=\"M 0 2.23 C 0 0.909 0.793 0 1.982 0 C 3.155 0 3.948 0.909 3.948 2.23 C 3.948 3.552 3.155 4.461 1.982 4.461 C 0.793 4.461 0 3.552 0 2.23 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nmretv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.343 11.597\" overflow=\"visible\"><path d=\"M 3.816 8.194 C 4.725 8.194 5.534 7.88 5.964 7.335 L 5.964 8.128 C 5.964 9.053 5.22 9.698 4.08 9.698 C 3.271 9.698 2.561 9.301 2.445 8.624 L 0.231 8.971 C 0.529 10.54 2.131 11.597 4.08 11.597 C 6.641 11.597 8.343 10.094 8.343 7.864 L 8.343 0.132 L 5.947 0.132 L 5.947 0.843 C 5.501 0.33 4.741 0 3.767 0 C 1.454 0 0 1.586 0 4.097 C 0 6.608 1.454 8.194 3.816 8.194 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ns2ouo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.717 4.064\" overflow=\"visible\"><path d=\"M 0 2.032 C 0 0.793 0.727 0 1.85 0 C 2.99 0 3.717 0.793 3.717 2.032 C 3.717 3.271 2.99 4.064 1.85 4.064 C 0.727 4.064 0 3.271 0 2.032 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1isrf4v\",\"data-framer-name\":\"Frame 26171\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w1s6ma\",\"data-framer-name\":\"Frame 480\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+140+0+0+0+1228+40.72+17.77+0),pixelHeight:786,pixelWidth:1195,sizes:\"481.29px\",src:\"https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?width=1195&height=786\",srcSet:\"https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?scale-down-to=512&width=1195&height=786 512w,https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?scale-down-to=1024&width=1195&height=786 1024w,https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?width=1195&height=786 1195w\"}},KOSaM6d8G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+140+80+0+0+1208+49.93+21.79+0),pixelHeight:786,pixelWidth:1195,sizes:\"590.03px\",src:\"https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?width=1195&height=786\",srcSet:\"https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?scale-down-to=512&width=1195&height=786 512w,https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?scale-down-to=1024&width=1195&height=786 1024w,https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?width=1195&height=786 1195w\"}},x02gF1qOH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+140+0+0+0+1273+24.88+10.86+0),pixelHeight:786,pixelWidth:1195,sizes:\"294.05px\",src:\"https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?width=1195&height=786\",srcSet:\"https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?scale-down-to=512&width=1195&height=786 512w,https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?scale-down-to=1024&width=1195&height=786 1024w,https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?width=1195&height=786 1195w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+140+132+0+55+24+0),pixelHeight:786,pixelWidth:1195,sizes:\"650px\",src:\"https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?width=1195&height=786\",srcSet:\"https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?scale-down-to=512&width=1195&height=786 512w,https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?scale-down-to=1024&width=1195&height=786 1024w,https://framerusercontent.com/images/EWZkzepEmSmA5MA1FhjGZTPHNZk.png?width=1195&height=786 1195w\"},className:\"framer-kcj5fh\",\"data-framer-name\":\"Dashboard2 2\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f3d04t\",\"data-framer-name\":\"Card 3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wh9a5o\",\"data-framer-name\":\"Frame 26168\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:61,intrinsicWidth:60,svg:'<svg width=\"60\" height=\"61\" viewBox=\"0 0 60 61\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"30\" cy=\"30.5\" r=\"30\" fill=\"#226D4F\"/>\\n<path d=\"M18.5333 39L16.6666 37.1333L26.5333 27.2L31.8666 32.5333L38.8 25.6667H35.3333V23H43.3333V31H40.6666V27.5333L31.8666 36.3333L26.5333 31L18.5333 39Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q92f0t\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Nexora Labs\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Nexora Labs\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"6px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Nexora Labs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Nexora Labs\"})}),className:\"framer-19pn4jv\",\"data-framer-name\":\"Nexora Labs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14rvih5\",\"data-framer-name\":\"Frame 470\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 109, 79)\"},children:\"+75% - Healthy\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 109, 79)\"},children:\"+75% - Healthy\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 109, 79)\"},children:\"+75% - Healthy\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 109, 79)\"},children:\"+75% - Healthy\"})}),className:\"framer-3pvegs\",\"data-framer-name\":\"+75% - Healthy\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ua8n5r\",\"data-framer-name\":\"Card 4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vjlgvq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"📊 Home Feed\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"📊 Home Feed\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"7px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"📊 Home Feed\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"📊 Home Feed\"})}),className:\"framer-38x5xm\",\"data-framer-name\":\"📊 Home Feed\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cwpyp3\",\"data-framer-name\":\"Frame 474\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"🔥 Red hot accounts + Trend\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"🔥 Red hot accounts + Trend\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"🔥 Red hot accounts + Trend\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"🔥 Red hot accounts + Trend\"})}),className:\"framer-6lyxxy\",\"data-framer-name\":\"🔥 Red hot accounts + Trend\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1929rdh\",\"data-framer-name\":\"Frame 494\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Hyper Satellite: +53\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Hyper Satellite: +53\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Hyper Satellite: +53\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Hyper Satellite: +53\"})}),className:\"framer-jq9zt2\",\"data-framer-name\":\"Hyper Satellite: +53\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Environtment Ware: +32 \"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Environtment Ware: +32 \"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Environtment Ware: +32 \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Environtment Ware: +32 \"})}),className:\"framer-vhmo14\",\"data-framer-name\":\"Environtment Ware: +32\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Radcliffe Institute: + 26\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Radcliffe Institute: + 26\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Radcliffe Institute: + 26\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Radcliffe Institute: + 26\"})}),className:\"framer-v7fnhg\",\"data-framer-name\":\"Radcliffe Institute: + 26\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vo6phy\",\"data-framer-name\":\"Frame 473\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"❄️ Ice Cold Accounts - Trend\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"❄️ Ice Cold Accounts - Trend\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"5px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"❄️ Ice Cold Accounts - Trend\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"❄️ Ice Cold Accounts - Trend\"})}),className:\"framer-fxowuk\",\"data-framer-name\":\"❄️ Ice Cold Accounts - Trend\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b1xual\",\"data-framer-name\":\"Frame 494\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Sonic Warehouse: -64\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Sonic Warehouse: -64\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Sonic Warehouse: -64\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Sonic Warehouse: -64\"})}),className:\"framer-sgf5d2\",\"data-framer-name\":\"Sonic Warehouse: -64\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Cyber Security AI: -51\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Cyber Security AI: -51\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Cyber Security AI: -51\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Cyber Security AI: -51\"})}),className:\"framer-1vawpjg\",\"data-framer-name\":\"Cyber Security AI: -51\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g9dt3\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"17.770765998707176px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Send to Slack\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"21.785714285714285px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Send to Slack\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"5px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"10.857142857142858px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Send to Slack\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLTUwMA==\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Send to Slack\"})}),className:\"framer-1yauq5r\",\"data-framer-name\":\"Label\",fonts:[\"GF;Instrument Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:95,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xqqsi9\",\"data-framer-name\":\"Card 5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d9pjmt\",\"data-framer-name\":\"Frame 26174\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h15ub0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\"},children:\"🏆 Spot Power Users\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\"},children:\"🏆 Spot Power Users\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"7px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\"},children:\"🏆 Spot Power Users\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\"},children:\"🏆 Spot Power Users\"})}),className:\"framer-1wctoq2\",\"data-framer-name\":\"🏆 Spot Power Users\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17y1rgu\",\"data-framer-name\":\"Frame 26175\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Parcel Champion\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Parcel Champion\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"6px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Parcel Champion\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Parcel Champion\"})}),className:\"framer-gstkhw\",\"data-framer-name\":\"Parcel Champion\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-123dtju\",\"data-framer-name\":\"Frame 494\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Diana  Maria Jones\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Diana  Maria Jones\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Diana  Maria Jones\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Diana  Maria Jones\"})}),className:\"framer-v9s9to\",\"data-framer-name\":\"Diana Maria Jones\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Mark Angelo Jordam\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Mark Angelo Jordam\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Mark Angelo Jordam\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Mark Angelo Jordam\"})}),className:\"framer-1vf6xid\",\"data-framer-name\":\"Mark Angelo Jordam\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1gqig\",\"data-framer-name\":\"Frame 26176\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Sonic Warehouse\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Sonic Warehouse\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"6px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Sonic Warehouse\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Sonic Warehouse\"})}),className:\"framer-ohn767\",\"data-framer-name\":\"Sonic Warehouse\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-197xrdb\",\"data-framer-name\":\"Frame 494\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Angelica Therese  Lee\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Angelica Therese  Lee\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Angelica Therese  Lee\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Angelica Therese  Lee\"})}),className:\"framer-jbbful\",\"data-framer-name\":\"Angelica Therese Lee\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"John Michael Green\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"John Michael Green\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"5px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"John Michael Green\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"John Michael Green\"})}),className:\"framer-116o8hp\",\"data-framer-name\":\"John Michael Green\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:105,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bn79om\",\"data-framer-name\":\"Card 6\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qhhv1s\",\"data-framer-name\":\"info_24dp_1F1F1F_FILL1_wght400_GRAD0_opsz24 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22 34H26V22H22V34ZM24 18C24.5667 18 25.0417 17.8083 25.425 17.425C25.8083 17.0417 26 16.5667 26 16C26 15.4333 25.8083 14.9583 25.425 14.575C25.0417 14.1917 24.5667 14 24 14C23.4333 14 22.9583 14.1917 22.575 14.575C22.1917 14.9583 22 15.4333 22 16C22 16.5667 22.1917 17.0417 22.575 17.425C22.9583 17.8083 23.4333 18 24 18ZM24 44C21.2333 44 18.6333 43.475 16.2 42.425C13.7667 41.375 11.65 39.95 9.85 38.15C8.05 36.35 6.625 34.2333 5.575 31.8C4.525 29.3667 4 26.7667 4 24C4 21.2333 4.525 18.6333 5.575 16.2C6.625 13.7667 8.05 11.65 9.85 9.85C11.65 8.05 13.7667 6.625 16.2 5.575C18.6333 4.525 21.2333 4 24 4C26.7667 4 29.3667 4.525 31.8 5.575C34.2333 6.625 36.35 8.05 38.15 9.85C39.95 11.65 41.375 13.7667 42.425 16.2C43.475 18.6333 44 21.2333 44 24C44 26.7667 43.475 29.3667 42.425 31.8C41.375 34.2333 39.95 36.35 38.15 38.15C36.35 39.95 34.2333 41.375 31.8 42.425C29.3667 43.475 26.7667 44 24 44Z\" fill=\"#FF1028\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pls33m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\"},children:\"Churn alert\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\"},children:\"Churn alert\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-size\":\"7px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\"},children:\"Churn alert\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\"},children:\"Churn alert\"})}),className:\"framer-8io5ma\",\"data-framer-name\":\"Churn alert\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Tech Corp - Needs attention\"})})},KOSaM6d8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Tech Corp - Needs attention\"})})},x02gF1qOH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"6px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Tech Corp - Needs attention\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(34, 34, 34)\"},children:\"Tech Corp - Needs attention\"})}),className:\"framer-87uuiv\",\"data-framer-name\":\"Tech Corp - Needs attention\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wlmto0\",\"data-framer-name\":\"Frame 26155\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ryxc2f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Integrates with\"})}),className:\"framer-1kmx93x\",\"data-framer-name\":\"Integrated with\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-if2m56-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KHs10ohMJ\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:63,height:\"100%\",hoverFactor:1,id:\"KHs10ohMJ\",layoutId:\"KHs10ohMJ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r1zg7a\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-ounynj\",\"data-framer-name\":\"slack\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 79.258 19.959\" overflow=\"visible\"><g><path d=\"M 25.5 15.946 L 26.487 13.653 C 27.554 14.45 28.971 14.863 30.372 14.863 C 31.407 14.863 32.06 14.466 32.06 13.86 C 32.044 12.172 25.866 13.494 25.818 9.259 C 25.802 7.109 27.713 5.453 30.42 5.453 C 32.028 5.453 33.637 5.851 34.783 6.759 L 33.86 9.099 C 32.809 8.431 31.503 7.953 30.26 7.953 C 29.417 7.953 28.86 8.351 28.86 8.86 C 28.875 10.516 35.102 9.609 35.165 13.653 C 35.165 15.851 33.302 17.396 30.627 17.396 C 28.668 17.396 26.869 16.934 25.5 15.946 Z M 63.382 12.826 L 66.105 14.338 C 65.056 16.23 63.061 17.402 60.898 17.396 C 57.6 17.395 54.927 14.722 54.926 11.424 C 54.927 8.126 57.6 5.454 60.898 5.453 C 63.058 5.458 65.048 6.626 66.105 8.51 L 63.382 10.023 C 62.874 9.129 61.926 8.576 60.898 8.573 C 60.142 8.572 59.416 8.872 58.882 9.407 C 58.347 9.942 58.047 10.668 58.048 11.424 C 58.047 12.18 58.347 12.905 58.882 13.44 C 59.417 13.975 60.142 14.275 60.898 14.274 C 61.965 14.274 62.888 13.685 63.382 12.825 Z M 36.535 0.5 L 39.942 0.5 L 39.942 17.172 L 36.535 17.172 L 36.535 0.501 Z M 67.442 0.5 L 70.85 0.5 L 70.85 10.293 L 74.703 5.691 L 78.875 5.691 L 74.115 11.232 L 79.258 17.172 L 74.893 17.172 L 70.849 12.172 L 70.849 17.172 L 67.441 17.172 L 67.441 0.501 Z M 50.07 12.857 L 50.07 10.039 C 49.576 9.211 48.557 8.574 47.41 8.574 C 46.654 8.573 45.929 8.873 45.394 9.408 C 44.859 9.943 44.559 10.668 44.56 11.424 C 44.559 12.18 44.86 12.905 45.394 13.44 C 45.929 13.974 46.654 14.275 47.41 14.274 C 48.557 14.274 49.576 13.669 50.07 12.857 Z M 50.07 5.692 L 53.477 5.692 L 53.477 17.157 L 50.07 17.157 L 50.07 15.803 C 49.512 16.743 48.127 17.396 46.678 17.396 C 43.684 17.396 41.328 14.72 41.328 11.408 C 41.328 8.096 43.684 5.453 46.678 5.453 C 48.127 5.453 49.512 6.106 50.07 7.045 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 4.204 12.602 C 4.205 13.16 3.983 13.695 3.589 14.089 C 3.195 14.483 2.66 14.705 2.102 14.704 C 1.544 14.705 1.009 14.483 0.615 14.089 C 0.221 13.695 -0.001 13.16 0 12.602 C -0.001 12.044 0.221 11.509 0.615 11.115 C 1.009 10.721 1.544 10.499 2.102 10.5 L 4.204 10.5 Z M 5.254 12.602 C 5.253 12.044 5.475 11.509 5.869 11.115 C 6.264 10.72 6.799 10.499 7.357 10.5 C 7.915 10.499 8.45 10.721 8.844 11.115 C 9.238 11.509 9.46 12.044 9.459 12.602 L 9.459 17.857 C 9.46 18.415 9.238 18.95 8.844 19.344 C 8.45 19.738 7.915 19.96 7.357 19.959 C 6.799 19.96 6.264 19.738 5.87 19.344 C 5.476 18.95 5.254 18.415 5.255 17.857 L 5.255 12.602 Z\" fill=\"rgb(224,30,90)\"></path><path d=\"M 7.373 4.204 C 6.815 4.205 6.28 3.984 5.885 3.589 C 5.491 3.195 5.269 2.66 5.27 2.102 C 5.269 1.544 5.491 1.009 5.885 0.615 C 6.28 0.22 6.815 -0.001 7.373 0 C 7.931 -0.001 8.466 0.221 8.86 0.615 C 9.254 1.009 9.476 1.544 9.475 2.102 L 9.475 4.204 Z M 7.373 5.271 C 7.931 5.27 8.466 5.492 8.86 5.886 C 9.254 6.28 9.476 6.815 9.475 7.373 C 9.476 7.931 9.254 8.466 8.86 8.86 C 8.466 9.254 7.931 9.476 7.373 9.475 L 2.102 9.475 C 1.544 9.476 1.009 9.254 0.615 8.86 C 0.221 8.466 -0.001 7.931 0 7.373 C -0.001 6.815 0.22 6.28 0.615 5.885 C 1.009 5.491 1.544 5.269 2.102 5.27 L 7.372 5.27 Z\" fill=\"rgb(54,197,240)\"></path><path d=\"M 15.755 7.373 C 15.754 6.815 15.976 6.28 16.37 5.886 C 16.764 5.492 17.299 5.27 17.857 5.271 C 18.415 5.27 18.95 5.492 19.344 5.886 C 19.738 6.28 19.96 6.815 19.959 7.373 C 19.96 7.931 19.738 8.466 19.344 8.86 C 18.95 9.254 18.415 9.476 17.857 9.475 L 15.755 9.475 Z M 14.705 7.373 C 14.706 7.931 14.484 8.466 14.09 8.86 C 13.695 9.255 13.16 9.476 12.602 9.475 C 12.044 9.476 11.509 9.254 11.115 8.86 C 10.721 8.466 10.499 7.931 10.5 7.373 L 10.5 2.102 C 10.499 1.544 10.721 1.009 11.115 0.615 C 11.509 0.221 12.044 -0.001 12.602 0 C 13.16 -0.001 13.695 0.221 14.089 0.615 C 14.483 1.009 14.705 1.544 14.704 2.102 L 14.704 7.372 Z\" fill=\"rgb(46,182,125)\"></path><path d=\"M 12.602 15.755 C 13.16 15.754 13.695 15.976 14.089 16.37 C 14.483 16.764 14.705 17.299 14.704 17.857 C 14.705 18.415 14.483 18.95 14.089 19.344 C 13.695 19.738 13.16 19.96 12.602 19.959 C 12.044 19.96 11.509 19.738 11.115 19.344 C 10.721 18.95 10.499 18.415 10.5 17.857 L 10.5 15.755 Z M 12.602 14.705 C 12.044 14.706 11.509 14.484 11.115 14.09 C 10.72 13.695 10.499 13.16 10.5 12.602 C 10.499 12.044 10.721 11.509 11.115 11.115 C 11.509 10.721 12.044 10.499 12.602 10.5 L 17.873 10.5 C 18.431 10.499 18.966 10.721 19.36 11.115 C 19.754 11.509 19.976 12.044 19.975 12.602 C 19.976 13.16 19.754 13.695 19.36 14.089 C 18.966 14.483 18.431 14.705 17.873 14.704 L 12.603 14.704 Z\" fill=\"rgb(236,178,46)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-1tesh6j\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 53.758 16.896\" overflow=\"visible\"><path d=\"M 0 15.446 L 0.987 13.153 C 2.054 13.95 3.471 14.363 4.872 14.363 C 5.907 14.363 6.56 13.966 6.56 13.36 C 6.544 11.672 0.366 12.994 0.318 8.759 C 0.302 6.609 2.213 4.953 4.92 4.953 C 6.528 4.953 8.137 5.351 9.283 6.259 L 8.36 8.599 C 7.309 7.931 6.003 7.453 4.76 7.453 C 3.917 7.453 3.36 7.851 3.36 8.36 C 3.375 10.016 9.602 9.109 9.665 13.153 C 9.665 15.351 7.802 16.896 5.127 16.896 C 3.168 16.896 1.369 16.434 0 15.446 Z M 37.882 12.326 L 40.605 13.838 C 39.556 15.73 37.561 16.902 35.398 16.896 C 32.1 16.895 29.427 14.222 29.426 10.924 C 29.427 7.626 32.1 4.954 35.398 4.953 C 37.558 4.958 39.548 6.126 40.605 8.01 L 37.882 9.523 C 37.374 8.629 36.426 8.076 35.398 8.073 C 34.642 8.072 33.916 8.372 33.382 8.907 C 32.847 9.442 32.547 10.168 32.548 10.924 C 32.547 11.68 32.847 12.405 33.382 12.94 C 33.917 13.475 34.642 13.775 35.398 13.774 C 36.465 13.774 37.388 13.185 37.882 12.325 Z M 11.035 0 L 14.442 0 L 14.442 16.672 L 11.035 16.672 L 11.035 0.001 Z M 41.942 0 L 45.35 0 L 45.35 9.793 L 49.203 5.191 L 53.375 5.191 L 48.615 10.732 L 53.758 16.672 L 49.393 16.672 L 45.349 11.672 L 45.349 16.672 L 41.941 16.672 L 41.941 0.001 Z M 24.57 12.357 L 24.57 9.539 C 24.076 8.711 23.057 8.074 21.91 8.074 C 21.154 8.073 20.429 8.373 19.894 8.908 C 19.359 9.443 19.059 10.168 19.06 10.924 C 19.059 11.68 19.36 12.405 19.894 12.94 C 20.429 13.474 21.154 13.775 21.91 13.774 C 23.057 13.774 24.076 13.169 24.57 12.357 Z M 24.57 5.192 L 27.977 5.192 L 27.977 16.657 L 24.57 16.657 L 24.57 15.303 C 24.012 16.243 22.627 16.896 21.178 16.896 C 18.184 16.896 15.828 14.22 15.828 10.908 C 15.828 7.596 18.184 4.953 21.178 4.953 C 22.627 4.953 24.012 5.606 24.57 6.545 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1sg9jn6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.665 11.943\" overflow=\"visible\"><path d=\"M 0 10.493 L 0.987 8.2 C 2.054 8.997 3.471 9.41 4.872 9.41 C 5.907 9.41 6.56 9.013 6.56 8.407 C 6.544 6.719 0.366 8.041 0.318 3.806 C 0.302 1.656 2.213 0 4.92 0 C 6.528 0 8.137 0.398 9.283 1.306 L 8.36 3.646 C 7.309 2.978 6.003 2.5 4.76 2.5 C 3.917 2.5 3.36 2.898 3.36 3.407 C 3.375 5.063 9.602 4.156 9.665 8.2 C 9.665 10.398 7.802 11.943 5.127 11.943 C 3.168 11.943 1.369 11.481 0 10.493 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j2h092\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.179 11.943\" overflow=\"visible\"><path d=\"M 8.456 7.373 L 11.179 8.885 C 10.13 10.777 8.135 11.949 5.972 11.943 C 2.674 11.942 0.001 9.269 0 5.971 C 0.001 2.673 2.674 0.001 5.972 0 C 8.132 0.005 10.122 1.173 11.179 3.057 L 8.456 4.57 C 7.948 3.676 7 3.123 5.972 3.12 C 5.216 3.119 4.49 3.419 3.956 3.954 C 3.421 4.489 3.121 5.215 3.122 5.971 C 3.121 6.727 3.421 7.452 3.956 7.987 C 4.491 8.522 5.216 8.822 5.972 8.821 C 7.039 8.821 7.962 8.232 8.456 7.372 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f5awrr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.407 16.672\" overflow=\"visible\"><path d=\"M 0 0 L 3.407 0 L 3.407 16.672 L 0 16.672 L 0 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6iing2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.817 16.672\" overflow=\"visible\"><path d=\"M 0.001 0 L 3.409 0 L 3.409 9.793 L 7.262 5.191 L 11.434 5.191 L 6.674 10.732 L 11.817 16.672 L 7.452 16.672 L 3.408 11.672 L 3.408 16.672 L 0 16.672 L 0 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fe5mh2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.51 5.7\" overflow=\"visible\"><path d=\"M 5.51 4.283 L 5.51 1.465 C 5.016 0.637 3.997 0 2.85 0 C 2.094 -0.001 1.369 0.299 0.834 0.834 C 0.299 1.369 -0.001 2.094 0 2.85 C -0.001 3.606 0.3 4.331 0.834 4.866 C 1.369 5.4 2.094 5.701 2.85 5.7 C 3.997 5.7 5.016 5.095 5.51 4.283 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-peropl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.149 11.943\" overflow=\"visible\"><path d=\"M 8.742 0.239 L 12.149 0.239 L 12.149 11.704 L 8.742 11.704 L 8.742 10.35 C 8.184 11.29 6.799 11.943 5.35 11.943 C 2.356 11.943 0 9.267 0 5.955 C 0 2.643 2.356 0 5.35 0 C 6.799 0 8.184 0.653 8.742 1.592 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-awlehm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.459 9.459\" overflow=\"visible\"><path d=\"M 4.204 2.102 C 4.205 2.66 3.983 3.195 3.589 3.589 C 3.195 3.983 2.66 4.205 2.102 4.204 C 1.544 4.205 1.009 3.983 0.615 3.589 C 0.221 3.195 -0.001 2.66 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.009 0.221 1.544 -0.001 2.102 0 L 4.204 0 Z M 5.254 2.102 C 5.253 1.544 5.475 1.009 5.869 0.615 C 6.264 0.22 6.799 -0.001 7.357 0 C 7.915 -0.001 8.45 0.221 8.844 0.615 C 9.238 1.009 9.46 1.544 9.459 2.102 L 9.459 7.357 C 9.46 7.915 9.238 8.45 8.844 8.844 C 8.45 9.238 7.915 9.46 7.357 9.459 C 6.799 9.46 6.264 9.238 5.87 8.844 C 5.476 8.45 5.254 7.915 5.255 7.357 L 5.255 2.102 Z\" fill=\"rgb(224,30,90)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-myutaj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.204 4.204\" overflow=\"visible\"><path d=\"M 4.204 2.102 C 4.205 2.66 3.983 3.195 3.589 3.589 C 3.195 3.983 2.66 4.205 2.102 4.204 C 1.544 4.205 1.009 3.983 0.615 3.589 C 0.221 3.195 -0.001 2.66 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.009 0.221 1.544 -0.001 2.102 0 L 4.204 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t4cz66\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.205 9.459\" overflow=\"visible\"><path d=\"M 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.01 0.22 1.545 -0.001 2.103 0 C 2.661 -0.001 3.196 0.221 3.59 0.615 C 3.984 1.009 4.206 1.544 4.205 2.102 L 4.205 7.357 C 4.206 7.915 3.984 8.45 3.59 8.844 C 3.196 9.238 2.661 9.46 2.103 9.459 C 1.545 9.46 1.01 9.238 0.616 8.844 C 0.222 8.45 0 7.915 0.001 7.357 L 0.001 2.102 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-pj68hu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.475 9.475\" overflow=\"visible\"><path d=\"M 7.373 4.204 C 6.815 4.205 6.28 3.984 5.885 3.589 C 5.491 3.195 5.269 2.66 5.27 2.102 C 5.269 1.544 5.491 1.009 5.885 0.615 C 6.28 0.22 6.815 -0.001 7.373 0 C 7.931 -0.001 8.466 0.221 8.86 0.615 C 9.254 1.009 9.476 1.544 9.475 2.102 L 9.475 4.204 Z M 7.373 5.271 C 7.931 5.27 8.466 5.492 8.86 5.886 C 9.254 6.28 9.476 6.815 9.475 7.373 C 9.476 7.931 9.254 8.466 8.86 8.86 C 8.466 9.254 7.931 9.476 7.373 9.475 L 2.102 9.475 C 1.544 9.476 1.009 9.254 0.615 8.86 C 0.221 8.466 -0.001 7.931 0 7.373 C -0.001 6.815 0.22 6.28 0.615 5.885 C 1.009 5.491 1.544 5.269 2.102 5.27 L 7.372 5.27 Z\" fill=\"rgb(54,197,240)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-tcy7e0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.205 4.204\" overflow=\"visible\"><path d=\"M 2.103 4.204 C 1.545 4.205 1.01 3.984 0.615 3.589 C 0.221 3.195 -0.001 2.66 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.01 0.22 1.545 -0.001 2.103 0 C 2.661 -0.001 3.196 0.221 3.59 0.615 C 3.984 1.009 4.206 1.544 4.205 2.102 L 4.205 4.204 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j0hf7o\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.475 4.205\" overflow=\"visible\"><path d=\"M 7.373 0.001 C 7.931 0 8.466 0.222 8.86 0.616 C 9.254 1.01 9.476 1.545 9.475 2.103 C 9.476 2.661 9.254 3.196 8.86 3.59 C 8.466 3.984 7.931 4.206 7.373 4.205 L 2.102 4.205 C 1.544 4.206 1.009 3.984 0.615 3.59 C 0.221 3.196 -0.001 2.661 0 2.103 C -0.001 1.545 0.22 1.01 0.615 0.615 C 1.009 0.221 1.544 -0.001 2.102 0 L 7.372 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-51jqdd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.459 9.475\" overflow=\"visible\"><path d=\"M 5.255 7.373 C 5.254 6.815 5.476 6.28 5.87 5.886 C 6.264 5.492 6.799 5.27 7.357 5.271 C 7.915 5.27 8.45 5.492 8.844 5.886 C 9.238 6.28 9.46 6.815 9.459 7.373 C 9.46 7.931 9.238 8.466 8.844 8.86 C 8.45 9.254 7.915 9.476 7.357 9.475 L 5.255 9.475 Z M 4.205 7.373 C 4.206 7.931 3.984 8.466 3.59 8.86 C 3.195 9.255 2.66 9.476 2.102 9.475 C 1.544 9.476 1.009 9.254 0.615 8.86 C 0.221 8.466 -0.001 7.931 0 7.373 L 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.009 0.221 1.544 -0.001 2.102 0 C 2.66 -0.001 3.195 0.221 3.589 0.615 C 3.983 1.009 4.205 1.544 4.204 2.102 L 4.204 7.372 Z\" fill=\"rgb(46,182,125)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-c5rhzu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.204 4.204\" overflow=\"visible\"><path d=\"M 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.009 0.221 1.544 -0.001 2.102 0 C 2.66 -0.001 3.195 0.221 3.589 0.615 C 3.983 1.009 4.205 1.544 4.204 2.102 C 4.205 2.66 3.983 3.195 3.589 3.589 C 3.195 3.983 2.66 4.205 2.102 4.204 L 0 4.204 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n46sza\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.205 9.475\" overflow=\"visible\"><path d=\"M 4.205 7.373 C 4.206 7.931 3.984 8.466 3.59 8.86 C 3.195 9.255 2.66 9.476 2.102 9.475 C 1.544 9.476 1.009 9.254 0.615 8.86 C 0.221 8.466 -0.001 7.931 0 7.373 L 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.009 0.221 1.544 -0.001 2.102 0 C 2.66 -0.001 3.195 0.221 3.589 0.615 C 3.983 1.009 4.205 1.544 4.204 2.102 L 4.204 7.372 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-120r6bp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.475 9.459\" overflow=\"visible\"><path d=\"M 2.102 5.255 C 2.66 5.254 3.195 5.476 3.589 5.87 C 3.983 6.264 4.205 6.799 4.204 7.357 C 4.205 7.915 3.983 8.45 3.589 8.844 C 3.195 9.238 2.66 9.46 2.102 9.459 C 1.544 9.46 1.009 9.238 0.615 8.844 C 0.221 8.45 -0.001 7.915 0 7.357 L 0 5.255 Z M 2.102 4.205 C 1.544 4.206 1.009 3.984 0.615 3.59 C 0.22 3.195 -0.001 2.66 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.009 0.221 1.544 -0.001 2.102 0 L 7.373 0 C 7.931 -0.001 8.466 0.221 8.86 0.615 C 9.254 1.009 9.476 1.544 9.475 2.102 C 9.476 2.66 9.254 3.195 8.86 3.589 C 8.466 3.983 7.931 4.205 7.373 4.204 L 2.103 4.204 Z\" fill=\"rgb(236,178,46)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1kgtkjw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.204 4.204\" overflow=\"visible\"><path d=\"M 2.102 0 C 2.66 -0.001 3.195 0.221 3.589 0.615 C 3.983 1.009 4.205 1.544 4.204 2.102 C 4.205 2.66 3.983 3.195 3.589 3.589 C 3.195 3.983 2.66 4.205 2.102 4.204 C 1.544 4.205 1.009 3.983 0.615 3.589 C 0.221 3.195 -0.001 2.66 0 2.102 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9i3lbt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.475 4.205\" overflow=\"visible\"><path d=\"M 2.102 4.205 C 1.544 4.206 1.009 3.984 0.615 3.59 C 0.22 3.195 -0.001 2.66 0 2.102 C -0.001 1.544 0.221 1.009 0.615 0.615 C 1.009 0.221 1.544 -0.001 2.102 0 L 7.373 0 C 7.931 -0.001 8.466 0.221 8.86 0.615 C 9.254 1.009 9.476 1.544 9.475 2.102 C 9.476 2.66 9.254 3.195 8.86 3.589 C 8.466 3.983 7.931 4.205 7.373 4.204 L 2.103 4.204 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4aeva2\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-p035u0\",\"data-framer-name\":\"segment\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 97.701 19.999\" overflow=\"visible\"><path d=\"M 17.628 10.713 L 17.641 10.713 L 18.991 10.855 C 19.086 10.864 19.173 10.911 19.235 10.984 L 19.245 10.996 L 19.232 11.002 C 19.295 11.082 19.322 11.184 19.309 11.285 C 19.014 13.63 17.902 15.797 16.169 17.405 C 13.449 19.926 9.532 20.682 6.07 19.353 L 6.01 19.33 C 5.919 19.296 5.846 19.227 5.807 19.138 L 5.801 19.124 C 5.763 19.036 5.761 18.937 5.795 18.848 L 6.328 17.548 C 6.4 17.364 6.604 17.27 6.79 17.336 L 6.802 17.341 C 9.527 18.393 12.613 17.8 14.754 15.814 C 16.117 14.561 16.996 12.869 17.237 11.034 C 17.262 10.846 17.425 10.707 17.615 10.712 L 17.628 10.712 Z M 49.522 5.193 C 50.673 5.193 51.574 5.545 52.149 6.219 L 52.169 6.242 L 52.169 5.672 C 52.176 5.513 52.299 5.383 52.457 5.368 L 52.47 5.367 L 54.006 5.367 C 54.164 5.377 54.29 5.501 54.304 5.659 L 54.304 14.2 C 54.354 15.402 53.984 16.584 53.259 17.545 C 52.431 18.552 51.174 19.062 49.522 19.062 C 47.225 19.062 45.412 17.609 45.115 15.534 C 45.1 15.384 45.191 15.245 45.333 15.198 L 45.346 15.194 L 46.846 14.841 C 46.928 14.822 47.014 14.838 47.084 14.886 C 47.153 14.933 47.2 15.007 47.212 15.091 C 47.349 16.255 48.35 17.124 49.522 17.096 C 51.297 17.096 52.132 16.194 52.149 14.308 L 52.149 13.503 C 51.484 14.249 50.521 14.661 49.522 14.629 C 46.969 14.629 45.118 12.647 45.118 9.92 C 45.095 8.693 45.526 7.501 46.33 6.575 C 47.146 5.677 48.309 5.173 49.522 5.192 Z M 3.28 15.567 L 3.319 15.567 C 3.931 15.574 4.425 16.068 4.432 16.68 L 4.432 16.718 C 4.421 17.338 3.914 17.834 3.294 17.83 C 2.674 17.827 2.172 17.326 2.168 16.705 C 2.164 16.085 2.66 15.578 3.28 15.567 Z M 76.118 5.075 L 76.198 5.075 C 78.942 5.113 80.643 7.024 80.643 10.082 C 80.643 10.244 80.634 10.405 80.617 10.566 C 80.603 10.713 80.483 10.828 80.335 10.836 L 73.798 10.836 C 73.838 12.206 74.971 13.29 76.342 13.27 C 77.405 13.336 78.372 12.66 78.676 11.64 C 78.732 11.494 78.89 11.414 79.04 11.457 L 79.052 11.461 L 80.354 11.92 C 80.425 11.943 80.484 11.994 80.518 12.061 L 80.524 12.074 C 80.56 12.144 80.566 12.227 80.54 12.302 C 79.935 14.092 78.231 15.277 76.342 15.221 C 75.103 15.233 73.911 14.748 73.032 13.876 C 72.072 12.866 71.559 11.512 71.61 10.12 C 71.61 6.992 73.858 5.113 76.053 5.075 L 76.119 5.075 Z M 39.2 5.075 L 39.203 5.075 C 41.997 5.075 43.733 6.993 43.733 10.082 C 43.732 10.243 43.723 10.405 43.706 10.566 C 43.694 10.714 43.573 10.83 43.424 10.836 L 36.887 10.836 C 36.927 12.209 38.066 13.295 39.44 13.27 C 40.503 13.337 41.472 12.661 41.775 11.64 C 41.829 11.492 41.988 11.412 42.139 11.457 L 42.151 11.461 L 43.453 11.92 C 43.529 11.944 43.591 12 43.623 12.074 C 43.653 12.147 43.653 12.229 43.623 12.302 C 43.019 14.092 41.315 15.276 39.427 15.221 C 38.186 15.234 36.992 14.75 36.111 13.876 C 35.153 12.865 34.64 11.512 34.69 10.12 C 34.69 6.96 36.983 5.075 39.2 5.075 Z M 29.32 5.071 C 30.574 5.071 31.588 5.376 32.338 5.976 C 32.846 6.38 33.222 6.926 33.419 7.545 L 33.42 7.547 C 33.446 7.652 33.384 7.76 33.28 7.792 L 33.269 7.795 L 31.713 8.308 C 31.644 8.335 31.567 8.335 31.498 8.308 C 31.439 8.28 31.395 8.229 31.376 8.167 L 31.368 8.137 C 31.226 7.63 30.763 6.817 29.32 6.817 C 28.294 6.817 27.678 7.407 27.678 7.977 L 27.678 8 C 27.686 8.372 27.888 8.838 28.773 9.015 L 28.8 9.02 L 30.513 9.34 C 32.406 9.722 33.497 10.75 33.518 12.184 L 33.518 12.228 L 33.512 12.202 L 33.512 12.246 C 33.484 13.683 32.094 15.195 29.535 15.195 C 26.535 15.195 25.358 13.498 25.14 12.497 C 25.126 12.392 25.19 12.293 25.29 12.263 L 25.3 12.26 L 26.905 11.76 C 26.933 11.755 26.963 11.755 26.991 11.76 C 27.032 11.758 27.072 11.767 27.109 11.785 L 27.123 11.791 C 27.182 11.819 27.225 11.872 27.241 11.936 C 27.444 12.898 28.313 13.472 29.564 13.472 C 30.728 13.472 31.257 12.862 31.257 12.312 C 31.257 11.766 30.797 11.361 30.001 11.194 L 29.974 11.188 L 28.174 10.838 C 26.497 10.521 25.451 9.478 25.451 8.122 C 25.451 6.47 27.225 5.072 29.32 5.072 Z M 94.012 2.4 L 95.414 2.4 C 95.58 2.41 95.709 2.545 95.716 2.709 L 95.716 5.355 L 97.403 5.355 C 97.566 5.366 97.695 5.499 97.701 5.663 L 97.701 7.086 C 97.696 7.242 97.572 7.369 97.415 7.378 L 95.716 7.378 L 95.716 12.058 C 95.716 12.835 96.023 13.156 96.816 13.156 C 96.976 13.153 97.136 13.141 97.296 13.119 L 97.355 13.111 C 97.442 13.096 97.532 13.12 97.599 13.178 C 97.659 13.234 97.695 13.312 97.701 13.394 L 97.701 14.727 C 97.702 14.861 97.614 14.979 97.486 15.018 C 97.117 15.121 96.735 15.173 96.352 15.173 L 96.3 15.173 C 94.626 15.173 93.581 14.107 93.56 12.383 L 93.56 7.397 L 92.1 7.397 C 91.941 7.387 91.814 7.263 91.8 7.105 L 91.8 5.687 C 91.799 5.522 91.924 5.383 92.088 5.367 L 92.493 5.367 L 92.535 5.366 C 92.993 5.353 93.696 5.167 93.711 4.145 L 93.711 2.72 C 93.71 2.554 93.836 2.415 94.001 2.4 Z M 66.768 5.073 L 66.805 5.075 L 66.801 5.075 C 68.453 5.075 70.12 6.225 70.153 8.738 L 70.153 14.755 C 70.146 14.913 70.023 15.043 69.865 15.059 L 69.852 15.06 L 68.316 15.06 C 68.157 15.05 68.029 14.926 68.015 14.768 L 68.015 9.007 L 68.014 8.963 C 68.004 8.231 67.756 7.053 66.247 7.053 C 65.132 7.053 64.337 7.922 64.322 9.183 L 64.322 14.755 C 64.315 14.914 64.192 15.043 64.033 15.059 L 64.02 15.06 L 62.465 15.06 C 62.306 15.05 62.179 14.926 62.165 14.768 L 62.163 14.755 L 62.163 8.963 C 62.153 8.231 61.905 7.053 60.396 7.053 C 59.236 7.053 58.452 7.915 58.436 9.203 L 58.436 14.754 C 58.428 14.913 58.305 15.042 58.147 15.058 L 58.135 15.059 L 56.598 15.059 C 56.441 15.048 56.314 14.924 56.301 14.767 L 56.3 14.754 L 56.3 5.652 C 56.307 5.494 56.428 5.365 56.585 5.348 L 58.077 5.348 C 58.235 5.357 58.363 5.481 58.377 5.639 L 58.378 5.652 L 58.378 6.201 C 59.043 5.471 59.989 5.061 60.976 5.075 C 62.119 5.041 63.186 5.645 63.745 6.643 C 64.409 5.627 65.555 5.032 66.768 5.073 Z M 89.775 6.207 C 90.364 6.982 90.667 7.937 90.636 8.908 L 90.634 8.95 L 90.634 14.755 C 90.627 14.912 90.506 15.041 90.349 15.059 L 90.336 15.06 L 88.781 15.06 C 88.622 15.05 88.494 14.926 88.48 14.768 L 88.479 14.755 L 88.479 9.261 C 88.479 7.824 87.802 7.092 86.519 7.092 C 85.952 7.073 85.41 7.326 85.059 7.772 C 84.72 8.261 84.545 8.845 84.559 9.441 L 84.559 14.756 C 84.551 14.914 84.429 15.042 84.271 15.059 L 84.258 15.06 L 82.704 15.06 C 82.546 15.05 82.418 14.926 82.404 14.768 L 82.403 14.755 L 82.403 5.645 C 82.411 5.486 82.533 5.357 82.691 5.342 L 82.704 5.341 L 84.222 5.341 C 84.379 5.351 84.506 5.475 84.519 5.633 L 84.519 6.287 C 85.17 5.498 86.147 5.052 87.169 5.075 C 88.165 5.032 89.126 5.449 89.774 6.207 Z M 0.371 11.102 L 11.414 11.102 C 11.616 11.103 11.781 11.265 11.786 11.467 L 11.786 12.863 C 11.788 13.065 11.628 13.232 11.426 13.241 L 0.372 13.241 C 0.17 13.239 0.005 13.078 0 12.876 L 0 11.467 C 0.006 11.27 0.162 11.111 0.358 11.102 L 0.372 11.102 Z M 49.788 7.112 C 48.274 7.112 47.312 8.189 47.312 9.922 C 47.312 11.654 48.262 12.728 49.788 12.728 C 51.244 12.728 52.226 11.599 52.226 9.921 C 52.226 8.241 51.244 7.111 49.788 7.111 Z M 36.955 8.986 L 36.951 9.02 L 41.516 9.02 C 41.404 7.8 40.545 7.04 39.258 7.025 L 39.218 7.025 C 38.087 7.007 37.12 7.832 36.96 8.952 L 36.954 8.986 Z M 73.879 8.986 L 73.875 9.02 L 78.439 9.02 C 78.329 7.8 77.469 7.04 76.182 7.025 L 76.142 7.025 C 75.011 7.006 74.043 7.832 73.883 8.952 Z M 12.797 0.552 C 12.893 0.586 12.97 0.658 13.012 0.751 C 13.05 0.844 13.05 0.949 13.012 1.043 L 12.531 2.326 C 12.464 2.515 12.256 2.616 12.066 2.55 C 9.545 1.67 6.748 2.171 4.688 3.87 C 3.405 4.944 2.493 6.397 2.084 8.02 C 2.042 8.184 1.894 8.299 1.724 8.3 L 1.641 8.3 L 0.319 7.98 C 0.221 7.956 0.136 7.894 0.085 7.807 L 0.079 7.807 C 0.025 7.719 0.01 7.614 0.037 7.515 C 0.562 5.436 1.736 3.579 3.389 2.215 C 6.018 0.052 9.586 -0.579 12.797 0.553 Z M 7.906 6.095 L 18.95 6.095 C 19.148 6.096 19.31 6.251 19.321 6.447 L 19.321 7.843 C 19.323 8.045 19.164 8.212 18.962 8.221 L 7.906 8.221 C 7.705 8.218 7.541 8.057 7.536 7.856 L 7.536 6.473 C 7.534 6.272 7.691 6.105 7.892 6.095 Z M 15.572 1.877 L 15.61 1.877 C 16.222 1.883 16.717 2.377 16.724 2.99 L 16.724 3.028 C 16.714 3.648 16.206 4.144 15.585 4.14 C 14.965 4.137 14.463 3.634 14.46 3.014 C 14.457 2.394 14.954 1.887 15.574 1.877 Z\" fill=\"rgb(79,181,139)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-obczje\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.541 9.287\" overflow=\"visible\"><path d=\"M 11.857 0.001 L 11.87 0.001 L 13.22 0.143 C 13.315 0.153 13.402 0.199 13.464 0.272 L 13.474 0.284 L 13.461 0.29 C 13.524 0.37 13.551 0.472 13.538 0.573 C 13.243 2.919 12.131 5.085 10.398 6.693 C 7.678 9.215 3.761 9.97 0.299 8.641 L 0.239 8.618 C 0.148 8.584 0.074 8.515 0.036 8.426 L 0.03 8.412 C -0.008 8.324 -0.01 8.225 0.024 8.136 L 0.557 6.836 C 0.629 6.653 0.833 6.559 1.019 6.624 L 1.031 6.629 C 3.756 7.681 6.842 7.089 8.983 5.102 C 10.346 3.85 11.225 2.158 11.466 0.322 C 11.491 0.134 11.654 -0.005 11.844 0 L 11.857 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sdwrsv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.195 13.87\" overflow=\"visible\"><path d=\"M 4.409 0.001 C 5.56 0.001 6.461 0.353 7.036 1.027 L 7.056 1.05 L 7.056 0.48 C 7.063 0.322 7.185 0.192 7.344 0.176 L 7.357 0.175 L 8.893 0.175 C 9.05 0.186 9.177 0.31 9.191 0.467 L 9.191 9.008 C 9.24 10.211 8.871 11.393 8.146 12.353 C 7.318 13.36 6.061 13.87 4.409 13.87 C 2.112 13.87 0.299 12.417 0.002 10.342 C -0.013 10.193 0.077 10.054 0.22 10.006 L 0.233 10.002 L 1.733 9.649 C 1.815 9.631 1.901 9.647 1.97 9.695 C 2.04 9.742 2.086 9.816 2.099 9.899 C 2.236 11.064 3.237 11.933 4.409 11.904 C 6.184 11.904 7.019 11.002 7.036 9.116 L 7.036 8.311 C 6.37 9.058 5.408 9.47 4.409 9.437 C 1.856 9.437 0.005 7.455 0.005 4.728 C -0.019 3.502 0.413 2.31 1.217 1.383 C 2.033 0.486 3.196 -0.018 4.409 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pdebuy\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.264 2.264\" overflow=\"visible\"><path d=\"M 1.112 0 L 1.151 0 C 1.763 0.007 2.257 0.501 2.264 1.113 L 2.264 1.151 C 2.253 1.771 1.746 2.267 1.126 2.264 C 0.506 2.26 0.004 1.759 0 1.139 C -0.004 0.519 0.492 0.011 1.112 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n2h3n1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.036 10.148\" overflow=\"visible\"><path d=\"M 4.511 0 L 4.591 0 C 7.335 0.038 9.036 1.949 9.036 5.007 C 9.036 5.169 9.027 5.33 9.01 5.491 C 8.997 5.639 8.877 5.754 8.728 5.761 L 2.191 5.761 C 2.232 7.131 3.365 8.215 4.735 8.195 C 5.798 8.261 6.766 7.585 7.069 6.565 C 7.125 6.419 7.283 6.34 7.433 6.382 L 7.445 6.386 L 8.747 6.845 C 8.819 6.868 8.878 6.919 8.911 6.986 L 8.917 6.999 C 8.953 7.069 8.959 7.152 8.933 7.227 C 8.329 9.017 6.625 10.202 4.735 10.146 C 3.497 10.158 2.305 9.674 1.425 8.801 C 0.465 7.791 -0.047 6.437 0.003 5.045 C 0.003 1.917 2.251 0.038 4.446 0 L 4.512 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p8gywi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.046 10.148\" overflow=\"visible\"><path d=\"M 4.513 0 L 4.516 0 C 7.31 0 9.046 1.918 9.046 5.007 C 9.045 5.169 9.036 5.33 9.019 5.491 C 9.007 5.639 8.886 5.755 8.737 5.761 L 2.2 5.761 C 2.241 7.135 3.379 8.22 4.753 8.195 C 5.817 8.263 6.785 7.586 7.088 6.565 C 7.142 6.418 7.302 6.338 7.452 6.382 L 7.464 6.386 L 8.766 6.845 C 8.842 6.87 8.904 6.926 8.936 6.999 C 8.966 7.072 8.966 7.154 8.936 7.227 C 8.332 9.017 6.629 10.202 4.74 10.146 C 3.499 10.16 2.305 9.675 1.424 8.801 C 0.466 7.79 -0.046 6.437 0.003 5.045 C 0.003 1.885 2.296 0 4.513 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17r2cba\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.38 10.124\" overflow=\"visible\"><path d=\"M 4.182 0 C 5.436 0 6.45 0.305 7.2 0.905 C 7.708 1.309 8.084 1.855 8.281 2.474 L 8.282 2.476 C 8.308 2.582 8.246 2.69 8.142 2.721 L 8.131 2.724 L 6.575 3.237 C 6.506 3.264 6.429 3.264 6.36 3.237 C 6.301 3.21 6.257 3.158 6.238 3.096 L 6.23 3.066 C 6.088 2.559 5.625 1.746 4.182 1.746 C 3.156 1.746 2.54 2.336 2.54 2.906 L 2.54 2.929 C 2.548 3.301 2.75 3.767 3.635 3.944 L 3.662 3.949 L 5.375 4.269 C 7.268 4.651 8.359 5.679 8.38 7.113 L 8.38 7.157 L 8.374 7.131 L 8.374 7.175 C 8.346 8.612 6.956 10.124 4.397 10.124 C 1.397 10.124 0.22 8.427 0.002 7.426 C -0.012 7.322 0.051 7.223 0.152 7.192 L 0.162 7.189 L 1.767 6.689 C 1.795 6.684 1.824 6.684 1.853 6.689 C 1.894 6.688 1.934 6.696 1.971 6.714 L 1.985 6.72 C 2.044 6.748 2.087 6.802 2.103 6.865 C 2.306 7.827 3.175 8.401 4.426 8.401 C 5.59 8.401 6.119 7.791 6.119 7.241 C 6.119 6.695 5.659 6.29 4.863 6.123 L 4.836 6.117 L 3.036 5.767 C 1.359 5.45 0.313 4.407 0.313 3.051 C 0.313 1.399 2.087 0.001 4.182 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1z0kus4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.901 12.773\" overflow=\"visible\"><path d=\"M 2.212 0 L 3.614 0 C 3.78 0.01 3.909 0.145 3.916 0.309 L 3.916 2.955 L 5.603 2.955 C 5.766 2.967 5.895 3.099 5.901 3.263 L 5.901 4.686 C 5.896 4.843 5.772 4.97 5.615 4.978 L 3.916 4.978 L 3.916 9.658 C 3.916 10.435 4.223 10.756 5.016 10.756 C 5.176 10.753 5.336 10.741 5.496 10.719 L 5.555 10.711 C 5.642 10.696 5.732 10.721 5.799 10.778 C 5.859 10.834 5.895 10.912 5.901 10.994 L 5.901 12.327 C 5.902 12.461 5.814 12.579 5.686 12.618 C 5.317 12.722 4.935 12.774 4.552 12.773 L 4.5 12.773 C 2.826 12.773 1.781 11.707 1.76 9.983 L 1.76 4.997 L 0.3 4.997 C 0.141 4.988 0.014 4.863 0 4.705 L 0 3.287 C -0.001 3.122 0.124 2.983 0.288 2.967 L 0.693 2.967 L 0.735 2.966 C 1.193 2.953 1.896 2.767 1.911 1.745 L 1.911 0.32 C 1.91 0.154 2.036 0.016 2.201 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tnrtgd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.853 9.989\" overflow=\"visible\"><path d=\"M 10.468 0.002 L 10.505 0.004 L 10.501 0.004 C 12.153 0.004 13.82 1.154 13.853 3.667 L 13.853 9.684 C 13.846 9.843 13.723 9.972 13.565 9.988 L 13.552 9.989 L 12.016 9.989 C 11.857 9.98 11.729 9.855 11.715 9.697 L 11.715 3.936 L 11.714 3.892 C 11.704 3.16 11.456 1.982 9.947 1.982 C 8.832 1.982 8.037 2.851 8.022 4.112 L 8.022 9.684 C 8.015 9.843 7.892 9.973 7.733 9.988 L 7.72 9.989 L 6.165 9.989 C 6.006 9.98 5.879 9.855 5.865 9.697 L 5.863 9.684 L 5.863 3.892 C 5.853 3.16 5.605 1.982 4.096 1.982 C 2.936 1.982 2.152 2.844 2.136 4.132 L 2.136 9.683 C 2.128 9.842 2.005 9.971 1.847 9.987 L 1.835 9.988 L 0.298 9.988 C 0.141 9.977 0.014 9.853 0.001 9.696 L 0 9.683 L 0 0.581 C 0.007 0.423 0.128 0.294 0.285 0.277 L 1.777 0.277 C 1.935 0.286 2.063 0.41 2.077 0.568 L 2.078 0.581 L 2.078 1.13 C 2.743 0.401 3.689 -0.009 4.676 0.004 C 5.819 -0.03 6.886 0.574 7.445 1.572 C 8.109 0.557 9.255 -0.039 10.468 0.002 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jit1ai\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.235 9.988\" overflow=\"visible\"><path d=\"M 7.372 1.135 C 7.961 1.91 8.264 2.865 8.233 3.836 L 8.231 3.878 L 8.231 9.683 C 8.224 9.841 8.103 9.97 7.946 9.987 L 7.933 9.988 L 6.378 9.988 C 6.219 9.979 6.091 9.854 6.077 9.696 L 6.076 9.683 L 6.076 4.189 C 6.076 2.752 5.399 2.02 4.116 2.02 C 3.549 2.002 3.007 2.254 2.656 2.7 C 2.317 3.189 2.142 3.774 2.156 4.369 L 2.156 9.684 C 2.148 9.842 2.026 9.971 1.868 9.987 L 1.855 9.988 L 0.301 9.988 C 0.143 9.978 0.015 9.854 0.001 9.696 L 0 9.683 L 0 0.573 C 0.008 0.415 0.13 0.286 0.288 0.27 L 0.301 0.269 L 1.819 0.269 C 1.976 0.28 2.103 0.404 2.116 0.561 L 2.116 1.215 C 2.767 0.427 3.744 -0.02 4.766 0.003 C 5.762 -0.04 6.723 0.378 7.371 1.135 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dt81c2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.786 2.139\" overflow=\"visible\"><path d=\"M 0.371 0 L 11.414 0 C 11.616 0.002 11.781 0.163 11.786 0.365 L 11.786 1.761 C 11.788 1.964 11.628 2.131 11.426 2.139 L 0.372 2.139 C 0.17 2.137 0.005 1.976 0 1.774 L 0 0.365 C 0.006 0.168 0.162 0.009 0.358 0 L 0.372 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eq9eym\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.914 5.617\" overflow=\"visible\"><path d=\"M 2.476 0.001 C 0.962 0.001 0 1.078 0 2.811 C 0 4.543 0.95 5.617 2.476 5.617 C 3.932 5.617 4.914 4.488 4.914 2.81 C 4.914 1.13 3.932 0 2.476 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e0m9hk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.565 1.995\" overflow=\"visible\"><path d=\"M 0.004 1.961 L 0 1.995 L 4.565 1.995 C 4.453 0.775 3.594 0.015 2.307 0 L 2.267 0 C 1.136 -0.018 0.169 0.808 0.009 1.927 L 0.003 1.961 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aiyehv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.564 1.995\" overflow=\"visible\"><path d=\"M 0.004 1.961 L 0 1.995 L 4.564 1.995 C 4.454 0.775 3.594 0.015 2.307 0 L 2.267 0 C 1.136 -0.018 0.168 0.808 0.008 1.927 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6m74z8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.017 8.3\" overflow=\"visible\"><path d=\"M 12.773 0.552 C 12.869 0.586 12.946 0.658 12.988 0.751 C 13.026 0.844 13.026 0.949 12.988 1.043 L 12.507 2.326 C 12.44 2.515 12.232 2.616 12.042 2.55 C 9.521 1.67 6.724 2.171 4.664 3.87 C 3.381 4.944 2.469 6.397 2.06 8.02 C 2.018 8.184 1.87 8.299 1.7 8.3 L 1.617 8.3 L 0.295 7.98 C 0.197 7.956 0.112 7.894 0.061 7.807 L 0.055 7.807 C 0.001 7.719 -0.014 7.614 0.013 7.515 C 0.538 5.436 1.712 3.579 3.365 2.215 C 5.994 0.052 9.562 -0.579 12.773 0.553 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5ei2l8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.785 2.126\" overflow=\"visible\"><path d=\"M 0.37 0 L 11.414 0 C 11.612 0.001 11.774 0.156 11.785 0.352 L 11.785 1.748 C 11.787 1.95 11.628 2.117 11.426 2.126 L 0.37 2.126 C 0.169 2.123 0.005 1.962 0 1.761 L 0 0.378 C -0.002 0.177 0.155 0.01 0.356 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8fbabm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.264 2.264\" overflow=\"visible\"><path d=\"M 1.112 0 L 1.15 0 C 1.762 0.006 2.257 0.501 2.264 1.113 L 2.264 1.151 C 2.253 1.771 1.746 2.268 1.125 2.264 C 0.505 2.26 0.003 1.758 0 1.138 C -0.003 0.517 0.494 0.01 1.114 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0whu9\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1ata4j9\",\"data-framer-name\":\"salesforce\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50 50\" overflow=\"visible\"><g><path d=\"M 0 0 L 50 0 L 50 50 L 0 50 Z\" fill=\"transparent\"></path><path d=\"M 20.812 10.513 C 22.422 8.835 24.665 7.793 27.146 7.793 C 30.443 7.793 33.32 9.633 34.852 12.362 C 36.222 11.75 37.706 11.434 39.207 11.436 C 45.154 11.436 49.975 16.299 49.975 22.298 C 49.975 28.298 45.155 33.161 39.207 33.161 C 38.495 33.162 37.784 33.091 37.086 32.95 C 35.051 36.594 30.525 38.016 26.772 36.19 C 25.364 39.508 22.108 41.662 18.504 41.662 C 14.637 41.662 11.341 39.215 10.076 35.783 C 9.513 35.902 8.939 35.962 8.363 35.962 C 3.758 35.962 0.026 32.191 0.026 27.538 C 0.019 24.538 1.606 21.759 4.194 20.241 C 3.666 19.025 3.394 17.714 3.396 16.388 C 3.396 11.038 7.74 6.7 13.098 6.7 C 16.124 6.697 18.977 8.107 20.812 10.513 Z\" fill=\"rgb(0,161,224)\"></path><path d=\"M 7.26 24.83 C 7.229 24.912 7.272 24.93 7.282 24.943 C 7.376 25.012 7.471 25.061 7.567 25.116 C 8.077 25.386 8.557 25.466 9.061 25.466 C 10.085 25.466 10.721 24.92 10.721 24.043 L 10.721 24.026 C 10.721 23.215 10.003 22.92 9.329 22.707 L 9.242 22.679 C 8.734 22.514 8.296 22.371 8.296 22.037 L 8.296 22.019 C 8.296 21.733 8.552 21.523 8.949 21.523 C 9.39 21.523 9.914 21.669 10.251 21.855 C 10.251 21.855 10.35 21.919 10.386 21.823 C 10.406 21.773 10.576 21.313 10.595 21.263 C 10.614 21.209 10.58 21.169 10.545 21.147 C 10.099 20.888 9.593 20.752 9.077 20.753 L 8.974 20.754 C 8.037 20.754 7.382 21.32 7.382 22.132 L 7.382 22.149 C 7.382 23.005 8.104 23.283 8.781 23.476 L 8.89 23.51 C 9.383 23.661 9.808 23.792 9.808 24.139 L 9.808 24.156 C 9.808 24.473 9.532 24.709 9.086 24.709 C 8.913 24.709 8.362 24.706 7.766 24.329 C 7.694 24.288 7.652 24.257 7.596 24.224 C 7.568 24.205 7.494 24.173 7.462 24.27 Z M 22.26 24.83 C 22.229 24.912 22.272 24.93 22.282 24.943 C 22.375 25.012 22.471 25.061 22.567 25.116 C 23.077 25.386 23.557 25.466 24.061 25.466 C 25.085 25.466 25.721 24.92 25.721 24.043 L 25.721 24.026 C 25.721 23.215 25.003 22.92 24.329 22.707 L 24.242 22.679 C 23.734 22.514 23.295 22.371 23.295 22.037 L 23.295 22.019 C 23.295 21.733 23.552 21.523 23.949 21.523 C 24.389 21.523 24.914 21.669 25.251 21.855 C 25.251 21.855 25.35 21.919 25.386 21.823 C 25.406 21.773 25.576 21.313 25.595 21.263 C 25.614 21.209 25.58 21.169 25.545 21.147 C 25.099 20.888 24.593 20.752 24.077 20.753 L 23.974 20.754 C 23.036 20.754 22.382 21.32 22.382 22.132 L 22.382 22.149 C 22.382 23.005 23.104 23.283 23.781 23.476 L 23.89 23.51 C 24.383 23.661 24.808 23.792 24.808 24.139 L 24.808 24.156 C 24.808 24.473 24.532 24.709 24.086 24.709 C 23.913 24.709 23.362 24.706 22.766 24.329 C 22.694 24.288 22.652 24.259 22.597 24.224 C 22.579 24.211 22.492 24.178 22.462 24.27 Z M 32.5 23.112 C 32.5 23.608 32.408 23.998 32.226 24.274 C 32.046 24.548 31.773 24.681 31.393 24.681 C 31.013 24.681 30.741 24.548 30.564 24.274 C 30.384 23.999 30.294 23.608 30.294 23.112 C 30.294 22.617 30.384 22.227 30.564 21.953 C 30.741 21.683 31.012 21.552 31.394 21.552 C 31.774 21.552 32.046 21.683 32.226 21.954 C 32.408 22.227 32.5 22.617 32.5 23.112 Z M 33.355 22.192 C 33.278 21.921 33.145 21.668 32.966 21.45 C 32.787 21.237 32.563 21.066 32.31 20.95 C 32.021 20.823 31.708 20.76 31.393 20.767 C 31.046 20.767 30.737 20.829 30.476 20.95 C 30.223 21.066 29.998 21.237 29.819 21.45 C 29.645 21.659 29.514 21.91 29.429 22.193 C 29.344 22.492 29.302 22.801 29.304 23.112 C 29.304 23.44 29.346 23.749 29.429 24.032 C 29.514 24.314 29.644 24.565 29.819 24.774 C 29.994 24.984 30.215 25.15 30.476 25.269 C 30.738 25.389 31.046 25.449 31.393 25.449 C 31.74 25.449 32.048 25.389 32.31 25.269 C 32.57 25.15 32.792 24.983 32.966 24.774 C 33.141 24.565 33.272 24.315 33.356 24.031 C 33.44 23.749 33.481 23.439 33.481 23.111 C 33.481 22.785 33.44 22.475 33.355 22.193 Z M 40.379 24.548 C 40.35 24.465 40.27 24.496 40.27 24.496 C 40.142 24.548 40.008 24.586 39.872 24.61 C 39.729 24.632 39.572 24.644 39.403 24.644 C 38.989 24.644 38.661 24.521 38.425 24.277 C 38.189 24.034 38.057 23.64 38.058 23.108 C 38.059 22.624 38.176 22.259 38.386 21.982 C 38.594 21.706 38.912 21.564 39.336 21.564 C 39.688 21.564 39.957 21.604 40.239 21.694 C 40.239 21.694 40.306 21.723 40.339 21.634 C 40.413 21.427 40.469 21.278 40.549 21.05 C 40.571 20.985 40.516 20.957 40.496 20.95 C 40.31 20.885 40.119 20.837 39.925 20.806 C 39.712 20.775 39.498 20.761 39.283 20.762 C 38.923 20.762 38.603 20.823 38.33 20.946 C 38.057 21.068 37.825 21.236 37.64 21.445 C 37.453 21.662 37.312 21.914 37.225 22.187 C 37.132 22.47 37.085 22.78 37.085 23.108 C 37.085 23.818 37.277 24.391 37.655 24.811 C 38.033 25.232 38.602 25.446 39.343 25.446 C 39.756 25.446 40.166 25.373 40.554 25.23 C 40.554 25.23 40.616 25.2 40.589 25.128 Z M 41.875 22.637 C 41.915 22.361 41.992 22.132 42.109 21.954 C 42.287 21.683 42.557 21.534 42.937 21.534 C 43.317 21.534 43.568 21.684 43.748 21.954 C 43.868 22.132 43.92 22.371 43.94 22.637 Z M 44.755 22.031 C 44.682 21.781 44.556 21.55 44.385 21.354 C 44.198 21.154 44.015 21.014 43.835 20.934 C 43.572 20.823 43.29 20.766 43.005 20.767 C 42.644 20.767 42.315 20.827 42.05 20.953 C 41.793 21.071 41.565 21.244 41.383 21.461 C 41.202 21.682 41.069 21.938 40.991 22.213 C 40.904 22.513 40.862 22.824 40.864 23.137 C 40.864 23.471 40.908 23.782 40.995 24.061 C 41.083 24.343 41.225 24.591 41.415 24.797 C 41.605 25.004 41.85 25.167 42.143 25.279 C 42.433 25.392 42.788 25.45 43.193 25.449 C 44.03 25.447 44.47 25.26 44.652 25.159 C 44.684 25.142 44.714 25.111 44.676 25.021 L 44.486 24.491 C 44.458 24.412 44.378 24.441 44.378 24.441 C 44.171 24.518 43.876 24.656 43.19 24.655 C 42.74 24.654 42.408 24.522 42.2 24.315 C 41.985 24.103 41.88 23.791 41.862 23.351 L 44.757 23.354 C 44.757 23.354 44.833 23.353 44.841 23.279 C 44.844 23.247 44.941 22.684 44.755 22.031 Z M 18.689 22.637 C 18.729 22.361 18.805 22.132 18.923 21.954 C 19.1 21.683 19.37 21.534 19.75 21.534 C 20.13 21.534 20.381 21.684 20.562 21.954 C 20.681 22.132 20.732 22.371 20.753 22.637 Z M 21.567 22.031 C 21.494 21.781 21.368 21.55 21.197 21.354 C 21.011 21.154 20.829 21.014 20.648 20.934 C 20.385 20.823 20.103 20.766 19.818 20.767 C 19.458 20.767 19.129 20.827 18.863 20.953 C 18.606 21.071 18.378 21.244 18.196 21.461 C 18.015 21.682 17.882 21.938 17.804 22.213 C 17.718 22.513 17.675 22.825 17.677 23.137 C 17.677 23.471 17.721 23.782 17.808 24.061 C 17.897 24.343 18.038 24.591 18.228 24.797 C 18.418 25.004 18.663 25.167 18.956 25.279 C 19.247 25.392 19.601 25.45 20.007 25.449 C 20.843 25.447 21.284 25.26 21.465 25.159 C 21.497 25.142 21.528 25.111 21.489 25.021 L 21.301 24.491 C 21.271 24.412 21.191 24.441 21.191 24.441 C 20.984 24.518 20.691 24.656 20.002 24.655 C 19.554 24.654 19.221 24.522 19.012 24.315 C 18.798 24.103 18.694 23.791 18.675 23.351 L 21.57 23.354 C 21.57 23.354 21.646 23.353 21.654 23.279 C 21.657 23.247 21.754 22.684 21.567 22.031 Z M 12.431 24.533 C 12.364 24.488 12.307 24.429 12.263 24.361 C 12.2 24.246 12.17 24.116 12.177 23.985 C 12.177 23.73 12.261 23.547 12.435 23.424 C 12.433 23.424 12.685 23.207 13.275 23.214 C 13.69 23.22 14.061 23.282 14.061 23.282 L 14.061 24.598 C 14.061 24.598 13.694 24.677 13.279 24.702 C 12.69 24.737 12.429 24.532 12.431 24.532 Z M 13.582 22.498 C 13.432 22.488 13.281 22.484 13.131 22.485 C 12.882 22.485 12.643 22.516 12.418 22.576 C 12.192 22.637 11.988 22.732 11.813 22.856 C 11.638 22.981 11.494 23.145 11.393 23.334 C 11.287 23.541 11.234 23.77 11.239 24.002 C 11.239 24.258 11.283 24.481 11.371 24.662 C 11.459 24.846 11.587 24.998 11.749 25.115 C 11.909 25.233 12.109 25.319 12.339 25.371 C 12.566 25.423 12.823 25.449 13.105 25.449 C 13.402 25.449 13.698 25.425 13.985 25.376 C 14.268 25.327 14.617 25.256 14.714 25.235 C 14.81 25.212 14.917 25.183 14.917 25.183 C 14.989 25.165 14.983 25.088 14.983 25.088 L 14.981 22.441 C 14.981 21.86 14.826 21.43 14.521 21.163 C 14.217 20.897 13.77 20.763 13.191 20.763 C 12.974 20.763 12.625 20.792 12.416 20.833 C 12.416 20.833 11.783 20.956 11.523 21.16 C 11.523 21.16 11.466 21.195 11.497 21.275 L 11.702 21.825 C 11.728 21.897 11.797 21.873 11.797 21.873 C 11.797 21.873 11.819 21.864 11.844 21.849 C 12.401 21.546 13.106 21.555 13.106 21.555 C 13.419 21.555 13.659 21.618 13.822 21.743 C 13.98 21.863 14.06 22.046 14.06 22.433 L 14.06 22.554 C 13.901 22.532 13.742 22.513 13.582 22.498 Z M 36.933 21.006 C 36.941 20.987 36.941 20.965 36.934 20.946 C 36.926 20.926 36.91 20.911 36.891 20.903 C 36.732 20.859 36.569 20.831 36.405 20.819 C 36.042 20.797 35.84 20.859 35.659 20.939 C 35.479 21.021 35.28 21.152 35.169 21.3 L 35.169 20.948 C 35.169 20.899 35.135 20.86 35.086 20.86 L 34.344 20.86 C 34.296 20.86 34.261 20.899 34.261 20.948 L 34.261 25.267 C 34.261 25.315 34.301 25.355 34.349 25.355 L 35.109 25.355 C 35.158 25.355 35.197 25.315 35.197 25.267 L 35.197 23.109 C 35.197 22.819 35.229 22.531 35.293 22.349 C 35.356 22.169 35.441 22.026 35.546 21.923 C 35.647 21.824 35.769 21.75 35.904 21.708 C 36.039 21.667 36.187 21.653 36.293 21.653 C 36.444 21.653 36.611 21.693 36.611 21.693 C 36.666 21.699 36.698 21.665 36.716 21.614 C 36.766 21.482 36.906 21.085 36.934 21.006 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 29.794 19.005 C 29.574 18.938 29.344 18.905 29.114 18.907 C 28.591 18.907 28.178 19.055 27.889 19.347 C 27.601 19.637 27.405 20.079 27.307 20.66 L 27.271 20.856 L 26.614 20.856 C 26.614 20.856 26.534 20.853 26.517 20.94 L 26.409 21.542 C 26.402 21.599 26.427 21.636 26.503 21.636 L 27.143 21.636 L 26.494 25.259 C 26.444 25.55 26.385 25.79 26.32 25.972 C 26.257 26.152 26.195 26.286 26.118 26.384 C 26.054 26.479 25.962 26.55 25.854 26.589 C 25.754 26.622 25.639 26.638 25.513 26.638 C 25.443 26.638 25.35 26.626 25.281 26.612 C 25.227 26.602 25.174 26.585 25.124 26.562 C 25.124 26.562 25.05 26.533 25.02 26.608 C 24.996 26.67 24.826 27.138 24.805 27.196 C 24.785 27.254 24.814 27.299 24.85 27.312 C 25.07 27.397 25.304 27.437 25.539 27.429 C 25.805 27.429 26.048 27.392 26.249 27.319 C 26.451 27.246 26.628 27.119 26.784 26.947 C 26.951 26.758 27.079 26.537 27.16 26.298 C 27.26 26.035 27.346 25.708 27.415 25.326 L 28.067 21.636 L 29.021 21.636 C 29.021 21.636 29.101 21.638 29.117 21.551 L 29.226 20.949 C 29.233 20.891 29.209 20.856 29.131 20.856 L 28.205 20.856 C 28.21 20.836 28.252 20.509 28.358 20.202 C 28.402 20.086 28.472 19.981 28.561 19.894 C 28.629 19.825 28.712 19.773 28.804 19.743 C 28.904 19.712 29.009 19.697 29.114 19.699 C 29.245 19.699 29.375 19.719 29.5 19.759 C 29.595 19.787 29.608 19.759 29.626 19.714 L 29.848 19.106 C 29.87 19.041 29.814 19.013 29.794 19.005 Z M 16.86 25.267 C 16.86 25.315 16.825 25.354 16.777 25.354 L 16.009 25.354 C 15.961 25.354 15.927 25.315 15.927 25.267 L 15.927 19.087 C 15.927 19.039 15.961 19 16.009 19 L 16.777 19 C 16.825 19 16.86 19.04 16.86 19.088 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cc4vts\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50 50\" overflow=\"visible\"><path d=\"M 0 0 L 50 0 L 50 50 L 0 50 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3inb66\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49.949 34.962\" overflow=\"visible\"><path d=\"M 20.786 3.813 C 22.396 2.135 24.639 1.093 27.12 1.093 C 30.417 1.093 33.294 2.933 34.826 5.662 C 36.196 5.05 37.68 4.734 39.181 4.736 C 45.128 4.736 49.949 9.599 49.949 15.598 C 49.949 21.598 45.129 26.461 39.181 26.461 C 38.469 26.462 37.758 26.391 37.06 26.25 C 35.025 29.894 30.499 31.316 26.746 29.49 C 25.338 32.808 22.082 34.962 18.478 34.962 C 14.611 34.962 11.315 32.515 10.05 29.083 C 9.487 29.202 8.913 29.262 8.337 29.262 C 3.732 29.262 0 25.491 0 20.838 C -0.007 17.838 1.58 15.059 4.168 13.541 C 3.64 12.325 3.368 11.014 3.37 9.688 C 3.37 4.338 7.714 0 13.072 0 C 16.098 -0.003 18.951 1.407 20.786 3.813 Z\" fill=\"rgb(0,161,224)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-103rh49\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 37.62 4.713\" overflow=\"visible\"><path d=\"M 0.011 4.077 C -0.02 4.159 0.023 4.177 0.033 4.19 C 0.127 4.259 0.222 4.308 0.318 4.363 C 0.828 4.633 1.308 4.713 1.812 4.713 C 2.836 4.713 3.472 4.167 3.472 3.29 L 3.472 3.273 C 3.472 2.462 2.754 2.167 2.08 1.954 L 1.993 1.926 C 1.485 1.761 1.047 1.618 1.047 1.284 L 1.047 1.266 C 1.047 0.98 1.303 0.77 1.7 0.77 C 2.141 0.77 2.665 0.916 3.002 1.102 C 3.002 1.102 3.101 1.166 3.137 1.07 C 3.157 1.02 3.327 0.56 3.346 0.51 C 3.365 0.456 3.331 0.416 3.296 0.394 C 2.85 0.135 2.344 -0.001 1.828 0 L 1.725 0.001 C 0.788 0.001 0.133 0.567 0.133 1.379 L 0.133 1.396 C 0.133 2.252 0.855 2.53 1.532 2.723 L 1.641 2.757 C 2.134 2.908 2.559 3.039 2.559 3.386 L 2.559 3.403 C 2.559 3.72 2.283 3.956 1.837 3.956 C 1.664 3.956 1.113 3.953 0.517 3.576 C 0.445 3.535 0.403 3.504 0.347 3.471 C 0.319 3.452 0.245 3.42 0.213 3.517 Z M 15.011 4.077 C 14.98 4.159 15.023 4.177 15.033 4.19 C 15.126 4.259 15.222 4.308 15.318 4.363 C 15.828 4.633 16.308 4.713 16.812 4.713 C 17.836 4.713 18.472 4.167 18.472 3.29 L 18.472 3.273 C 18.472 2.462 17.754 2.167 17.08 1.954 L 16.993 1.926 C 16.485 1.761 16.046 1.618 16.046 1.284 L 16.046 1.266 C 16.046 0.98 16.303 0.77 16.7 0.77 C 17.14 0.77 17.665 0.916 18.002 1.102 C 18.002 1.102 18.101 1.166 18.137 1.07 C 18.157 1.02 18.327 0.56 18.346 0.51 C 18.365 0.456 18.331 0.416 18.296 0.394 C 17.85 0.135 17.344 -0.001 16.828 0 L 16.725 0.001 C 15.787 0.001 15.133 0.567 15.133 1.379 L 15.133 1.396 C 15.133 2.252 15.855 2.53 16.532 2.723 L 16.641 2.757 C 17.134 2.908 17.559 3.039 17.559 3.386 L 17.559 3.403 C 17.559 3.72 17.283 3.956 16.837 3.956 C 16.664 3.956 16.113 3.953 15.517 3.576 C 15.445 3.535 15.403 3.506 15.348 3.471 C 15.33 3.458 15.243 3.425 15.213 3.517 Z M 25.251 2.359 C 25.251 2.855 25.159 3.245 24.977 3.521 C 24.797 3.795 24.524 3.928 24.144 3.928 C 23.764 3.928 23.492 3.795 23.315 3.521 C 23.135 3.246 23.045 2.855 23.045 2.359 C 23.045 1.864 23.135 1.474 23.315 1.2 C 23.492 0.93 23.763 0.799 24.145 0.799 C 24.525 0.799 24.797 0.93 24.977 1.201 C 25.159 1.474 25.251 1.864 25.251 2.359 Z M 26.106 1.439 C 26.029 1.168 25.896 0.915 25.717 0.697 C 25.538 0.484 25.314 0.313 25.061 0.197 C 24.772 0.07 24.459 0.007 24.144 0.014 C 23.797 0.014 23.488 0.076 23.227 0.197 C 22.974 0.313 22.75 0.484 22.57 0.697 C 22.396 0.906 22.265 1.157 22.18 1.44 C 22.095 1.739 22.053 2.048 22.055 2.359 C 22.055 2.687 22.097 2.996 22.18 3.279 C 22.265 3.561 22.395 3.812 22.57 4.021 C 22.745 4.231 22.966 4.397 23.227 4.516 C 23.489 4.636 23.797 4.696 24.144 4.696 C 24.491 4.696 24.799 4.636 25.061 4.516 C 25.321 4.397 25.543 4.23 25.717 4.021 C 25.892 3.812 26.023 3.562 26.107 3.278 C 26.191 2.996 26.232 2.686 26.232 2.358 C 26.232 2.032 26.191 1.722 26.106 1.44 Z M 33.13 3.795 C 33.101 3.712 33.021 3.743 33.021 3.743 C 32.893 3.795 32.759 3.833 32.623 3.857 C 32.48 3.879 32.323 3.891 32.154 3.891 C 31.74 3.891 31.412 3.768 31.176 3.524 C 30.94 3.281 30.808 2.887 30.809 2.355 C 30.81 1.871 30.927 1.506 31.137 1.229 C 31.345 0.953 31.663 0.811 32.087 0.811 C 32.439 0.811 32.708 0.851 32.99 0.941 C 32.99 0.941 33.057 0.97 33.09 0.881 C 33.164 0.674 33.22 0.525 33.3 0.297 C 33.322 0.232 33.267 0.204 33.247 0.197 C 33.061 0.132 32.87 0.084 32.676 0.053 C 32.463 0.022 32.249 0.008 32.034 0.009 C 31.674 0.009 31.354 0.07 31.081 0.193 C 30.808 0.315 30.576 0.483 30.391 0.692 C 30.204 0.909 30.063 1.161 29.976 1.434 C 29.883 1.717 29.836 2.027 29.836 2.355 C 29.836 3.065 30.028 3.638 30.406 4.058 C 30.784 4.479 31.353 4.693 32.094 4.693 C 32.507 4.693 32.917 4.62 33.305 4.477 C 33.305 4.477 33.367 4.447 33.34 4.375 Z M 34.626 1.884 C 34.666 1.608 34.743 1.379 34.86 1.201 C 35.038 0.93 35.308 0.781 35.688 0.781 C 36.068 0.781 36.319 0.931 36.499 1.201 C 36.619 1.379 36.671 1.618 36.691 1.884 Z M 37.506 1.278 C 37.433 1.028 37.307 0.797 37.136 0.601 C 36.949 0.401 36.766 0.261 36.586 0.181 C 36.323 0.07 36.041 0.013 35.756 0.014 C 35.395 0.014 35.066 0.074 34.801 0.2 C 34.544 0.318 34.316 0.491 34.134 0.708 C 33.953 0.929 33.82 1.185 33.742 1.46 C 33.656 1.76 33.613 2.072 33.615 2.384 C 33.615 2.718 33.659 3.029 33.746 3.308 C 33.834 3.59 33.976 3.838 34.166 4.044 C 34.356 4.251 34.601 4.414 34.894 4.526 C 35.184 4.639 35.539 4.697 35.944 4.696 C 36.781 4.694 37.221 4.507 37.403 4.406 C 37.435 4.389 37.465 4.358 37.427 4.268 L 37.237 3.738 C 37.209 3.659 37.129 3.688 37.129 3.688 C 36.922 3.765 36.627 3.903 35.941 3.902 C 35.491 3.901 35.159 3.769 34.951 3.562 C 34.736 3.35 34.631 3.038 34.613 2.598 L 37.508 2.601 C 37.508 2.601 37.584 2.6 37.592 2.526 C 37.595 2.494 37.692 1.931 37.506 1.278 Z M 11.44 1.884 C 11.48 1.608 11.556 1.379 11.674 1.201 C 11.851 0.93 12.121 0.781 12.501 0.781 C 12.881 0.781 13.132 0.931 13.313 1.201 C 13.432 1.379 13.483 1.618 13.504 1.884 Z M 14.318 1.278 C 14.245 1.028 14.119 0.797 13.948 0.601 C 13.762 0.401 13.58 0.261 13.399 0.181 C 13.136 0.07 12.854 0.013 12.569 0.014 C 12.209 0.014 11.88 0.074 11.614 0.2 C 11.357 0.318 11.129 0.491 10.947 0.708 C 10.766 0.929 10.633 1.185 10.555 1.46 C 10.469 1.76 10.426 2.072 10.428 2.384 C 10.428 2.718 10.472 3.029 10.559 3.308 C 10.648 3.59 10.789 3.838 10.979 4.044 C 11.169 4.251 11.414 4.414 11.707 4.526 C 11.998 4.639 12.352 4.697 12.758 4.696 C 13.594 4.694 14.035 4.507 14.216 4.406 C 14.248 4.389 14.279 4.358 14.24 4.268 L 14.052 3.738 C 14.022 3.659 13.942 3.688 13.942 3.688 C 13.735 3.765 13.442 3.903 12.753 3.902 C 12.305 3.901 11.972 3.769 11.763 3.562 C 11.549 3.35 11.445 3.038 11.426 2.598 L 14.321 2.601 C 14.321 2.601 14.397 2.6 14.405 2.526 C 14.408 2.494 14.505 1.931 14.318 1.278 Z M 5.182 3.78 C 5.115 3.735 5.058 3.676 5.014 3.608 C 4.951 3.493 4.921 3.363 4.928 3.232 C 4.928 2.977 5.012 2.794 5.186 2.671 C 5.184 2.671 5.436 2.454 6.026 2.461 C 6.441 2.467 6.812 2.529 6.812 2.529 L 6.812 3.845 C 6.812 3.845 6.445 3.924 6.03 3.949 C 5.441 3.984 5.18 3.779 5.182 3.779 Z M 6.333 1.745 C 6.183 1.735 6.032 1.731 5.882 1.732 C 5.633 1.732 5.394 1.763 5.169 1.823 C 4.943 1.884 4.739 1.979 4.564 2.103 C 4.389 2.228 4.245 2.392 4.144 2.581 C 4.038 2.788 3.985 3.017 3.99 3.249 C 3.99 3.505 4.034 3.728 4.122 3.909 C 4.21 4.093 4.338 4.245 4.5 4.362 C 4.66 4.48 4.86 4.566 5.09 4.618 C 5.317 4.67 5.574 4.696 5.856 4.696 C 6.153 4.696 6.449 4.672 6.736 4.623 C 7.019 4.574 7.368 4.503 7.465 4.482 C 7.561 4.459 7.668 4.43 7.668 4.43 C 7.74 4.412 7.734 4.335 7.734 4.335 L 7.732 1.688 C 7.732 1.107 7.577 0.677 7.272 0.41 C 6.968 0.144 6.521 0.01 5.942 0.01 C 5.725 0.01 5.376 0.039 5.167 0.08 C 5.167 0.08 4.534 0.203 4.274 0.407 C 4.274 0.407 4.217 0.442 4.248 0.522 L 4.453 1.072 C 4.479 1.144 4.548 1.12 4.548 1.12 C 4.548 1.12 4.57 1.111 4.595 1.096 C 5.152 0.793 5.857 0.802 5.857 0.802 C 6.17 0.802 6.41 0.865 6.573 0.99 C 6.731 1.11 6.811 1.293 6.811 1.68 L 6.811 1.801 C 6.652 1.779 6.493 1.76 6.333 1.745 Z M 29.684 0.253 C 29.692 0.234 29.693 0.212 29.685 0.193 C 29.677 0.173 29.661 0.158 29.642 0.15 C 29.483 0.106 29.32 0.078 29.156 0.066 C 28.793 0.044 28.591 0.106 28.41 0.186 C 28.23 0.268 28.031 0.399 27.92 0.547 L 27.92 0.195 C 27.92 0.146 27.886 0.107 27.837 0.107 L 27.095 0.107 C 27.047 0.107 27.012 0.146 27.012 0.195 L 27.012 4.514 C 27.012 4.562 27.052 4.602 27.1 4.602 L 27.86 4.602 C 27.909 4.602 27.948 4.562 27.948 4.514 L 27.948 2.356 C 27.948 2.066 27.98 1.778 28.044 1.596 C 28.107 1.416 28.192 1.273 28.297 1.17 C 28.398 1.071 28.52 0.997 28.655 0.955 C 28.79 0.914 28.938 0.9 29.044 0.9 C 29.195 0.9 29.362 0.94 29.362 0.94 C 29.417 0.946 29.449 0.912 29.467 0.861 C 29.517 0.729 29.657 0.332 29.685 0.253 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9qaepn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.472 4.713\" overflow=\"visible\"><path d=\"M 0.011 4.077 C -0.02 4.159 0.023 4.177 0.033 4.19 C 0.127 4.259 0.222 4.308 0.318 4.363 C 0.828 4.633 1.308 4.713 1.812 4.713 C 2.836 4.713 3.472 4.167 3.472 3.29 L 3.472 3.273 C 3.472 2.462 2.754 2.167 2.08 1.954 L 1.993 1.926 C 1.485 1.761 1.047 1.618 1.047 1.284 L 1.047 1.266 C 1.047 0.98 1.303 0.77 1.7 0.77 C 2.141 0.77 2.665 0.916 3.002 1.102 C 3.002 1.102 3.101 1.166 3.137 1.07 C 3.157 1.02 3.327 0.56 3.346 0.51 C 3.365 0.456 3.331 0.416 3.296 0.394 C 2.85 0.135 2.344 -0.001 1.828 0 L 1.725 0.001 C 0.788 0.001 0.133 0.567 0.133 1.379 L 0.133 1.396 C 0.133 2.252 0.855 2.53 1.532 2.723 L 1.641 2.757 C 2.134 2.908 2.559 3.039 2.559 3.386 L 2.559 3.403 C 2.559 3.72 2.283 3.956 1.837 3.956 C 1.664 3.956 1.113 3.953 0.517 3.576 C 0.445 3.535 0.403 3.504 0.347 3.471 C 0.319 3.452 0.245 3.42 0.213 3.517 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bamw5z\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.472 4.713\" overflow=\"visible\"><path d=\"M 0.011 4.077 C -0.02 4.159 0.023 4.177 0.033 4.19 C 0.126 4.259 0.222 4.308 0.318 4.363 C 0.828 4.633 1.308 4.713 1.812 4.713 C 2.836 4.713 3.472 4.167 3.472 3.29 L 3.472 3.273 C 3.472 2.462 2.754 2.167 2.08 1.954 L 1.993 1.926 C 1.485 1.761 1.046 1.618 1.046 1.284 L 1.046 1.266 C 1.046 0.98 1.303 0.77 1.7 0.77 C 2.14 0.77 2.665 0.916 3.002 1.102 C 3.002 1.102 3.101 1.166 3.137 1.07 C 3.157 1.02 3.327 0.56 3.346 0.51 C 3.365 0.456 3.331 0.416 3.296 0.394 C 2.85 0.135 2.344 -0.001 1.828 0 L 1.725 0.001 C 0.787 0.001 0.133 0.567 0.133 1.379 L 0.133 1.396 C 0.133 2.252 0.855 2.53 1.532 2.723 L 1.641 2.757 C 2.134 2.908 2.559 3.039 2.559 3.386 L 2.559 3.403 C 2.559 3.72 2.283 3.956 1.837 3.956 C 1.664 3.956 1.113 3.953 0.517 3.576 C 0.445 3.535 0.403 3.506 0.348 3.471 C 0.33 3.458 0.243 3.425 0.213 3.517 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xey3l\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.206 3.129\" overflow=\"visible\"><path d=\"M 2.206 1.56 C 2.206 2.056 2.114 2.446 1.932 2.722 C 1.752 2.996 1.479 3.129 1.099 3.129 C 0.719 3.129 0.447 2.996 0.27 2.722 C 0.09 2.447 0 2.056 0 1.56 C 0 1.065 0.09 0.675 0.27 0.401 C 0.447 0.131 0.718 0 1.1 0 C 1.48 0 1.752 0.131 1.932 0.402 C 2.114 0.675 2.206 1.065 2.206 1.56 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1038d0h\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.177 4.682\" overflow=\"visible\"><path d=\"M 4.051 1.425 C 3.974 1.154 3.841 0.902 3.662 0.683 C 3.483 0.47 3.259 0.3 3.006 0.183 C 2.717 0.056 2.404 -0.006 2.089 0 C 1.742 0 1.433 0.062 1.172 0.183 C 0.919 0.3 0.695 0.47 0.515 0.683 C 0.341 0.892 0.21 1.143 0.125 1.426 C 0.04 1.725 -0.002 2.035 0 2.345 C 0 2.673 0.042 2.982 0.125 3.265 C 0.21 3.547 0.34 3.798 0.515 4.007 C 0.69 4.217 0.911 4.383 1.172 4.502 C 1.434 4.622 1.742 4.682 2.089 4.682 C 2.436 4.682 2.744 4.622 3.006 4.502 C 3.266 4.383 3.488 4.216 3.662 4.007 C 3.837 3.798 3.968 3.548 4.052 3.264 C 4.136 2.982 4.177 2.672 4.177 2.344 C 4.177 2.018 4.136 1.708 4.051 1.426 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c5pedj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.511 4.684\" overflow=\"visible\"><path d=\"M 3.294 3.786 C 3.265 3.703 3.185 3.734 3.185 3.734 C 3.057 3.786 2.923 3.824 2.787 3.848 C 2.644 3.87 2.487 3.882 2.318 3.882 C 1.904 3.882 1.576 3.759 1.34 3.515 C 1.104 3.272 0.972 2.878 0.973 2.346 C 0.974 1.862 1.091 1.497 1.301 1.22 C 1.509 0.944 1.827 0.802 2.251 0.802 C 2.603 0.802 2.872 0.842 3.154 0.932 C 3.154 0.932 3.221 0.961 3.254 0.872 C 3.328 0.665 3.384 0.516 3.464 0.288 C 3.486 0.223 3.431 0.195 3.411 0.188 C 3.225 0.123 3.034 0.075 2.84 0.044 C 2.627 0.013 2.413 -0.001 2.198 0 C 1.838 0 1.518 0.061 1.245 0.184 C 0.972 0.306 0.74 0.474 0.555 0.683 C 0.368 0.9 0.227 1.152 0.14 1.425 C 0.047 1.708 0 2.018 0 2.346 C 0 3.056 0.192 3.629 0.57 4.049 C 0.948 4.47 1.517 4.684 2.258 4.684 C 2.671 4.684 3.081 4.611 3.469 4.468 C 3.469 4.468 3.531 4.438 3.504 4.366 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eg113p\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.065 1.103\" overflow=\"visible\"><path d=\"M 0 1.103 C 0.04 0.827 0.117 0.598 0.234 0.42 C 0.412 0.149 0.682 0 1.062 0 C 1.442 0 1.693 0.15 1.873 0.42 C 1.993 0.598 2.045 0.837 2.065 1.103 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8vvdxm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.005 4.682\" overflow=\"visible\"><path d=\"M 3.891 1.264 C 3.818 1.014 3.692 0.783 3.521 0.587 C 3.334 0.387 3.151 0.247 2.971 0.167 C 2.708 0.056 2.426 -0.001 2.141 0 C 1.78 0 1.451 0.06 1.186 0.186 C 0.929 0.304 0.701 0.477 0.519 0.694 C 0.338 0.915 0.205 1.171 0.127 1.446 C 0.041 1.746 -0.002 2.058 0 2.37 C 0 2.704 0.044 3.015 0.131 3.294 C 0.219 3.576 0.361 3.824 0.551 4.03 C 0.741 4.237 0.986 4.4 1.279 4.512 C 1.569 4.625 1.924 4.683 2.329 4.682 C 3.166 4.68 3.606 4.493 3.788 4.392 C 3.82 4.375 3.85 4.344 3.812 4.254 L 3.622 3.724 C 3.594 3.645 3.514 3.674 3.514 3.674 C 3.307 3.751 3.012 3.889 2.326 3.888 C 1.876 3.887 1.544 3.755 1.336 3.548 C 1.121 3.336 1.016 3.024 0.998 2.584 L 3.893 2.587 C 3.893 2.587 3.969 2.586 3.977 2.512 C 3.98 2.48 4.077 1.917 3.891 1.264 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1eohjbh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.064 1.103\" overflow=\"visible\"><path d=\"M 0 1.103 C 0.04 0.827 0.116 0.598 0.234 0.42 C 0.411 0.149 0.681 0 1.061 0 C 1.441 0 1.692 0.15 1.873 0.42 C 1.992 0.598 2.043 0.837 2.064 1.103 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hgeekb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.005 4.682\" overflow=\"visible\"><path d=\"M 3.89 1.264 C 3.817 1.014 3.691 0.783 3.52 0.587 C 3.334 0.387 3.152 0.247 2.971 0.167 C 2.708 0.056 2.426 -0.001 2.141 0 C 1.781 0 1.452 0.06 1.186 0.186 C 0.929 0.304 0.701 0.477 0.519 0.694 C 0.338 0.915 0.205 1.171 0.127 1.446 C 0.041 1.746 -0.002 2.058 0 2.37 C 0 2.704 0.044 3.015 0.131 3.294 C 0.22 3.576 0.361 3.824 0.551 4.03 C 0.741 4.237 0.986 4.4 1.279 4.512 C 1.57 4.625 1.924 4.683 2.33 4.682 C 3.166 4.68 3.607 4.493 3.788 4.392 C 3.82 4.375 3.851 4.344 3.812 4.254 L 3.624 3.724 C 3.594 3.645 3.514 3.674 3.514 3.674 C 3.307 3.751 3.014 3.889 2.325 3.888 C 1.877 3.887 1.544 3.755 1.335 3.548 C 1.121 3.336 1.017 3.024 0.998 2.584 L 3.893 2.587 C 3.893 2.587 3.969 2.586 3.977 2.512 C 3.98 2.48 4.077 1.917 3.89 1.264 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9donmn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.885 1.492\" overflow=\"visible\"><path d=\"M 0.255 1.319 C 0.188 1.274 0.131 1.215 0.087 1.147 C 0.024 1.032 -0.006 0.902 0.001 0.771 C 0.001 0.516 0.085 0.333 0.259 0.21 C 0.257 0.21 0.509 -0.007 1.099 0 C 1.514 0.006 1.885 0.068 1.885 0.068 L 1.885 1.384 C 1.885 1.384 1.518 1.463 1.103 1.488 C 0.514 1.523 0.253 1.318 0.255 1.318 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t4z5gq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.744 4.686\" overflow=\"visible\"><path d=\"M 2.343 1.735 C 2.193 1.725 2.043 1.721 1.892 1.722 C 1.643 1.722 1.404 1.753 1.179 1.813 C 0.953 1.874 0.749 1.969 0.574 2.093 C 0.399 2.218 0.256 2.382 0.154 2.571 C 0.049 2.778 -0.004 3.007 0 3.239 C 0 3.495 0.044 3.718 0.132 3.899 C 0.22 4.083 0.348 4.235 0.51 4.352 C 0.67 4.47 0.87 4.556 1.1 4.608 C 1.327 4.66 1.584 4.686 1.866 4.686 C 2.163 4.686 2.459 4.662 2.746 4.613 C 3.029 4.564 3.378 4.493 3.475 4.472 C 3.571 4.449 3.678 4.42 3.678 4.42 C 3.75 4.402 3.744 4.325 3.744 4.325 L 3.742 1.678 C 3.742 1.097 3.587 0.667 3.282 0.4 C 2.978 0.134 2.531 0 1.952 0 C 1.735 0 1.386 0.029 1.177 0.07 C 1.177 0.07 0.544 0.193 0.284 0.397 C 0.284 0.397 0.227 0.432 0.258 0.512 L 0.463 1.062 C 0.489 1.134 0.558 1.11 0.558 1.11 C 0.558 1.11 0.58 1.101 0.605 1.086 C 1.162 0.783 1.867 0.792 1.867 0.792 C 2.18 0.792 2.42 0.855 2.583 0.98 C 2.741 1.1 2.821 1.283 2.821 1.67 L 2.821 1.791 C 2.662 1.769 2.503 1.75 2.343 1.735 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1e40ea6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.678 4.54\" overflow=\"visible\"><path d=\"M 2.672 0.191 C 2.68 0.172 2.68 0.151 2.673 0.131 C 2.665 0.112 2.649 0.096 2.63 0.088 C 2.471 0.045 2.308 0.016 2.144 0.004 C 1.781 -0.018 1.579 0.044 1.398 0.124 C 1.218 0.206 1.019 0.337 0.908 0.485 L 0.908 0.133 C 0.908 0.084 0.874 0.045 0.825 0.045 L 0.083 0.045 C 0.035 0.045 0 0.084 0 0.133 L 0 4.452 C 0 4.5 0.04 4.54 0.088 4.54 L 0.848 4.54 C 0.897 4.54 0.936 4.5 0.936 4.452 L 0.936 2.294 C 0.936 2.004 0.968 1.716 1.032 1.534 C 1.095 1.354 1.18 1.211 1.285 1.108 C 1.386 1.009 1.508 0.936 1.643 0.893 C 1.778 0.852 1.926 0.838 2.032 0.838 C 2.183 0.838 2.35 0.878 2.35 0.878 C 2.405 0.884 2.437 0.85 2.455 0.799 C 2.505 0.667 2.645 0.27 2.673 0.191 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1yr1gyo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.926 8.523\" overflow=\"visible\"><path d=\"M 13.867 0.098 C 13.647 0.031 13.417 -0.002 13.187 0 C 12.664 0 12.251 0.148 11.962 0.44 C 11.674 0.73 11.478 1.172 11.38 1.753 L 11.344 1.949 L 10.687 1.949 C 10.687 1.949 10.607 1.946 10.59 2.033 L 10.482 2.635 C 10.475 2.692 10.5 2.729 10.576 2.729 L 11.216 2.729 L 10.567 6.352 C 10.517 6.643 10.458 6.883 10.393 7.065 C 10.33 7.245 10.268 7.379 10.191 7.477 C 10.127 7.572 10.035 7.643 9.927 7.682 C 9.827 7.715 9.712 7.731 9.586 7.731 C 9.516 7.731 9.423 7.719 9.354 7.705 C 9.3 7.695 9.247 7.678 9.197 7.655 C 9.197 7.655 9.123 7.626 9.093 7.701 C 9.069 7.763 8.899 8.231 8.878 8.289 C 8.858 8.347 8.887 8.392 8.923 8.405 C 9.143 8.49 9.377 8.53 9.612 8.522 C 9.878 8.522 10.121 8.485 10.322 8.412 C 10.524 8.339 10.701 8.212 10.857 8.04 C 11.024 7.851 11.152 7.63 11.233 7.391 C 11.333 7.128 11.419 6.801 11.488 6.419 L 12.14 2.729 L 13.094 2.729 C 13.094 2.729 13.174 2.731 13.19 2.644 L 13.299 2.042 C 13.306 1.984 13.282 1.949 13.204 1.949 L 12.278 1.949 C 12.283 1.929 12.325 1.602 12.431 1.295 C 12.475 1.179 12.545 1.074 12.634 0.987 C 12.702 0.918 12.785 0.866 12.877 0.836 C 12.977 0.805 13.082 0.79 13.187 0.792 C 13.318 0.792 13.448 0.812 13.573 0.852 C 13.668 0.88 13.681 0.852 13.699 0.807 L 13.921 0.199 C 13.943 0.134 13.887 0.106 13.867 0.098 Z M 0.933 6.36 C 0.933 6.408 0.898 6.447 0.85 6.447 L 0.082 6.447 C 0.034 6.447 0 6.408 0 6.36 L 0 0.18 C 0 0.132 0.034 0.093 0.082 0.093 L 0.85 0.093 C 0.898 0.093 0.933 0.133 0.933 0.181 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5n79f6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.055 8.523\" overflow=\"visible\"><path d=\"M 4.996 0.098 C 4.775 0.031 4.546 -0.002 4.316 0 C 3.793 0 3.38 0.148 3.091 0.44 C 2.803 0.73 2.607 1.172 2.509 1.753 L 2.473 1.949 L 1.816 1.949 C 1.816 1.949 1.736 1.946 1.719 2.033 L 1.611 2.635 C 1.604 2.692 1.629 2.729 1.705 2.729 L 2.345 2.729 L 1.696 6.352 C 1.646 6.643 1.587 6.883 1.522 7.065 C 1.459 7.245 1.397 7.379 1.32 7.477 C 1.255 7.572 1.163 7.643 1.056 7.682 C 0.956 7.715 0.841 7.731 0.715 7.731 C 0.645 7.731 0.552 7.719 0.483 7.705 C 0.428 7.695 0.376 7.678 0.326 7.655 C 0.326 7.655 0.252 7.626 0.222 7.701 C 0.198 7.763 0.028 8.231 0.007 8.289 C -0.013 8.347 0.016 8.392 0.052 8.405 C 0.271 8.49 0.505 8.53 0.741 8.522 C 1.007 8.522 1.25 8.485 1.451 8.412 C 1.653 8.339 1.83 8.212 1.986 8.04 C 2.153 7.851 2.28 7.63 2.362 7.391 C 2.462 7.128 2.548 6.801 2.617 6.419 L 3.269 2.729 L 4.223 2.729 C 4.223 2.729 4.303 2.731 4.319 2.644 L 4.428 2.042 C 4.435 1.984 4.411 1.949 4.333 1.949 L 3.407 1.949 C 3.412 1.929 3.454 1.602 3.56 1.295 C 3.604 1.179 3.673 1.074 3.763 0.987 C 3.83 0.918 3.914 0.866 4.006 0.836 C 4.106 0.805 4.211 0.79 4.316 0.792 C 4.447 0.792 4.577 0.812 4.702 0.852 C 4.797 0.88 4.81 0.852 4.828 0.807 L 5.05 0.199 C 5.072 0.134 5.016 0.106 4.996 0.098 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-8s0o0g\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1 6.354\" overflow=\"visible\"><path d=\"M 0.933 6.267 C 0.933 6.315 0.898 6.354 0.85 6.354 L 0.082 6.354 C 0.034 6.354 0 6.315 0 6.267 L 0 0.087 C 0 0.039 0.034 0 0.082 0 L 0.85 0 C 0.898 0 0.933 0.04 0.933 0.088 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c1ae6v\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-llca1g\",\"data-framer-name\":\"hubspot\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50.004 50\" overflow=\"visible\"><g><path d=\"M 0 0 L 50 0 L 50 50 L 0 50 Z\" fill=\"transparent\"></path><path d=\"M 0.006 19.681 L 1.75 19.681 L 1.75 23.553 L 5.427 23.553 L 5.427 19.68 L 7.172 19.68 L 7.172 29.187 L 5.427 29.187 L 5.427 25.233 L 1.75 25.233 L 1.75 29.187 L 0.006 29.187 L 0.006 19.68 Z M 12.695 26.091 C 12.695 26.887 12.047 27.535 11.251 27.535 C 10.454 27.534 9.808 26.888 9.807 26.091 L 9.807 21.998 L 8.154 21.998 L 8.154 26.091 C 8.156 27.801 9.541 29.186 11.251 29.188 C 12.96 29.186 14.346 27.801 14.348 26.092 L 14.348 21.998 L 12.695 21.998 Z M 18.963 22.046 C 18.143 22.046 17.571 22.284 17.018 22.826 L 17.018 19.681 L 15.359 19.681 L 15.359 25.511 C 15.359 27.694 16.937 29.188 18.709 29.188 C 20.681 29.188 22.407 27.667 22.407 25.618 C 22.407 23.594 20.815 22.046 18.963 22.046 Z M 19.004 27.654 C 17.881 27.654 17.021 26.715 17.021 25.617 C 17.021 24.519 17.881 23.58 19.004 23.58 C 19.957 23.58 20.817 24.52 20.817 25.617 C 20.817 26.715 19.957 27.654 19.004 27.654 Z M 25.193 22.463 C 25.193 21.63 25.749 21.366 26.357 21.366 C 26.847 21.366 27.495 21.736 27.917 22.186 L 29.002 20.916 C 28.46 20.189 27.362 19.686 26.462 19.686 C 24.664 19.686 23.368 20.731 23.368 22.464 C 23.368 25.678 27.323 24.659 27.323 26.458 C 27.323 27.013 26.78 27.503 26.159 27.503 C 25.18 27.503 24.863 27.027 24.413 26.524 L 23.209 27.767 C 23.977 28.707 24.929 29.183 26.066 29.183 C 27.772 29.183 29.148 28.125 29.148 26.471 C 29.148 22.901 25.193 24.011 25.193 22.464 Z M 33.515 21.953 C 31.742 21.953 30.164 23.447 30.164 25.63 L 30.164 31.475 L 31.822 31.475 L 31.822 28.315 C 32.375 28.856 32.948 29.095 33.768 29.095 C 35.62 29.095 37.212 27.548 37.212 25.524 C 37.212 23.474 35.485 21.953 33.515 21.953 Z M 33.809 27.561 C 32.686 27.561 31.826 26.621 31.826 25.524 C 31.826 24.426 32.686 23.487 33.809 23.487 C 34.761 23.487 35.622 24.426 35.622 25.524 C 35.622 26.621 34.762 27.561 33.809 27.561 Z M 49.421 27.653 C 48.443 27.653 48.165 27.231 48.165 26.583 L 48.165 23.713 L 49.685 23.713 L 49.685 22.258 L 48.165 22.258 L 48.165 20.34 L 46.486 21.093 L 46.486 26.939 C 46.486 28.434 47.517 29.189 48.932 29.189 C 49.144 29.189 49.435 29.175 49.594 29.135 L 50.004 27.628 C 49.81 27.643 49.616 27.652 49.421 27.654 Z\" fill=\"rgb(69,83,94)\"></path><path d=\"M 45.047 23.797 C 44.727 23.251 44.271 22.797 43.723 22.481 C 43.312 22.238 42.856 22.08 42.383 22.017 L 42.383 20.279 C 42.872 20.072 43.175 19.613 43.175 19.077 C 43.175 18.347 42.59 17.757 41.86 17.757 C 41.13 17.757 40.535 18.347 40.535 19.077 C 40.535 19.613 40.821 20.072 41.309 20.279 L 41.309 22.018 C 40.919 22.074 40.513 22.196 40.144 22.383 L 35.461 18.828 C 35.495 18.704 35.521 18.576 35.521 18.441 C 35.521 17.849 35.164 17.316 34.617 17.089 C 34.07 16.863 33.441 16.988 33.023 17.407 C 32.605 17.826 32.48 18.456 32.707 19.002 C 32.934 19.549 33.468 19.905 34.06 19.904 C 34.335 19.904 34.59 19.824 34.81 19.691 L 35.116 19.923 L 39.319 22.951 C 39.091 23.157 38.891 23.391 38.724 23.648 C 38.389 24.178 38.184 24.762 38.184 25.4 L 38.184 25.532 C 38.184 25.98 38.269 26.402 38.414 26.798 C 38.541 27.145 38.727 27.459 38.958 27.744 L 37.563 29.143 C 37.15 28.988 36.685 29.09 36.375 29.403 C 36.162 29.618 36.045 29.901 36.045 30.203 C 36.045 30.506 36.162 30.79 36.376 31.003 C 36.59 31.217 36.873 31.335 37.176 31.335 C 37.478 31.335 37.762 31.217 37.976 31.003 C 38.275 30.706 38.383 30.266 38.255 29.864 L 39.696 28.422 C 39.897 28.56 40.112 28.677 40.336 28.773 C 40.789 28.969 41.289 29.088 41.836 29.088 L 41.936 29.088 C 42.541 29.088 43.111 28.946 43.646 28.656 C 44.197 28.361 44.66 27.925 44.988 27.393 C 45.323 26.856 45.508 26.263 45.508 25.609 L 45.508 25.576 C 45.516 24.953 45.357 24.339 45.048 23.798 Z M 43.286 26.822 C 42.894 27.257 42.444 27.525 41.936 27.525 L 41.852 27.525 C 41.562 27.525 41.278 27.445 41 27.298 C 40.696 27.14 40.439 26.906 40.253 26.618 C 40.055 26.35 39.946 26.026 39.942 25.692 L 39.942 25.592 C 39.942 25.267 40.004 24.96 40.161 24.669 C 40.322 24.359 40.562 24.097 40.856 23.909 C 41.152 23.714 41.468 23.619 41.819 23.619 L 41.852 23.619 C 42.172 23.619 42.473 23.681 42.758 23.827 C 43.048 23.982 43.286 24.195 43.47 24.474 C 43.684 24.806 43.797 25.193 43.797 25.588 C 43.797 26.034 43.627 26.447 43.286 26.822 Z\" fill=\"rgb(248,118,31)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1lynpt0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50 50\" overflow=\"visible\"><path d=\"M 0 0 L 50 0 L 50 50 L 0 50 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-43gs7m\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 49.998 11.795\" overflow=\"visible\"><path d=\"M 0 0.001 L 1.744 0.001 L 1.744 3.873 L 5.421 3.873 L 5.421 0 L 7.166 0 L 7.166 9.507 L 5.421 9.507 L 5.421 5.553 L 1.744 5.553 L 1.744 9.507 L 0 9.507 L 0 0 Z M 12.689 6.411 C 12.689 7.207 12.041 7.855 11.245 7.855 C 10.448 7.854 9.802 7.208 9.801 6.411 L 9.801 2.318 L 8.148 2.318 L 8.148 6.411 C 8.15 8.121 9.535 9.506 11.245 9.508 C 12.954 9.506 14.34 8.121 14.342 6.412 L 14.342 2.318 L 12.689 2.318 Z M 18.957 2.366 C 18.137 2.366 17.565 2.604 17.012 3.146 L 17.012 0.001 L 15.353 0.001 L 15.353 5.831 C 15.353 8.014 16.931 9.508 18.703 9.508 C 20.675 9.508 22.401 7.987 22.401 5.938 C 22.401 3.914 20.809 2.366 18.957 2.366 Z M 18.998 7.974 C 17.875 7.974 17.015 7.035 17.015 5.937 C 17.015 4.839 17.875 3.9 18.998 3.9 C 19.951 3.9 20.811 4.84 20.811 5.937 C 20.811 7.035 19.951 7.974 18.998 7.974 Z M 25.187 2.783 C 25.187 1.95 25.743 1.686 26.351 1.686 C 26.841 1.686 27.489 2.056 27.911 2.506 L 28.996 1.236 C 28.454 0.509 27.356 0.006 26.456 0.006 C 24.658 0.006 23.362 1.051 23.362 2.784 C 23.362 5.998 27.317 4.979 27.317 6.778 C 27.317 7.333 26.774 7.823 26.153 7.823 C 25.174 7.823 24.857 7.347 24.407 6.844 L 23.203 8.087 C 23.971 9.027 24.923 9.503 26.06 9.503 C 27.766 9.503 29.142 8.445 29.142 6.791 C 29.142 3.221 25.187 4.331 25.187 2.784 Z M 33.509 2.273 C 31.736 2.273 30.158 3.767 30.158 5.95 L 30.158 11.795 L 31.816 11.795 L 31.816 8.635 C 32.369 9.176 32.942 9.415 33.762 9.415 C 35.614 9.415 37.206 7.868 37.206 5.844 C 37.206 3.794 35.479 2.273 33.509 2.273 Z M 33.803 7.881 C 32.68 7.881 31.82 6.941 31.82 5.844 C 31.82 4.746 32.68 3.807 33.803 3.807 C 34.755 3.807 35.616 4.746 35.616 5.844 C 35.616 6.941 34.756 7.881 33.803 7.881 Z M 49.415 7.973 C 48.437 7.973 48.159 7.551 48.159 6.903 L 48.159 4.033 L 49.679 4.033 L 49.679 2.578 L 48.159 2.578 L 48.159 0.66 L 46.48 1.413 L 46.48 7.259 C 46.48 8.754 47.511 9.509 48.926 9.509 C 49.138 9.509 49.429 9.495 49.588 9.455 L 49.998 7.948 C 49.804 7.963 49.61 7.972 49.415 7.974 Z\" fill=\"rgb(69,83,94)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-u37en8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.166 9.507\" overflow=\"visible\"><path d=\"M 0 0.001 L 1.744 0.001 L 1.744 3.873 L 5.421 3.873 L 5.421 0 L 7.166 0 L 7.166 9.507 L 5.421 9.507 L 5.421 5.553 L 1.744 5.553 L 1.744 9.507 L 0 9.507 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-23jcw3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.194 7.19\" overflow=\"visible\"><path d=\"M 4.541 4.093 C 4.541 4.889 3.893 5.537 3.097 5.537 C 2.3 5.536 1.654 4.89 1.653 4.093 L 1.653 0 L 0 0 L 0 4.093 C 0.002 5.803 1.387 7.188 3.097 7.19 C 4.806 7.188 6.192 5.803 6.194 4.094 L 6.194 0 L 4.541 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qnabaf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.048 9.507\" overflow=\"visible\"><path d=\"M 3.604 2.365 C 2.784 2.365 2.212 2.603 1.659 3.145 L 1.659 0 L 0 0 L 0 5.83 C 0 8.013 1.578 9.507 3.35 9.507 C 5.322 9.507 7.048 7.986 7.048 5.937 C 7.048 3.913 5.456 2.365 3.604 2.365 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m263ev\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.796 4.074\" overflow=\"visible\"><path d=\"M 1.983 4.074 C 0.86 4.074 0 3.135 0 2.037 C 0 0.939 0.86 0 1.983 0 C 2.936 0 3.796 0.94 3.796 2.037 C 3.796 3.135 2.936 4.074 1.983 4.074 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1skxwbb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.939 9.497\" overflow=\"visible\"><path d=\"M 1.984 2.777 C 1.984 1.944 2.54 1.68 3.148 1.68 C 3.638 1.68 4.286 2.05 4.708 2.5 L 5.793 1.23 C 5.251 0.503 4.153 0 3.253 0 C 1.455 0 0.159 1.045 0.159 2.778 C 0.159 5.992 4.114 4.973 4.114 6.772 C 4.114 7.327 3.571 7.817 2.95 7.817 C 1.971 7.817 1.654 7.341 1.204 6.838 L 0 8.081 C 0.768 9.021 1.72 9.497 2.857 9.497 C 4.563 9.497 5.939 8.439 5.939 6.785 C 5.939 3.215 1.984 4.325 1.984 2.778 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bgshpx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.048 9.522\" overflow=\"visible\"><path d=\"M 3.351 0 C 1.578 0 0 1.494 0 3.677 L 0 9.522 L 1.658 9.522 L 1.658 6.362 C 2.211 6.903 2.784 7.142 3.604 7.142 C 5.456 7.142 7.048 5.595 7.048 3.571 C 7.048 1.521 5.321 0 3.351 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pe5xo0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.796 4.074\" overflow=\"visible\"><path d=\"M 1.983 4.074 C 0.86 4.074 0 3.134 0 2.037 C 0 0.939 0.86 0 1.983 0 C 2.935 0 3.796 0.939 3.796 2.037 C 3.796 3.134 2.936 4.074 1.983 4.074 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1fvwi33\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.518 8.849\" overflow=\"visible\"><path d=\"M 2.935 7.313 C 1.957 7.313 1.679 6.891 1.679 6.243 L 1.679 3.373 L 3.199 3.373 L 3.199 1.918 L 1.679 1.918 L 1.679 0 L 0 0.753 L 0 6.599 C 0 8.094 1.031 8.849 2.446 8.849 C 2.658 8.849 2.949 8.835 3.108 8.795 L 3.518 7.288 C 3.324 7.303 3.13 7.312 2.935 7.314 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1k5x9b8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.913 14.357\" overflow=\"visible\"><path d=\"M 12.452 6.819 C 12.132 6.273 11.676 5.82 11.128 5.503 C 10.717 5.26 10.261 5.102 9.788 5.039 L 9.788 3.301 C 10.277 3.094 10.58 2.635 10.58 2.099 C 10.58 1.369 9.995 0.779 9.265 0.779 C 8.535 0.779 7.94 1.369 7.94 2.099 C 7.94 2.635 8.226 3.094 8.714 3.301 L 8.714 5.04 C 8.324 5.096 7.918 5.218 7.549 5.405 L 2.866 1.85 C 2.9 1.726 2.926 1.598 2.926 1.463 C 2.926 0.871 2.569 0.338 2.022 0.111 C 1.476 -0.115 0.846 0.01 0.428 0.429 C 0.01 0.848 -0.115 1.478 0.112 2.024 C 0.339 2.571 0.873 2.927 1.465 2.926 C 1.74 2.926 1.995 2.846 2.215 2.713 L 2.521 2.945 L 6.724 5.973 C 6.496 6.179 6.296 6.413 6.129 6.67 C 5.794 7.2 5.589 7.784 5.589 8.422 L 5.589 8.554 C 5.589 9.002 5.674 9.424 5.819 9.82 C 5.946 10.167 6.132 10.481 6.363 10.766 L 4.968 12.165 C 4.555 12.01 4.09 12.112 3.78 12.425 C 3.567 12.64 3.45 12.923 3.45 13.225 C 3.45 13.528 3.567 13.812 3.781 14.025 C 3.995 14.239 4.278 14.357 4.581 14.357 C 4.883 14.357 5.167 14.239 5.381 14.025 C 5.68 13.728 5.788 13.288 5.66 12.886 L 7.101 11.444 C 7.302 11.582 7.517 11.699 7.741 11.795 C 8.194 11.991 8.694 12.11 9.241 12.11 L 9.341 12.11 C 9.946 12.11 10.516 11.968 11.051 11.678 C 11.602 11.383 12.065 10.947 12.393 10.415 C 12.728 9.878 12.913 9.285 12.913 8.631 L 12.913 8.598 C 12.921 7.975 12.762 7.361 12.453 6.82 Z M 10.691 9.844 C 10.299 10.279 9.849 10.547 9.341 10.547 L 9.257 10.547 C 8.967 10.547 8.683 10.467 8.405 10.32 C 8.101 10.162 7.844 9.928 7.658 9.64 C 7.46 9.372 7.351 9.048 7.347 8.714 L 7.347 8.614 C 7.347 8.289 7.409 7.982 7.566 7.691 C 7.727 7.381 7.967 7.119 8.261 6.931 C 8.557 6.736 8.873 6.641 9.224 6.641 L 9.257 6.641 C 9.577 6.641 9.878 6.703 10.163 6.849 C 10.453 7.004 10.691 7.217 10.875 7.496 C 11.089 7.828 11.202 8.215 11.202 8.61 C 11.202 9.056 11.032 9.469 10.691 9.844 Z\" fill=\"rgb(248,118,31)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19dnkgu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.913 14.357\" overflow=\"visible\"><path d=\"M 12.452 6.819 C 12.132 6.273 11.676 5.82 11.128 5.503 C 10.717 5.26 10.261 5.102 9.788 5.039 L 9.788 3.301 C 10.277 3.094 10.58 2.635 10.58 2.099 C 10.58 1.369 9.995 0.779 9.265 0.779 C 8.535 0.779 7.94 1.369 7.94 2.099 C 7.94 2.635 8.226 3.094 8.714 3.301 L 8.714 5.04 C 8.324 5.096 7.918 5.218 7.549 5.405 L 2.866 1.85 C 2.9 1.726 2.926 1.598 2.926 1.463 C 2.926 0.871 2.569 0.338 2.022 0.111 C 1.476 -0.115 0.846 0.01 0.428 0.429 C 0.01 0.848 -0.115 1.478 0.112 2.024 C 0.339 2.571 0.873 2.927 1.465 2.926 C 1.74 2.926 1.995 2.846 2.215 2.713 L 2.521 2.945 L 6.724 5.973 C 6.496 6.179 6.296 6.413 6.129 6.67 C 5.794 7.2 5.589 7.784 5.589 8.422 L 5.589 8.554 C 5.589 9.002 5.674 9.424 5.819 9.82 C 5.946 10.167 6.132 10.481 6.363 10.766 L 4.968 12.165 C 4.555 12.01 4.09 12.112 3.78 12.425 C 3.567 12.64 3.45 12.923 3.45 13.225 C 3.45 13.528 3.567 13.812 3.781 14.025 C 3.995 14.239 4.278 14.357 4.581 14.357 C 4.883 14.357 5.167 14.239 5.381 14.025 C 5.68 13.728 5.788 13.288 5.66 12.886 L 7.101 11.444 C 7.302 11.582 7.517 11.699 7.741 11.795 C 8.194 11.991 8.694 12.11 9.241 12.11 L 9.341 12.11 C 9.946 12.11 10.516 11.968 11.051 11.678 C 11.602 11.383 12.065 10.947 12.393 10.415 C 12.728 9.878 12.913 9.285 12.913 8.631 L 12.913 8.598 C 12.921 7.975 12.762 7.361 12.453 6.82 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xrfdgv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.855 3.906\" overflow=\"visible\"><path d=\"M 3.344 3.203 C 2.952 3.638 2.502 3.906 1.994 3.906 L 1.91 3.906 C 1.62 3.906 1.336 3.826 1.058 3.679 C 0.754 3.521 0.497 3.287 0.311 2.999 C 0.113 2.731 0.004 2.407 0 2.073 L 0 1.973 C 0 1.648 0.062 1.341 0.219 1.05 C 0.38 0.74 0.62 0.478 0.914 0.29 C 1.21 0.095 1.526 0 1.877 0 L 1.91 0 C 2.23 0 2.531 0.062 2.816 0.208 C 3.106 0.363 3.344 0.576 3.528 0.855 C 3.742 1.187 3.855 1.574 3.855 1.969 C 3.855 2.415 3.685 2.828 3.344 3.203 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sg3xex\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-3mse9m\",\"data-framer-name\":\"zendesk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 19.206\" overflow=\"visible\"><path d=\"M 66.595 5.693 C 70.872 5.693 73.298 8.961 73.08 13.495 L 62.99 13.495 C 63.28 15.416 65.027 16.771 66.96 16.575 C 68.283 16.606 69.563 16.107 70.515 15.188 L 72.278 17.099 C 70.895 18.526 68.966 19.291 66.981 19.199 C 62.674 19.199 59.891 16.327 59.891 12.446 C 59.85 10.651 60.542 8.917 61.807 7.644 C 63.071 6.37 64.8 5.665 66.595 5.693 Z M 20.426 5.693 C 24.704 5.693 27.129 8.961 26.911 13.495 L 16.833 13.495 C 17.123 15.412 18.864 16.766 20.793 16.575 C 22.116 16.606 23.396 16.107 24.348 15.188 L 26.11 17.099 C 24.727 18.526 22.798 19.291 20.813 19.199 C 16.506 19.199 13.724 16.327 13.724 12.446 C 13.683 10.652 14.375 8.918 15.639 7.644 C 16.904 6.37 18.632 5.666 20.427 5.693 Z M 85.565 8.119 L 83.258 9.466 C 82.612 8.505 81.514 7.947 80.357 7.99 C 78.882 7.99 78.129 8.713 78.129 9.545 C 78.129 10.377 79.317 10.733 81.189 11.149 L 81.317 11.177 L 81.445 11.206 C 81.51 11.22 81.575 11.236 81.639 11.251 L 81.769 11.281 L 81.898 11.313 L 82.027 11.346 L 82.157 11.38 C 83.985 11.87 85.723 12.721 85.723 15.01 C 85.723 16.802 84.169 19.208 80.486 19.188 C 78.173 19.358 75.967 18.193 74.802 16.188 L 77.288 14.852 C 77.957 16.049 79.234 16.777 80.605 16.742 C 82.159 16.742 82.961 15.941 82.961 15.03 C 82.961 14.12 81.456 13.763 79.822 13.426 L 79.69 13.398 L 79.557 13.368 L 79.491 13.354 L 79.358 13.324 C 77.307 12.85 75.338 12.051 75.338 9.564 C 75.338 7.515 77.318 5.604 80.347 5.604 C 82.405 5.48 84.38 6.432 85.565 8.119 Z M 57.288 0 L 57.288 18.931 L 54.535 18.931 L 54.535 17.149 C 53.48 18.455 51.887 19.21 50.208 19.199 C 48.448 19.184 46.768 18.458 45.551 17.186 C 44.334 15.915 43.682 14.205 43.743 12.446 C 43.667 10.68 44.317 8.96 45.542 7.687 C 46.767 6.413 48.461 5.696 50.228 5.703 C 51.886 5.691 53.465 6.416 54.535 7.683 L 54.535 0 Z M 11.387 6.01 L 11.387 8.545 L 3.604 16.465 L 11.525 16.465 L 11.525 18.961 L 0 18.961 L 0 16.436 L 7.783 8.516 L 0.179 8.516 L 0.179 6.009 L 11.387 6.009 Z M 90.703 0 L 90.703 12.396 L 96.534 5.941 L 99.881 5.941 L 94.821 11.495 L 100 18.931 L 96.9 18.931 L 92.88 13.179 L 90.703 15.565 L 90.703 18.941 L 87.95 18.941 L 87.95 0.001 L 90.703 0.001 Z M 35.563 5.703 C 38.831 5.703 41.583 7.832 41.583 11.357 L 41.583 18.931 L 38.753 18.931 L 38.753 11.703 C 38.753 9.584 37.723 8.307 35.644 8.307 C 34.735 8.24 33.843 8.581 33.21 9.237 C 32.576 9.893 32.268 10.797 32.367 11.703 L 32.367 18.931 L 29.565 18.931 L 29.565 11.357 C 29.565 7.832 32.297 5.703 35.565 5.703 Z M 50.583 8.347 C 48.319 8.347 46.484 10.182 46.484 12.446 C 46.484 14.71 48.319 16.545 50.583 16.545 C 52.847 16.545 54.682 14.71 54.682 12.446 C 54.682 10.182 52.847 8.347 50.583 8.347 Z M 62.98 11.327 L 70.04 11.337 C 69.994 10.479 69.609 9.675 68.97 9.101 C 68.331 8.527 67.491 8.231 66.633 8.277 C 64.801 8.17 63.201 9.505 62.98 11.327 Z M 16.831 11.327 L 23.871 11.337 C 23.77 9.556 22.247 8.192 20.465 8.287 C 18.644 8.19 17.057 9.517 16.831 11.327 Z\" fill=\"rgb(3,54,61)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1yxaxg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.204 13.514\" overflow=\"visible\"><path d=\"M 6.706 0.001 C 10.983 0.001 13.409 3.269 13.191 7.803 L 3.101 7.803 C 3.391 9.724 5.138 11.079 7.071 10.883 C 8.393 10.914 9.674 10.415 10.626 9.496 L 12.389 11.407 C 11.006 12.834 9.077 13.599 7.092 13.507 C 2.785 13.507 0.002 10.635 0.002 6.754 C -0.039 4.959 0.653 3.225 1.917 1.951 C 3.182 0.677 4.911 -0.027 6.706 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xblghw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.202 13.514\" overflow=\"visible\"><path d=\"M 6.704 0.001 C 10.982 0.001 13.407 3.269 13.189 7.803 L 3.111 7.803 C 3.401 9.72 5.141 11.073 7.071 10.883 C 8.393 10.914 9.674 10.415 10.626 9.496 L 12.388 11.407 C 11.005 12.834 9.076 13.599 7.091 13.507 C 2.784 13.507 0.002 10.635 0.002 6.754 C -0.039 4.959 0.652 3.226 1.917 1.952 C 3.181 0.678 4.91 -0.027 6.705 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zcp3bi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.921 13.611\" overflow=\"visible\"><path d=\"M 10.763 2.526 L 8.456 3.873 C 7.81 2.912 6.712 2.354 5.555 2.397 C 4.08 2.397 3.327 3.12 3.327 3.952 C 3.327 4.784 4.515 5.14 6.387 5.556 L 6.515 5.584 L 6.643 5.613 C 6.708 5.627 6.773 5.643 6.837 5.658 L 6.967 5.688 L 7.096 5.72 L 7.225 5.753 L 7.355 5.787 C 9.183 6.277 10.921 7.128 10.921 9.417 C 10.921 11.209 9.367 13.615 5.684 13.595 C 3.371 13.765 1.165 12.6 0 10.595 L 2.486 9.259 C 3.155 10.456 4.432 11.183 5.803 11.149 C 7.357 11.149 8.159 10.348 8.159 9.437 C 8.159 8.527 6.654 8.17 5.02 7.833 L 4.888 7.805 L 4.755 7.775 L 4.689 7.761 L 4.556 7.731 C 2.505 7.257 0.536 6.458 0.536 3.971 C 0.536 1.922 2.516 0.011 5.545 0.011 C 7.603 -0.113 9.578 0.839 10.763 2.526 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1auhg04\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.551 19.199\" overflow=\"visible\"><path d=\"M 13.551 0 L 13.551 18.931 L 10.798 18.931 L 10.798 17.149 C 9.743 18.455 8.15 19.21 6.471 19.199 C 4.711 19.184 3.031 18.458 1.814 17.186 C 0.597 15.915 -0.055 14.205 0.006 12.446 C -0.07 10.68 0.58 8.96 1.805 7.687 C 3.03 6.413 4.724 5.696 6.491 5.703 C 8.149 5.691 9.728 6.416 10.798 7.683 L 10.798 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11pmko8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.525 12.952\" overflow=\"visible\"><path d=\"M 11.387 0.001 L 11.387 2.536 L 3.604 10.456 L 11.525 10.456 L 11.525 12.952 L 0 12.952 L 0 10.427 L 7.783 2.507 L 0.179 2.507 L 0.179 0 L 11.387 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a006me\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.05 18.941\" overflow=\"visible\"><path d=\"M 2.753 0 L 2.753 12.396 L 8.584 5.941 L 11.931 5.941 L 6.871 11.495 L 12.05 18.931 L 8.95 18.931 L 4.93 13.179 L 2.753 15.565 L 2.753 18.941 L 0 18.941 L 0 0.001 L 2.753 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tz8vof\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.018 13.228\" overflow=\"visible\"><path d=\"M 5.998 0 C 9.266 0 12.018 2.129 12.018 5.654 L 12.018 13.228 L 9.188 13.228 L 9.188 6 C 9.188 3.881 8.158 2.604 6.079 2.604 C 5.17 2.537 4.278 2.878 3.645 3.534 C 3.011 4.19 2.703 5.094 2.802 6 L 2.802 13.228 L 0 13.228 L 0 5.654 C 0 2.129 2.732 0 6 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sbefpe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.198 8.198\" overflow=\"visible\"><path d=\"M 4.099 0 C 1.835 0 0 1.835 0 4.099 C 0 6.363 1.835 8.198 4.099 8.198 C 6.363 8.198 8.198 6.363 8.198 4.099 C 8.198 1.835 6.363 0 4.099 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qejk70\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.06 3.066\" overflow=\"visible\"><path d=\"M 0 3.056 L 7.06 3.066 C 7.014 2.208 6.629 1.404 5.99 0.83 C 5.351 0.257 4.511 -0.04 3.653 0.006 C 1.821 -0.101 0.221 1.234 0 3.056 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1syf95h\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.04 3.055\" overflow=\"visible\"><path d=\"M 0 3.045 L 7.04 3.055 C 6.939 1.274 5.416 -0.09 3.634 0.005 C 1.813 -0.092 0.226 1.235 0 3.045 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aczsvp\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-18n8w3z\",\"data-framer-name\":\"intercom\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 25.252\" overflow=\"visible\"><path d=\"M 21.537 0 C 21.938 -0.002 22.337 0.078 22.707 0.236 C 23.079 0.393 23.417 0.626 23.703 0.918 C 23.988 1.212 24.214 1.56 24.37 1.944 C 24.525 2.328 24.606 2.74 24.608 3.156 L 24.608 22.103 C 24.606 22.518 24.524 22.929 24.368 23.314 C 24.213 23.696 23.986 24.043 23.698 24.338 C 23.415 24.629 23.076 24.861 22.702 25.019 C 22.33 25.176 21.932 25.255 21.53 25.252 L 3.077 25.252 C 2.675 25.255 2.277 25.175 1.904 25.018 C 1.53 24.859 1.191 24.628 0.907 24.336 C 0.62 24.041 0.392 23.692 0.238 23.31 C 0.082 22.924 0.001 22.512 0 22.096 L 0 3.156 C 0.001 2.74 0.082 2.328 0.238 1.942 C 0.394 1.558 0.621 1.209 0.907 0.916 C 1.191 0.625 1.53 0.393 1.904 0.234 C 2.275 0.077 2.674 -0.002 3.077 0 Z M 4.02 17.694 C 3.687 17.721 3.405 17.95 3.31 18.27 C 3.245 18.482 3.263 18.71 3.361 18.909 C 3.409 19.006 3.476 19.093 3.558 19.164 C 3.686 19.276 6.71 21.892 12.29 21.892 C 17.87 21.892 20.914 19.262 21.023 19.15 L 21.029 19.157 C 21.362 18.85 21.398 18.336 21.11 17.986 C 20.97 17.819 20.768 17.715 20.551 17.698 C 20.333 17.681 20.118 17.752 19.953 17.895 C 19.927 17.915 17.187 20.215 12.283 20.215 C 7.379 20.215 4.66 17.929 4.613 17.894 C 4.451 17.75 4.237 17.677 4.02 17.694 Z M 84.578 7.954 C 87.173 7.954 88.295 9.741 88.295 12.61 C 88.295 15.517 87.16 17.266 84.578 17.266 C 81.948 17.266 80.849 15.516 80.849 12.61 C 80.849 9.791 81.959 7.954 84.578 7.954 Z M 12.318 3.36 C 12.099 3.36 11.889 3.45 11.738 3.608 C 11.583 3.77 11.497 3.985 11.498 4.208 L 11.498 16.414 C 11.498 16.639 11.585 16.854 11.738 17.014 C 11.892 17.174 12.1 17.263 12.318 17.263 C 12.534 17.263 12.742 17.173 12.896 17.014 C 13.051 16.853 13.137 16.638 13.136 16.414 L 13.136 4.208 C 13.137 3.985 13.051 3.77 12.896 3.608 C 12.745 3.45 12.536 3.361 12.317 3.36 Z M 75.866 7.954 C 76.819 7.954 77.556 8.181 78.11 8.671 C 78.593 9.074 78.943 9.641 79.148 10.433 C 79.256 10.849 78.978 11.263 78.52 11.353 C 78.086 11.427 77.737 11.138 77.604 10.723 C 77.459 10.32 77.265 10.031 77.036 9.829 C 76.722 9.539 76.336 9.414 75.829 9.414 C 75.286 9.414 74.815 9.577 74.466 9.942 C 73.959 10.47 73.741 11.415 73.741 12.61 C 73.741 13.793 73.947 14.737 74.478 15.265 C 74.828 15.63 75.286 15.793 75.818 15.793 C 76.372 15.793 76.794 15.643 77.145 15.303 C 77.337 15.113 77.489 14.886 77.591 14.636 C 77.748 14.246 78.074 13.956 78.496 14.056 C 78.918 14.158 79.184 14.586 79.051 15 C 78.834 15.692 78.46 16.246 77.953 16.624 C 77.398 17.039 76.71 17.254 75.842 17.254 C 74.732 17.254 74.032 16.914 73.5 16.435 C 72.595 15.592 72.185 14.271 72.185 12.61 C 72.185 10.936 72.583 9.628 73.476 8.797 C 74.031 8.294 74.779 7.954 75.866 7.954 Z M 64.693 8.091 L 64.74 8.093 L 67.6 8.093 C 69.567 8.093 70.387 9.426 70.387 10.785 C 70.387 12.059 69.688 13.005 68.484 13.276 L 68.42 13.29 L 69.928 16.083 C 70.134 16.447 70.001 16.913 69.578 17.14 C 69.212 17.34 68.753 17.217 68.537 16.86 L 68.517 16.826 L 66.84 13.592 L 65.247 13.592 L 65.259 16.335 C 65.259 16.763 64.946 17.115 64.499 17.115 C 64.079 17.115 63.771 16.785 63.752 16.375 L 63.752 9.087 C 63.752 8.465 64.067 8.105 64.647 8.092 L 64.693 8.092 Z M 39.134 8.091 C 39.894 8.091 40.208 8.52 40.51 9.149 L 42.006 12.207 L 43.286 15.177 L 43.249 12.333 L 43.237 8.898 C 43.237 8.47 43.55 8.118 43.997 8.118 C 44.431 8.118 44.744 8.469 44.744 8.898 L 44.744 15.693 C 44.744 16.612 44.274 17.128 43.526 17.128 L 43.466 17.128 C 42.754 17.128 42.416 16.7 42.114 16.071 L 40.594 12.987 L 39.242 9.804 L 39.279 12.887 L 39.291 16.322 C 39.291 16.75 38.977 17.102 38.531 17.102 C 38.096 17.102 37.783 16.75 37.783 16.322 L 37.783 9.527 C 37.783 8.683 38.253 8.092 39.074 8.092 L 39.134 8.092 Z M 34.246 8.117 C 34.681 8.117 34.994 8.47 34.994 8.897 L 34.994 16.334 C 34.994 16.763 34.681 17.114 34.234 17.114 C 33.8 17.114 33.486 16.762 33.486 16.334 L 33.486 8.897 C 33.486 8.469 33.8 8.117 34.246 8.117 Z M 98.672 8.118 C 99.517 8.118 99.987 8.646 99.987 9.591 L 100 16.322 C 100 16.75 99.686 17.102 99.24 17.102 C 98.805 17.102 98.491 16.75 98.491 16.322 L 98.491 12.95 L 98.527 9.665 L 97.477 13 L 96.416 16.285 C 96.236 16.864 95.861 17.09 95.39 17.09 C 94.895 17.09 94.533 16.852 94.34 16.273 L 93.254 13.001 L 92.252 9.717 L 92.288 12.951 L 92.288 16.323 C 92.288 16.751 91.975 17.103 91.528 17.103 C 91.094 17.103 90.78 16.751 90.78 16.323 L 90.78 9.591 C 90.78 8.659 91.263 8.118 92.108 8.118 C 92.904 8.118 93.351 8.558 93.604 9.364 L 94.714 12.799 L 95.389 15.139 L 96.077 12.799 L 97.187 9.364 C 97.441 8.558 97.876 8.118 98.672 8.118 Z M 52.66 8.118 C 53.046 8.118 53.36 8.42 53.36 8.86 C 53.36 9.289 53.046 9.59 52.66 9.59 L 50.79 9.59 L 50.79 16.322 C 50.79 16.75 50.477 17.102 50.03 17.102 C 49.596 17.102 49.282 16.75 49.282 16.322 L 49.282 9.59 L 47.412 9.59 C 47.026 9.59 46.712 9.288 46.712 8.848 C 46.712 8.42 47.026 8.118 47.412 8.118 Z M 56.317 8.092 L 60.661 8.092 C 61.047 8.092 61.361 8.407 61.361 8.835 C 61.361 9.263 61.047 9.565 60.661 9.565 L 56.822 9.565 L 56.822 11.729 L 60.213 11.729 C 60.587 11.729 60.889 12.019 60.889 12.433 C 60.889 12.849 60.587 13.138 60.213 13.138 L 56.823 13.138 L 56.823 15.63 L 60.66 15.63 C 61.046 15.63 61.36 15.944 61.36 16.372 C 61.36 16.8 61.046 17.102 60.66 17.102 L 56.28 17.102 C 55.652 17.102 55.303 16.738 55.326 16.071 L 55.326 9.086 C 55.326 8.431 55.676 8.066 56.316 8.091 Z M 8.238 3.823 C 8.019 3.812 7.805 3.892 7.645 4.042 C 7.482 4.196 7.384 4.406 7.373 4.63 L 7.373 15.854 C 7.373 16.079 7.459 16.294 7.613 16.454 C 7.764 16.612 7.973 16.701 8.192 16.701 C 8.41 16.701 8.619 16.612 8.77 16.454 C 8.925 16.293 9.011 16.078 9.01 15.854 L 9.01 4.629 C 9.001 4.421 8.916 4.224 8.773 4.073 C 8.633 3.925 8.442 3.836 8.238 3.823 Z M 16.376 3.782 C 16.157 3.782 15.947 3.872 15.796 4.03 C 15.642 4.192 15.556 4.407 15.557 4.63 L 15.557 15.854 C 15.557 16.079 15.643 16.294 15.797 16.454 C 15.948 16.612 16.157 16.701 16.375 16.701 C 16.594 16.701 16.803 16.612 16.954 16.454 C 17.109 16.293 17.195 16.078 17.194 15.854 L 17.194 4.629 C 17.195 4.406 17.109 4.191 16.954 4.029 C 16.803 3.871 16.594 3.782 16.376 3.781 Z M 84.566 9.426 C 83.154 9.426 82.406 10.471 82.406 12.61 C 82.406 14.75 83.13 15.793 84.566 15.793 C 85.99 15.793 86.75 14.749 86.75 12.61 C 86.75 10.47 86.002 9.426 84.566 9.426 Z M 20.488 5.464 C 20.27 5.465 20.061 5.555 19.91 5.713 C 19.755 5.875 19.669 6.09 19.67 6.313 L 19.67 13.896 C 19.67 14.121 19.756 14.336 19.91 14.496 C 20.061 14.654 20.27 14.743 20.489 14.743 C 20.708 14.743 20.917 14.654 21.068 14.496 C 21.222 14.334 21.308 14.119 21.307 13.896 L 21.307 6.313 C 21.308 6.09 21.222 5.875 21.067 5.713 C 20.916 5.555 20.707 5.465 20.488 5.464 Z M 4.132 5.506 C 3.913 5.495 3.699 5.574 3.539 5.724 C 3.376 5.878 3.278 6.089 3.267 6.313 L 3.267 13.882 C 3.267 14.107 3.353 14.322 3.507 14.482 C 3.658 14.64 3.867 14.729 4.085 14.729 C 4.304 14.729 4.513 14.64 4.664 14.482 C 4.819 14.321 4.905 14.106 4.904 13.882 L 4.904 6.312 C 4.895 6.104 4.81 5.907 4.667 5.756 C 4.527 5.608 4.336 5.519 4.132 5.506 Z M 67.623 9.564 L 65.246 9.564 L 65.246 12.169 L 67.636 12.169 C 68.444 12.169 68.866 11.628 68.866 10.859 C 68.866 10.092 68.419 9.564 67.623 9.564 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1skthjl\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.608 25.252\" overflow=\"visible\"><path d=\"M 21.537 0 C 21.938 -0.002 22.337 0.078 22.707 0.236 C 23.079 0.393 23.417 0.626 23.703 0.918 C 23.988 1.212 24.214 1.56 24.37 1.944 C 24.525 2.328 24.606 2.74 24.608 3.156 L 24.608 22.103 C 24.606 22.518 24.524 22.929 24.368 23.314 C 24.213 23.696 23.986 24.043 23.698 24.338 C 23.415 24.629 23.076 24.861 22.702 25.019 C 22.33 25.176 21.932 25.255 21.53 25.252 L 3.077 25.252 C 2.675 25.255 2.277 25.175 1.904 25.018 C 1.53 24.859 1.191 24.628 0.907 24.336 C 0.62 24.041 0.392 23.692 0.238 23.31 C 0.082 22.924 0.001 22.512 0 22.096 L 0 3.156 C 0.001 2.74 0.082 2.328 0.238 1.942 C 0.394 1.558 0.621 1.209 0.907 0.916 C 1.191 0.625 1.53 0.393 1.904 0.234 C 2.275 0.077 2.674 -0.002 3.077 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lfu1zj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.033 4.2\" overflow=\"visible\"><path d=\"M 0.749 0.002 C 0.416 0.029 0.134 0.258 0.039 0.578 C -0.027 0.79 -0.009 1.019 0.09 1.217 C 0.138 1.314 0.205 1.401 0.287 1.472 C 0.415 1.584 3.439 4.2 9.019 4.2 C 14.599 4.2 17.643 1.57 17.752 1.458 L 17.758 1.465 C 18.091 1.158 18.126 0.644 17.839 0.294 C 17.698 0.127 17.497 0.023 17.279 0.006 C 17.062 -0.011 16.846 0.06 16.682 0.203 C 16.656 0.223 13.916 2.523 9.012 2.523 C 4.108 2.523 1.389 0.237 1.342 0.202 C 1.179 0.058 0.965 -0.014 0.749 0.002 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1i6ju6b\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.446 9.312\" overflow=\"visible\"><path d=\"M 3.729 0 C 6.324 0 7.446 1.787 7.446 4.656 C 7.446 7.563 6.311 9.312 3.729 9.312 C 1.099 9.312 0 7.562 0 4.656 C 0 1.837 1.11 0 3.729 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l5s27z\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.638 13.903\" overflow=\"visible\"><path d=\"M 0.82 0 C 0.601 0 0.391 0.09 0.24 0.248 C 0.085 0.409 -0.001 0.625 0 0.848 L 0 13.054 C 0 13.279 0.087 13.494 0.24 13.654 C 0.394 13.814 0.602 13.903 0.82 13.903 C 1.036 13.903 1.244 13.813 1.398 13.654 C 1.553 13.493 1.639 13.277 1.638 13.054 L 1.638 0.848 C 1.639 0.625 1.553 0.409 1.398 0.248 C 1.247 0.09 1.038 0 0.819 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1flkdww\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.986 9.3\" overflow=\"visible\"><path d=\"M 3.681 0 C 4.634 0 5.371 0.227 5.925 0.717 C 6.408 1.12 6.758 1.687 6.963 2.479 C 7.071 2.895 6.793 3.309 6.335 3.399 C 5.901 3.473 5.552 3.184 5.419 2.769 C 5.274 2.366 5.08 2.077 4.851 1.875 C 4.537 1.585 4.151 1.46 3.644 1.46 C 3.101 1.46 2.63 1.623 2.281 1.988 C 1.774 2.516 1.556 3.461 1.556 4.656 C 1.556 5.839 1.762 6.783 2.293 7.311 C 2.643 7.676 3.101 7.839 3.633 7.839 C 4.187 7.839 4.609 7.689 4.96 7.349 C 5.152 7.159 5.304 6.932 5.406 6.682 C 5.563 6.292 5.889 6.002 6.311 6.102 C 6.733 6.204 6.999 6.632 6.866 7.046 C 6.649 7.738 6.275 8.292 5.768 8.67 C 5.213 9.085 4.525 9.3 3.657 9.3 C 2.547 9.3 1.847 8.96 1.315 8.481 C 0.41 7.638 0 6.317 0 4.656 C 0 2.982 0.398 1.674 1.291 0.843 C 1.846 0.34 2.594 0 3.681 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zafem7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.635 9.145\" overflow=\"visible\"><path d=\"M 0.941 0 L 0.988 0.002 L 3.848 0.002 C 5.815 0.002 6.635 1.335 6.635 2.694 C 6.635 3.968 5.936 4.914 4.732 5.185 L 4.668 5.199 L 6.176 7.992 C 6.382 8.356 6.249 8.822 5.826 9.049 C 5.46 9.249 5.001 9.126 4.785 8.769 L 4.765 8.735 L 3.088 5.501 L 1.495 5.501 L 1.507 8.244 C 1.507 8.672 1.194 9.024 0.747 9.024 C 0.327 9.024 0.019 8.694 0 8.284 L 0 0.996 C 0 0.374 0.315 0.014 0.895 0.001 L 0.941 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zjchz2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.961 9.037\" overflow=\"visible\"><path d=\"M 1.351 0 C 2.111 0 2.425 0.429 2.727 1.058 L 4.223 4.116 L 5.503 7.086 L 5.466 4.242 L 5.454 0.807 C 5.454 0.379 5.767 0.027 6.214 0.027 C 6.648 0.027 6.961 0.378 6.961 0.807 L 6.961 7.602 C 6.961 8.521 6.491 9.037 5.743 9.037 L 5.683 9.037 C 4.971 9.037 4.633 8.609 4.331 7.98 L 2.811 4.896 L 1.459 1.713 L 1.496 4.796 L 1.508 8.231 C 1.508 8.659 1.194 9.011 0.748 9.011 C 0.313 9.011 0 8.659 0 8.231 L 0 1.436 C 0 0.592 0.47 0.001 1.291 0.001 L 1.351 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1aye5py\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.508 8.997\" overflow=\"visible\"><path d=\"M 0.76 0 C 1.195 0 1.508 0.353 1.508 0.78 L 1.508 8.217 C 1.508 8.646 1.195 8.997 0.748 8.997 C 0.314 8.997 0 8.645 0 8.217 L 0 0.78 C 0 0.352 0.314 0 0.76 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qgd3it\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.22 8.985\" overflow=\"visible\"><path d=\"M 7.892 0 C 8.737 0 9.207 0.528 9.207 1.473 L 9.22 8.204 C 9.22 8.632 8.906 8.984 8.46 8.984 C 8.025 8.984 7.711 8.632 7.711 8.204 L 7.711 4.832 L 7.747 1.547 L 6.697 4.882 L 5.636 8.167 C 5.456 8.746 5.081 8.972 4.61 8.972 C 4.115 8.972 3.753 8.734 3.56 8.155 L 2.474 4.883 L 1.472 1.599 L 1.508 4.833 L 1.508 8.205 C 1.508 8.633 1.195 8.985 0.748 8.985 C 0.314 8.985 0 8.633 0 8.205 L 0 1.473 C 0 0.541 0.483 0 1.328 0 C 2.124 0 2.571 0.44 2.824 1.246 L 3.934 4.681 L 4.609 7.021 L 5.297 4.681 L 6.407 1.246 C 6.661 0.44 7.096 0 7.892 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hvihet\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.648 8.984\" overflow=\"visible\"><path d=\"M 5.948 0 C 6.334 0 6.648 0.302 6.648 0.742 C 6.648 1.171 6.334 1.472 5.948 1.472 L 4.078 1.472 L 4.078 8.204 C 4.078 8.632 3.765 8.984 3.318 8.984 C 2.884 8.984 2.57 8.632 2.57 8.204 L 2.57 1.472 L 0.7 1.472 C 0.314 1.472 0 1.17 0 0.73 C 0 0.302 0.314 0 0.7 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dx7zxq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.036 9.012\" overflow=\"visible\"><path d=\"M 0.992 0.002 L 5.336 0.002 C 5.722 0.002 6.036 0.317 6.036 0.745 C 6.036 1.173 5.722 1.475 5.336 1.475 L 1.497 1.475 L 1.497 3.639 L 4.888 3.639 C 5.262 3.639 5.564 3.929 5.564 4.343 C 5.564 4.759 5.262 5.048 4.888 5.048 L 1.498 5.048 L 1.498 7.54 L 5.335 7.54 C 5.721 7.54 6.035 7.854 6.035 8.282 C 6.035 8.71 5.721 9.012 5.335 9.012 L 0.955 9.012 C 0.327 9.012 -0.022 8.648 0.001 7.981 L 0.001 0.996 C 0.001 0.341 0.351 -0.024 0.991 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y1y6q2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.637 12.879\" overflow=\"visible\"><path d=\"M 0.865 0.001 C 0.646 -0.01 0.432 0.069 0.272 0.22 C 0.109 0.374 0.011 0.584 0 0.808 L 0 12.032 C 0 12.257 0.086 12.472 0.24 12.632 C 0.391 12.79 0.6 12.879 0.819 12.879 C 1.037 12.879 1.246 12.79 1.397 12.632 C 1.552 12.47 1.638 12.255 1.637 12.032 L 1.637 0.807 C 1.628 0.599 1.543 0.402 1.4 0.251 C 1.26 0.103 1.069 0.014 0.865 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jvz2x7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.637 12.92\" overflow=\"visible\"><path d=\"M 0.819 0.001 C 0.6 0.001 0.39 0.091 0.239 0.249 C 0.085 0.411 -0.001 0.626 0 0.849 L 0 12.073 C 0 12.298 0.086 12.513 0.24 12.673 C 0.391 12.831 0.6 12.92 0.819 12.92 C 1.037 12.92 1.246 12.831 1.397 12.673 C 1.552 12.512 1.638 12.296 1.637 12.073 L 1.637 0.848 C 1.638 0.625 1.552 0.409 1.397 0.248 C 1.246 0.09 1.037 0.001 0.819 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w4d8fn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.344 6.367\" overflow=\"visible\"><path d=\"M 2.16 0 C 0.748 0 0 1.045 0 3.184 C 0 5.324 0.724 6.367 2.16 6.367 C 3.584 6.367 4.344 5.323 4.344 3.184 C 4.344 1.044 3.596 0 2.16 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wurotb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.637 9.279\" overflow=\"visible\"><path d=\"M 0.818 0 C 0.6 0.001 0.391 0.091 0.24 0.249 C 0.085 0.41 -0.001 0.626 0 0.849 L 0 8.432 C 0 8.657 0.086 8.872 0.24 9.032 C 0.391 9.19 0.6 9.279 0.819 9.279 C 1.038 9.279 1.247 9.19 1.398 9.032 C 1.552 8.87 1.638 8.655 1.637 8.432 L 1.637 0.849 C 1.638 0.626 1.552 0.41 1.397 0.249 C 1.246 0.091 1.037 0.001 0.818 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hzhnvd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.637 9.224\" overflow=\"visible\"><path d=\"M 0.865 0.001 C 0.646 -0.01 0.432 0.069 0.272 0.219 C 0.109 0.373 0.011 0.584 0 0.808 L 0 8.377 C 0 8.602 0.086 8.817 0.24 8.977 C 0.391 9.134 0.6 9.224 0.819 9.224 C 1.037 9.224 1.246 9.134 1.397 8.977 C 1.552 8.816 1.638 8.6 1.637 8.377 L 1.637 0.807 C 1.628 0.599 1.543 0.402 1.4 0.251 C 1.26 0.103 1.069 0.014 0.865 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bfpqze\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.62 2.605\" overflow=\"visible\"><path d=\"M 2.377 0 L 0 0 L 0 2.605 L 2.39 2.605 C 3.198 2.605 3.62 2.064 3.62 1.295 C 3.62 0.528 3.173 0 2.377 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q21xh0\",\"data-framer-name\":\"Feature / Multiple / 8\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-esa93m\",\"data-framer-name\":\"Section Heading\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-164i5hv\",\"data-styles-preset\":\"SELqKM73y\",style:{\"--framer-text-alignment\":\"center\"},children:\"Go from firefighting to proactive retention in days… not months\"})}),className:\"framer-mck2qg\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ks1rt1\",\"data-styles-preset\":\"OIgVEUH6Q\",style:{\"--framer-text-alignment\":\"center\"},children:\"You don’t need another platform. Accoil gives your CRM a nervous system: it reads product usage, gives you account- and user-level health, explains what it means, and suggests what actions you can take next.\"})}),className:\"framer-v5jw89\",\"data-framer-name\":\"Know who to call. Know what to say. Know you'll catch them in time.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-2gbe4i\",\"data-framer-name\":\"Frame 26156\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qexye6\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aerv97\",\"data-framer-name\":\"Frame 26157\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",style:{\"--framer-text-alignment\":\"center\"},children:\"Before Accoil\"})}),className:\"framer-bxyds9\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u4rotj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5nfewt\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v12dcm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12d3rux-container\",\"data-framer-name\":\"x-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"x-lg\",nodeId:\"IogSePC7X\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"IogSePC7X\",layoutId:\"IogSePC7X\",name:\"x-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-x-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Surprise churn, late escalations\"})}),className:\"framer-qxj243\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aqyt17\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yu0ot\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dhzmmh-container\",\"data-framer-name\":\"x-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"x-lg\",nodeId:\"iwSb0gVT4\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"iwSb0gVT4\",layoutId:\"iwSb0gVT4\",name:\"x-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-x-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"“Very manual” account reviews and prep\"})}),className:\"framer-1silnm1\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qm0rkr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-139erff\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-145bzmy-container\",\"data-framer-name\":\"x-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"x-lg\",nodeId:\"MV1WGWWq_\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"MV1WGWWq_\",layoutId:\"MV1WGWWq_\",name:\"x-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-x-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"7+ tools, no single source oftruth\"})}),className:\"framer-lxv4ly\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6uqi7g\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3akuq2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zm1r4e-container\",\"data-framer-name\":\"x-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"x-lg\",nodeId:\"lUUbd2pIK\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"lUUbd2pIK\",layoutId:\"lUUbd2pIK\",name:\"x-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-x-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Alerts with no context; false positives\"})}),className:\"framer-f4ie95\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bmdnmo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-55svc8\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pfynv4-container\",\"data-framer-name\":\"x-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"x-lg\",nodeId:\"PqYsFgi_r\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"PqYsFgi_r\",layoutId:\"PqYsFgi_r\",name:\"x-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-x-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"“We already have analytics, but can’t act”\"})}),className:\"framer-ozwty4\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ikdn8d\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dczjj4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-r5s6xj-container\",\"data-framer-name\":\"x-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"x-lg\",nodeId:\"bq6ZWJnim\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"bq6ZWJnim\",layoutId:\"bq6ZWJnim\",name:\"x-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-x-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M2.146 2.854a.5.5 0 1 1 .708-.708L8 7.293l5.146-5.147a.5.5 0 0 1 .708.708L8.707 8l5.147 5.146a.5.5 0 0 1-.708.708L8 8.707l-5.146 5.147a.5.5 0 0 1-.708-.708L7.293 8z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"CS time goes to spreadsheets, not customers\"})}),className:\"framer-mv0vbn\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f4fya9\",\"data-framer-name\":\"Frame 488\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1967.92+50+320+0+0+625-221.5+0),pixelHeight:1592,pixelWidth:2432,sizes:\"539px\",src:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592\",srcSet:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=512&width=2432&height=1592 512w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=1024&width=2432&height=1592 1024w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=2048&width=2432&height=1592 2048w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592 2432w\"}},gR0hVL8hw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1140+130+320+0+649-221.5+0),pixelHeight:1592,pixelWidth:2432,sizes:\"539px\",src:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592\",srcSet:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=512&width=2432&height=1592 512w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=1024&width=2432&height=1592 1024w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=2048&width=2432&height=1592 2048w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592 2432w\"}},KOSaM6d8G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2113.83+50+320+0+663-221.5+0),pixelHeight:1592,pixelWidth:2432,sizes:\"539px\",src:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592\",srcSet:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=512&width=2432&height=1592 512w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=1024&width=2432&height=1592 1024w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=2048&width=2432&height=1592 2048w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592 2432w\"}},x02gF1qOH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1816.93+25+320+0+0+625-221.5+0),pixelHeight:1592,pixelWidth:2432,sizes:\"539px\",src:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592\",srcSet:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=512&width=2432&height=1592 512w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=1024&width=2432&height=1592 1024w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=2048&width=2432&height=1592 2048w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592 2432w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1140+130+320+0+625-221.5+0),pixelHeight:1592,pixelWidth:2432,sizes:\"539px\",src:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592\",srcSet:\"https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=512&width=2432&height=1592 512w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=1024&width=2432&height=1592 1024w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?scale-down-to=2048&width=2432&height=1592 2048w,https://framerusercontent.com/images/qek2u6SeAJZKIfe5gVB2mSWlHoQ.png?width=2432&height=1592 2432w\"},className:\"framer-1vw08ho\",\"data-framer-name\":\"image 2\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-skuijn\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19cn846\",\"data-framer-name\":\"Frame 26157\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",style:{\"--framer-text-alignment\":\"center\"},children:\"After  Accoil\"})}),className:\"framer-tyu65h\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nm3bu0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s8cw08\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r9qbro\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hxh19q-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"SZ5HaZZzL\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"SZ5HaZZzL\",layoutId:\"SZ5HaZZzL\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Predictive health with clear reasons\"})}),className:\"framer-y8h65w\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ws8j4z\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-517o91\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19jldnf-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"j9AlqaOWV\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"j9AlqaOWV\",layoutId:\"j9AlqaOWV\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Daily risk & growth feed in Slack\"})}),className:\"framer-11rg4fs\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4b0ozx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qd22cf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qp0wgs-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"FtfEDFdbI\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"FtfEDFdbI\",layoutId:\"FtfEDFdbI\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Simple prioritization: who to rescue, who to grow\"})}),className:\"framer-9gzst3\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kv2oag\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oh57kx\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2acrys-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"hnfNjwNlI\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"hnfNjwNlI\",layoutId:\"hnfNjwNlI\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Next-best actions suggested in your CRM/CSP\"})}),className:\"framer-2yxtmn\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdjv9x\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17sznxk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cuao8k-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"JUSgCEuRM\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"JUSgCEuRM\",layoutId:\"JUSgCEuRM\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Explainable, customizable health scoring you control (no black boxes here)\"})}),className:\"framer-18ai8a8\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mj5tpw\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10qk46x\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rzjz4d-container\",\"data-framer-name\":\"check-lg\",isAuthoredByUser:true,isModuleExternal:true,name:\"check-lg\",nodeId:\"zTOB2IlBy\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(255, 255, 255)\",height:\"100%\",id:\"zTOB2IlBy\",layoutId:\"zTOB2IlBy\",name:\"check-lg\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-check-lg\" viewBox=\"0 0 16 16\">\\n  <path d=\"M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",style:{\"--framer-text-color\":\"rgb(69, 69, 69)\"},children:\"Combine usage, revenue, and support context in one CRM view\"})}),className:\"framer-cc8rnk\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12bx63p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2lfkq6\",\"data-framer-name\":\"Frame 2105\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f6p0mz\",\"data-framer-name\":\"Header Chat Navigation Bar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c70r7t\",\"data-framer-name\":\"Navigation Bar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14khyo3\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10qywaa\",\"data-framer-name\":\"leadingIcon?\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,style:{rotate:-90},svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.7071 3.29289C15.0976 3.68342 15.0976 4.31658 14.7071 4.70711L7.41421 12L14.7071 19.2929C15.0976 19.6834 15.0976 20.3166 14.7071 20.7071C14.3166 21.0976 13.6834 21.0976 13.2929 20.7071L5.29289 12.7071C4.90237 12.3166 4.90237 11.6834 5.29289 11.2929L13.2929 3.29289C13.6834 2.90237 14.3166 2.90237 14.7071 3.29289Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-888tzj\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1967.92+50+320+0+673+625-228.5+247-314.25+0+0+0+0+16+0+0+39.375),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NYWz0rgtRrWNVhHmo2plYvwGo.png?width=512&height=512\"}},gR0hVL8hw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1140+130+320+0+649-228.5+247-314.25+0+0+0+0+16+0+0+39.375),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NYWz0rgtRrWNVhHmo2plYvwGo.png?width=512&height=512\"}},KOSaM6d8G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2113.83+50+320+0+663-228.5+247-314.25+0+0+0+0+16+0+0+39.375),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NYWz0rgtRrWNVhHmo2plYvwGo.png?width=512&height=512\"}},x02gF1qOH:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1816.93+25+320+0+673+625-228.5+247-314.25+0+0+0+0+16+0+0+39.375),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NYWz0rgtRrWNVhHmo2plYvwGo.png?width=512&height=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1140+130+320+0+625-228.5+247-314.25+0+0+0+0+16+0+0+39.375),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NYWz0rgtRrWNVhHmo2plYvwGo.png?width=512&height=512\"},className:\"framer-1qlk0dq\",\"data-framer-name\":\"A professional individual wearing a headset and a business casual outfit, smiling while sitting at a desk with a laptop.\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTgwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"800\",\"--framer-line-height\":\"135%\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:\"Peaches Co\"})}),className:\"framer-pr4yl3\",\"data-framer-name\":\"Analytics Support\",fonts:[\"GF;Nunito-800\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18n0mj5\",\"data-framer-name\":\"trailingIcon1?\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.45492 13.5641C1.06926 7.09772 5.99874 1 12.612 1C18.3489 1 22.9996 5.6507 22.9996 11.3876C22.9996 18.0008 16.9019 22.9303 10.4355 21.5447L8.43813 21.1167C8.18855 21.0632 7.9292 21.0776 7.68705 21.1583L4.71485 22.149C2.94464 22.7391 1.26051 21.055 1.85059 19.2847L2.84132 16.3125C2.92203 16.0704 2.9364 15.811 2.88292 15.5615L2.45492 13.5641ZM12.612 3C7.27203 3 3.29165 7.92368 4.41052 13.1451L4.83852 15.1424C4.96688 15.7414 4.9324 16.3638 4.73868 16.945L3.74795 19.9172C3.67905 20.1239 3.8757 20.3205 4.0824 20.2516L7.0546 19.2609C7.63575 19.0672 8.25819 19.0327 8.85719 19.1611L10.8545 19.5891C16.0759 20.7079 20.9996 16.7276 20.9996 11.3876C20.9996 6.75527 17.2443 3 12.612 3Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-104g9cs\",\"data-framer-name\":\"Frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-59qcp\",\"data-framer-name\":\"Chat Date\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19inhlu\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:135,svg:'<svg width=\"135\" height=\"4\" viewBox=\"-1 -1 135 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 1H133\" stroke=\"black\" stroke-opacity=\"0.12\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLTgwMA==\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"800\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.5)\"},children:\"Today\"})}),className:\"framer-1flu30g\",\"data-framer-name\":\"Today\",fonts:[\"GF;Nunito-800\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1io1bto\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:135,svg:'<svg width=\"135\" height=\"4\" viewBox=\"-1 -1 135 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 1H132.5\" stroke=\"black\" stroke-opacity=\"0.12\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1miorsp\",\"data-framer-name\":\"Chat Message 1 from them\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qbqhri\",\"data-framer-name\":\"Message from other user\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TnVuaXRvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Nunito\", \"Nunito Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"135%\"},children:\"Hi there! I noticed you haven't logged in for a week. How can I help you get back on track?\"})}),className:\"framer-ema4af\",\"data-framer-name\":\"Hello, how can I assist you with analytics today?\",fonts:[\"GF;Nunito-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kcg7ki\",\"data-framer-name\":\"Chat Liked\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"18\" viewBox=\"0 0 19 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.82937 17.0916L9.50021 15.7499L10.171 17.0916C9.74872 17.3027 9.25166 17.3027 8.82937 17.0916ZM8.58503 4.38543C6.70234 2.23074 3.21622 2.42507 2.79723 5.65363C2.64318 6.84071 2.70661 7.99512 3.12529 8.99994C5.00033 13.4999 9.50021 15.7499 9.50021 15.7499C8.82937 17.0916 8.82849 17.0911 8.82849 17.0911L8.82751 17.0906L8.82522 17.0895L8.81941 17.0866L8.8029 17.0781C8.78975 17.0714 8.77233 17.0624 8.75088 17.0511C8.70799 17.0285 8.64889 16.9969 8.57536 16.9561C8.42839 16.8745 8.22325 16.7562 7.97428 16.601C7.47739 16.2912 6.79999 15.8308 6.05953 15.218C4.59083 14.0025 2.80439 12.1297 1.74068 9.57687C1.18712 8.24836 1.13509 6.80613 1.30971 5.46059C1.47855 4.15951 2.04648 3.08595 2.95061 2.36836C3.84233 1.66061 4.93539 1.39912 5.98336 1.47653C7.25835 1.5707 8.52528 2.16321 9.50021 3.16613C10.4752 2.16319 11.7421 1.57066 13.0171 1.47648C14.0651 1.39907 15.1582 1.66056 16.0499 2.3683C16.9541 3.08589 17.522 4.15946 17.6909 5.46054C17.8655 6.80609 17.8135 8.24834 17.26 9.57686C16.1963 12.1297 14.4098 14.0025 12.941 15.218C12.2005 15.8308 11.5231 16.2912 11.0261 16.601C10.7772 16.7562 10.572 16.8745 10.425 16.9561C10.3515 16.9969 10.2924 17.0286 10.2495 17.0511C10.2281 17.0624 10.2106 17.0714 10.1975 17.0782L10.181 17.0866L10.1752 17.0895L10.1729 17.0907L10.1719 17.0911C10.1719 17.0911 10.171 17.0916 9.50021 15.7499C9.50021 15.7499 14.0004 13.4999 15.8754 8.99994C16.294 7.99511 16.3574 6.8407 16.2034 5.65361C15.7843 2.425 12.2981 2.23069 10.4154 4.38543C10.376 4.43051 10.3373 4.47662 10.2994 4.52375C9.96038 4.94482 9.04004 4.94482 8.70105 4.52374C8.66311 4.47662 8.62442 4.43051 8.58503 4.38543Z\" fill=\"black\" fill-opacity=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cpjri0\",\"data-framer-name\":\"Card 7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11qfnzd\",\"data-framer-name\":\"Frame 465\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-160v7al\",\"data-framer-name\":\"Frame 406\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xqe5ht\",\"data-framer-name\":\"Accoil logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0006 14.4872L8.57388 16.9584C7.30593 19.1545 4.49358 19.9081 2.29744 18.6402C0.101291 17.3722 -0.652308 14.5598 0.615644 12.3637L5.99657 3.04367C6.80629 1.64119 8.2459 0.827012 9.75266 0.751977C11.4325 0.654393 13.1054 1.48621 14.0034 3.04163L19.3843 12.3617C20.6523 14.5579 19.8988 17.3702 17.7026 18.6382C15.5065 19.9061 12.6941 19.1525 11.4262 16.9564L10.0006 14.4872ZM15.3635 11.0144C13.342 11.0144 11.7009 12.6555 11.7009 14.677C11.7009 16.6984 13.342 18.3395 15.3635 18.3395C17.385 18.3395 19.026 16.6984 19.026 14.677C19.026 12.6555 17.385 11.0144 15.3635 11.0144Z\" fill=\"#226D4F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by05MDA=\",\"--framer-font-family\":'\"Lato\", sans-serif',\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"35.95px\",\"--framer-text-color\":\"rgb(29, 28, 29)\"},children:\"Accoil\"})}),className:\"framer-ryatji\",\"data-framer-name\":\"Accoil\",fonts:[\"GF;Lato-900\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jqdqu\",\"data-framer-name\":\"Bot icon\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ub73l2\",\"data-framer-name\":\"Outline & Filled button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by02MDA=\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"13.07px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"35.95px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(180, 180, 180)\"},children:\"BOT\"})}),className:\"framer-12jeby0\",\"data-framer-name\":\"Label\",fonts:[\"GF;Lato-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"rgb(97, 96, 97)\"},children:\"3:46 PM\"})}),className:\"framer-smgati\",\"data-framer-name\":\"3:46 PM\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(44, 45, 48)\"},children:\"Peaches Co engagement dropped by 12 points \"})}),className:\"framer-15wiqe1\",\"data-framer-name\":\"Peaches Co engagement dropped by 12 points\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ab9l4l\",\"data-framer-name\":\"Frame 2104\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Help them\"})}),className:\"framer-1d0u10n\",\"data-framer-name\":\"Help them\",fonts:[\"GF;Lato-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-utnm1c\",\"data-framer-name\":\"Feature / Multiple / 4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h8xd9f\",\"data-framer-name\":\"Section Heading\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-164i5hv\",\"data-styles-preset\":\"SELqKM73y\",style:{\"--framer-text-alignment\":\"center\"},children:\"We built this for you if your Monday looks like:\"})}),className:\"framer-18b7ckt\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-w5zek1\",\"data-framer-name\":\"Features List\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ktforj\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u6o93m\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dezmqg-container\",\"data-framer-name\":\"shield-server\",isAuthoredByUser:true,isModuleExternal:true,name:\"shield-server\",nodeId:\"aJ1LAQEt4\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"aJ1LAQEt4\",layoutId:\"aJ1LAQEt4\",name:\"shield-server\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs/><ellipse cx=\"9.14\" cy=\"4.36\" rx=\"7.64\" ry=\"2.86\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><path d=\"M1.5,9.14c0,1,1.36,1.87,3.41,2.38A17.84,17.84,0,0,0,9.14,12a17,17,0,0,0,1.91-.1\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><path d=\"M1.5,13.91c0,1.58,3.42,2.86,7.64,2.86.66,0,1.31,0,1.92-.09\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><polyline points=\"1.5 4.36 1.5 9.14 1.5 18.68\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><line x1=\"16.77\" y1=\"9.14\" x2=\"16.77\" y2=\"4.36\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><path d=\"M1.5,18.68c0,1.59,3.42,2.87,7.64,2.87a17.71,17.71,0,0,0,3.56-.34\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><path d=\"M17.74,22.48l-.06,0h0A6.58,6.58,0,0,1,13,16.2V12.42l4.73-1.37,4.82,1.37v3.75A6.56,6.56,0,0,1,17.74,22.48Z\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/></svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fg9r7m\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wcvtha\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"The monthly data dump\"})}),className:\"framer-1hf3k6z\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",children:\"\\\"Product sends a spreadsheet or says 'check Tableau'\\\"\"})}),className:\"framer-1kdgze3\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"47,000 rows. Zero context. Four hours to decode what it means.\"})}),className:\"framer-srwu8u\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zccqzv\",\"data-border\":true,\"data-framer-name\":\"7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11jn253\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ft8bz-container\",\"data-framer-name\":\"magnifying-glass-bar-chart\",isAuthoredByUser:true,isModuleExternal:true,name:\"magnifying-glass-bar-chart\",nodeId:\"T3GAq18eD\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"T3GAq18eD\",layoutId:\"T3GAq18eD\",name:\"magnifying-glass-bar-chart\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs/><rect x=\"2.45\" y=\"16.77\" width=\"3.82\" height=\"5.73\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><rect x=\"17.73\" y=\"9.14\" width=\"3.82\" height=\"13.36\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><rect x=\"10.09\" y=\"12.95\" width=\"3.82\" height=\"9.55\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><line x1=\"0.55\" y1=\"22.5\" x2=\"23.45\" y2=\"22.5\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><circle cx=\"11.05\" cy=\"5.32\" r=\"3.82\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><line x1=\"4.36\" y1=\"12\" x2=\"8.18\" y2=\"8.18\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/></svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10gs49y\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d0rk5z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"The lying health score\"})}),className:\"framer-1a2y1x3\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",children:\"\\\"Our 'healthy' account just churned\\\"\"})}),className:\"framer-1lztve1\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Health score said 94/100. The biggest power user went dark 3 weeks ago. Nobody noticed.\"})}),className:\"framer-ilnzpc\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18wpzf6\",\"data-border\":true,\"data-framer-name\":\"8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15twfb3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iyxth0-container\",\"data-framer-name\":\"calendar\",isAuthoredByUser:true,isModuleExternal:true,name:\"calendar\",nodeId:\"FZRjWkhae\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"FZRjWkhae\",layoutId:\"FZRjWkhae\",name:\"calendar\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs/><rect x=\"1.48\" y=\"3.37\" width=\"21.04\" height=\"4.78\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><rect x=\"1.48\" y=\"8.15\" width=\"21.04\" height=\"14.35\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><line x1=\"12\" y1=\"0.5\" x2=\"12\" y2=\"5.28\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><line x1=\"6.26\" y1=\"0.5\" x2=\"6.26\" y2=\"5.28\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><line x1=\"17.74\" y1=\"0.5\" x2=\"17.74\" y2=\"5.28\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><polyline points=\"6.26 12.94 10.09 12.94 10.09 15.8 7.22 15.8 7.22 18.67 11.04 18.67\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><rect x=\"13.91\" y=\"12.93\" width=\"3.83\" height=\"2.87\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><rect x=\"13.91\" y=\"15.8\" width=\"3.83\" height=\"2.87\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/></svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6obe1z\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g7guli\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Monday morning guesswork\"})}),className:\"framer-dhaact\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-pduiqt\",\"data-styles-preset\":\"IawcPHtI8\",children:'\"I have no idea who actually needs help\"'})}),className:\"framer-1aszsd8\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"All these tools. All this data. Still just guessing who to call.\"})}),className:\"framer-tkflia\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gzmyew\",\"data-framer-name\":\"Project / Single / 3\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-164i5hv\",\"data-styles-preset\":\"SELqKM73y\",style:{\"--framer-text-alignment\":\"center\"},children:\"Accoil delivers clarity so you can move revenue\"})}),className:\"framer-tftlft\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j6a4na\",\"data-framer-name\":\"Component\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,y:(componentViewport?.y||0)+0+4705.16+50+144+0+0},gR0hVL8hw:{width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,y:(componentViewport?.y||0)+0+3133.62+80+144+0+0},KOSaM6d8G:{width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,y:(componentViewport?.y||0)+0+3801.45+50+144+0+0},x02gF1qOH:{width:`calc(${componentViewport?.width||\"100vw\"} - 50px)`,y:(componentViewport?.y||0)+0+4868.79+25+144+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:728,width:`calc(${componentViewport?.width||\"100vw\"} - 280px)`,y:(componentViewport?.y||0)+0+3109.62+80+144+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-29fpv1-container\",nodeId:\"q_m6qMz_v\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{variant:\"OufG3ap8p\"},KOSaM6d8G:{variant:\"gx46ozw9F\"},x02gF1qOH:{variant:\"OufG3ap8p\"}},children:/*#__PURE__*/_jsx(VerticalTabs,{height:\"100%\",id:\"q_m6qMz_v\",layoutId:\"q_m6qMz_v\",style:{width:\"100%\"},variant:\"I1:1128;25:1645\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-blsjdj\",\"data-framer-name\":\"Feature / Multiple / 4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e7lv7t\",\"data-framer-name\":\"Section Heading\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-164i5hv\",\"data-styles-preset\":\"SELqKM73y\",style:{\"--framer-text-alignment\":\"center\"},children:\"Teams\"})}),className:\"framer-1hfrfzh\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q2vs2e\",\"data-framer-name\":\"Features List\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p0lex8\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-451dig\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-c9dga4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nwf7u9-container\",\"data-framer-name\":\"life-buoy\",isAuthoredByUser:true,isModuleExternal:true,name:\"life-buoy\",nodeId:\"qBWzlKxix\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"qBWzlKxix\",layoutId:\"qBWzlKxix\",name:\"life-buoy\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><circle cx=\"12\" cy=\"12\" r=\"10\"/><circle cx=\"12\" cy=\"12\" r=\"4\"/><line x1=\"4.93\" y1=\"4.93\" x2=\"9.17\" y2=\"9.17\"/><line x1=\"14.83\" y1=\"14.83\" x2=\"19.07\" y2=\"19.07\"/><line x1=\"14.83\" y1=\"9.17\" x2=\"19.07\" y2=\"4.93\"/><line x1=\"14.83\" y1=\"9.17\" x2=\"18.36\" y2=\"5.64\"/><line x1=\"4.93\" y1=\"19.07\" x2=\"9.17\" y2=\"14.83\"/></svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Customer Success wants to…\"})}),className:\"framer-1xxthtc\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e3m4mn\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Keep every customer moving forward by seeing early warning signs and opportunities in product usage data.\"})}),className:\"framer-piz301\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12uvjet\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h42yv7\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ppijhm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cgk4so-container\",\"data-framer-name\":\"handshake\",isAuthoredByUser:true,isModuleExternal:true,name:\"handshake\",nodeId:\"Ro7s5U4hO\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"Ro7s5U4hO\",layoutId:\"Ro7s5U4hO\",name:\"handshake\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg\\n  xmlns=\"http://www.w3.org/2000/svg\"\\n  width=\"100%\"\\n  height=\"100%\"\\n  viewBox=\"0 0 24 24\"\\n  fill=\"none\"\\n  stroke=\"#ffffff\"\\n  stroke-width=\"1.5\"\\n  stroke-linecap=\"round\"\\n  stroke-linejoin=\"round\"\\n>\\n  <path d=\"m11 17 2 2a1 1 0 1 0 3-3\" />\\n  <path d=\"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4\" />\\n  <path d=\"m21 3 1 11h-2\" />\\n  <path d=\"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3\" />\\n  <path d=\"M3 4h8\" />\\n</svg>\\n',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Sales wants to…\"})}),className:\"framer-3nu7j\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2oq7o\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Close more deals, faster, by knowing exactly how prospects and trials are engaging with the product, in real-time.\"})}),className:\"framer-bj4455\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s7jwdl\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fepn1f\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lh1b5m\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16k9yo5-container\",\"data-framer-name\":\"graph-up-arrow\",isAuthoredByUser:true,isModuleExternal:true,name:\"graph-up-arrow\",nodeId:\"s86ei75aA\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"s86ei75aA\",layoutId:\"s86ei75aA\",name:\"graph-up-arrow\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" fill=\"#ffffff\" class=\"bi bi-graph-up-arrow\" viewBox=\"0 0 16 16\">\\n  <path fill-rule=\"evenodd\" d=\"M0 0h1v15h15v1H0zm10 3.5a.5.5 0 0 1 .5-.5h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-1 0V4.9l-3.613 4.417a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61L13.445 4H10.5a.5.5 0 0 1-.5-.5\"/>\\n</svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Account Management wants to…\"})}),className:\"framer-y55qs1\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14di4yu\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Grow every account by spotting and acting on upsell opportunities at the perfect moment.\"})}),className:\"framer-7bgtv1\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovidn4\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nd46vc\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1hwqd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s9sawb-container\",\"data-framer-name\":\"dollar-sign\",isAuthoredByUser:true,isModuleExternal:true,name:\"dollar-sign\",nodeId:\"VGWxop4N9\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"VGWxop4N9\",layoutId:\"VGWxop4N9\",name:\"dollar-sign\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100%\" height=\"100%\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"#ffffff\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><line x1=\"12\" y1=\"1\" x2=\"12\" y2=\"23\"/><path d=\"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6\"/></svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Your CRO wants to…\"})}),className:\"framer-djbgbk\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yn6zfn\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"See and act on the full revenue picture, with product usage data connected in the CRM to every dollar earned.\"})}),className:\"framer-ceq4ui\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-176flta\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-onljx0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-113jszd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f0ie9m-container\",\"data-framer-name\":\"megaphone\",isAuthoredByUser:true,isModuleExternal:true,name:\"megaphone\",nodeId:\"nJRX1YpxR\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"nJRX1YpxR\",layoutId:\"nJRX1YpxR\",name:\"megaphone\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><defs/><line x1=\"1.5\" y1=\"8.18\" x2=\"1.5\" y2=\"15.82\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><line x1=\"22.5\" y1=\"2.45\" x2=\"22.5\" y2=\"21.55\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><polygon points=\"22.5 4.36 22.5 19.64 12 16.3 4.36 14.56 1.5 13.91 1.5 10.09 22.5 4.36\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/><path d=\"M12,16.3v1.43a1.92,1.92,0,0,1-1.91,1.91H6.27a1.92,1.92,0,0,1-1.91-1.91V14.56\" fill=\"none\" stroke=\"#ffffff\" stroke-miterlimit=\"10\" stroke-width=\"1.5\"/></svg>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Marketing wants to…\"})}),className:\"framer-7pq3pi\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iy6yg8\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Turn product engagement data into precision targeting for campaigns that convert.\"})}),className:\"framer-1ug46p2\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14j1l4f\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jzk6ez\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ba5zkk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7s4st5-container\",\"data-framer-name\":\"group\",isAuthoredByUser:true,isModuleExternal:true,name:\"group\",nodeId:\"jki_60mzN\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(FramerIcons,{color:\"rgb(32, 36, 48)\",height:\"100%\",id:\"jki_60mzN\",layoutId:\"jki_60mzN\",name:\"group\",strokeWidth:1.5,style:{height:\"100%\",width:\"100%\"},svg:'<svg width=\"100%\" height=\"100%\" stroke-width=\"1.5\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 20V19C1 15.134 4.13401 12 8 12V12C11.866 12 15 15.134 15 19V20\" stroke=\"#ffffff\" stroke-linecap=\"round\"/>\\n<path d=\"M13 14V14C13 11.2386 15.2386 9 18 9V9C20.7614 9 23 11.2386 23 14V14.5\" stroke=\"#ffffff\" stroke-linecap=\"round\"/>\\n<path d=\"M8 12C10.2091 12 12 10.2091 12 8C12 5.79086 10.2091 4 8 4C5.79086 4 4 5.79086 4 8C4 10.2091 5.79086 12 8 12Z\" stroke=\"#ffffff\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M18 9C19.6569 9 21 7.65685 21 6C21 4.34315 19.6569 3 18 3C16.3431 3 15 4.34315 15 6C15 7.65685 16.3431 9 18 9Z\" stroke=\"#ffffff\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Support wants to…\"})}),className:\"framer-1tx8dp5\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16yf2sx\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Resolve every ticket faster by instantly seeing what the customer did before asking for help.\"})}),className:\"framer-12ynvie\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13coli\",\"data-framer-name\":\"Feature / Multiple / 4\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jqxv2f\",\"data-framer-name\":\"Section Heading\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-e77knl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-164i5hv\",\"data-styles-preset\":\"SELqKM73y\",style:{\"--framer-text-alignment\":\"center\"},children:\"From data overwhelm to clear signals in three steps\"})}),className:\"framer-50bkcb\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-kttxcp\",\"data-framer-name\":\"Features List\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fr9wdg\",\"data-border\":true,\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9gcqau\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1zxhou\",\"data-styles-preset\":\"Dc622bfqC\",children:\"01\"})}),className:\"framer-1x8xf0o\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tyxqq9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Connect your data\"})}),className:\"framer-1e22lqe\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"You choose how to send your product data. Start seeing it flow in under 24hrs.\"})}),className:\"framer-9fwxge\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nhx035\",\"data-border\":true,\"data-framer-name\":\"7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uf2s1j\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1zxhou\",\"data-styles-preset\":\"Dc622bfqC\",children:\"02\"})}),className:\"framer-1l2orcp\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kbz5j2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Set up your workspace\"})}),className:\"framer-sxyi8t\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Confirm your features. Tell Accoil your activation criteria. See who's doing what.\"})}),className:\"framer-1x6kuhf\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xj25e1\",\"data-border\":true,\"data-framer-name\":\"8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdxgq3\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1zxhou\",\"data-styles-preset\":\"Dc622bfqC\",children:\"03\"})}),className:\"framer-1o18q3u\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h7jbrz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1dagltv\",\"data-styles-preset\":\"KkpP3tb3P\",children:\"Get continuous updates\"})}),className:\"framer-i5dn1m\",\"data-framer-name\":\"Headline\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11wkhg3\",\"data-styles-preset\":\"kdnsteXbk\",children:\"Get alerts when key accounts slip. Get notified when new customers activate.\"})}),className:\"framer-1xjq01p\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h7evhu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ks1rt1\",\"data-styles-preset\":\"OIgVEUH6Q\",style:{\"--framer-text-alignment\":\"center\"},children:\"Need to see it first?\"})}),className:\"framer-mdz123\",\"data-framer-name\":\"See it first\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{y:(componentViewport?.y||0)+0+6731.16+50+755.6+0},gR0hVL8hw:{y:(componentViewport?.y||0)+0+5379.62+130+446.8+0},KOSaM6d8G:{y:(componentViewport?.y||0)+0+5827.45+50+446.8+0},x02gF1qOH:{y:(componentViewport?.y||0)+0+7658.79+25+1064.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+5355.62+130+446.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mavrw8-container\",nodeId:\"fJ9m7Dqwk\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{bs7DOMz0W:resolvedLinks1[3]},gR0hVL8hw:{bs7DOMz0W:resolvedLinks1[1]},KOSaM6d8G:{bs7DOMz0W:resolvedLinks1[2]},x02gF1qOH:{bs7DOMz0W:resolvedLinks1[4]}},children:/*#__PURE__*/_jsx(ElementButtonWithClassmavrw8WithMappedReactPropskuccna,{bs7DOMz0W:resolvedLinks1[0],dJhwgiuSB:false,height:\"100%\",id:\"fJ9m7Dqwk\",iTwiYCGsq:\"fill\",JP5_8CMHx:\"Watch the 90-second demo\",layoutId:\"fJ9m7Dqwk\",pIzKMbVL9:false,variant:\"bL0AoKacd\",Wcaec0cG7:false,width:\"100%\",X9juprPex:\"diamond\",zscGWjyMm:\"diamond\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x1q3ze\",\"data-framer-name\":\"Project / Single / 7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ssq7fg\",\"data-framer-name\":\"Frame 2113\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-ntmlih\",\"data-framer-name\":\"Frame 26166\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1izmnia\",\"data-framer-name\":\"Frame 26167\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-164i5hv\",\"data-styles-preset\":\"SELqKM73y\",style:{\"--framer-text-alignment\":\"center\"},children:\"FAQ\"})}),className:\"framer-up89l9\",\"data-framer-name\":\"Uncomfortable Truths\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y6dl0e\",\"data-framer-name\":\"Frame 26177\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+7630.76+50+0+112+0+0},gR0hVL8hw:{width:`max(${componentViewport?.width||\"100vw\"} - 200px, 1px)`,y:(componentViewport?.y||0)+0+6130.42+130+0+112+0+0},KOSaM6d8G:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+6418.25+50+0+112+0+0},x02gF1qOH:{width:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,y:(componentViewport?.y||0)+0+8817.19+25+0+112+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(${componentViewport?.width||\"100vw\"} - 330px, 1px)`,y:(componentViewport?.y||0)+0+6106.42+130+0+112+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p20mwr-container\",nodeId:\"pYiIVlsKR\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AccordionAccordion03,{height:\"100%\",id:\"pYiIVlsKR\",layoutId:\"pYiIVlsKR\",R2YBuxhjX:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Nope. Product analytics tools are great. They just don't work well for the teams closest to your customers. Like CS, AM, sales, marketing, and support.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Accoil translate the product data you already have into signals to help you prioritize.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Catch who’s really ready for an upgrade… without spreadsheet rebuilds.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Let the product team use Amplitude and Mixpanel. Get names, context, and suggested next steps so your team can stop digging through data dumps and spend their time making customers successful.\"})]}),style:{width:\"100%\"},variant:\"k1t1xnPH4\",W88zB8mIG:\"Be honest – Isn't this just product analytics another tool?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+7630.76+50+0+112+0+179},gR0hVL8hw:{width:`max(${componentViewport?.width||\"100vw\"} - 200px, 1px)`,y:(componentViewport?.y||0)+0+6130.42+130+0+112+0+179},KOSaM6d8G:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+6418.25+50+0+112+0+179},x02gF1qOH:{width:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,y:(componentViewport?.y||0)+0+8817.19+25+0+112+0+179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(${componentViewport?.width||\"100vw\"} - 330px, 1px)`,y:(componentViewport?.y||0)+0+6106.42+130+0+112+0+179,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dq699o-container\",nodeId:\"rsdw7tauf\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AccordionAccordion03,{height:\"100%\",id:\"rsdw7tauf\",layoutId:\"rsdw7tauf\",R2YBuxhjX:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"They give you data like how many times an event happened. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"But does it help you prioritize your work? Quickly?\"}),/*#__PURE__*/_jsx(\"p\",{children:\"You can use those tools to build charts, dashboards, etc. Accoil’s strength is in prioritization: it’s like having someone you trust say “Here are three accounts to act on this morning.”\"}),/*#__PURE__*/_jsx(\"p\",{children:\"And Accoil is built for B2B — you get account- and user-level analytics without wrestling with your data. \"})]}),style:{width:\"100%\"},variant:\"k1t1xnPH4\",W88zB8mIG:\"What about Mixpanel, Amplitude, and Posthog?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+7630.76+50+0+112+0+358},gR0hVL8hw:{width:`max(${componentViewport?.width||\"100vw\"} - 200px, 1px)`,y:(componentViewport?.y||0)+0+6130.42+130+0+112+0+358},KOSaM6d8G:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+6418.25+50+0+112+0+358},x02gF1qOH:{width:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,y:(componentViewport?.y||0)+0+8817.19+25+0+112+0+358}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(${componentViewport?.width||\"100vw\"} - 330px, 1px)`,y:(componentViewport?.y||0)+0+6106.42+130+0+112+0+358,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y4m162-container\",nodeId:\"DLI_bXAJg\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AccordionAccordion03,{height:\"100%\",id:\"DLI_bXAJg\",layoutId:\"DLI_bXAJg\",R2YBuxhjX:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{children:[\"For most tools a few clicks will do it. Visit the \",/*#__PURE__*/_jsx(Link,{href:\"https://www.accoil.com/integrations\",motionChild:true,nodeId:\"DLI_bXAJg\",openInNewTab:true,preserveParams:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"integrations page\"})}),\" to see which tools you can integrate with directly.\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"You can even request a new integration from that page.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"On select plans, you can send your Accoil data back to your CDP like Segment or Rudderstack. From there you can do almost anything you want with the data.\"})]}),style:{width:\"100%\"},variant:\"k1t1xnPH4\",W88zB8mIG:\"How easy is it to connect to Slack and our CRM?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+7630.76+50+0+112+0+537},gR0hVL8hw:{width:`max(${componentViewport?.width||\"100vw\"} - 200px, 1px)`,y:(componentViewport?.y||0)+0+6130.42+130+0+112+0+537},KOSaM6d8G:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+6418.25+50+0+112+0+537},x02gF1qOH:{width:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,y:(componentViewport?.y||0)+0+8817.19+25+0+112+0+537}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(${componentViewport?.width||\"100vw\"} - 330px, 1px)`,y:(componentViewport?.y||0)+0+6106.42+130+0+112+0+537,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tyebom-container\",nodeId:\"ClS2hZITd\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AccordionAccordion03,{height:\"100%\",id:\"ClS2hZITd\",layoutId:\"ClS2hZITd\",R2YBuxhjX:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"It’s not as complicated as you might think. We’ll help you get started simply.\"}),/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.accoil.com/blog/in-saas-who-owns-customer-engagement\",motionChild:true,nodeId:\"ClS2hZITd\",openInNewTab:false,relValues:[],smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Product engagement is a team effort\"})}),\" and we can even provide you with a list of product events and features to track for onboarding, adoption, active users, and more.\"]}),/*#__PURE__*/_jsx(\"p\",{children:\"You don’t need to build dashboards or spreadsheet data. Connect your product data to Accoil and it’s done for you. You get real product signals, delivered to you.\"})]}),style:{width:\"100%\"},variant:\"k1t1xnPH4\",W88zB8mIG:\"What if we don't track product usage yet?\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+7630.76+50+0+112+0+716},gR0hVL8hw:{width:`max(${componentViewport?.width||\"100vw\"} - 200px, 1px)`,y:(componentViewport?.y||0)+0+6130.42+130+0+112+0+716},KOSaM6d8G:{width:`max(${componentViewport?.width||\"100vw\"} - 100px, 1px)`,y:(componentViewport?.y||0)+0+6418.25+50+0+112+0+716},x02gF1qOH:{width:`max(${componentViewport?.width||\"100vw\"} - 50px, 1px)`,y:(componentViewport?.y||0)+0+8817.19+25+0+112+0+716}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:155,width:`max(${componentViewport?.width||\"100vw\"} - 330px, 1px)`,y:(componentViewport?.y||0)+0+6106.42+130+0+112+0+716,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gd35i0-container\",nodeId:\"Cz9Ztz9Og\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AccordionAccordion03,{height:\"100%\",id:\"Cz9Ztz9Og\",layoutId:\"Cz9Ztz9Og\",R2YBuxhjX:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:\"Under 5 minutes if you have Segment, Rudderstack, or Posthog running. \"}),/*#__PURE__*/_jsx(\"p\",{children:\"You can also import data from Mixpanel or Amplitude. That’s pretty quick.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"If you choose the API or SDK, you’ll need about 30 minutes of engineering time. \"})]}),style:{width:\"100%\"},variant:\"k1t1xnPH4\",W88zB8mIG:\"How long does it take to set up Accoil?\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ep9ps\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:350,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:96}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j5mma3\",\"data-framer-name\":\"CTA\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rrt00k\",\"data-framer-name\":\"Frame 2117\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oeovov\",\"data-framer-name\":\"Frame 2115\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4j5smf\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-164i5hv\",\"data-styles-preset\":\"SELqKM73y\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7f1c7605-dd92-44cd-b197-f77ddc54bfa3, rgb(134, 238, 171))\"},children:\"Ready to get started?\"})}),className:\"framer-109p7qd\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ks1rt1\",\"data-styles-preset\":\"OIgVEUH6Q\",style:{\"--framer-text-color\":\"var(--token-42d39569-dd47-4528-9055-c60c186da9a3, rgb(255, 255, 255))\"},children:\"Join the ranks of B2B SaaS teams using Accoil to close deals, keep customers, and grow accounts.\"})}),className:\"framer-199e2ww\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fnkdgw\",\"data-framer-name\":\"Frame 26170\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,y:(componentViewport?.y||0)+0+8713.76+50+0+50+0+0+0+0+289+0+0},gR0hVL8hw:{y:(componentViewport?.y||0)+0+7373.42+130+0+80+0+0+0+0+289+0},KOSaM6d8G:{y:(componentViewport?.y||0)+0+7501.25+50+0+50+0+0+0+0+289+0},x02gF1qOH:{width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,y:(componentViewport?.y||0)+0+9850.19+25+0+25+0+0+0+0+289+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+7349.42+130+0+80+0+0+0+0+289+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gfx1hb-container\",nodeId:\"Q4cAIvZrz\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{style:{width:\"100%\"}},x02gF1qOH:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ElementButtonWithClassgfx1hbWithMappedReactPropskuccna,{bs7DOMz0W:\"http://app.accoil.com/signup\",dJhwgiuSB:false,height:\"100%\",id:\"Q4cAIvZrz\",iTwiYCGsq:\"fill\",JP5_8CMHx:\"Get started\",layoutId:\"Q4cAIvZrz\",pIzKMbVL9:false,variant:\"F1MpjE7Vs\",Wcaec0cG7:false,width:\"100%\",X9juprPex:\"diamond\",zscGWjyMm:\"diamond\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined},{href:{webPageId:\"aMytqt7NF\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{width:`calc(${componentViewport?.width||\"100vw\"} - 200px)`,y:(componentViewport?.y||0)+0+8713.76+50+0+50+0+0+0+0+289+0+60},gR0hVL8hw:{y:(componentViewport?.y||0)+0+7373.42+130+0+80+0+0+0+0+289+0},KOSaM6d8G:{y:(componentViewport?.y||0)+0+7501.25+50+0+50+0+0+0+0+289+0},x02gF1qOH:{width:`calc(${componentViewport?.width||\"100vw\"} - 100px)`,y:(componentViewport?.y||0)+0+9850.19+25+0+25+0+0+0+0+289+0+60}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+7349.42+130+0+80+0+0+0+0+289+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f88em-container\",nodeId:\"OeRLBwim0\",rendersWithMotion:true,scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{bs7DOMz0W:resolvedLinks2[3],style:{width:\"100%\"}},gR0hVL8hw:{bs7DOMz0W:resolvedLinks2[1]},KOSaM6d8G:{bs7DOMz0W:resolvedLinks2[2]},x02gF1qOH:{bs7DOMz0W:resolvedLinks2[4],style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ElementButtonWithClass1f88emWithMappedReactPropskuccna,{bs7DOMz0W:resolvedLinks2[0],dJhwgiuSB:false,height:\"100%\",id:\"OeRLBwim0\",iTwiYCGsq:\"fill\",JP5_8CMHx:\"Watch the 90-second demo\",layoutId:\"OeRLBwim0\",pIzKMbVL9:false,variant:\"rnOGMeD00\",Wcaec0cG7:false,width:\"100%\",X9juprPex:\"diamond\",zscGWjyMm:\"diamond\"})})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q6z3sc\",\"data-framer-name\":\"Group 584\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ae203n\",\"data-framer-name\":\"Ellipse 75\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y5b5sn\",\"data-framer-name\":\"Ellipse 74\",style:{rotate:90}})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{y:(componentViewport?.y||0)+0+9306.76},gR0hVL8hw:{y:(componentViewport?.y||0)+0+8126.42},KOSaM6d8G:{y:(componentViewport?.y||0)+0+8034.25},x02gF1qOH:{y:(componentViewport?.y||0)+0+10343.19}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:443,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8102.42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nazcxy-container\",nodeId:\"fCAq9h8pR\",scopeId:\"wL_DFmSOn\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gA3ajLa1A:{variant:\"tFH74Ypy0\"},KOSaM6d8G:{variant:\"aPOB_c0r3\"},x02gF1qOH:{variant:\"tFH74Ypy0\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{height:\"100%\",id:\"fCAq9h8pR\",layoutId:\"fCAq9h8pR\",style:{width:\"100%\"},variant:\"rVjopUa9U\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AMZlA.framer-bydsui, .framer-AMZlA .framer-bydsui { display: block; }\",\".framer-AMZlA.framer-xvws89 { align-content: center; align-items: center; background-color: var(--token-42d39569-dd47-4528-9055-c60c186da9a3, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-AMZlA .framer-14mpl4z-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-AMZlA .framer-b5e29k { background-color: #ffffff; flex: none; gap: 0px; height: 1000px; overflow: hidden; position: relative; width: 100%; }\",\".framer-AMZlA .framer-i9415c { flex: none; gap: 0px; height: 663px; left: 165px; overflow: visible; position: absolute; top: 132px; width: 1436px; }\",\".framer-AMZlA .framer-19d0w5j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 42%; transform: translateY(-50%); width: 730px; }\",\".framer-AMZlA .framer-1f2rdzz, .framer-AMZlA .framer-1vjlgvq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-whikrr, .framer-AMZlA .framer-18pg60d, .framer-AMZlA .framer-93inds, .framer-AMZlA .framer-bxyds9, .framer-AMZlA .framer-tyu65h, .framer-AMZlA .framer-1hf3k6z, .framer-AMZlA .framer-1kdgze3, .framer-AMZlA .framer-srwu8u, .framer-AMZlA .framer-1a2y1x3, .framer-AMZlA .framer-1lztve1, .framer-AMZlA .framer-ilnzpc, .framer-AMZlA .framer-dhaact, .framer-AMZlA .framer-1aszsd8, .framer-AMZlA .framer-tkflia, .framer-AMZlA .framer-1hfrfzh, .framer-AMZlA .framer-piz301, .framer-AMZlA .framer-bj4455, .framer-AMZlA .framer-7bgtv1, .framer-AMZlA .framer-ceq4ui, .framer-AMZlA .framer-1ug46p2, .framer-AMZlA .framer-12ynvie, .framer-AMZlA .framer-1e22lqe, .framer-AMZlA .framer-9fwxge, .framer-AMZlA .framer-sxyi8t, .framer-AMZlA .framer-1x6kuhf, .framer-AMZlA .framer-i5dn1m, .framer-AMZlA .framer-1xjq01p, .framer-AMZlA .framer-up89l9, .framer-AMZlA .framer-109p7qd { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-x21zkq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-klr3le { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 625px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-wb8wh7, .framer-AMZlA .framer-1v23yyt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1460icn, .framer-AMZlA .framer-7kh04d, .framer-AMZlA .framer-tnmskk, .framer-AMZlA .framer-5nfewt, .framer-AMZlA .framer-aqyt17, .framer-AMZlA .framer-1qm0rkr, .framer-AMZlA .framer-6uqi7g, .framer-AMZlA .framer-bmdnmo, .framer-AMZlA .framer-ikdn8d, .framer-AMZlA .framer-s8cw08, .framer-AMZlA .framer-1ws8j4z, .framer-AMZlA .framer-4b0ozx, .framer-AMZlA .framer-1kv2oag, .framer-AMZlA .framer-rdjv9x, .framer-AMZlA .framer-1mj5tpw, .framer-AMZlA .framer-451dig, .framer-AMZlA .framer-h42yv7, .framer-AMZlA .framer-fepn1f, .framer-AMZlA .framer-nd46vc, .framer-AMZlA .framer-onljx0, .framer-AMZlA .framer-jzk6ez { 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: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-8zm9dj, .framer-AMZlA .framer-a6qx00, .framer-AMZlA .framer-wihmq3, .framer-AMZlA .framer-1r9qbro, .framer-AMZlA .framer-517o91, .framer-AMZlA .framer-qd22cf, .framer-AMZlA .framer-1oh57kx, .framer-AMZlA .framer-17sznxk, .framer-AMZlA .framer-10qk46x { align-content: center; align-items: center; background-color: #236d4f; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5.88px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 2.94px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-udfv4j-container, .framer-AMZlA .framer-etjsmn-container, .framer-AMZlA .framer-1fauqv4-container, .framer-AMZlA .framer-hxh19q-container, .framer-AMZlA .framer-19jldnf-container, .framer-AMZlA .framer-qp0wgs-container, .framer-AMZlA .framer-2acrys-container, .framer-AMZlA .framer-cuao8k-container, .framer-AMZlA .framer-rzjz4d-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 14px); position: relative; width: 14px; }\",\".framer-AMZlA .framer-le62dq, .framer-AMZlA .framer-niy5u8, .framer-AMZlA .framer-186qxd, .framer-AMZlA .framer-qxj243, .framer-AMZlA .framer-1silnm1, .framer-AMZlA .framer-lxv4ly, .framer-AMZlA .framer-f4ie95, .framer-AMZlA .framer-ozwty4, .framer-AMZlA .framer-mv0vbn, .framer-AMZlA .framer-y8h65w, .framer-AMZlA .framer-11rg4fs, .framer-AMZlA .framer-9gzst3, .framer-AMZlA .framer-2yxtmn, .framer-AMZlA .framer-18ai8a8, .framer-AMZlA .framer-cc8rnk, .framer-AMZlA .framer-1xxthtc, .framer-AMZlA .framer-3nu7j, .framer-AMZlA .framer-y55qs1, .framer-AMZlA .framer-djbgbk, .framer-AMZlA .framer-7pq3pi, .framer-AMZlA .framer-1tx8dp5 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-30c3ho { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AMZlA .framer-64yp35-container, .framer-AMZlA .framer-1tyn6xm-container, .framer-AMZlA .framer-mavrw8-container, .framer-AMZlA .framer-gfx1hb-container, .framer-AMZlA .framer-1f88em-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AMZlA .framer-qrvn7o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1sxzlqp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1xaghyk { height: 26px; position: relative; width: 100px; }\",\".framer-AMZlA .framer-zxxzk3 { height: 26px; left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-AMZlA .framer-vjgdtz { height: 7px; left: 27px; position: absolute; top: 0px; width: 24px; }\",\".framer-AMZlA .framer-ruvsd1 { height: 2px; left: 16px; position: absolute; top: 0px; width: 2px; }\",\".framer-AMZlA .framer-1nkjnsh { height: 5px; left: 16px; position: absolute; top: 2px; width: 2px; }\",\".framer-AMZlA .framer-jq3vst { height: 7px; left: 14px; position: absolute; top: 0px; width: 2px; }\",\".framer-AMZlA .framer-1suiv1d { height: 2px; left: 12px; position: absolute; top: 0px; width: 2px; }\",\".framer-AMZlA .framer-hbpp0k { height: 7px; left: 0px; position: absolute; top: 0px; width: 14px; }\",\".framer-AMZlA .framer-1g255gh { height: 5px; left: 19px; position: absolute; top: 2px; width: 6px; }\",\".framer-AMZlA .framer-aihh8 { height: 2px; left: 21px; position: absolute; top: 3px; width: 2px; }\",\".framer-AMZlA .framer-5xbsxg, .framer-AMZlA .framer-10zq84q { height: 22px; left: 0px; position: absolute; top: 0px; width: 22px; }\",\".framer-AMZlA .framer-fdjlbn { height: 16px; left: 3px; position: absolute; top: 3px; width: 16px; }\",\".framer-AMZlA .framer-u1a1fy, .framer-AMZlA .framer-3f4rzl { height: 5px; left: 12px; position: absolute; top: 6px; width: 5px; }\",\".framer-AMZlA .framer-75s7zi { height: 10px; left: 12px; position: absolute; top: 6px; width: 5px; }\",\".framer-AMZlA .framer-pxt8p1, .framer-AMZlA .framer-1jzgngq, .framer-AMZlA .framer-1izum5l { height: 5px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-AMZlA .framer-1e96vvp, .framer-AMZlA .framer-zvo31t { height: 5px; left: 0px; position: absolute; top: 6px; width: 5px; }\",\".framer-AMZlA .framer-78p4kp { height: 5px; left: 12px; position: absolute; top: 12px; width: 5px; }\",\".framer-AMZlA .framer-1jmn3hl { height: 10px; left: 6px; position: absolute; top: 6px; width: 10px; }\",\".framer-AMZlA .framer-llyjxq, .framer-AMZlA .framer-82mz35 { height: 5px; left: 6px; position: absolute; top: 6px; width: 5px; }\",\".framer-AMZlA .framer-kmtsl0 { height: 10px; left: 6px; position: absolute; top: 6px; width: 5px; }\",\".framer-AMZlA .framer-11fu6p6, .framer-AMZlA .framer-1tvk1pv { height: 5px; left: 6px; position: absolute; top: 12px; width: 5px; }\",\".framer-AMZlA .framer-1kup69k { height: 17px; left: 26px; position: absolute; top: 9px; width: 74px; }\",\".framer-AMZlA .framer-1s0821e { height: 14px; left: 0px; position: absolute; top: 0px; width: 9px; }\",\".framer-AMZlA .framer-uv47gt { height: 11px; left: 11px; position: absolute; top: 3px; width: 9px; }\",\".framer-AMZlA .framer-1l0iujn { height: 3px; left: 13px; position: absolute; top: 5px; width: 5px; }\",\".framer-AMZlA .framer-wdui9h { height: 14px; left: 20px; position: absolute; top: 4px; width: 10px; }\",\".framer-AMZlA .framer-94u3gh { height: 3px; left: 22px; position: absolute; top: 13px; width: 6px; }\",\".framer-AMZlA .framer-1ennzmx { height: 5px; left: 23px; position: absolute; top: 5px; width: 5px; }\",\".framer-AMZlA .framer-7p49hs { height: 10px; left: 31px; position: absolute; top: 3px; width: 15px; }\",\".framer-AMZlA .framer-1sktcte { height: 11px; left: 48px; position: absolute; top: 3px; width: 9px; }\",\".framer-AMZlA .framer-8wjs80 { height: 3px; left: 49px; position: absolute; top: 5px; width: 5px; }\",\".framer-AMZlA .framer-114ck86 { height: 10px; left: 58px; position: absolute; top: 3px; width: 9px; }\",\".framer-AMZlA .framer-xmchky { height: 13px; left: 68px; position: absolute; top: 0px; width: 6px; }\",\".framer-AMZlA .framer-1hsekes { height: 17px; position: relative; width: 100px; }\",\".framer-AMZlA .framer-edjk67, .framer-AMZlA .framer-1lpu6z9 { height: 17px; left: 0px; position: absolute; top: 0px; width: 17px; }\",\".framer-AMZlA .framer-yewmvk { height: 10px; left: 21px; position: absolute; top: 3px; width: 79px; }\",\".framer-AMZlA .framer-16t5b2s { height: 8px; left: 0px; position: absolute; top: 3px; width: 4px; }\",\".framer-AMZlA .framer-xs8mz0 { height: 8px; left: 5px; position: absolute; top: 3px; width: 7px; }\",\".framer-AMZlA .framer-19z3nyh { height: 10px; left: 13px; position: absolute; top: 0px; width: 8px; }\",\".framer-AMZlA .framer-2m2gu9 { height: 6px; left: 15px; position: absolute; top: 4px; width: 5px; }\",\".framer-AMZlA .framer-djoril { height: 10px; left: 22px; position: absolute; top: 0px; width: 7px; }\",\".framer-AMZlA .framer-ob9rad { height: 6px; left: 23px; position: absolute; top: 4px; width: 5px; }\",\".framer-AMZlA .framer-bxmdq2 { height: 8px; left: 30px; position: absolute; top: 3px; width: 8px; }\",\".framer-AMZlA .framer-1ywvxzj { height: 2px; left: 32px; position: absolute; top: 4px; width: 5px; }\",\".framer-AMZlA .framer-1glgpbq { height: 8px; left: 39px; position: absolute; top: 3px; width: 5px; }\",\".framer-AMZlA .framer-7bfrc0 { height: 8px; left: 44px; position: absolute; top: 3px; width: 7px; }\",\".framer-AMZlA .framer-xqt6fg { height: 10px; left: 51px; position: absolute; top: 0px; width: 5px; }\",\".framer-AMZlA .framer-svmz0a { height: 8px; left: 56px; position: absolute; top: 3px; width: 7px; }\",\".framer-AMZlA .framer-1ch3a96 { height: 3px; left: 57px; position: absolute; top: 6px; width: 5px; }\",\".framer-AMZlA .framer-16djf30 { height: 8px; left: 64px; position: absolute; top: 3px; width: 7px; }\",\".framer-AMZlA .framer-17fdlnd { height: 10px; left: 73px; position: absolute; top: 0px; width: 7px; }\",\".framer-AMZlA .framer-b7uqh { height: 21px; position: relative; width: 100px; }\",\".framer-AMZlA .framer-xqghed { height: 21px; left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-AMZlA .framer-1scrgzd { height: 15px; left: 7px; position: absolute; top: 4px; width: 93px; }\",\".framer-AMZlA .framer-qtl3k3 { height: 12px; left: 18px; position: absolute; top: 1px; width: 11px; }\",\".framer-AMZlA .framer-1i9uzat { height: 5px; left: 21px; position: absolute; top: 3px; width: 4px; }\",\".framer-AMZlA .framer-b5sr2k { height: 8px; left: 30px; position: absolute; top: 4px; width: 13px; }\",\".framer-AMZlA .framer-1ihnfep { height: 11px; left: 44px; position: absolute; top: 4px; width: 9px; }\",\".framer-AMZlA .framer-1auxdwz { height: 5px; left: 46px; position: absolute; top: 5px; width: 5px; }\",\".framer-AMZlA .framer-1dj9my3 { height: 12px; left: 54px; position: absolute; top: 1px; width: 2px; }\",\".framer-AMZlA .framer-j6skpp { height: 8px; left: 57px; position: absolute; top: 4px; width: 2px; }\",\".framer-AMZlA .framer-g6qa7h { height: 3px; left: 57px; position: absolute; top: 0px; width: 3px; }\",\".framer-AMZlA .framer-z5awoc { height: 10px; left: 60px; position: absolute; top: 2px; width: 6px; }\",\".framer-AMZlA .framer-89gqe { height: 8px; left: 67px; position: absolute; top: 4px; width: 8px; }\",\".framer-AMZlA .framer-omtcdx { height: 12px; left: 76px; position: absolute; top: 1px; width: 9px; }\",\".framer-AMZlA .framer-1t3jcdt { height: 5px; left: 77px; position: absolute; top: 5px; width: 5px; }\",\".framer-AMZlA .framer-nrfkex { height: 8px; left: 85px; position: absolute; top: 4px; width: 8px; }\",\".framer-AMZlA .framer-2mt8t9 { height: 2px; left: 87px; position: absolute; top: 5px; width: 4px; }\",\".framer-AMZlA .framer-1d5exbc { height: 5px; left: 0px; position: absolute; top: 1px; width: 4px; }\",\".framer-AMZlA .framer-10jdb8s, .framer-AMZlA .framer-1l2rn97 { height: 21px; left: 0px; position: absolute; top: 0px; width: 21px; }\",\".framer-AMZlA .framer-1e5nbir { height: 14px; left: 3px; position: absolute; top: 3px; width: 16px; }\",\".framer-AMZlA .framer-xe6w08 { height: 24px; position: relative; width: 100px; }\",\".framer-AMZlA .framer-8gb7dr, .framer-AMZlA .framer-apfbuy { height: 24px; left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-AMZlA .framer-1cu54mq { height: 13px; left: 0px; position: absolute; top: 6px; width: 21px; }\",\".framer-AMZlA .framer-1xqatd1 { height: 4px; left: 23px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-1ry8zxp { height: 13px; left: 21px; position: absolute; top: 6px; width: 6px; }\",\".framer-AMZlA .framer-12cn5u5 { height: 6px; left: 28px; position: absolute; top: 6px; width: 6px; }\",\".framer-AMZlA .framer-r49cbz { height: 6px; left: 36px; position: absolute; top: 6px; width: 6px; }\",\".framer-AMZlA .framer-1jgm8dz { height: 2px; left: 33px; position: absolute; top: 11px; width: 2px; }\",\".framer-AMZlA .framer-1yzzpj6 { height: 6px; left: 28px; position: absolute; top: 13px; width: 6px; }\",\".framer-AMZlA .framer-54wvj0 { height: 6px; left: 36px; position: absolute; top: 13px; width: 6px; }\",\".framer-AMZlA .framer-ow31rw { height: 19px; left: 42px; position: absolute; top: 6px; width: 14px; }\",\".framer-AMZlA .framer-zb7hgu { height: 11px; left: 46px; position: absolute; top: 7px; width: 6px; }\",\".framer-AMZlA .framer-fo9uxp { height: 14px; left: 56px; position: absolute; top: 6px; width: 12px; }\",\".framer-AMZlA .framer-n6pieu { height: 6px; left: 59px; position: absolute; top: 11px; width: 5px; }\",\".framer-AMZlA .framer-aa5a4b { height: 13px; left: 68px; position: absolute; top: 6px; width: 14px; }\",\".framer-AMZlA .framer-1ts5f9 { height: 14px; left: 82px; position: absolute; top: 6px; width: 12px; }\",\".framer-AMZlA .framer-1cmys8x { height: 5px; left: 85px; position: absolute; top: 6px; width: 6px; }\",\".framer-AMZlA .framer-j3ye52 { height: 18px; left: 94px; position: absolute; top: 1px; width: 6px; }\",\".framer-AMZlA .framer-pad6jk { height: 19px; position: relative; width: 100px; }\",\".framer-AMZlA .framer-1px0708 { height: 19px; left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-AMZlA .framer-5ghnsi { height: 18px; left: 0px; position: absolute; top: 2px; width: 100px; }\",\".framer-AMZlA .framer-jmffhz { height: 10px; left: 5px; position: absolute; top: 6px; width: 3px; }\",\".framer-AMZlA .framer-omrkfg { height: 4px; left: 0px; position: absolute; top: 0px; width: 3px; }\",\".framer-AMZlA .framer-3k7f1x { height: 4px; left: 0px; position: absolute; top: 7px; width: 3px; }\",\".framer-AMZlA .framer-158kg5c { height: 17px; left: 0px; position: absolute; top: 0px; width: 31px; }\",\".framer-AMZlA .framer-1e0470j, .framer-AMZlA .framer-15n7d3r { height: 4px; left: 0px; position: absolute; top: 13px; width: 4px; }\",\".framer-AMZlA .framer-1chelo0 { height: 11px; left: 0px; position: absolute; top: 7px; width: 11px; }\",\".framer-AMZlA .framer-1bu1mlb { height: 16px; left: 7px; position: absolute; top: 0px; width: 13px; }\",\".framer-AMZlA .framer-at6iws { height: 10px; left: 13px; position: absolute; top: 0px; width: 7px; }\",\".framer-AMZlA .framer-plvmeo { height: 10px; left: 20px; position: absolute; top: 8px; width: 11px; }\",\".framer-AMZlA .framer-aidvtg { height: 2px; left: 22px; position: absolute; top: 13px; width: 2px; }\",\".framer-AMZlA .framer-1jtwma1 { height: 18px; left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-AMZlA .framer-3u9m06 { height: 11px; left: 0px; position: absolute; top: 0px; width: 7px; }\",\".framer-AMZlA .framer-1bdb006 { height: 11px; left: 0px; position: absolute; top: 7px; width: 7px; }\",\".framer-AMZlA .framer-1k2a7ga { height: 11px; left: 7px; position: absolute; top: 0px; width: 7px; }\",\".framer-AMZlA .framer-1sa2wja { height: 5px; left: 7px; position: absolute; top: 12px; width: 4px; }\",\".framer-AMZlA .framer-1w126qw { height: 12px; left: 7px; position: absolute; top: 6px; width: 7px; }\",\".framer-AMZlA .framer-1bgamja { height: 12px; left: 38px; position: absolute; top: 3px; width: 9px; }\",\".framer-AMZlA .framer-uv4y1j { height: 3px; left: 41px; position: absolute; top: 5px; width: 4px; }\",\".framer-AMZlA .framer-ohhr0k { height: 9px; left: 47px; position: absolute; top: 6px; width: 9px; }\",\".framer-AMZlA .framer-bymy2l { height: 5px; left: 50px; position: absolute; top: 8px; width: 4px; }\",\".framer-AMZlA .framer-jfgbsn { height: 9px; left: 56px; position: absolute; top: 6px; width: 7px; }\",\".framer-AMZlA .framer-52bw4c { height: 11px; left: 64px; position: absolute; top: 4px; width: 6px; }\",\".framer-AMZlA .framer-11trsj6 { height: 12px; left: 71px; position: absolute; top: 3px; width: 10px; }\",\".framer-AMZlA .framer-1r1bevg { height: 9px; left: 82px; position: absolute; top: 6px; width: 9px; }\",\".framer-AMZlA .framer-xqx1u4 { height: 5px; left: 85px; position: absolute; top: 8px; width: 4px; }\",\".framer-AMZlA .framer-nmretv { height: 12px; left: 92px; position: absolute; top: 6px; width: 9px; }\",\".framer-AMZlA .framer-ns2ouo { height: 4px; left: 94px; position: absolute; top: 8px; width: 4px; }\",\".framer-AMZlA .framer-1isrf4v { flex: none; gap: 0px; height: 663px; left: 805px; overflow: visible; position: absolute; top: 0px; width: 672px; }\",\".framer-AMZlA .framer-w1s6ma { align-content: flex-start; align-items: flex-start; background-color: #f0f9ff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 546px; justify-content: flex-start; left: 26px; overflow: hidden; padding: 24px 30px 24px 30px; position: absolute; top: 55px; width: 646px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-kcj5fh { aspect-ratio: 1.5186915887850467 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 428px); position: relative; width: 650px; }\",\".framer-AMZlA .framer-1f3d04t { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: -2px 4px 45px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 145px; overflow: hidden; padding: 20px 15px 20px 15px; position: absolute; top: 30px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-wh9a5o { flex: none; height: 61px; position: relative; width: 60px; }\",\".framer-AMZlA .framer-1q92f0t, .framer-AMZlA .framer-h15ub0, .framer-AMZlA .framer-1pls33m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AMZlA .framer-19pn4jv, .framer-AMZlA .framer-3pvegs, .framer-AMZlA .framer-38x5xm, .framer-AMZlA .framer-6lyxxy, .framer-AMZlA .framer-jq9zt2, .framer-AMZlA .framer-vhmo14, .framer-AMZlA .framer-v7fnhg, .framer-AMZlA .framer-fxowuk, .framer-AMZlA .framer-sgf5d2, .framer-AMZlA .framer-1vawpjg, .framer-AMZlA .framer-1wctoq2, .framer-AMZlA .framer-gstkhw, .framer-AMZlA .framer-v9s9to, .framer-AMZlA .framer-1vf6xid, .framer-AMZlA .framer-ohn767, .framer-AMZlA .framer-jbbful, .framer-AMZlA .framer-116o8hp, .framer-AMZlA .framer-8io5ma, .framer-AMZlA .framer-87uuiv, .framer-AMZlA .framer-1kmx93x, .framer-AMZlA .framer-1flu30g, .framer-AMZlA .framer-ryatji, .framer-AMZlA .framer-12jeby0, .framer-AMZlA .framer-smgati, .framer-AMZlA .framer-1d0u10n { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AMZlA .framer-14rvih5 { align-content: center; align-items: center; background-color: rgba(84, 189, 149, 0.3); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px; position: relative; width: min-content; }\",\".framer-AMZlA .framer-ua8n5r { align-content: flex-start; align-items: flex-start; background-color: #f9f8fe; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: -2px 4px 45px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 332px; overflow: hidden; padding: 15px; position: absolute; top: 385px; width: 206px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-cwpyp3, .framer-AMZlA .framer-vo6phy, .framer-AMZlA .framer-17y1rgu, .framer-AMZlA .framer-e1gqig { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1929rdh, .framer-AMZlA .framer-b1xual, .framer-AMZlA .framer-123dtju, .framer-AMZlA .framer-197xrdb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1g9dt3 { align-content: center; align-items: center; background-color: #2eb67d; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1yauq5r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 160px; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-xqqsi9 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: -2px 4px 45px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: -79px; overflow: hidden; padding: 15px; position: absolute; top: 196px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-d9pjmt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AMZlA .framer-1bn79om { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: -2px 4px 45px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: -50px; overflow: hidden; padding: 12px; position: absolute; top: 464px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-1qhhv1s { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-AMZlA .framer-1wlmto0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 855px; transform: translateX(-50%); width: 100%; }\",\".framer-AMZlA .framer-1ryxc2f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 930px; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 1px; }\",\".framer-AMZlA .framer-if2m56-container { flex: 1 0 0px; height: 50px; min-width: 777px; position: relative; width: 1px; }\",\".framer-AMZlA .framer-r1zg7a { height: 20px; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 80px; }\",\".framer-AMZlA .framer-ounynj { height: 20px; left: 0px; position: absolute; top: 0px; width: 80px; }\",\".framer-AMZlA .framer-1tesh6j { height: 17px; left: 26px; position: absolute; top: 1px; width: 54px; }\",\".framer-AMZlA .framer-1sg9jn6 { height: 12px; left: 0px; position: absolute; top: 5px; width: 10px; }\",\".framer-AMZlA .framer-j2h092 { height: 12px; left: 30px; position: absolute; top: 5px; width: 11px; }\",\".framer-AMZlA .framer-f5awrr { height: 17px; left: 11px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-6iing2 { height: 17px; left: 42px; position: absolute; top: 0px; width: 12px; }\",\".framer-AMZlA .framer-fe5mh2 { height: 6px; left: 19px; position: absolute; top: 8px; width: 6px; }\",\".framer-AMZlA .framer-peropl { height: 12px; left: 16px; position: absolute; top: 5px; width: 12px; }\",\".framer-AMZlA .framer-awlehm { height: 10px; left: 0px; position: absolute; top: 11px; width: 10px; }\",\".framer-AMZlA .framer-myutaj { height: 4px; left: 0px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-1t4cz66 { height: 10px; left: 6px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-pj68hu { height: 10px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-AMZlA .framer-tcy7e0 { height: 4px; left: 6px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-j0hf7o { height: 4px; left: 0px; position: absolute; top: 6px; width: 10px; }\",\".framer-AMZlA .framer-51jqdd { height: 10px; left: 11px; position: absolute; top: 0px; width: 10px; }\",\".framer-AMZlA .framer-c5rhzu { height: 4px; left: 6px; position: absolute; top: 6px; width: 4px; }\",\".framer-AMZlA .framer-n46sza { height: 10px; left: 0px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-120r6bp { height: 10px; left: 11px; position: absolute; top: 11px; width: 10px; }\",\".framer-AMZlA .framer-1kgtkjw { height: 4px; left: 0px; position: absolute; top: 6px; width: 4px; }\",\".framer-AMZlA .framer-9i3lbt { height: 4px; left: 0px; position: absolute; top: 0px; width: 10px; }\",\".framer-AMZlA .framer-4aeva2 { height: 20px; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 98px; }\",\".framer-AMZlA .framer-p035u0 { height: 20px; left: 0px; position: absolute; top: 0px; width: 98px; }\",\".framer-AMZlA .framer-obczje { height: 10px; left: 6px; position: absolute; top: 11px; width: 14px; }\",\".framer-AMZlA .framer-sdwrsv { height: 14px; left: 45px; position: absolute; top: 5px; width: 9px; }\",\".framer-AMZlA .framer-pdebuy { height: 3px; left: 2px; position: absolute; top: 16px; width: 3px; }\",\".framer-AMZlA .framer-n2h3n1 { height: 10px; left: 72px; position: absolute; top: 5px; width: 9px; }\",\".framer-AMZlA .framer-p8gywi { height: 10px; left: 35px; position: absolute; top: 5px; width: 9px; }\",\".framer-AMZlA .framer-17r2cba { height: 10px; left: 25px; position: absolute; top: 5px; width: 9px; }\",\".framer-AMZlA .framer-1z0kus4 { height: 13px; left: 92px; position: absolute; top: 3px; width: 6px; }\",\".framer-AMZlA .framer-1tnrtgd { height: 10px; left: 57px; position: absolute; top: 5px; width: 14px; }\",\".framer-AMZlA .framer-1jit1ai { height: 10px; left: 83px; position: absolute; top: 5px; width: 8px; }\",\".framer-AMZlA .framer-1dt81c2 { height: 2px; left: 0px; position: absolute; top: 11px; width: 12px; }\",\".framer-AMZlA .framer-eq9eym { height: 6px; left: 48px; position: absolute; top: 7px; width: 5px; }\",\".framer-AMZlA .framer-1e0m9hk { height: 2px; left: 37px; position: absolute; top: 7px; width: 5px; }\",\".framer-AMZlA .framer-1aiyehv { height: 2px; left: 74px; position: absolute; top: 7px; width: 5px; }\",\".framer-AMZlA .framer-6m74z8 { height: 9px; left: 0px; position: absolute; top: 0px; width: 13px; }\",\".framer-AMZlA .framer-5ei2l8 { height: 2px; left: 8px; position: absolute; top: 6px; width: 12px; }\",\".framer-AMZlA .framer-8fbabm { height: 3px; left: 15px; position: absolute; top: 2px; width: 3px; }\",\".framer-AMZlA .framer-1h0whu9, .framer-AMZlA .framer-1c1ae6v { height: 51px; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 51px; }\",\".framer-AMZlA .framer-1ata4j9, .framer-AMZlA .framer-llca1g { height: 50px; left: 1px; position: absolute; top: 1px; width: 50px; }\",\".framer-AMZlA .framer-cc4vts, .framer-AMZlA .framer-1lynpt0 { height: 50px; left: 0px; position: absolute; top: 0px; width: 50px; }\",\".framer-AMZlA .framer-3inb66 { height: 35px; left: 0px; position: absolute; top: 7px; width: 50px; }\",\".framer-AMZlA .framer-103rh49 { height: 5px; left: 7px; position: absolute; top: 21px; width: 38px; }\",\".framer-AMZlA .framer-9qaepn { height: 5px; left: 0px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-1bamw5z { height: 5px; left: 15px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-xey3l { height: 3px; left: 23px; position: absolute; top: 1px; width: 2px; }\",\".framer-AMZlA .framer-1038d0h { height: 5px; left: 22px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-c5pedj { height: 5px; left: 30px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-eg113p { height: 1px; left: 35px; position: absolute; top: 1px; width: 2px; }\",\".framer-AMZlA .framer-8vvdxm { height: 5px; left: 34px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-1eohjbh { height: 1px; left: 12px; position: absolute; top: 1px; width: 2px; }\",\".framer-AMZlA .framer-hgeekb { height: 5px; left: 11px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-9donmn { height: 2px; left: 5px; position: absolute; top: 3px; width: 2px; }\",\".framer-AMZlA .framer-1t4z5gq { height: 5px; left: 4px; position: absolute; top: 0px; width: 4px; }\",\".framer-AMZlA .framer-1e40ea6 { height: 5px; left: 27px; position: absolute; top: 0px; width: 3px; }\",\".framer-AMZlA .framer-1yr1gyo { height: 9px; left: 16px; position: absolute; top: 19px; width: 14px; }\",\".framer-AMZlA .framer-5n79f6 { height: 9px; left: 9px; position: absolute; top: 0px; width: 5px; }\",\".framer-AMZlA .framer-8s0o0g { height: 7px; left: 0px; position: absolute; top: 0px; width: 1px; }\",\".framer-AMZlA .framer-43gs7m { height: 12px; left: 0px; position: absolute; top: 20px; width: 50px; }\",\".framer-AMZlA .framer-u37en8 { height: 10px; left: 0px; position: absolute; top: 0px; width: 7px; }\",\".framer-AMZlA .framer-23jcw3 { height: 7px; left: 8px; position: absolute; top: 3px; width: 6px; }\",\".framer-AMZlA .framer-1qnabaf { height: 10px; left: 16px; position: absolute; top: 0px; width: 7px; }\",\".framer-AMZlA .framer-1m263ev { height: 4px; left: 17px; position: absolute; top: 4px; width: 4px; }\",\".framer-AMZlA .framer-1skxwbb { height: 10px; left: 23px; position: absolute; top: 0px; width: 6px; }\",\".framer-AMZlA .framer-bgshpx { height: 10px; left: 30px; position: absolute; top: 3px; width: 7px; }\",\".framer-AMZlA .framer-pe5xo0 { height: 4px; left: 32px; position: absolute; top: 4px; width: 4px; }\",\".framer-AMZlA .framer-1fvwi33 { height: 9px; left: 47px; position: absolute; top: 1px; width: 4px; }\",\".framer-AMZlA .framer-1k5x9b8 { height: 15px; left: 33px; position: absolute; top: 17px; width: 13px; }\",\".framer-AMZlA .framer-19dnkgu { height: 15px; left: 0px; position: absolute; top: 0px; width: 13px; }\",\".framer-AMZlA .framer-1xrfdgv { height: 4px; left: 8px; position: absolute; top: 7px; width: 4px; }\",\".framer-AMZlA .framer-sg3xex { height: 20px; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 101px; }\",\".framer-AMZlA .framer-3mse9m { height: 19px; left: 1px; position: absolute; top: 1px; width: 100px; }\",\".framer-AMZlA .framer-1yxaxg { height: 14px; left: 60px; position: absolute; top: 6px; width: 13px; }\",\".framer-AMZlA .framer-1xblghw { height: 14px; left: 14px; position: absolute; top: 6px; width: 13px; }\",\".framer-AMZlA .framer-zcp3bi { height: 14px; left: 75px; position: absolute; top: 6px; width: 11px; }\",\".framer-AMZlA .framer-1auhg04 { height: 19px; left: 44px; position: absolute; top: 0px; width: 14px; }\",\".framer-AMZlA .framer-11pmko8 { height: 13px; left: 0px; position: absolute; top: 6px; width: 12px; }\",\".framer-AMZlA .framer-1a006me { height: 19px; left: 88px; position: absolute; top: 0px; width: 12px; }\",\".framer-AMZlA .framer-1tz8vof { height: 13px; left: 30px; position: absolute; top: 6px; width: 12px; }\",\".framer-AMZlA .framer-1sbefpe { height: 8px; left: 47px; position: absolute; top: 9px; width: 8px; }\",\".framer-AMZlA .framer-1qejk70 { height: 3px; left: 63px; position: absolute; top: 9px; width: 7px; }\",\".framer-AMZlA .framer-1syf95h { height: 3px; left: 17px; position: absolute; top: 9px; width: 7px; }\",\".framer-AMZlA .framer-aczsvp { height: 26px; overflow: var(--overflow-clip-fallback, clip); position: relative; width: 101px; }\",\".framer-AMZlA .framer-18n8w3z { height: 26px; left: 1px; position: absolute; top: 1px; width: 100px; }\",\".framer-AMZlA .framer-1skthjl { height: 26px; left: 0px; position: absolute; top: 0px; width: 25px; }\",\".framer-AMZlA .framer-lfu1zj { height: 4px; left: 4px; position: absolute; top: 18px; width: 18px; }\",\".framer-AMZlA .framer-1i6ju6b { height: 10px; left: 81px; position: absolute; top: 8px; width: 8px; }\",\".framer-AMZlA .framer-1l5s27z { height: 14px; left: 12px; position: absolute; top: 4px; width: 2px; }\",\".framer-AMZlA .framer-1flkdww { height: 10px; left: 72px; position: absolute; top: 8px; width: 7px; }\",\".framer-AMZlA .framer-zafem7 { height: 9px; left: 64px; position: absolute; top: 8px; width: 7px; }\",\".framer-AMZlA .framer-zjchz2 { height: 9px; left: 38px; position: absolute; top: 8px; width: 7px; }\",\".framer-AMZlA .framer-1aye5py { height: 9px; left: 34px; position: absolute; top: 8px; width: 2px; }\",\".framer-AMZlA .framer-qgd3it { height: 9px; left: 91px; position: absolute; top: 8px; width: 9px; }\",\".framer-AMZlA .framer-1hvihet { height: 9px; left: 47px; position: absolute; top: 8px; width: 7px; }\",\".framer-AMZlA .framer-dx7zxq { height: 9px; left: 56px; position: absolute; top: 8px; width: 6px; }\",\".framer-AMZlA .framer-y1y6q2 { height: 13px; left: 8px; position: absolute; top: 4px; width: 2px; }\",\".framer-AMZlA .framer-1jvz2x7 { height: 13px; left: 16px; position: absolute; top: 4px; width: 2px; }\",\".framer-AMZlA .framer-1w4d8fn { height: 7px; left: 83px; position: absolute; top: 10px; width: 5px; }\",\".framer-AMZlA .framer-wurotb { height: 10px; left: 20px; position: absolute; top: 6px; width: 2px; }\",\".framer-AMZlA .framer-1hzhnvd { height: 9px; left: 4px; position: absolute; top: 6px; width: 2px; }\",\".framer-AMZlA .framer-1bfpqze { height: 3px; left: 65px; position: absolute; top: 10px; width: 4px; }\",\".framer-AMZlA .framer-1q21xh0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 130px 165px 130px 165px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-esa93m, .framer-AMZlA .framer-h8xd9f, .framer-AMZlA .framer-e3m4mn, .framer-AMZlA .framer-x2oq7o, .framer-AMZlA .framer-14di4yu, .framer-AMZlA .framer-yn6zfn, .framer-AMZlA .framer-1iy6yg8, .framer-AMZlA .framer-16yf2sx { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-mck2qg, .framer-AMZlA .framer-v5jw89, .framer-AMZlA .framer-18b7ckt, .framer-AMZlA .framer-tftlft, .framer-AMZlA .framer-50bkcb { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 850px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-2gbe4i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-qexye6, .framer-AMZlA .framer-skuijn { align-content: center; align-items: center; background: linear-gradient(180deg, #f6f6f6 70%, rgba(163, 163, 163, 0.3) 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 625px; justify-content: flex-start; overflow: hidden; padding: 30px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-1aerv97 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-u4rotj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-v12dcm, .framer-AMZlA .framer-yu0ot, .framer-AMZlA .framer-139erff, .framer-AMZlA .framer-3akuq2, .framer-AMZlA .framer-55svc8, .framer-AMZlA .framer-1dczjj4 { align-content: center; align-items: center; background-color: rgba(36, 32, 30, 0.08); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5.88px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 2.94px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-12d3rux-container, .framer-AMZlA .framer-dhzmmh-container, .framer-AMZlA .framer-145bzmy-container, .framer-AMZlA .framer-zm1r4e-container, .framer-AMZlA .framer-pfynv4-container, .framer-AMZlA .framer-r5s6xj-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); position: relative; width: 14px; }\",\".framer-AMZlA .framer-1f4fya9 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; bottom: -50px; box-shadow: 0px 5px 3px 1px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: 272px; justify-content: flex-start; overflow: hidden; padding: 0px; position: absolute; right: -28px; width: 531px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-AMZlA .framer-1vw08ho { aspect-ratio: 1.5 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 360px); position: relative; width: 539px; }\",\".framer-AMZlA .framer-19cn846 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1nm3bu0, .framer-AMZlA .framer-wcvtha, .framer-AMZlA .framer-d0rk5z, .framer-AMZlA .framer-g7guli, .framer-AMZlA .framer-e77knl, .framer-AMZlA .framer-tyxqq9, .framer-AMZlA .framer-kbz5j2, .framer-AMZlA .framer-1h7jbrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-12bx63p { bottom: -18px; flex: none; height: 247px; left: 0px; overflow: var(--overflow-clip-fallback, clip); position: absolute; width: 531px; z-index: 1; }\",\".framer-AMZlA .framer-2lfkq6 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: -11px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 14px; overflow: visible; padding: 0px 0px 16px 0px; position: absolute; width: 393px; }\",\".framer-AMZlA .framer-f6p0mz { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-1c70r7t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-14khyo3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-10qywaa, .framer-AMZlA .framer-18n0mj5 { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-AMZlA .framer-888tzj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AMZlA .framer-1qlk0dq { border-bottom-left-radius: 360px; border-bottom-right-radius: 360px; border-top-left-radius: 360px; border-top-right-radius: 360px; flex: none; gap: 0px; height: 36px; overflow: visible; position: relative; width: 36px; }\",\".framer-AMZlA .framer-pr4yl3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 255px; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-104g9cs { align-content: flex-start; align-items: flex-start; background-color: rgba(91, 201, 237, 0.06); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 147px; justify-content: flex-start; overflow: visible; padding: 12px 0px 12px 0px; position: relative; width: min-content; }\",\".framer-AMZlA .framer-59qcp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 24px; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-19inhlu, .framer-AMZlA .framer-1io1bto { flex: none; height: 4px; position: relative; width: 135px; }\",\".framer-AMZlA .framer-1miorsp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1qbqhri { align-content: center; align-items: center; background-color: rgba(26, 112, 233, 0.1); border-bottom-left-radius: 4px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 300px; overflow: visible; padding: 5.5px 12px 5.5px 12px; position: relative; width: min-content; }\",\".framer-AMZlA .framer-ema4af { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 276px; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-1kcg7ki { flex: none; height: 18px; position: relative; width: 19px; }\",\".framer-AMZlA .framer-cpjri0 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: -2px 4px 45px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 288px; overflow: hidden; padding: 12px; position: absolute; top: 4px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-11qfnzd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AMZlA .framer-160v7al { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13.073872566223145px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AMZlA .framer-1xqe5ht { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-AMZlA .framer-jqdqu { flex: none; height: 22px; overflow: visible; position: relative; width: 37px; }\",\".framer-AMZlA .framer-1ub73l2 { align-content: center; align-items: center; background-color: #dddddd; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16.34234046936035px; height: 19px; justify-content: center; left: -7px; overflow: visible; padding: 13.073872566223145px 26.14774513244629px 13.073872566223145px 26.14774513244629px; position: absolute; right: -7px; top: -2px; }\",\".framer-AMZlA .framer-15wiqe1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 213px; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-ab9l4l { align-content: center; align-items: center; background-color: #2eb67d; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px 10px 5px 10px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-utnm1c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 130px 165px 130px 165px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-w5zek1, .framer-AMZlA .framer-kttxcp { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-ktforj { --border-bottom-width: 1px; --border-color: #e9ebf0; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 60px 24px 60px 24px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1u6o93m, .framer-AMZlA .framer-11jn253, .framer-AMZlA .framer-15twfb3 { align-content: center; align-items: center; background-color: #f3f5f9; border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18.82px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 9.41px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-dezmqg-container, .framer-AMZlA .framer-18ft8bz-container, .framer-AMZlA .framer-iyxth0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 45px; }\",\".framer-AMZlA .framer-fg9r7m, .framer-AMZlA .framer-10gs49y, .framer-AMZlA .framer-6obe1z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-zccqzv, .framer-AMZlA .framer-18wpzf6 { --border-bottom-width: 1px; --border-color: #e9ebf0; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 60px 24px 60px 24px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-gzmyew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 140px 80px 140px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1j6a4na { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-29fpv1-container, .framer-AMZlA .framer-1p20mwr-container, .framer-AMZlA .framer-1dq699o-container, .framer-AMZlA .framer-1y4m162-container, .framer-AMZlA .framer-1tyebom-container, .framer-AMZlA .framer-1gd35i0-container, .framer-AMZlA .framer-1nazcxy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AMZlA .framer-blsjdj { align-content: flex-start; align-items: flex-start; background-color: #f8f8f8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 130px 165px 130px 165px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1e7lv7t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1q2vs2e { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-p0lex8, .framer-AMZlA .framer-12uvjet, .framer-AMZlA .framer-s7jwdl, .framer-AMZlA .framer-ovidn4, .framer-AMZlA .framer-176flta, .framer-AMZlA .framer-14j1l4f, .framer-AMZlA .framer-xj25e1 { --border-bottom-width: 1px; --border-color: #e9ebf0; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 40px 24px 40px 24px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-c9dga4, .framer-AMZlA .framer-1ppijhm, .framer-AMZlA .framer-1lh1b5m, .framer-AMZlA .framer-1s1hwqd, .framer-AMZlA .framer-113jszd, .framer-AMZlA .framer-1ba5zkk { align-content: center; align-items: center; background-color: #f3f5f9; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 5px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-nwf7u9-container, .framer-AMZlA .framer-cgk4so-container, .framer-AMZlA .framer-s9sawb-container, .framer-AMZlA .framer-f0ie9m-container, .framer-AMZlA .framer-7s4st5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-AMZlA .framer-16k9yo5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-AMZlA .framer-13coli { align-content: center; align-items: center; background-color: #f8f8f8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 130px 165px 130px 165px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1jqxv2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 77%; }\",\".framer-AMZlA .framer-fr9wdg, .framer-AMZlA .framer-nhx035 { --border-bottom-width: 1px; --border-color: #e9ebf0; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 40px 24px 40px 24px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-9gcqau, .framer-AMZlA .framer-1uf2s1j, .framer-AMZlA .framer-1tdxgq3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1x8xf0o, .framer-AMZlA .framer-1l2orcp, .framer-AMZlA .framer-1o18q3u { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-1h7evhu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 0px; position: relative; width: 85%; }\",\".framer-AMZlA .framer-mdz123 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 850px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-AMZlA .framer-1x1q3ze { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 130px 165px 130px 165px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-ssq7fg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-AMZlA .framer-ntmlih, .framer-AMZlA .framer-1izmnia { align-content: flex-start; align-items: flex-start; 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: 100%; }\",\".framer-AMZlA .framer-y6dl0e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-3ep9ps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: var(--overflow-clip-fallback, clip); padding: 130px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1j5mma3 { align-content: center; align-items: center; background-color: #236d4f; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 165px 80px 165px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AMZlA .framer-1rrt00k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-AMZlA .framer-oeovov { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-4j5smf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-199e2ww { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AMZlA .framer-fnkdgw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AMZlA .framer-1q6z3sc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 475px; justify-content: space-between; left: -300px; overflow: visible; padding: 0px; position: absolute; top: 0px; width: 147%; }\",\".framer-AMZlA .framer-1ae203n, .framer-AMZlA .framer-y5b5sn { background: linear-gradient(177.2606169432762deg, rgba(46, 182, 125, 0.1) 0%, rgba(140, 208, 219, 0.1) 100%); border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 461px; position: relative; width: 464px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-AMZlA[data-border=\"true\"]::after, .framer-AMZlA [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; }',\"@media (min-width: 1024px) and (max-width: 1439.98px) { .framer-AMZlA.framer-xvws89 { width: 1024px; } .framer-AMZlA .framer-i9415c { left: 59px; } .framer-AMZlA .framer-1isrf4v { left: 670px; } .framer-AMZlA .framer-1q21xh0, .framer-AMZlA .framer-utnm1c, .framer-AMZlA .framer-blsjdj, .framer-AMZlA .framer-13coli, .framer-AMZlA .framer-1x1q3ze, .framer-AMZlA .framer-3ep9ps { padding: 130px 100px 130px 100px; } .framer-AMZlA .framer-qexye6, .framer-AMZlA .framer-skuijn { height: 649px; } .framer-AMZlA .framer-12d3rux-container, .framer-AMZlA .framer-dhzmmh-container, .framer-AMZlA .framer-145bzmy-container, .framer-AMZlA .framer-zm1r4e-container, .framer-AMZlA .framer-pfynv4-container, .framer-AMZlA .framer-r5s6xj-container { height: var(--framer-aspect-ratio-supported, 14px); } .framer-AMZlA .framer-gzmyew, .framer-AMZlA .framer-1j5mma3 { padding: 80px 100px 80px 100px; } .framer-AMZlA .framer-1q6z3sc { left: -379px; width: 174%; }}\",\"@media (min-width: 810px) and (max-width: 1023.98px) { .framer-AMZlA.framer-xvws89 { width: 810px; } .framer-AMZlA .framer-b5e29k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; padding: 80px 0px 0px 0px; } .framer-AMZlA .framer-i9415c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; top: unset; width: 100%; } .framer-AMZlA .framer-19d0w5j, .framer-AMZlA .framer-1wlmto0 { left: unset; position: relative; top: unset; transform: unset; } .framer-AMZlA .framer-1isrf4v { height: 602px; left: unset; position: relative; top: unset; width: 610px; } .framer-AMZlA .framer-w1s6ma { border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; gap: 9.08px; height: 496px; left: 24px; padding: 21.79px 27.23px 21.79px 27.23px; top: 50px; width: 586px; } .framer-AMZlA .framer-kcj5fh { height: var(--framer-aspect-ratio-supported, 389px); width: 590px; } .framer-AMZlA .framer-1f3d04t { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; box-shadow: -1.82px 3.63px 45px 0px rgba(0, 0, 0, 0.13); gap: 10.89px; left: 132px; padding: 18.15px 13.62px 18.15px 13.62px; top: 27px; } .framer-AMZlA .framer-wh9a5o { height: 55px; width: 54px; } .framer-AMZlA .framer-1q92f0t, .framer-AMZlA .framer-cwpyp3, .framer-AMZlA .framer-vo6phy, .framer-AMZlA .framer-h15ub0, .framer-AMZlA .framer-17y1rgu, .framer-AMZlA .framer-e1gqig, .framer-AMZlA .framer-1pls33m { gap: 9.08px; } .framer-AMZlA .framer-14rvih5 { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; gap: 9.08px; padding: 4.54px; } .framer-AMZlA .framer-ua8n5r { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; box-shadow: -1.82px 3.63px 45px 0px rgba(0, 0, 0, 0.13); gap: 21.79px; left: 301px; padding: 13.62px; top: 349px; width: 187px; } .framer-AMZlA .framer-1vjlgvq { gap: 14.52px; } .framer-AMZlA .framer-1929rdh, .framer-AMZlA .framer-b1xual, .framer-AMZlA .framer-123dtju, .framer-AMZlA .framer-197xrdb { gap: 4.54px; } .framer-AMZlA .framer-1g9dt3 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; gap: 9.08px; padding: 7.26px; } .framer-AMZlA .framer-1yauq5r { width: 145px; } .framer-AMZlA .framer-xqqsi9 { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; box-shadow: -1.82px 3.63px 45px 0px rgba(0, 0, 0, 0.13); gap: 10.89px; left: -72px; padding: 13.62px; top: 178px; } .framer-AMZlA .framer-d9pjmt { gap: 10.89px; } .framer-AMZlA .framer-1bn79om { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; box-shadow: -1.82px 3.63px 45px 0px rgba(0, 0, 0, 0.13); gap: 7.26px; left: -45px; padding: 10.89px; top: 421px; } .framer-AMZlA .framer-1qhhv1s { height: 44px; width: 44px; } .framer-AMZlA .framer-1ryxc2f { flex-direction: column; } .framer-AMZlA .framer-if2m56-container { flex: none; width: 100%; } .framer-AMZlA .framer-1q21xh0, .framer-AMZlA .framer-utnm1c, .framer-AMZlA .framer-gzmyew, .framer-AMZlA .framer-blsjdj, .framer-AMZlA .framer-13coli, .framer-AMZlA .framer-1x1q3ze, .framer-AMZlA .framer-3ep9ps, .framer-AMZlA .framer-1j5mma3 { padding: 50px; } .framer-AMZlA .framer-qexye6, .framer-AMZlA .framer-skuijn { height: 663px; } .framer-AMZlA .framer-12d3rux-container, .framer-AMZlA .framer-dhzmmh-container, .framer-AMZlA .framer-145bzmy-container, .framer-AMZlA .framer-zm1r4e-container, .framer-AMZlA .framer-pfynv4-container, .framer-AMZlA .framer-r5s6xj-container { height: var(--framer-aspect-ratio-supported, 14px); }}\",\"@media (min-width: 640px) and (max-width: 809.98px) { .framer-AMZlA.framer-xvws89 { width: 640px; } .framer-AMZlA .framer-b5e29k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; padding: 0px; } .framer-AMZlA .framer-i9415c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; top: unset; width: 100%; } .framer-AMZlA .framer-19d0w5j { left: unset; padding: 25px; position: relative; top: unset; transform: unset; width: 100%; } .framer-AMZlA .framer-udfv4j-container, .framer-AMZlA .framer-etjsmn-container, .framer-AMZlA .framer-1fauqv4-container, .framer-AMZlA .framer-hxh19q-container, .framer-AMZlA .framer-19jldnf-container, .framer-AMZlA .framer-qp0wgs-container, .framer-AMZlA .framer-2acrys-container, .framer-AMZlA .framer-cuao8k-container, .framer-AMZlA .framer-rzjz4d-container { height: var(--framer-aspect-ratio-supported, 15px); } .framer-AMZlA .framer-1isrf4v { height: 491px; left: unset; position: relative; top: unset; width: 498px; } .framer-AMZlA .framer-w1s6ma { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; border-top-left-radius: 9px; border-top-right-radius: 9px; gap: 7.4px; height: 404px; left: 19px; padding: 17.77px 22.21px 17.77px 22.21px; top: 41px; width: 478px; } .framer-AMZlA .framer-kcj5fh { height: var(--framer-aspect-ratio-supported, 317px); width: 481px; } .framer-AMZlA .framer-1f3d04t { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: -1.48px 2.96px 45px 0px rgba(0, 0, 0, 0.13); gap: 8.89px; left: 107px; padding: 14.81px 11.11px 14.81px 11.11px; top: 22px; } .framer-AMZlA .framer-wh9a5o { height: 45px; width: 44px; } .framer-AMZlA .framer-1q92f0t, .framer-AMZlA .framer-cwpyp3, .framer-AMZlA .framer-vo6phy, .framer-AMZlA .framer-h15ub0, .framer-AMZlA .framer-17y1rgu, .framer-AMZlA .framer-e1gqig, .framer-AMZlA .framer-1pls33m { gap: 7.4px; } .framer-AMZlA .framer-14rvih5 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; gap: 7.4px; padding: 3.7px; } .framer-AMZlA .framer-ua8n5r { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: -1.48px 2.96px 45px 0px rgba(0, 0, 0, 0.13); gap: 17.77px; left: 246px; padding: 11.11px; top: 285px; width: 153px; } .framer-AMZlA .framer-1vjlgvq { gap: 11.85px; } .framer-AMZlA .framer-1929rdh, .framer-AMZlA .framer-b1xual, .framer-AMZlA .framer-123dtju, .framer-AMZlA .framer-197xrdb { gap: 3.7px; } .framer-AMZlA .framer-1g9dt3 { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; gap: 7.4px; padding: 5.92px; } .framer-AMZlA .framer-1yauq5r { width: 118px; } .framer-AMZlA .framer-xqqsi9 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: -1.48px 2.96px 45px 0px rgba(0, 0, 0, 0.13); gap: 8.89px; left: -58px; padding: 11.11px; top: 145px; } .framer-AMZlA .framer-d9pjmt { gap: 8.89px; } .framer-AMZlA .framer-1bn79om { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: -1.48px 2.96px 45px 0px rgba(0, 0, 0, 0.13); gap: 5.92px; left: -37px; padding: 8.89px; top: 344px; } .framer-AMZlA .framer-1qhhv1s { height: 36px; width: 36px; } .framer-AMZlA .framer-1wlmto0 { left: unset; position: relative; top: unset; transform: unset; } .framer-AMZlA .framer-1ryxc2f, .framer-AMZlA .framer-2gbe4i, .framer-AMZlA .framer-fnkdgw { flex-direction: column; } .framer-AMZlA .framer-if2m56-container, .framer-AMZlA .framer-qexye6, .framer-AMZlA .framer-skuijn { flex: none; width: 100%; } .framer-AMZlA .framer-1q21xh0, .framer-AMZlA .framer-utnm1c, .framer-AMZlA .framer-gzmyew, .framer-AMZlA .framer-blsjdj, .framer-AMZlA .framer-13coli, .framer-AMZlA .framer-1x1q3ze, .framer-AMZlA .framer-3ep9ps, .framer-AMZlA .framer-1j5mma3 { padding: 50px; } .framer-AMZlA .framer-12d3rux-container, .framer-AMZlA .framer-dhzmmh-container, .framer-AMZlA .framer-145bzmy-container, .framer-AMZlA .framer-zm1r4e-container, .framer-AMZlA .framer-pfynv4-container, .framer-AMZlA .framer-r5s6xj-container { height: var(--framer-aspect-ratio-supported, 9px); } .framer-AMZlA .framer-1vw08ho { height: var(--framer-aspect-ratio-supported, 359px); } .framer-AMZlA .framer-w5zek1, .framer-AMZlA .framer-kttxcp { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-AMZlA .framer-dezmqg-container, .framer-AMZlA .framer-18ft8bz-container, .framer-AMZlA .framer-iyxth0-container { height: var(--framer-aspect-ratio-supported, 24px); } .framer-AMZlA .framer-gfx1hb-container, .framer-AMZlA .framer-1f88em-container { width: 100%; }}\",\"@media (max-width: 639.98px) { .framer-AMZlA.framer-xvws89 { width: 390px; } .framer-AMZlA .framer-b5e29k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; } .framer-AMZlA .framer-i9415c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; top: unset; width: 100%; } .framer-AMZlA .framer-19d0w5j { left: unset; padding: 25px; position: relative; top: unset; transform: unset; width: 100%; } .framer-AMZlA .framer-udfv4j-container, .framer-AMZlA .framer-etjsmn-container, .framer-AMZlA .framer-1fauqv4-container, .framer-AMZlA .framer-hxh19q-container, .framer-AMZlA .framer-19jldnf-container, .framer-AMZlA .framer-qp0wgs-container, .framer-AMZlA .framer-2acrys-container, .framer-AMZlA .framer-cuao8k-container, .framer-AMZlA .framer-rzjz4d-container { height: var(--framer-aspect-ratio-supported, 15px); } .framer-AMZlA .framer-30c3ho { flex-direction: column; width: 100%; } .framer-AMZlA .framer-64yp35-container, .framer-AMZlA .framer-1tyn6xm-container, .framer-AMZlA .framer-gfx1hb-container, .framer-AMZlA .framer-1f88em-container { width: 100%; } .framer-AMZlA .framer-1sxzlqp { flex-direction: column; gap: 20px; width: 340px; } .framer-AMZlA .framer-1isrf4v { height: 300px; left: unset; position: relative; top: unset; width: 304px; } .framer-AMZlA .framer-w1s6ma { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; gap: 4.52px; height: 247px; left: 12px; padding: 10.86px 13.57px 10.86px 13.57px; top: 25px; width: 292px; } .framer-AMZlA .framer-kcj5fh { height: var(--framer-aspect-ratio-supported, 194px); width: 294px; } .framer-AMZlA .framer-1f3d04t { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: -0.9px 1.81px 45px 0px rgba(0, 0, 0, 0.13); gap: 5.43px; left: 66px; padding: 9.05px 6.79px 9.05px 6.79px; top: 14px; } .framer-AMZlA .framer-wh9a5o { height: 28px; width: 27px; } .framer-AMZlA .framer-1q92f0t, .framer-AMZlA .framer-cwpyp3, .framer-AMZlA .framer-vo6phy, .framer-AMZlA .framer-h15ub0, .framer-AMZlA .framer-17y1rgu, .framer-AMZlA .framer-e1gqig, .framer-AMZlA .framer-1pls33m { gap: 4.52px; } .framer-AMZlA .framer-14rvih5 { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; gap: 4.52px; padding: 2.26px; } .framer-AMZlA .framer-ua8n5r { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: -0.9px 1.81px 45px 0px rgba(0, 0, 0, 0.13); gap: 10.86px; left: 150px; padding: 6.79px; top: 174px; width: 93px; } .framer-AMZlA .framer-1vjlgvq { gap: 7.24px; } .framer-AMZlA .framer-1929rdh, .framer-AMZlA .framer-b1xual, .framer-AMZlA .framer-123dtju, .framer-AMZlA .framer-197xrdb { gap: 2.26px; } .framer-AMZlA .framer-1g9dt3 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; gap: 4.52px; padding: 3.62px; } .framer-AMZlA .framer-1yauq5r { width: 72px; } .framer-AMZlA .framer-xqqsi9 { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: -0.9px 1.81px 45px 0px rgba(0, 0, 0, 0.13); gap: 5.43px; left: -36px; padding: 6.79px; top: 89px; } .framer-AMZlA .framer-d9pjmt { gap: 5.43px; } .framer-AMZlA .framer-1bn79om { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; box-shadow: -0.9px 1.81px 45px 0px rgba(0, 0, 0, 0.13); gap: 3.62px; left: -23px; padding: 5.43px; top: 210px; } .framer-AMZlA .framer-1qhhv1s { height: 22px; width: 22px; } .framer-AMZlA .framer-1wlmto0 { left: unset; position: relative; top: unset; transform: unset; } .framer-AMZlA .framer-1ryxc2f, .framer-AMZlA .framer-2gbe4i, .framer-AMZlA .framer-fnkdgw { flex-direction: column; } .framer-AMZlA .framer-if2m56-container, .framer-AMZlA .framer-qexye6, .framer-AMZlA .framer-skuijn { flex: none; width: 100%; } .framer-AMZlA .framer-1q21xh0, .framer-AMZlA .framer-utnm1c, .framer-AMZlA .framer-gzmyew, .framer-AMZlA .framer-blsjdj, .framer-AMZlA .framer-13coli, .framer-AMZlA .framer-1x1q3ze, .framer-AMZlA .framer-3ep9ps, .framer-AMZlA .framer-1j5mma3 { padding: 25px; } .framer-AMZlA .framer-12d3rux-container, .framer-AMZlA .framer-dhzmmh-container, .framer-AMZlA .framer-145bzmy-container, .framer-AMZlA .framer-zm1r4e-container, .framer-AMZlA .framer-pfynv4-container, .framer-AMZlA .framer-r5s6xj-container { height: var(--framer-aspect-ratio-supported, 9px); } .framer-AMZlA .framer-1vw08ho { height: var(--framer-aspect-ratio-supported, 359px); } .framer-AMZlA .framer-w5zek1, .framer-AMZlA .framer-1q2vs2e, .framer-AMZlA .framer-kttxcp { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-AMZlA .framer-dezmqg-container, .framer-AMZlA .framer-18ft8bz-container, .framer-AMZlA .framer-iyxth0-container { height: var(--framer-aspect-ratio-supported, 24px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7984\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gR0hVL8hw\":{\"layout\":[\"fixed\",\"auto\"]},\"KOSaM6d8G\":{\"layout\":[\"fixed\",\"auto\"]},\"gA3ajLa1A\":{\"layout\":[\"fixed\",\"auto\"]},\"x02gF1qOH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerwL_DFmSOn=withCSS(Component,css,\"framer-AMZlA\");export default FramerwL_DFmSOn;FramerwL_DFmSOn.displayName=\"Home\";FramerwL_DFmSOn.defaultProps={height:7984,width:1440};addFonts(FramerwL_DFmSOn,[{explicitInter:true,fonts:[{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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{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/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{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/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{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/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v4/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npST3-QfwmS0v3_7Y.woff2\",weight:\"500\"},{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.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\"},{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v31/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTY9jo7eTWk.woff2\",weight:\"800\"},{family:\"Nunito\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/nunito/v31/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTY9jo7eTWk.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh50XewqFGC_p9dw.woff2\",weight:\"900\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"}]},...ElementNavigationFonts,...FramerIconsFonts,...ElementButtonFonts,...TickerFonts,...VerticalTabsFonts,...AccordionAccordion03Fonts,...SectionsFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwL_DFmSOn\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7984\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gR0hVL8hw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KOSaM6d8G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gA3ajLa1A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x02gF1qOH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}